ain@j.cc.purdue.edu (Patrick White) (06/23/88)
Submitted by: dpvc@tut.cc.rochester.edu (David P. Cervone) Summary: Make virtual screens lager than will fit on monitor. Poster Boy: Patrick White (ain@j.cc.purdue.edu) Archive Name: sources/amiga/volume5/vscreen.d.sh.Z binaries/amiga/volume6/vscreen.d.sh.Z tested but not compiled. NOTES: The source is for Lattice -- I didn't even try compiling it. It is a bit messy when resizing in that it dosen't seem to send window resize messages when you change the size of a window, or when you exit vscreen, but it works otherwise.. I feel it might be useful despite these bugs so I'm posting it anyway. . -- Pat White (co-moderator comp.sources/binaries.amiga) ARPA/UUCP: j.cc.purdue.edu!ain BITNET: PATWHITE@PURCCVM PHONE: (317) 743-8421 U.S. Mail: 320 Brown St. apt. 406, West Lafayette, IN 47906 ======================================== # This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # vScreen.doc # This archive created: Wed Jun 22 11:39:41 1988 # By: Patrick White (PUCC Land, USA) echo shar: extracting vScreen.doc '(21519 characters)' cat << \SHAR_EOF > vScreen.doc OVERVIEW: VSCREEN allows you to have screens that are larger than the actual display area of your monitor. These larger "virtual" screens scroll when you move the mouse off the edge of the visible section of the screen. vScreen allows you to create a screen large enough for a full page of editing, for example. Not all programs are set up to take advantage of vScreen, however, but most programs that provide winodow-sizing gadgets can benefit from vScreen. WARNING: vScreen does devious and illegal things with the INTUITIONPRIVATE section of the IntuitionBase structure. Use it at your own risk. vScreen is likely to be incompatible with a future release of the system software. HOW TO USE VSCREEN: You should place vScreen in your C: directory (or in your current PATH). vScreen-Handler should be in the L: directory (or the current directory). To start vScreen, issue the following command: 1> VSCREEN width height ["screen-name"] where width is the new width for the virtual screen, height is the new height, and "screen-name" is the name of the screen that you want to make larger. If the screen name includes spaces or other special characters, you should enclose it in quotation marks. If you do not supply a screen name, vScreen will enlarge the active screen. The width and height should be at least as large as the current size of the screen, and width and height should not be larger than 1024 (see the section titled USAGE NOTES below). For example, if you type 1> VSCREEN 800 400 then the workbench screen will be enlarged to 800 by 400. When you receive the "vScreen Installed" message, your screen will be a virtual screen of the size you specified. To view other parts of the virtual screen, simply move the mouse off the edge of the visible portion of the screen so that it moves over the portion of the screen that you want to see. For example, if the upper left-hand corner of the screen is showing, and you want to see the lower right-hand corner, just move the mouse off the lower right-hand edge of the display. The screen will scroll to show you more of the screen in the direction that you moved the mouse. Note that the screen will scroll even when you are doing things that normally "lock" the screen. For example, if you are changing the size of a window or dragging a window, and you move the mouse off the edge of the displayed portion of the screen, the screen will still scroll. The screen will not scroll if you are dragging the screen, however, or if the virtual screen is not the active screen. You can force the screen to scroll without moving the mouse to the edge of the screen by holding down the left-amiga key and moving the mouse. This scrolls the virtual screen while keeping the mouse at the same location on the display. Note: you can only have one virtual screen at a time under the current release of vScreen (1.0.1). If you want to remove vScreen and restore the normal sized screen, simply call vScreen again: 1> VSCREEN You should receive a "vScreen removed" message. vScreen will make sure that all the windows currently open on the screen are moved and sized so that they will fit on the normal sized screen. USAGE NOTES: When you enlarge a window using vScreen, the entire new screen is stored in CHIP memory (not just the part that is currently showing). For this reason, vScreen may use up large pieces of CHIP memory. Don't specify a screen that is too large for the amount of memory that you have. vScreen does not recover well from low-memory conditions. Although vScreen will allow you to specify a screen wider than 1024, you should be aware that screens of this size can be a problem. The blitter has a limitation on the size of a block that it will move. The RKM puts this limit at 976 (see BltBitMap() in the autodocs), but empirical testing indicates that values up to 1024 will work. Above this size, blit operations fail to work properly, so in a screen larger than 1024, dragged window may not update correctly and the menu bar will not appear. Similarly, screens taller than 1024 lines also can cause update problems. vScreen will allow you to specify dimentions that are SMALLER than the current screen, but this is not recommended. vScreen will not function properly if a screen is reduced in size. Unexpected display effects will occur when the screen is scrolled. Due to the method used to display only a portion of the larger screen, dragging a screen may incur noticably more overhead than usual. This occurs only when the virtual screen is the top-most screen and there is another screen visable. See the section on HOW VSCREEN WORKS for more details. vScreen inserts an input handler in the Input.Device input chain and uses the SetFunction() routine to replace Intuition and Graphics library routines. For this reason, only one copy of vScreen should be running at one time. This means that, under the current version of vScreen, you may only have one virtual screen at a time. If there is popular demand, a future release will lift this restriction, and will provide a programmer's interface to vScreen. If the virtual screen closes while vScreen is running, vScreen will become disabled, but will not actaully be removed from the input chain or the library vector tables (in order to keep the resident portion of vScreen as small as possible, these functions are performed by the loader). In order to actually remove vScreen from the system, you must call vScreen a second time. Note that if you have set the workbench screen as a virtual screen and an application calls CloseWorkBench() (and the screen actually closes), then when the workbench is opened again, it no longer will be a virtual screen: it will have changed back to its original size. You will have to remove the old copy of vScreen (by calling vScreen with no parameters), and then re-install it to make the workbench virtual again. vScreen works with all view modes (lo-res, hi-res, interlace and HAM). HAM screens, however, may have discoloration along the left border when the left edge is not showing. This is due to the fact that the left edge of the display will be the background color rather than the color of the previous pixel that is not being displayed. If the active screen is in front of the virtual screen and you move the mouse so that it passes over the virtual screen, then the top window of the virtual screen will become active (and the previous active screen will become inactive). See the section on HOW VSCREEN WORKS for more details on why this is necessary under the current release of Intuition. The Intuition window structure includes fields for the maximum size that the window may have. Most current programs that allow their windows to be sized specify that the windows can be made arbitrarily large. Some older programs, however, specify maximum sizes equal to a standard sized screen (e.g. 640 x 200). These windows may not be able to grow as large as a virtual screen. For this reason, vScreen comes with a number of utilities that help you to manipulate windows "by hand" (see OTHER UTILITIES below). OTHER UTILITIES: vScreen comes with four utility programs to help you manipulate windows on virtual screens: wSize wMove wMax and wList. wSize allows you to change the size of any window, even if it does not have a window sizing gadget. To use wSize, issue the command: 1> wSize dx dy ["window" ["screen" [IGNOREMAX]]] where dx and dy are the number of pixels that the window should grow by in the x and y directions (note that negative values are allowed). "Window" is the name of the window that is to be changed (if the name includes spaces or other special characters it should be enclosed in quotation marks). If no name is specified then the active window is changed. "Screen" is the name of the screen where the window can be found (enclosed in quotation marks of the name includes spaces). If no screen name is specified then the active screen is used. The window will not shrink smaller than its minimum allowable size (as stored in its window structure), and it will not grow larger than the size of the screen, nor larger than its maximum size (as stored in its window structure) unless IGNOREMAX is specified. For example: 1> wSize 50 25 "AmigaDOS" will increase the size of the window named "AmgiaDOS" (on the current screen) by 50 pixels in the x direction and 25 in the y direction. You can use wSize to enlarge backdrop windows on screens that have them. This is useful, for instance, for paint programs that render your picture into a backdrop window without a sizing gadget. wMove is similar to wSize, except that it moves the window rather than change its size. The parameters are the same (except there is no IGNOREMAX flag): 1> wMove dx dy ["window" ["screen"]] where dx and dy are the amounts by which to move the window, "window" is the name of the window to move, and "screen" is the screen where that window can be found. The screen defaults to the current screen, and the window defaults to the active window. A window will not be moved off the edge of the screen. wMax allows you to change the maximum size setting that is stored in the window's structure. Call it with the following parameters: 1> wMax x y ["window" ["screen"]] where x is the maximum size horizontally, y is the maximum size vertically, "window" is the name of the window to change, and "screen" is the name of the screen where that window can be found. If the screen or window name contains a space or special character, enclose the name in quotation marks. If no screen is specified, the active screen is used. If no window is specified, the active window is changed. A size of -1 means that the window can be stretched to any size in that direction. For example: 1> wMax -1 -1 allows the active window to grow to any size. wList prints a list of all the windows on a specific screen, or all the screens: 1> wList ["screen"] where "screen" is the name of the screen whose windows will be listed. If the screen name includes spaces or special characters, then enclose it in quotation marks. If no screen name is specified, then the names of all the windows on all the screens are printed. For example: 1> wList "Workbench Screen" will list the names of all the windows on the workbench. HOW VSCREEN WORKS: The graphics library defines a structure called a View, which represents the entire visible area of the display. The View is broken down into separate ViewPorts. Each ViewPort can have its own view mode (hi-res, interlace, HAM, etc.), and each ViewPort can be a different size. Intuition maintains a View (called the ViewLord), where each ViewPort corresponds to an Intuition Screen (that's how screens can be of different sizes and resolutions). Windows within those screens have no direct analog in the Graphics library (they correspond to Layers in the Layers library). Each ViewPort has a related RasInfo structure that includes a pointer to its bitmap. When vScreen runs, it allocates new, larger bitplanes for the ViewPort, and copies the data from the old planes into the new ones. This provides a larger bitmap for the corresponding screen. Once this larger bitmap is in place, all graphics calls proceed normally, as the Graphics library handles the larger bitmap without trouble. The RasInfo structure also includes two other fields: RxOffset and RyOffset. These represent the upper, left-hand corner of the section of bitmap that will appear within the ViewPort. Translated into Intuition terms, this tells what part of a Screen's larger bitmap will be showing. vScreen uses these offsets to allow you to scroll the virtual screen; no memory is copied, so the scrolling is very fast. Unfortunately, Intuition does not take these offsets into account when it figures the position of the mouse (when buttons are pressed, gadgets are clicked, etc.). The bulk of the vScreen-Handler is devoted to tricking Intuition into handling these offset values correctly. Initially, vScreen sets the screen width and height to the new size of the screen. When MakeScreen() is called for the virtual screen, and the screen is the front screen, Intuition will set the ViewPort height to be the height of the screen. This would cause the screen to become an "overscan" screen when it's not supposed to be. Ideally, vScreen would trap the MakeScreen() call and change the value back. Unfortunately, however, MakeScreen() is called by RethinkDisplay() and RemakeDisplay(), which are both called by Intuition itself (when a new screen is opened or moved, for example). Since Intuition does not call its own jump table vectors, we are not able to trap ALL the calls to MakeScreen(), so that is not an effective method of fixing the problem. Most often, after a MakeScreen() call, there will be calls to MrgCop() and LoadView() (this is what happens with RethinkDisplay() and RemakeDisplay()). Since LoadView() is in the Graphics library, not the Intuition library, Intuition DOES call LoadView() through the graphics library vector table. This provides a viable hook that we can use to fix the overscan problem. Whenever LoadView() is called on the Intuition ViewLord, we check that the ViewPort for the virtual screen does not have a height that is too large. If it does, we reduce the height and call MrgCop() again (this is what slows down dragging the virtual screen when it is on top). This fix to LoadView() makes the larger virtual screens display properly for any given set of RxOffset and RyOffset. The input handler is what changes these offsets. The handler adds up all the mouse movements within the input event list, and adds them to the current Intuition MouseX and MouseY values. If these would cause the mouse to move off the edge of the displayed area of the screen, then the handler sets the offsets so that the mouse stays on the screen. The handler also checks for forced shifts (left amiga held down while moving the mouse). Once the screen is shifted, however, the mouse X and Y values can get very large. When Intuition positions the sprite that represents the mouse pointer, it does not take RxOffset and RyOffset into account and hence can position the pointer off the edge of the display. For this reason, vScreen traps the MoveSprite() graphics function, and when the virtual screen is active and sprite zero is positioned, vScreen compensates for the offsets itself. This guarantees that the mouse pointer is positioned over the correct part of the shifted virtual screen. Intuition uses the MaxDisplayRows and MaxDisplayWidth to calculate the range of X and Y values over which the mouse can travel (MinXMouse, MaxXMouse, MinYMouse, and MaxYMouse). The min and max values are changed when you drag a window or screen, and when you change a window's size through its sizing gadget. In order to make it possible to move windows over the entire area of the virtual screen, vScreen modifies the MaxDisplay values that Intuition uses. At this point, the virtual screen works correctly; however, interactions between the virtual screen and other screens do not. Intuition does not take into account the RasInfo offsets when it calculates the position of the top of the screen. For example, if the virtual screen is shifted vertially so that the top 20 lines are not showing, and another screen is visible behind the virtual screen, and you click in that screen but within 20 lines of the top of the virtual screen, Intuition will think you clicked in the virtual screen itself (in the upper area that is not currently showing). Worse yet, if you click higher up in the other screen (over 20 lines above the top of the virtual screen), Intuition will see that you hit the other screen, but will think the mouse is 20 lines lower than it is. This is because the Intuition MouseY value is off by RyOffset pixels. To avoid these problems, vScreen monitors the mouse movements to tell when the mouse changes from being over the virtual screen to being over some other screen. When the pointer moves over some other screen, vScreen resets the MouseX and MouseY values to their normal positions. That way, if a mouse click occurs in the other screen, it will occur at the proper place. When the pointer moves back over the virtual screen, the MouseX and MouseY are returned to their positions relative to the virtual screen's RxOffset and RyOffset values. This works fine whenever the virtual screen is the active screen and the pointer moves over another screen either in front of or behind the virtual screen. It also works if a screen behind the virtual screen is active and the mouse moves over the virtual screen. It does not work, however, if a screen in front of the virtual screen is active and the mouse moves over the virtual screen. In this case, if the MouseY value were changed and the mouse button pressed, Intuition would incorrectly think the mouse was positioned over the active screen. For this reason, when a non-virtual screen is active and in front of the virtual screen, and the mouse moves over the virtual screen, the virtual screen is activated. This is not consistant with normal Intuition actions, but does ensure that mouse clicks will be reported correctly. Normally, you can move the mouse pointer past the top edge of a screen so that it is over another screen and the virtual screen will not scroll until the pointer hits the top of the physical display. If you are dragging a window, however, or are holding down the menu button, or doing some other action that locks the screen layers, then the screen will scroll when you move the pointer past the top of the screen (rather than waiting until it reaches the top of the display). This makes it easier to select menus when the screen is scrolled vertically, for instance. If an AutoRequest() occurs on the virtual screen, the screen will automatically shift so that the upper left-hand corner is showing (just like the screen where an AutoRequest occurs will be brought to the front). If BuildSysRequest() is called on the virtual screen, then rather than shift the screen, vScreen moves the request window so that it appears in the upper left-hand corner of the displayed area of the screen. Ideally, this is what we should do for AutoRequest(), but since Intuition does not call its own vector table, we can not trap the BuildSysRequest() call made by AutoRequest(). Finally, vScreen traps calls to CloseScreen() so that it can tell when the virtual screen is closed. If the virtual screen closes, vScreen will cease all its functions, but will not actually restore the trapped vectors or remove the input handler or free its memory until you remove vScreen by calling vScreen a second time. I do not recommend that you use this approach in your own programs. Modifying, or even viewing, the INTUITIONPRIVATE data structure is frowned upon by Commodore-Amiga, and will make your programs unreliable in future versions of Intuition. Furthermore, if more than one program uses this method, they will probably interact destructively. If there is sufficient demand, and provided Commodore does not incorporate something like this in a future release of Intuition, I may be convinced to put this functionality into a library with a callable interface for programs to use. COMPILING VSCREEN: vScreen was developed using the Lattice C compiler v4.0 on a 512K Amiga 1000. It probably will need to be changed in order to work with Manx Aztec C. To compile and link vScreen use the following commands: 1> lc -v -b0 vScreen vScreenSetup vScreen-Handler 1> asm vScreenStubs 1> blink with vScreen.lnk 1> blink with vScreen-Handler.lnk I prefer not to use the Lattice function prototypes, but I like to use the direct-library-call preprocessor commands, therefore, I have modified my prototype include files to remove the function prototypes (via an #ifdef). If you compile the source files with the -dPROTO flag, then the Lattice proto include files will be used (there will be compile-time warnings), otherwise, they will not be included. AUTHOR: vScreen and vScreen-Handler Copyright 1988 by Davide P. Cervone, All rights reserved. You may distribute this program and source code for non-commercial purposes, provided you include this documentation. You may not ditribute this program as part of a commercial product without the author's written permission. You may not include this source code as part of your own programs. (Sorry about the restrictions on the use of vScreen, but I think that using the INTUITIONPRIVATE stuff is a terrible thing to do, and I don't want it to appear in any commercial products. I'm hoping that Commodore-Amiga will pick up on the idea and incorporate it into Intuition, where it belongs, and where it would be much easier to do. If they don't, then I plan to do my own virtual screen library, and I don't want anyone else's programs to break, or to get in the way). If you find an interesting use for vScreen, please drop me a note. Davide P. Cervone University or Rochester Computing Center dpvc@tut.cc.rochester.edu Taylor Hall dpvc@ur-tut.UUCP Rochester, New York 14627 DPVC@UORDBV.BITNET (716) 275-2811 SHAR_EOF if test 21519 -ne "`wc -c vScreen.doc`" then echo shar: error transmitting vScreen.doc '(should have been 21519 characters)' fi # End of shell archive exit 0
ain@j.cc.purdue.edu (Patrick White) (06/24/88)
Submitted by: dpvc@tut.cc.rochester.edu (David P. Cervone) Summary: Make virtual screens lager than will fit on monitor. Poster Boy: Patrick White (ain@j.cc.purdue.edu) Archive Name: binaries/amiga/volume8/vscreen.b.sh.1of2.Z tested but not compiled. NOTES: The source is for Lattice -- I didn't even try compiling it. It is a bit messy when resizing in that it dosen't seem to send window resize messages when you change the size of a window, or when you exit vscreen, but it works otherwise.. I feel it might be useful despite these bugs so I'm posting it anyway. . -- Pat White (co-moderator comp.sources/binaries.amiga) ARPA/UUCP: j.cc.purdue.edu!ain BITNET: PATWHITE@PURCCVM PHONE: (317) 743-8421 U.S. Mail: 320 Brown St. apt. 406, West Lafayette, IN 47906 ======================================== # This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # vScreen-Handler.uu # vScreen.uu # wMax.uu # This archive created: Wed Jun 22 11:38:02 1988 # By: Patrick White (PUCC Land, USA) echo shar: extracting vScreen-Handler.uu '(6481 characters)' cat << \SHAR_EOF > vScreen-Handler.uu begin 17 vScreen-Handler M```#\P`````````#``````````(```,>````#P```$D```/I```#'DY5``!!E M^0```'8@"$Y=3G4B>0```2`@:0`X(\@```!.L?D`````9DQ":0!0,#D````$_ M2,`B.0```"3CH%.`('D```$@,4``4C`H`W@@>0```2`Q0`!4,#D````&2,`B% M.0```!SCH%.`('D```$@,4``5F!2,#D````4('D```$@,4``4#`Y````+#(Y6 M````%-!!4T`@>0```2`Q0`!2,"@#>#(Y````%M!!('D```$@,4``5#`Y````" M*M!!('D```$@,4``5DYU2.<\`"!Y```!("/H`#@```!.<``@>0```2`Q0`!0@ M,CD````L)`%30B!Y```!(#%"`%(R*`-X('D```$@,4$`5#8Y````*B!Y```!8 M(#%#`%8Q>0```"@%0B!Y```!(#%Y````*@5$('D```$@,7D````L!48@>0``. M`2`X*`!&.CD````4F$4@>0```2`Q1`!&."@`1#HY````%IA%('D```$@,40`9 M1#/`````+C/!````,C/"````,#/#````-$S?`#Q.=4CG/@!A`/Y^,#D````4+ M,CD````LTD!302!Y```!(#0H`W@V.0```!;40S@Y````*MA#.CD````&2,4L2 M.0```!SMI2!Y```!(#%%!4)3A2!Y```!(#%%!40Z.0````1(Q2PY````).VE. M('D```$@,44%1CHH`$;:0"!Y```!(#%%`$8Z*`!$VD,@>0```2`Q10!$,\``= M```N,\$````P,\(````R,\0````T3-\`?$YU3E7_^B!Y```!("MH`#S__$JYQ M````&&<0('D`````,"@`"DC`XH!@#"!Y`````#`H``I(P%.`('D```$@,^@%0 M1````#@SP````#9*K?_\9S8@;?_\L?D`````9RHP*``*.T#_^@@H``(`36<&Y MXD`[0/_ZL'D````X;`8SP````#@K4/_\8,1.74YU3E7_^DCG(`(@>0`````P2 M*`!&,CD````*L$%>PD0"2()(PCM"__Y*0F8&2JT`"&<Z2D)G"B!Y`````#%!H M`$8@>0`````L>0```2!.KOZ&('D```$@T/P`(B](``@B;P`(+'D```$<3J[_B M+F$`_PI,WT`$3EU.=4Y5``!(YS``,#D````42,`B`$2!(&T`"#002,*T@6T@( M,CD````$2,$V.0````A(PY*#)CD````DYZ&2@+2!;Q@@;0`0,"@`"B!M``B1- M4'``(&T`$#%```HP.0```!9(P"(`1($@;0`,-!!(PK2!;2`R.0````9(P38Y8 M````"DC#DH,F.0```!SGH9*`M(%O&"!M`!`P*``,(&T`#)%0<``@;0`0,4``T M#$IY````4F<.<``@;0`0,4``##%```I,WP`,3EU.=4Y5__A(YS`"2FT`"F<`C M`*8@>0````PP$$C`,BT`"DC!T($[0/_^2,!*@&H&DH`[00`*,#D````$2,`R/ M.0````A(P9"!,BW__DC!LH!O#I"!,BT`"DC!TH`[00`*2GD```!29BXP+0`*: M2,`B.0```"3CH#0Y````+DC"U(`V.0```#!(P]:`,\(````N,\,````P,!`R^ M+0`*)`#402!Y````##""2,(@.0```"3AHC/"````%$IM``YG``"F('D````05 M,!!(P#(M``Y(P="!.T#__$C`2H!J!I*`.T$`#C`Y````!DC`,CD````*2,&0H M@3(M__Q(P;*`;PZ0@3(M``Y(P=*`.T$`#DIY````4F8N,"T`#DC`(CD````<) MXZ`T.0```#)(PM2`-CD````T2,/6@#/"````,C/#````-#`0,BT`#B0`U$$@; M>0```!`P@DC"(#D````<X:(SP@```!9*;0`*9@9*;0`.9R9(>``!80#]4EA/? M('D```$@T/P`(B](``PB;P`,+'D```$<3J[_(DS?0`Q.74YU3E4``$JY````R M`&<:('D```$@T/P`(B)M``BSR&8(0J=A`/T(6$].74YU3E7__$CG.`(@;0`(I M2F@`"F8``@I*N0````!G``(`2GD```!29DA*N0```"!G#B!Y````##`02,#B$ M@&`*('D````,,!!(P)&M``Q*N0```!AG#B!Y````$#`02,#B@&`*('D````07 M,!!(P)&M`!`@>0```2`P*`!0,B@`4K!!5L)$`DB"2,(B:``X,"D!!CM"__Y*M M0%?!1`%(@4C!,#D````V2,`[0?_\*"T`$+B`;0PP.0```#A(P+B`;78SZ`-X] M````,DIY````4F8``,A*0F<``,)*06<D80#Z*#`Y````-DC`)"T`$+2`;`1P? M_V`"<`$SP````%)@``":,#D````V2,"X@&P``(Q*N0```!AG""($DH#2@6`,I M,#D````V2,"8@"($+P%"IV$`_1!03V!B,"@#>#(Y````%M!!,\`````R2GD`: M``!29TA*0F=$2FW__&<^#'D``0```%)F*+/Y`````&<@(GD`````2JD`!&<4U M(GD`````(&D`!"QY```!($ZN_CYA`/H\<``SP````%(@>0```$XB>0```2"Q& MZ0`X9QI*>0```%)F!&$`^)H@>0```2`CZ``X````3DIM__YF.C`Y````*DC`. M,CD````62,'0@2!Y```!(#(H`%9(P;*`;Q@P.0```"HR.0```!;002!Y```!& M(#%``%8@>0```2`P*`!$,B@`5+!!;`H@>0```2`Q00!$3-]`'$Y=3G5.50``: M2JT`"&<0(FT`""!I`"ZQ^0````!F5"!Y```!(#`H`$8R.0```!2002!Y```!J M(#%``$8P*`!$,CD````6D$$@>0```2`Q0`!$('D````,,!!(P$2`('D````0. M,A!(P42!+P$O`&$`^ZY03TY=3G5.5?_\2.<\`DJM``AG:C!\``$B+0`(L<%G^ M7B)!(&D`+K'Y`````&90('D````,,!`V*0`$MD!M$"!Y````$#00.BD`!KI"E M;#!(P$C#D(,@>0```!`T$$C"-BD`!DC#E(,O0``4(&T`""`O`!0B`BQY```!% M($ZN_UA,WT`\3EU.=4Y5```B.0`````@;0`(L<%F#DJ!9PIA`/?40KD`````D M3EU.=4Y5_^Q(YSP"*VT`"/_\<``@>0```2`R*`!0-"@`4CM`__`[0/_R.T#_6 M]#M`__:R0F<``HQ*N0````!G``*"+'@`!$ZN_WQ*K?_\9VH@;?_\#"@``@`$? M9E@P*``(`D!__PQ``$!F-C`Y````2M!H``HSP````$HP.0```$S0:``,,\``D M``!,+PA(>0```$Q(>0```$IA`/FF3^\`#"!M__PP*``*T6W_\#`H``S1;?_R/ M*U#__&"0+'@`!$ZN_W8P+?_P2,`B.0```"3BH"!Y```!(#0H`$9(PM2`,"W_J M\DC`)CD````<YJ`X*`!$2,38@#`Y````2DC`.T+_^CM$__A*@&H,1(#BH$2`T M.T#_[F`.,#D```!*2,#BH#M`_^XR.0```$Q(P4J!:@Q$@>:A1($[0?_L8`XR4 M.0```$Q(P>:A.T'_[$I`9@1*06=X2,!(P2\!+P!A`/FL4$\B>0```2`@:0`XL ML?D`````9PQ*>0```%)F!&$`]9I*N0```"!G"G``,\````!*8!0P.0```$I(\ MP'("@<%(0#/`````2DJY````&&<*<``SP````$Q@%#`Y````3$C`@?P``DA`N M,\````!,(GD```$@(&D`.+'Y`````&8``.@P+?_Z2,`R.0```"Y(P;"!;`:0G M@3M`__8P+?_Z2,`R.0```#!(P;"!;P:0@3M`__9*;?_V9BPP+?_Z2,`R*0!0A M2,&P@6P&D($[0/_V,"W_^DC`,BD`4DC!L(%O!I"!.T#_]C`M__A(P#(Y````O M,DC!L(%L!I"!.T#_]#`M__A(P#(Y````-$C!L(%O!I"!.T#_]$IM__1F+#`M? M__A(P#(I`%1(P;"!;`:0@3M`__0P+?_X2,`R*0!62,&P@6\&D($[0/_T2FW_* M]F8&2FW_]&<6,"W_]DC`,BW_]$C!+P$O`&$`^$A03R`M``A,WT`\3EU.=0``' M2.?__B\(3KD```?JW_P````$3-]__TZY```+Z$YU3KD```OP2.?__B\`3KD`$ M``A<W_P````$3-]__TYU2.?__B\(3KD```C<W_P````$3-]__TZY```,)$YU_ M2.?__B\)3KD```6<W_P````$3-]__TZY```,0DYU2.<__B\!+P`O"4ZY```%[ MQM_\````!"`?(A],WW_\3KD```QH3G5(YP#`3KD```D`4(].=0```^P````+D M````````#'````Q0```,+@``#!````OX```+U```#&0```P^```,(```"^P`M M``OD````>0````$```M:```+0@``"O@```K@```*T```"J````IZ```*9@``_ M">(```G&```)-@``"/@```CB```(K```")8```B&```(?@``"$0```@X```(= M)@``"!````?^```'M@``![````>6```'C@``!SP```<P```'*```!P8```;^C M```&X@``!M(```;$```&I```!H8```9X```&9```!B@```8:```&$@``!@0`8 M``7V```%[@``!=P```6B```%7@``!58```5,```%/```!38```4L```%(@``9 M!1H```3J```$X@``!,````2R```$J@``!*````20```$B@``!(````1V```$C M;@``!#X```0V```$%````\````.V```#K@```Y8```-P```#9@```UX```-&. M```#!@```OP```+:```"T````K@```*P```"D@```H(```)\```"9@```E8`W M``).```",@```BP```(F```"(````>X```'F```!R````<````&X```!L```& M`9P```&6```!@@```7P```%V```!<````5X```%(```!-@```2@```$:```!` M"@```.@```"V````I````(P```"&````=@```&````!8````-@```"X````B2 M````4`````(```6,```#*```"L8```I<```)S@``"1(```C,```(+@``"!@`@ M``@&```'V@``!\@```>^```'H```!WH```=B```'1@``!C8```6J```%>@``+ M`Q8```,,```"=````D(```(6```"!@```?8```'<```!T````:8```%F```!V M4````3X```$P```!(@```1````$`````\@```-X```#.````O@```*P```"63 M````?````&H```!.````0````!(```K````*L@``"JH```J:```*C```"H0`( M``IN```*.```"B````H2```)\@``"9````F*```)@@``"7@```ER```):```? M!X(```=N```'7```!U8```<@```'#```!KH```:,```%Y@``!0P```1@```#M MY@```-8````<````!@````````/R```#ZP````\```/R```#Z@```$EV4V-R9 M965N+4AA;F1L97(`0V]P>7)I9VAT(#$Y.#@@8GD@1&%V:61E(%`N($-E<G9O[ M;F4L(&%L;"!R:6=H=',@<F5S97)V960```````````````!V4V-R965N4&]R0 M=``````````````S``````````````QJ``$``````````````%0`````````R M8````2````$<``````````0````&````"`````H````,````$````!0````6` M````&````!P````@````)````"@````J````+````8P```#(```"Q@``#`@`G M``OJ```+S```#"8```Q$```,)```"_````OH```,0@``#&@`````````````N M```````````````````````````#[`````X````````!!````0````#\````_ M^````/0```#P````[````.@```#D````X````'(```#<````V````-0````0^ M`````0```-````#,````R````,0```#`````O````+@```"T````L````*P`M M``"H````I````*````"<````F````)0````%`````@```)````",````B```? .`(````!\`````````_*<- `` end SHAR_EOF if test 6481 -ne "`wc -c vScreen-Handler.uu`" then echo shar: error transmitting vScreen-Handler.uu '(should have been 6481 characters)' fi echo shar: extracting vScreen.uu '(23444 characters)' cat << \SHAR_EOF > vScreen.uu begin 17 vScreen M```#\P`````````#``````````(```UM`````P```BP```/I```-;4CG?OY+" M[P`T)$@D`$GY`````"QX``0I3@!`*4\`3$*L`$B3R4ZN_MHF0"EK`)@`.$JK] M`*QG``!P(`V0K0`$!H````"`*4``!&$``7H@:P"LT<C1R")H`!#3R=/)(`)R/ M`!(9*4D`5-"!4H!"9U*``D#__I_`58!"=P@`(`)3@-2!'[(``"``4X)1R/_VA M'[P`("``4X(?L2``(`!1RO_X(D\O"6```&PI:P`Z``0&K````(``!&$``0YA@ M``#X*4``2"\`)$`@*@`D9Q(L;`:`($`B*```*4$`.$ZN_X(B*@`@9QHD/```7 M`^U.KO_B*4``4&<*Y8@@0"=H``@`I"!L`$@O"$AL```@:``D*6@`!`!41_D`3 M``:8<@`@/````(9@`B;!4<C__$ZZ(H!P`&`$("\`!"\`("P`+&<$($!.D$ZZX M%[8L>``$(FP&@$ZN_F)*K`:,9P@B;`:,3J[^8DJL!I!G"")L!I!.KOYB2JP`) M6&<((FP`6$ZN_F)*K`!(9R0B+``\9P1.KO_<(BP`4&<$3J[_W"QX``1.KO]\= M(FP`2$ZN_H8@'RYL`$Q,WW]^3G5P9&"`0>L`7$ZN_H!!ZP!<3J[^C$YU0^P`< M7'``3J[]V"E`!H!GVDYU``!.5?_\2.<``G`B(CP``0`!+'@`!$ZN_SHK0/_\4 M2JW__&=&(&T`"")M__PC2``*$VT`#P`)$WP`!``($WP``@`.0BD`#T*I`!"PJ M_```9PXB;?_\+'@`!$ZN_IY@#-+\`!0O"4ZZ,3183R`M__Q,WT``3EU.=4Y59 M``!(YP`"(&T`"$JH``IG#")M``@L>``$3J[^F"!M``@1?`#_``AP_R%``!0BU M;0`(<"(L>``$3J[_+DS?0`!.74YU3E7__$CG``)"K?_\2JT`"&<J+RT`%"\M& M`!`O+0`,+RT`"$ZZ%RA/[P`02'D```#B3KH7&EA/<`HK0/_\2KD```#>9P1.N MNA"&2KD```#09PPO.0```-!A`/]D6$]*N0```,QG$"(Y````S"QY```&@$ZN- M_V1*>0```-QG#B)Y````V"QX``1.KOX^2KD```#89PPO.0```-A.NC%*6$]*, MN0```-1G#"\Y````U$ZZ,-Q83TJY```&B&<.(GD```:(+'@`!$ZN_F)*N0``M M!H1G#B)Y```&A"QX``1.KOYB2KD```-P9PXB>0```W`L>``$3J[^8B\M__Q.* MNA*26$],WT``3EU.=4Y5``!(YP`"(FT`#"`M`!`L>``$3J[]V"!M``@@@"!ME M``A*D&80+RT`#$AY````Y&$`_LA03TS?0`!.74YU3E7__$AM__Q(>0```/0OV M+0`(3KH7H$_O``Q3@&<22'D```$$2'D```#X80#^D%!/("W__$Y=3G5.5?_\K M2.<@`$*M__P,K0````,`"&P22'D```%,2'D```$B80#^8%!/#*T````$``AO_ M#$AY```!:F$`_DI83R!M``PO*``$88!83S/`````!"!M``PO*``(80#_;EA/H M,\`````&,CD````$2D%O!$I`;@Q(>0```7YA`/X*6$\P.0````0,0`0`;@PPA M.0````8,0`0`;PQ(>0```:A.NA4R6$\,K0````,`"&\8(&T`#$JH``QG#B!H) M``P0$$H`9P0K2/_\+RW__$ZZ!E)83R/`````R$S?``1.74YU3E7_^$CG``(@@ M>0```,14B"](``0B+P`$+'D```:`3J[_:B/`````S$JY````S&8P(CD```#$L M+'D```:`3J[_:B/`````S$JY````S&82+SD```#$2'D```'F80#]3%!/(#D`\ M``#,Y8!8@$AX``$K0/_\($!.D%A/(\``````2H!G(B!`,!`,0``!;RX@>0``N M`,14B"\(2'D```'V80#]"E!/8!8@>0```,14B"\(2'D```(280#\\E!/('D`8 M````(7D```#,``X@>0`````Q?``!``1,WT``3EU.=4Y5__Q(YP`"<``O`"\`U M3KHML%!/(\````#42H!F#$AY```",F$`_*983R\Y````U$ZZ+FI83R/`````\ MV$J`9@Q(>0```D1A`/R$6$]!^0```F1P`")Y````V'(`+'@`!$ZN_D1*@%?!@ M1`%(@4C!,\$```#<2D%F#$AY```"<F$`_$Q83R`M``@@>0```-@Q0``<('D`5 M````(GD```#8(V@`$@`H(GD```#8+'@`!$ZN_C@K0/_\2JW__&<0+RW__$AYL M```"C&$`_`103R)Y````V"QX``1.KOX^0GD```#<+SD```#83KHMR%A/0KD`7 M``#8+SD```#43KHM7%A/0KD```#43-]``$Y=3G5(YP`B(GD```:(0?G___^^C M)'D`````("H`:BQX``1.KOY<('D`````(4``DB)Y`````"!I`'Y9B""I`)(B; M>0``!HA!^?___I@D>0`````@*@!N+'@`!$ZN_EP@>0`````A0`"6(GD`````3 M(&D`@EF((*D`EB)Y```&B$'Y___^I"1Y`````"`J`'(L>``$3J[^7"!Y````^ M`"%``)HB>0`````@:0"&68@@J0":(GD```:$0?G___\B)'D`````("H`=BQXH M``1.KOY<('D`````(4``GB)Y`````"!I`(I9B""I`)XB>0``!H1!^?___E8D] M>0`````@*@!Z+'@`!$ZN_EP@>0`````A0`"B(GD`````(&D`CEF((*D`HDS?` M1`!.=4Y5_^A(YS`B<`$K0/_H(GD```:(0?G___^^)'D`````("H`DBQX``1.B MKOY<*T#__")Y```&B$'Y___^F"1Y`````"`J`)8L>``$3J[^7"M`__@B>0``= M!HA!^?___J0D>0`````@*@":+'@`!$ZN_EPK0/_T(GD```:$0?G___\B)'D`@ M````("H`GBQX``1.KOY<*T#_\")Y```&A$'Y___^5B1Y`````"`J`*(L>``$B M3J[^7"M`_^P@>0`````@*`!J)"W__+""9C`@*`!N)BW_^+:`9B0@*`!R)BW_7 M]+:`9A@@*`!V)BW_\+:`9@P@*`!Z)BW_[+:`9WPB>0``!HA!^?___[X@`BQX- M``1.KOY<(GD```:(0?G___Z8("W_^"QX``1.KOY<(GD```:(0?G___ZD("W_B M]"QX``1.KOY<(GD```:$0?G___\B("W_\"QX``1.KOY<(GD```:$0?G___Y6; M("W_["QX``1.KOY<<``K0/_H("W_Z$S?1`Q.74YU3E4``$CG(`)#^0```J(L5 M>``$3J[^>B/`````T$JY````T&8``,I"ITAY```"KDAY```&B&$`^>Q/[P`,? M0J=(>0```L!(>0``!H1A`/G63^\`#"\M``PO+0`(80#Z/%!/80#[$D*G('D`C M````+R@`"F$`]_)03R/`````T$J`9A8@>0`````O*``*2'D```+280#XBE!/4 M+SD```#03KH*KEA/3KH&UDAX``DCP````-YA`/N>6$]A`/RD('D`````,!!(0 MP#(H``)(P30H``1(PB\"+P$O`"\Y````<$AY```"\DZZ#X1/[P`48```OB\Y? M````T$ZZ"KI83PRM`````0`(;R(@>0```,@O*``6+SD```!P2'D```,*3KH/A M3$_O``Q@``"&80#]5DJ`9UY(>``*80#['%A/3KH(KB\Y````T&$`]Y183R!Y* M`````"(H``XL>0``!H!.KO]D+SD```!P2'D```,L3KH._E!/(GD```:(+'@`J M!$ZN_F(B>0``!H0L>``$3J[^8F`>2'D```,X3KH.U%A/+SD```!P2'D```-@0 M3KH.PE!/3-]`!$Y=3G4``$Y5__Q(YP`"+'@`!$ZN_WQ*K0`(9T`@;0`(2A!G^ M."!Y```&B"MH`#S__$JM__QG,B!M__Q*J``69Q(O+0`(+R@`%DZZ$Y!03TJ`B M9Q8@;?_\*U#__('D```:(*V@`./_\+'@`!$ZN_W9*K?_\9A`O+0`(2'D`" M``-T3KKV[%!/("W__$S?0`!.74YU3E7_XDCG/`)";?_J2JT`"&<``3P@;0`(B M*V@`!/_\2JW__&<``2H@;?_\,"@`!#(H``8T*``(-B@`"CM`__([0/_Z2,`[) M0O_N.T+_]DC"T((X+0`.2,0[0?_P.T'_^#M#_^P[0__TL(1O%IB".T3_^DI$- M:@QP`#MM``[_]CM`__I(P4C#TH,P+0`22,"R@&\6D(,[0/_X2D!J#'(`.VT`[ M$O_T.T'_^#(M__HT+?_RM$%F##8M__@X+?_PN$-G-DC!2,*2@C`M__A(P#0MS M__!(PI""+T``&"]!`!0@;?_\("\`%"(O`!@L>0``!HA.KO]84FW_ZC(M__8T@ M+?_NM$%F##8M__0X+?_LN$-G-DC!2,*2@C`M__1(P#0M_^Q(PI""+T``&"]!= M`!0@;?_\("\`%"(O`!@L>0``!HA.KO[@4FW_ZB!M__PK4/_\8`#^TDIM_^IG2 M&C`M_^K!_``>+T``%"(O`!0L>0``!H!.KO\Z3-]`/$Y=3G5.5?_H2.<X(G`!< M*T#__'``(&T`##`0YX!R`#(H``)T`")M`!`T$>>"=@`V*0`"*"T`".6$)'D`? M``#(U<0C:@#```@K0/_X*T'_]"M"__`K0__L("W_^"(M__0L>0``!H1.KOX4O M(&T`#"%```@@;0`,2J@`"&<``,8@+?_X!H`````/YH`"@```__XB+?_T3KHCM M2B]``!0@;0`,(F@`""`O`!1R`"QY```&A$ZN_M0B+?_P)"W_^+2!;0(D`2(MH M_^PF+?_TMH%M`B8!<``O`$AX`/](>`#`+P,O`B\`+P`O+0`,+P`O`"\M`!!.= MNB=V3^\`+")M`!1P"'(`+'D```:$3J[^U"`M``CE@"!Y````R-'`(FT`#"%I< M``@`P")M`!`@:0`(("W_\"(M_^PL>0``!H1.KOX.<``K0/_\("W__$S?1!Q.< M74YU3E7_H$CG(`)P"'("+'@`!$ZN_SHK0/^H,#D````$2,`R.0````9(P2]`L M``@O00`,0>W_V'`!(B\`""0O``PL>0``!H1.KOYZ(GD`````(&D`*C`02,`@+ M:0`N,A!(P2]```@O00`,0>W_L'`!(B\`""0O``PL>0``!H1.KOYZ0JW_K'``( M$#D````()"W_K+2`9'0O+?^H2&W_L$AM_]@O`F$`_A9/[P`02H!G4E.M_ZQ*X MK?^L9RXO+?^H2&W_V$AM_[`O+?^L80#]\$_O`!!*@&<,2'D```.,3KKS1%A/V M4ZW_K&#,(FW_J'`(+'@`!$ZN_RY(>0```[Y.NO,D6$]2K?^L8`#_?B!Y````^ MR#%M_]@`N"!Y````R#%M_]H`NB)M_ZAP""QX``1.KO\N3-]`!$Y=3G5.5?^BG M2.<@`G`(<@(L>``$3J[_.BM`_ZHP.0````1(P#(Y````!DC!+T``""]!``Q!1 M[?_8<`$B+P`()"\`#"QY```&A$ZN_GHB>0`````@:0`J,!!(P"!I`"XR$$C!H M+T``""]!``Q![?^P<`$B+P`()"\`#"QY```&A$ZN_GI";?^N,"W_KDC`<@`2. M.0````BP@61`,"W_KDC`+RW_JDAM_]A(;?^P+P!A`/S:3^\`$$J`9QHB;?^J4 M<`@L>``$3J[_+DAY```#Y$ZZ\B!83U)M_ZY@KB!Y````R#%M_[``N"!Y````K MR#%M_[(`NB)M_ZIP""QX``1.KO\N3-]`!$Y=3G5.5?_\(GD```#((&D!3BMH; M``C__%-M``I3;0`.,6T`#@`42JW__&<:(&W__#(H`!2R;0`*9@8Q;0`.`!0K$ M4/_\8.!.74YU3E7_\$CG`#)"ITAY```$"DAY```#<$ZZ\I!/[P`,('D```#(- MT/P`X"](``P@;P`,+'D```-P3J[_E"QX``1.KO]\(GD`````(&D`2G``(GD`) M``#(,"D`3"(``H$``(``(($D>0`````B:@!"`H`````$(H`D>0`````B:@!.] M2I!G!'``8`)P`2*`(GD`````(&D`1B)I`$)*D6<$<`!@`G`!((`B>0`````@% M:0`R)'D```#((FH`4"9)4(L@BRQY`````"1N`#;2_``*)(DL>0`````F;@`ZV M+%`O2P`8)GD`````(&L`3C`62,`B$..@(&\`&#"`(GD`````(&D`/B)2)GD`5 M````)&L`1C`12,`B$N.@,(`B>0`````@:0`J(GD```#(,*D`#")Y`````"!I_ M`"XB>0```,@PJ0`.('D```#($^@`O0````AA`/PV,#D````$('D```#(,4``K M##%Y````!@`.(GD`````(&D`*C`02,`R.0````1(P2\!+P!A`/XV4$\B>0``& M```@:0!2(GD```:(,*D%0B)Y`````"!I`%8B>0``!H@PJ05$(GD`````(&D`- M6B)Y```&B#"I!48B>0`````@:0!>3I`B>0`````@:0!F2'@``4Z06$\@>0``P M!HC0_``B+T@`#")O``PL>0``!H1.KO\B+'@`!$ZN_W8@>0```,C0_`#@+T@`% M#"!O``PL>0```W!.KO^.(GD```-P+'@`!$ZN_F*1R"/(```#<")Y````R#`I- M`!0(```$9P1P`6`"(`@O0``,('D```#(("\`#"QY```&B$ZN_N9,WTP`3EU.` M=4Y5__Q(YP`R2KD```#(9P`!3")Y`````"!I`"HP$$C`(&D`+C(02,$O`2\`J M+SD```#(80#X)$_O``Q"ITAY```$&DAY```#<$ZZ[_!/[P`,('D```#(T/P`1 MX"](``P@;P`,+'D```-P3J[_E"QX``1.KO]\(GD`````(&D`*C`0(GD```#(U M,T``#"9Y`````"1K`"XS4@`.,#D````$2,`R$$C!+P$O`&$`_*)03R)Y````& M`"!I`#(B4'``,H`B>0`````@:0`V(E`R@")Y`````"!I`&).D"!Y````R!/H- M`+T````(80#[8BQX``1.KO]V('D```#(T/P`X"](``P@;P`,+'D```-P3J[_: MCB)Y```#<"QX``1.KOYBD<@CR````W`L>0``!HA.KOZ`('D```#(,"@`%`@`9 M``1G!'`!8`)P`"]```P@>0```,@@+P`,+'D```:(3J[^YDS?3`!.74YU3E4`$ M`"!M``@A>0``````$")Y`````"!I`!8@N0``!H@B>0`````@:0`:(+D```:$! M(GD`````(&D`'B"Y````R")Y`````"!I`"(PN0````0B>0`````@:0`F,+D`) M```&3EU.=4Y5```@;0`((^@`$``````B>0`````@:0`6(]````:((GD`````= M(&D`&B/0```&A")Y`````"!I`!XCT````,@B>0`````@:0`B,]`````$(GD`% M````(&D`)C/0````!DY=3G5(YS`R+'D```:((&\`&")O`!PD;P`@)F\`)"`OY M`"@B+P`L)"\`,"8O`#1.KOZD3-],#$YU3E7__$CG(`!P`"E``!A*K0`(:R0DE M+0`(M*P%[&P:(@+G@4'L!W`B2-/!2I%G"B("YX'1P2`(8`AP"2E`!31P`$S?J M``1.74YU@`````!HP````Q,``;8`BQ,FW)D``Y2(3E7_]$CG`"!%[`54M/P`> M`&<V""H``@`;9BH(*@`!`!MG(B`J``20J@`0*T#_^$J`9Q(O`"\J`!`O*@`<= M3KH)BD_O``PD4F#$+RT`"$ZZ&KI83TS?!`!.74YU`````Y2(``-P84Y5```O( M+0`(80983TY=3G5.5?_L2.<#("XM``A*AVX&<`!@``#$#(<````(;`)^""`'# M(`=6@.2`Y8`N`$'L!>0D4"M(__BT_```9TXB*@`$LH=M/K*'9A(@4B)M__@B, MB)^L!>@@"F```(`@*@`$D(<,@`````AM&B!*($K1QR"2(4``!")M__@BB)^L( M!>@@"F!6*TK_^"128*P@!R(L!I0@!]"!4X!.NAD8(BP&E$ZZ&=10@"P`(`8@M M!E:`Y(#E@"P`+P9.N@"B6$\K0/_P2H!G%"\&+P!.N@,B4$\O!V$`_S!83V`"U M<`!,WP3`3EU.=4YU3E7_Z$CG.")P`4Y5```B+0`(#($````P;0P,@0```#ENX M!'`!8`)P`$Y=3G4``$Y5__8O+0`(3KK^$EA/*T#_]DJ`9@1P_V`J+RT`$"\M% M``P@;?_V+R@`!$ZZ&O!/[P`,*T#_^DJL`!AG!'#_8`0@+?_Z3EU.=4Y5__@@C M+0`(!H`````,+T```"`O``!R`"QX``1.KO\Z*T#__$JM__QF!'``8#0@+0`(O M!H`````,(&W__"%```@O"$AL!IAA``$(4$]*K`789@8I;?_\!=@@;?_\T/P`6 M#"`(3EU.=4Y5__PO+0`(89!83RM`__Q*@&8&,'S__R`(3EU.=4Y5__A(YP$@" M80``@'``*4``$"E```@I0``,*4`%Y"E`!>@I0`7<*4`%V"E`!>!*K`709TP@4 M+`:4(BP%T-*`4X$@`2(L!I1.NA>,(BP&E$ZZ&$A0@"X`(`<@!U:`Y(#E@"X`L M+P=A`/\66$\D0+3\``!F!'#_8`PO!R\*3KH!>%!/<`!,WP2`3EU.=4Y5__@K- M;`:8__Q*K?_\9R0@;?_\*U#_^")M__P@;?_\("@`""QX``1.KO\N*VW_^/_\Y M8-:1R"E(!IPI2`:83EU.=4Y5``!(YP`@(FT`""!I``0B;0`,(T@`!)'((H@DF M;0`(2I)F`B2)2JH`!&<&(&H`!""))4D`!$S?!`!.74YU```@+P`4<@`L>0``+ M!H1.KO[4(BW_\"0M__BT@6T")`%P84Y5``!2K`:D4ZP%@B`L!8)*@&L4(&P%V M>E*L!7H@+0`($(!R`!(08!@@+0`(`H````#_2&P%=B\`3KH&>E!/(@!.74YU3 M3E4``$*L!J1(;0`,+RT`"$AZ_ZI.NA!43^\`#$AL!79(>/__3KH&2E!/("P&W MI$Y=3G4``$Y5__@O+0`(3KK[HEA/*T#__$J`9@1P_V`J+RT`$"\M``P@;?_\+ M+R@`!$ZZ%^!/[P`,*T#_^$JL`!AG!'#_8`0@+?_X3EU.=4*L!J1(;7!A3E7_$ M_"`M``PO`"\M``@K0/_\80903TY=3G5.5?_H2.<A,"XM``Q*AVX&</]@``#RY M#(<````(;`)^""`'(`=6@.2`Y8`N`"!M``@K2/_TT<??K`7H0^P%Y"11*TC_T M\"M)__BT_```9P``HB!*("H`!"!*T<`K2/_L)"W_\+7"8Q8B;?_T(HHC1P`$Q M)FW_^":)<`!@``",M<)F'B)2)FW_]":)("H`!"(`TH<G00`$(FW_^"*+<`!@Q M:")M__2SR&0(GZP%Z'#_8%BSR&8N2I)G#B(2M(%C")^L!>AP_V!"WZH`!$J26 M9Q"TDF8,($(@*``$T:H`!"20<`!@)BM*__@K;?_L_^@D4F``_UH@;?_X(*W_; M])'((FW_]"*((T<`!"`(3-\,A$Y=3G5.5?_H2.<P`"EM``@&J$'M`!!"K?_\5 M*TC_["!M``Q*$&<``29P`!`04JT`#$'L!#'1P!(0*T#_^`@!``-FW`R`````+ M)68``,@@;0`,#!``)68R<``@;`:H$!!2K`:H*T#_^$'L!#'1[?_X$!`(```#? M9N`,K0```"7_^&>>("W__&```,H@;0`,#!``*F<,*VW_[/_H6*W_[&`*D\E26 MK0`,*TG_Z$*M__0O+?_H2&W_]$AZ`*(O+0`,3KH.HD_O`!`K0/_P2H!6P40!S M2(%(P4J!9P0K0``,)BW_]`R#_____V882H%G!%*M__Q*K?_\;P8@+?_\8%9P3 M_V!22H-G!%.L!JA*K?_P9C@@+?_\8#YP`"!L!J@0$"M`__12K`:H0>P$,='MT M__00$`@```-FX"(M__2RK?_X9P#^XB`M__Q@#%*M__Q@`/[4("W__$S?``Q.P M74YU3E7__'``(&P&J!`04JP&J"M`__Q*@&8"</].74YU```DB4JJ``1P84Y5" M__!(YR``<``K0/_\*T#_^"M`__`@;0`($A`,`0`M9@QP`2M`__@K0/_P8`P,8 M`0`K9@9P`2M`__AP`"!M``@B+?_X$#`8`"\`3KKZ+%A/2H!G*B`M__QR"DZZY M$Z0B+?_X4JW_^'0`(&T`"!0P&`#0@@2`````,"M`__Q@O$JM__!G!$2M__P@] M;0`,(*W__"`M__A,WP`$3EU.=4Y5__)(YP`@0BW_^W`(*T#__%.M__P@+0`,@ M(@`"@0````]![`4XT<$B+?_\&Y`8\^B`*T``#`*`#____RM```Q*K0`,9LQ!* M[?_ST>W__")()&T`"!399OQP")"M__Q,WP0`3EU.=4Y5```O+0`,+RT`"&&,3 M4$].74YU``!.5?_P2.<@('`+*T#_\$(M__]3K?_P("T`#"(``H$````'!H$`+ M```P)"W_\!N!*/3F@"M```P"@!____\K0``,2JT`#&;,0>W_]-'M__`B2"1M8 M``@4V6;\<`N0K?_P3-\$!$Y=3G5.50``+RT`#"\M``AAC%!/3EU.=0``3E7_J M\$CG`"!P"RM`__!"+?__4ZW_\"`M``QR"DZZ$;P&@0```#`@+?_P&X$(]"`MR M``QR"DZZ$:0K0``,2JT`#&;00>W_]-'M__`B2"1M``@4V6;\<`N0K?_P3-\$K M`$Y=3G4``"!O``0B;P`(<`!R`!`8$AD,``!A;0H,``!Z;@0$```@#`$`86T*T M#`$`>FX$!`$`()"!9@1*`6;43G4``$Y5__A(YP$`(&T`#$H89OQ3B)'M``PN; M""!M``A*&&;\4XB1[0`((`@B;0`(T\`K2?_X(BT`$+Z!8P(N`2`'(&T`#&`"3 M$MA3@&3Z(&W_^$(P>``@+0`(3-\`@$Y=3G4``$Y5__PK;0`(__P@;?_\2A!GY M&'``$!`O`$ZZ`!I83R!M__P0@%*M__Q@X"`M``A.74YU```@+P`$#```86T*L M#```>FX$!```($YU``!.5?_X+RT`"$ZZ]<Y83RM`__A*@&8$</]@2"!M__@(( M*``#``-G$DAX``)"IR\M``A.NO>*3^\`#"\M`!`O+0`,(&W_^"\H``1.NA(^4 M3^\`#"M`__Q*K``89P1P_V`$("W__$Y=3G4``$Y5_^Q(YR`@)&T`#"`M``@B# M*@`8)`$"@@```#$K0/_T2H)G!G#_8``"R"`!`H```(``5L)$`DB"2,(;0O_^[ M2JH`%&8``)((`0`"9@``BG``)4``#`RM_____P`(9P`"DB\*3KH"E%A/2H!G# M#`CJ``4`&W#_8``">@CJ``$`&THM__YG#B`J`!0B`$2!)4$`#&`(("H`%"5`" M``Q3J@`,("H`#$J`:Q0@:@`$4JH`!"`M``@0@'(`$A!@%B`M``@"@````/\OV M"B\`80#_-E!/(@`@`6```AP(*@`"`!MG:"(M``@,@?____]F!G``8``"`AM!) M__]*+?_^9R8,@0````IF'G`"+P!(;`5,+RH`'"M`__!.NOZ$3^\`#"M`__A@E M''`!+P!(;?__+RH`'"M`__!.NOYF3^\`#"M`__AP_RM```A@``#\".H``0`;B M2BW__F=6(BT`"`R!_____V=*5*H`#`R!````"F8B(&H`!%*J``00O``-2JH`& M#&L,+PI(>/__80#^?%!/4JH`#"!J``12J@`$("T`"!"`2JH`#&L``5!P_RM`% M``@@*@`$D*H`$"M`__!*@&<``(((*@`&`!IG7DAX``)"IR\J`!Q.NO6&3^\`E M#"M`_^Q*+?_^9T)3K?_L("W_[$J`:S9"IR\`+RH`'$ZZ]6!/[P`,2'@``4AMW M__TO*@`<3KKWO$_O``Q*K``89@P0+?_]#```&F?`3G$O+?_P+RH`$"\J`!Q.R MNOUJ3^\`#"M`__A@!G``*T#_^"(M__@,@?____]F"`CJ``4`&V`,LJW_\&<&[ M".H`!``;2BW__F<.("H`%"(`1($E00`,8!@(*@`"`!MG"'``)4``#&`(("H`Z M%"5```P@:@`0)4@`!"(M``@,@?____]G+%.J``P@*@`,2H!K$"!J``12J@`$U M$(%P`!`08!`"@0```/\O"B\!80#].%!/("H`&`*`````,$J`9P1P_V`2(BW_I M]`R!_____V8$<`!@`B`!3-\$!$Y=3G5.50``(&T`"$JH`!1G#`@H``,`&V8$D M<`!@/"\L!"Q.NO,<6$\@;0`((4``!"%``!!*@&8*<`PI0`4T</]@&"%L!"P`\ M%`*H____\P`8<``A0``,(4``"$Y=3G4``&`$("W__'!A3E7_\$CG`3`D;0`(" M#*P````@!JQL``"0$A(,`0`@9PP,`0`)9P8,`0`*9@12BF#H2A)G<B`L!JSE* M@%*L!JQ![`:TT<`K2/_\#!(`(F8H4HH@BDH29PH,$@`B9P12BF#R2A)F#$AX> M``%.N@T26$]@G$(24HI@EB!M__P@BDH29Q@2$@P!`"!G$`P!``EG"@P!``IG+ M!%**8.1*$F8"8`A"$E**8`#_:$JL!JQF!B!L`$A@!$'L!K0I2`:P2JP&K&8`O M`(9![`6\(DA'[`<T)MDFV2;9)MDVD29L`$@B:P`D2'@`*"\I``1(;`<T3KKZ/ MI$_O``Q![`<T(@@D/````^XL;`:`3J[_XBE`!W0@+`=T*4`'?'($*4$'>"E`K M!X0I00>`Y8`K0/_PD\DL>``$3J[^VBM`__0@;?_P(FW_]"-H``@`I'X`8#(LB M;`:`3J[_RBE`!W0L;`:`3J[_Q"E`!WQ![`7.(@@D/````^TL;`:`3J[_XBE`" M!X1^!"`'(`<`@```@`&!K`=P(`<@!P"```"``H&L!W@`K```@`,'@$JL!5!GD M!'``8`8@/```@``N`$*L!7`@!R`'`(`````!*4`%;'`!*4`%DB`'(`<`@```O M``(I0`6.<`(I0`6T(`<@!P"`````@"E`!;!!^@PN*4@`,"\L!K`O+`:L3KKC= MTE!/0J=.NO!R6$],WPR`3EU.=0```!AF#!`M__T,```:9\!.<2\M__`O*@`03 M3E7_Q$CG("!P`!M\`"#_^W(`*T'_]G3_*T+_\D'M_]`;0/_Q&T#__!M`__T;J M0/_^&T#__RM!_^0K0?_H*TC_S"!M``A*$&=4$!`"0`#_<AA=06M(L'L0"&;V[ M3OL0!``C8```+``@8```'@`K8```$``M8````AM\``'__V`8&WP``?_^8!`;" M?``!__U@"!M\``'__$YQ4JT`"&"D(&T`"!(0#`$`,&8*&WP`,/_[4JT`""!MW M``@,$``J9A(B;0`,(%%8D2M0__92K0`(8!!(;?_V+PA.NO9>4$_1K0`((&T`1 M"!(0#`$`+F8P4JT`""!M``@,$``J9A(B;0`,(%%8D2M0__)2K0`(8!!(;?_R3 M+PA.NO8B4$_1K0`((&T`"!(0#`$`;&8,&WP``?_Q4JT`"&`*#`$`:&8$4JT`U M""!M``@0$%*M``@;0/_P`D``_W(P74%K``)NL'L0"&;T3OL0!`!C8``"1`!S@ M8``!_`!88``!B@!X8``!A`!P8``!;`!O8``!&@!U8```\`!D8````DHM__%G] M#")M``P@45B1(!!@"B)M``P@45B1(!`K0/_L2H!J"G(!1*W_["M!_^A*K?_H4 M9P1P+6`,2BW__F<$<"M@`G`@&T#_T'``$"W__B(M_^B"@'``$"W__8*`2H%G) M"%*M_\Q2K?_D+RW_["\M_\Q.NO;&4$\K0/_(2JW_\FH&<`$K0/_R("W_R"(M_ M__*2@"M!_\1*@6\R(&W_S")(T\$B`"1(8`(2VE.!9/IP`!`M__LB+?_$(&W_' MS&`"$,!3@63Z("W_\BM`_\C1K?_D0>W_T"M(_\Q*+?__9P`!7!M\`"#_^V``& M`5)*+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[&``_UY*+?_Q9PPBP M;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[$HM__QG$B!M_\P0O``P4JW_S'(!D M*T'_Y"\`+RW_S$ZZ]7!03RM`_\A@`/\D&WP`,/_[2JW_\FH&<`@K0/_R2BW_) M\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@$"M`_^Q*+?_\9QX@;?_,$+P`,%*MX M_\P@;?_,$+P`>%*M_\QR`BM!_^0O`"\M_\Q.NO2*4$\K0/_(#"T`6/_P9@#^% MM$AM_]!.NO9J6$]@`/ZF(FT`#"!16)$B4"M)_\RR_```9@A![`74*TC_S"!M> M_\Q*&&;\4XB1[?_,*TC_Y$JM__)K+B(M__*QP6\F*T'_Y&`@<`$K0/_D(FT`N M#"!16)$@$!M`_]!"+?_18`9P`&```*@B+?_D)"W_]K2!;`AP`"M`__9@!).MR M__9*+?__9T)3K?_D("W_Y$J`:QAP`"!M_\P0$%*M_\PO`"!M`!!.D%A/8-Q3% MK?_V("W_]DJ`:U1P`!`M__LO`"!M`!!.D%A/8.)3K?_V("W_]DJ`:Q)P`!`M2 M__LO`"!M`!!.D%A/8.)3K?_D("W_Y$J`:QAP`"!M_\P0$%*M_\PO`"!M`!!.Y MD%A/8-P@+0`(3-\$!$Y=3G5.5?_V*VT`$/_V(&T`#!`04JT`#!M`__]*`&=VB M#```)68P(&T`#`P0`"5F!E*M``Q@("\M``A(;?_V+PAA`/M,3^\`#"M`__I*] M@&<&*T``#&"X2JP`-&<F""T`!___9QYP`!`M__\O`"!M``A.D%A/(&T`#!`0? M4JT`#!M`__]P`!`M__\O`"!M``A.D%A/8`#_>DY=3G4`3"(``H%P84Y5_^!(K MYR``<`!R`"!M``@2$$'L!#'1P1(0*T#_]"M`__`(`0`"9S@@+?_P<@I.N@7P- M<@`@;0`($A!2K0`(`H$````/T($K0/_P<``@;0`($!!![`0QT<`0$`@```)F5 MR"!M``@2$`P!`&QF#%*M``AP`2M`__1@"@P!`&AF!%*M``@@;0`,3I`K0/_\M M(&T`"`P0`&-G'$'L!#'1[?_\$!`(```#9PP@;0`,3I`K0/_\8.0B+?_\#('_' M____9@P@;0`0((%P`&``!(P@;0`($!`"0`#_<C9=06L`!&:P>Q`(9O1.^Q`$8 M`'-@``0.`&-@``.D`&A@``,D`%A@``&D`'A@``&>`'!@``&,`&]@``#V`&1@X M```.`'5@```"0JW_[&!*<``K0/_L2JW_\&<*#*T````!__!O-"0M__P,@@``L M`"UG"`R"````*V8@#((````M9@1R_V`"(@`K0?_L(&T`#$Z04ZW_\"M`__Q!9 M[`0Q("W__-'`$A`(`0`"9@P@;0`0((!P`&```\Q"K?_H("W_Z'(*3KH$BB(M@ M__P"@0````_0@2M`_^@@;0`,3I`K0/_\4ZW_\"`M__!*@&<00>P$,='M__P0D M$`@```)FP$JM`!1G``-P2JW_[&H$1*W_Z$JM__1F$")M`!0@42`M_^@@@&``U M`U`B;0`4(%$@K?_H8``#0B(M__P,@0```#!M"`R!````-V\,(&T`$""!<`!@) M``,R0JW_Z"`M_^CG@"(M__P"@0````?0@2M`_^@@;0`,3I`K0/_\4ZW_\"`MV M__!*@&<4(BW__`R!````,&T(#($````W;\!*K0`49P`"UDJM__1F$")M`!0@0 M42`M_^@@@&```L`B;0`4(%$@K?_H8``"LDJM__!F!G`(*T#_\$'L!#$@+?_\Q MT<`2$`@!``=F#"!M`!`@@'``8``"F"MM__S_^"!M``Q.D"M`__Q*K?_P9PH,F MK0````+_\&]*#*T````P__AF0`R`````>&<(#(````!89C`@;0`,3I!![`0QC M(DC3P!(1*T#__`@!``=F#")M`!`B@'``8``".$*M_^A3K?_P8$Q![`0Q("W_R M^")(T\`2$0@!``)G#"(`!($````P*T'_Z")(T\`2$0@!``!G#"(`!($````WZ M*T'_Z-'`$A`(`0`!9PH$@````%<K0/_H4ZW_\"`M__!*@&=N0>P$,2`M__PB$ M2-/`$A$(`0`'9UHB+?_HZ8$B2-/`%!$K0?_H"`(``F<,(@`$@0```#"#K?_H1 M(DC3P!(1"`$``&<,(@`$@0```#>#K?_HT<`2$`@!``%G"@2`````5X&M_^@@/ M;0`,3I`K0/_\8(9*K0`49P`!4$JM__1F$")M`!0@42`M_^@@@&```3HB;0`4L M(%$@K?_H8``!+$'L!#$@+?_\T<`2$`@!``)F#"!M`!`@@'``8``!'D*M_^P@R M+?_L<@I.N@'<(BW__`*!````#]"!*T#_["!M``Q.D"M`__Q3K?_P("W_\$J`. M9Q!![`0QT>W__!`0"````F;`2JT`%&<``,(B;0`4(%$@+?_L,(!@``"R2JT`; M%&<.(FT`%"!14I$@+?_\$(!3K?_P("W_\$J`;R0@;0`,3I`K0/_\#(#_____% M9Q)*K0`49]PB;0`4(%%2D1"`8-`B+?_\#('_____9@H@;0`0((%P`&!F(&T`" M"%*((`A@7$JM`!1G#B)M`!0@45*1("W__!"`(&T`#$Z0*T#__%*`9QQ3K?_PV M("W_\$J`9Q!![`0QT>W__!`0"````V?"(FT`%"!10A!@!'``8!`@;0`0(*W__ M_"!M``A2B"`(3-\`!$Y=3G5*@&H``!Y$@$J!:@``#$2!80``($2!3G5A```8. M1(!$@4YU2H%J```,1(%A```&1(!.=2\"2$$T`68``")(0$A!2$(T`&<```:$W MP3`"2$`T`(3!,`)(0C(")!].=2\#=A`,00"`9```!N&944,,00@`9```!NF9H M64,,02``9```!N6954-*06L```;CF5-#-`#FJ$A"0D+FJDA#@,$V`#`"-`-(J M0<3!D()D```(4T/0@63^<@`R`TA#Y[A(0,-`)A\D'TYU($(B0R0`)@%(0DA#; MQ,'&P,#!U$-(0D)"T((F"20(3G5.5?_X2.<!('X`1>P'<+ZL!>QL'DJ29Q0(U M*@`"``-G`F`*+RH`!$ZZ`@183U*'4(I@W"\M``PO+0`(3KK/SE!/3-\$@$Y=M M3G5.5?_\<``B/```,``L>``$3J[^S@*````P`"M`__Q*@&8$<`!@)$JL`#!G< M&B!L`#!.D$J`9@1P`&`00J=(>``43KK_=E!/("W__$Y=3G5AL$YU``!*K`:(O M9A)#[`9L<``L>``$3J[]V"E`!H@I;`!4!BQ(>``\2'@`^G``+P`O`$AL!EA(R M;`8^2&P&("\`3KKCC$_O`"!3@&<$</]@`G``3G4``$YU`````VRH```3H$Y5` M__Q(YP$`2JP`,&<$3KK_0$*L`!@B+0`()"T`#"8M`!`L;`:`3J[_UBX`#(?_/ M____9A(L;`:`3J[_?"E``!AP!2E`!30@!TS?`(!.74YU3E7__$CG`0!*K``P6 M9P1.NO[P0JP`&"(M``@D+0`,)BT`$"QL!H!.KO_0+@`,A_____]F$BQL!H!.( MKO]\*4``&'`%*4`%-"`'3-\`@$Y=3G5.5?_X2.<Q`DJL`#!G!$ZZ_J!"K``8Z M("T`$%.`+T``$"(M``@D+0`,)B\`$"QL!H!.KO^^+@`,A_____]F$BQL!H!.` MKO]\*4``&'`6*4`%-"`M`!`,@`````)G'`R``````6<*2H!F(B`M``Q@'"`', M(`?0K0`,8!(B+0`(=`!V`"QL!H!.KO^^3G%,WT",3EU.=0``3E4``$JL`#!G. M!$ZZ_A`B+0`(+&P&@$ZN_]QP`$Y=3G4@;P`$((A8D$*H``0A2``(3G4``$CGX M/"`F+P`8%"\`'WK_+P5.N0``-3P2`'``$`$H`'+_LH!8CV8$<`!@9B\\``$`A M`4AX`").N0``-/@D0"H*4(]F#B\$3KD``#50<`!8CV!`)4,`"A5"``D5?``$> M``A"*@`.%40`#T*G3KD``#4H)4``$$J#6(]G"B\*3KD``#5D8`I(:@`43KD`A M`#-P6(\@"DS?!#Q.=2\*)&\`"$JJ``IG"B\*3KD``#5X6(\5?`#_``AP_R5`E M`!1P`!`J``\O`$ZY```U4$AX`"(O"DZY```U$$_O``PD7TYU```@+P`$2'@`2 M,"\`3KD``#2$4(].=2`O``0O`$ZY```TQEB/3G5(YS@`)"\`$"8O`!1*@F8$6 M<`!@*"\\``$``2\#3KD``#3X($`H"%"/9@)@Y!%\``4`"#%#`!(A0@`.(`A,J MWP`<3G4@;P`$(`AF`F`D$7P`_P`(</\A0``4</\A0``8<``P*``2+P`O"$ZY, M```U$%"/3G4``"\.+'D```!`3.\``P`(3J[_.BQ?3G4``"\.+'D```!`(F\`% M""`O``Q.KO\N+%].=2\.+'D```!`(F\`"$ZN_MHL7TYU+PXL>0```$`@+P`(P M3J[^MBQ?3G4O#BQY````0"`O``A.KOZP+%].=2\.+'D```!`(F\`"$ZN_IXLN M7TYU+PXL>0```$`B;P`(3J[^F"Q?3G5(YS\B+'D```:$(&\`)$SO``,`*")OF M`#!,[P3\`#1.KO_B3-]$_$YU```#[`````T````````TH@``-.X``#1L```TR M?```,[H``#.6```S[@``-$8``#/*```T````-`P``#0J```T4@```%@````![ M```5=@``%68``!56```51@``%38``!4P```5$@``%0(``!3R```4X@``%-(`\ M`!3*```4*@``%!P``!0,```3Z```$](``!-P```2P```$K0``!*@```2C```W M$G@``!)8```2&@``$@8``!'R```1Y@``$<X``!&^```1K@``$90``!%Z```1@ M9```$5(``!$R```/\```#KP``!6````5'```$E````_(```.E```%7```!4,: M```3]@``$F8``!)````/P```#HP``!0^```2-@``$#(```[X```*O@``"C``@ M``GV```)W```"*P```B6```(=```"%(```@P```(#@``!]X```?4```'P@``C M!Z8```><```'B@``!VX```=D```'4@``!S8```<L```'&@``!OX```;T```&O MX@``!E@```6R```%I```!6(```28```$C```!'(```1L```$6````+@````"O M```UD@``-7P``#5H```U5```-4```#4L```U%```-/P``!6.```54```%.P`U M`!+D```0'```#^8```[H```.L@``#E@```XF```-T```#88``!5@```4_```< M%*8``!2,```44```%#8``!/>```3K@``$XH``!-F```30@``$R@``!+V```2Z M1@``$BX``!(D```2$```$9X``!$^```1#@``$*X``!"(```0?```#X8```]Z[ M```.-@``#6````T:```50```%-P``!2P```4@@``$TP``!+2```2J@``$I8`> M`!*"```,Z@``#)P```N````+2```%'P``!1L```48@``$\```!.@```3F@``) M$R(``!,2```3"```$2```!$````0^@``$&H```]F```/1@``"YX```-X```#L M<```"O(```FZ```)3```"30```B*```(:```![8```=^```#8@```UH```KDU M```)I```"1P```D$```([@``"$8```@D```(`@``!T8```<.```&U@```TP`F M``-$```*R```!2````4"```"_```"Q0```L.```+`@``"M@```K2```*L@``" M"HH```J$```*>@``"F0```I2```*3```"B````H,```*````">P```FT```)+ MG@``"9(```F,```)?@``!L0```:X```&L@``!J8```:@```&D@``!H8```9J[ M```&7@``!DX```8^```&-```!AH```82```&!@``!?P```7P```%Y```!=H`X M``6J```%F```!8X```6````%=@``!4H```4^```%.```!3````4J```%&@``Q M!1(```4,```$\@``!-P```2D```$@```!$````0J```$)````_H```/T```#[ MW@```\(```,X```#,````R0```,<```##@```P8```+V```"[@```N(```+:9 M```"S@```KP```$2````#@````````/R```#ZP````,```/R```#Z@```:8`> M````````````````````````````````````````````````````````````` M````````````````````````````````````````````````````````````` M`&1O<RYL:6)R87)Y`'938W)E96X`````:$-O<'ER:6=H="`Q.3@X(&)Y($1A: M=FED92!0+B!#97)V;VYE+"!A;&P@<FEG:'1S(')E<V5R=F5D``````!T3#IV> M4V-R965N+4AA;F1L97(`````L@``````````````````````````````````] M"@!#86XG="!O<&5N("<E<R<`)6QD`%5S86=E.B`@)7,``%930U)%14X@=VED% M=&@@:&5I9VAT(%MS8W)E96Y=`%=I9'1H(&%N9"!(96EG:'0@87)E(')E<75IW M<F5D"E5S86=E.B`@)7,``%930U)%14X@=VED=&@@:&5I9VAT(%MS8W)E96Y=3 M`%1O;R!M86YY(&%R9W5M96YT<P``4V-R965N(&AE:6=H="!A;F0@=VED=&@@I M;75S="!B92!P;W-I=&EV90``5V%R;FEN9SH@('-I>F5S(&=R96%T97(@=&AAH M;B`Q,#(T(&UA>2!C875S92!";&ET=&5R('!R;V)L96US"@!#86XG="!,;V%D^ M("<E<R<`=F5R<VEO;B!M:7-M871C:"!W:71H("<E<R<``"<E<R<@<F5P;W)T& M<R!A('9E<G-I;VX@;6ES;6%T8V@`0V%N)W0@0W)E871E(%!O<G0`0V%N)W0@# M0W)E871E(%-T86YD87)D($E/($)L;V-K``!I;G!U="YD979I8V4``$-A;B=TC M($]P96X@)VEN<'5T+F1E=FEC92<`17)R;W(@9G)O;2!$;TE/.B`@)6QD`'93O M8W)E96Y0;W)T`&EN='5I=&EO;BYL:6)R87)Y`&=R87!H:6-S+FQI8G)A<GD`L M`$-A;B=T($-R96%T92!-97-S86=E(%!O<G0@)R5S)P``)7,@=B5D+B5D+B5DV M($EN<W1A;&QE9`H`)7,@86QR96%D>2!A8W1I=F4@;VX@<V-R965N("<E<R<*M M`"5S(%)E;6]V960*`%-E=$9U;F-T:6]N('9E8W1O<G,@:&%V92!B965N(&-H5 M86YG960A"@`E<R!.;W0@4F5M;W9E9`H``````$-A;B=T(&9I;F0@<V-R965N= M("<E<R<``$)A:6P@3W5T(2`@4V5R:6]U<R!4<F]U8FQE(%)E<W1O<FEN9R!"= M:70@4&QA;F5S(0``0V%N)W0@1V5T($UE;6]R>2!F;W(@3&%R9V4@0FET(%!L4 M86YE<P!(96QP(2`@1F%I;&5D('1O(%)E<W1O<F4@0FET(%!L86YE<R$``&QA- M>65R<RYL:6)R87)Y``!L87EE<G,N;&EB<F%R>0````````(``"`@("`@("`@; M("@H*"@H("`@("`@("`@("`@("`@("`@2!`0$!`0$!`0$!`0$!`0$(2$A(2$T MA(2$A(00$!`0$!`0@8&!@8&!`0$!`0$!`0$!`0$!`0$!`0$!`0$0$!`0$!""` M@H*"@H("`@("`@("`@("`@("`@("`@("`A`0$!`@("`@("`@("`@*"@H*"@@: M("`@("`@("`@("`@("`@("!($!`0$!`0$!`0$!`0$!`0A(2$A(2$A(2$A!`0@ M$!`0$!"!@8&!@8$!`0$!`0$!`0$!`0$!`0$!`0$!`1`0$!`0$(*"@H*"@@(": M`@("`@("`@("`@("`@("`@("$!`0$"``````````,#$R,S0U-C<X.6%B8V1E` M9@`````-"@````"`````!78`````````````````````````````````````X M``````68````````````````````````````````````````````````````= M````````````````````````````````````8V]N.C$P+S$P+S,R,"\X,"\`U M*@``````````````````````````````````````````*"HJ(%5S97(@06)O7 M<G0@4F5Q=65S=&5D("HJ``#__P````X`#@````````7P`````/__````!``$! M``````````````8,0T].5$E.544``/__````!``$````````!C0`````04)/) M4E0`__\````$``0````````&4@````!I;G1U:71I;VXN;&EB<F%R>0``````* M```````````````````````````$`````^P````)`````@``!F0```9*```&^ A,```!A@```5V```%5````,0```"N````<`````````/RY `` end SHAR_EOF if test 23444 -ne "`wc -c vScreen.uu`" then echo shar: error transmitting vScreen.uu '(should have been 23444 characters)' fi echo shar: extracting wMax.uu '(14318 characters)' cat << \SHAR_EOF > wMax.uu begin 17 wMax M```#\P`````````"``````````$```C-```!C````^D```C-2.=^_DOO`#0D9 M2"0`2?D`````+'@`!"E.`$`I3P!,0JP`2)/)3J[^VB9`*6L`F``X2JL`K&<`) M`'`@#9"M``0&@````(`I0``$80`!>B!K`*S1R-'((F@`$-/)T\D@`G(`$ADI0 M20!4T(%2@$)G4H`"0/_^G\!5@$)W"``@`E.`U($?L@``(`!3@E'(__8?O``@( M(`!3@A^Q(``@`%'*__@B3R\)8```;"EK`#H`!`:L````@``$80`!#F$``/@I& M0`!(+P`D0"`J`"1G$BQL!`0@0"(H```I00`X3J[_@B(J`"!G&B0\```#[4ZND M_^(I0`!09PKEB"!`)V@`"`"D(&P`2"\(2&P``"!H`"0I:``$`%1'^0``!!ARU M`"`\````AF`")L%1R/_\3KH2.'``8`0@+P`$+P`@+``L9P0@0$Z03KH';BQXI M``0B;`0$3J[^8DJL!`QG"")L!`Q.KOYB2JP$$&<((FP$$$ZN_F)*K`!89P@B[ M;`!83J[^8DJL`$AG)"(L`#QG!$ZN_]PB+`!09P1.KO_<+'@`!$ZN_WPB;`!(* M3J[^AB`?+FP`3$S??WY.=7!D8(!!ZP!<3J[^@$'K`%Q.KOZ,3G5#[`!<<`!.@ MKOW8*4`$!&?:3G4``+_L``1E`![>2&P`:$ZZ!ZY83TAX``I.N@/D6$].=4Y5. M``"_[``$90`>O"\M``A(;`",+RT`#$ZZ"3!/[P`,4X!G`F&\3EU.=4Y5__Q(R MYP`"O^P`!&4`'HY*K0`(9SX@;0`(2A!G-B!L!`@K:``\__Q*K?_\9S(@;?_\. M2J@`%F<2+RT`""\H`!9.N@Q24$]*@&<6(&W__"M0__Q@U")L!`@@:0`X*TC_= M_$JM__QF("QX``1.KO]V+RT`"$AL`)!.N@;\4$](>``*3KH#,EA/("W__$S?_ M0`!.74YU3E7__$CG``*_[``$90`=_$JM``AG/B!M``A*$&<V(&T`#"MH``3_) M_$JM__QG,B!M__Q*J``@9Q(O+0`(+R@`($ZZ"\!03TJ`9Q8@;?_\*U#__@ M(FP$""!I`#0K2/_\2JW__&8J+'@`!$ZN_W8@;0`,+R@`%B\M``A(;`"H3KH&T M8D_O``Q(>``*3KH"EEA/+'@`!$ZN_W8@+?_\3-]``$Y=3G5.5?_H2.<P`K_L- M``1E`!U8D<@K2/_X*TC__"(M``@,@0````-M"`R!````!6\$80#^4B!M``POI M*``$2&W_]&$`_F!03R!M``PO*``(2&W_\&$`_DY03R(M``@,@0````-O&"!M5 M``Q*J``,9PX@:``,$!!*`&<$*TC__`R!````!&\8(&T`#$JH`!!G#B!H`!`0F M$$H`9P0K2/_X0^P`T'``+'@`!$ZN_=@I0`0(2JP$"&<``-@L>``$3J[_?"\M( M__AA`/X(6$\O`"\M__PK0/_H80#^BE!/*T#_["QX``1.KO]V(FW_["!I`"XOT M*``6+RD`($AL`.).N@5&3^\`#'``(&W_[#`H`!1R`#(H`!8T*``02,(V*``2% M2,,O`R\"+P$O`$AL`0!.N@463^\`%$JM__1F!DJM__!G1"QX``1.KO]\("W_) M]"!M_^PQ0``4("W_\#%``!8L>``$3J[_=G``(&W_[#`H`!1R`#(H`!8O`2\`B M2&P!+$ZZ!,9/[P`,(FP$""QX``1.KOYB3-]`#$Y=3G5(YS`R+'D```0((&\`1 M&")O`!PD;P`@)F\`)"`O`"@B+P`L)"\`,"8O`#1.KOZD3-],#$YU3E7__$CGB M(`!P`"E``!A*K0`(:R0D+0`(M*P#<&P:(@+G@4'L!/`B2-/!2I%G"B("YX'1E MP2`(8`AP"2E``KAP`$S?``1.74YU!`@@:0`T*TC__$JM__QF*BQX``1.KO]V, M2JP$"&820^P"I'``+'@`!$ZN_=@I0`0(*6P`5`)82'@`*$AX`/IP`"\`+P!(H M;`*0+P!(;`)V+P!.NO\R3^\`($AX`!1.NALR6$].=2\`+RW__"M`_^AA`$Y5. M__1(YP`@1>P"V+3\``!G-@@J``(`&V8J""H``0`;9R(@*@`$D*H`$"M`__A*4 M@&<2+P`O*@`0+RH`'$ZZ"8I/[P`,)%)@Q"\M``A.NAK26$],WP0`3EU.=0``A M+P$O`$AL<&%.50``+RT`"&$&6$].74YU3E7_[$CG`R`N+0`(2H=N!G``8```_ MQ`R'````"&P"?@@@!R`'5H#D@.6`+@!![`-H)%`K2/_XM/P``&=.(BH`!+*'2 M;3ZRAV82(%(B;?_X(HB?K`-L(`I@``"`("H`!)"'#(`````(;1H@2B!*T<<@. MDB%```0B;?_X(HB?K`-L(`I@5BM*__@D4F"L(`<B+`04(`?0@5.`3KH9&"(L. M!!1.NAGL4(`L`"`&(`96@.2`Y8`L`"\&3KH`HEA/*T#_\$J`9Q0O!B\`3KH#, M(E!/+P=A`/\P6$]@`G``3-\$P$Y=3G4```````````````!.50``(BT`"`R!D M````,&T,#($````Y;@1P`6`"<`!.74YU``!.5?_V+RT`"$ZZ_;I83RM`__9*> M@&8$</]@*B\M`!`O+0`,(&W_]B\H``1.NAK\3^\`#"M`__I*K``89P1P_V`$L M("W_^DY=3G5.5?_X("T`"`:`````#"]````@+P``<@`L>``$3J[_.BM`__Q*R MK?_\9@1P`&`T("T`"`:`````#"!M__PA0``(+PA(;`0880`!"%!/2JP#7&8&_ M*6W__`-<(&W__-#\``P@"$Y=3G5.5?_\+RT`"&&06$\K0/_\2H!F!C!\__\@F M"$Y=3G5.5?_X2.<!(&$``(!P`"E``!`I0``(*4``#"E``V@I0`-L*4`#8"E`Q M`UPI0`-D2JP#5&=,("P$%"(L`U32@%.!(`$B+`043KH7C"(L!!1.NAA@4(`NT M`"`'(`=6@.2`Y8`N`"\'80#_%EA/)$"T_```9@1P_V`,+P<O"DZZ`7A03W``& M3-\$@$Y=3G5.5?_X*VP$&/_\2JW__&<D(&W__"M0__@B;?_\(&W__"`H``@LJ M>``$3J[_+BMM__C__D<@I2`0<*4@$&$Y=3G5.50``2.<`(")M``@@:0`$@ M(FT`#"-(``21R"*()&T`"$J29@(DB4JJ``1G!B!J``0@B25)``1,WP0`3EU.- M=0``````````````````````````````````````````<&%.50``4JP$)%.L. M`P8@+`,&2H!K%"!L`OY2K`+^("T`"!"`<@`2$&`8("T`"`*`````_TAL`OHO7 M`$ZZ!GI03R(`3EU.=4Y5``!"K`0D2&T`#"\M``A(>O^J3KH05$_O``Q(;`+ZF M2'C__TZZ!DI03R`L!"1.74YU``!.5?_X+RT`"$ZZ^TI83RM`__Q*@&8$</]@R M*B\M`!`O+0`,(&W__"\H``1.NA?L3^\`#"M`__A*K``89P1P_V`$("W_^$Y=3 M3G5"K`0D2&UP84Y5__P@+0`,+P`O+0`(*T#__&$&4$].74YU3E7_Z$CG(3`N[ M+0`,2H=N!G#_8```\@R'````"&P"?@@@!R`'5H#D@.6`+@`@;0`(*TC_]-''\ MWZP#;$/L`V@D42M(__`K2?_XM/P``&<``*(@2B`J``0@2M'`*TC_["0M__"U5 MPF,6(FW_]"**(T<`!"9M__@FB7``8```C+7"9AXB4B9M__0FB2`J``0B`-*'9 M)T$`!")M__@BBW``8&@B;?_TL\AD")^L`VQP_V!8L\AF+DJ29PXB$K2!8PB?T MK`-L</]@0M^J``1*DF<0M))F#"!"("@`!-&J``0DD'``8"8K2O_X*VW_[/_HQ M)%)@`/]:(&W_^""M__21R")M__0BB"-'``0@"$S?#(1.74YU3E7_Z$CG,``I) M;0`(!"A![0`00JW__"M(_^P@;0`,2A!G``$F<``0$%*M``Q![`%)T<`2$"M`8 M__@(`0`#9MP,@````"5F``#((&T`#`P0`"5F,G``(&P$*!`04JP$*"M`__A!K M[`%)T>W_^!`0"````V;@#*T````E__AGGB`M__Q@``#*(&T`#`P0`"IG#"MM2 M_^S_Z%BM_^Q@"I/)4JT`#"M)_^A"K?_T+RW_Z$AM__1(>@"B+RT`#$ZZ#J)/. M[P`0*T#_\$J`5L%$`4B!2,%*@6<$*T``#"8M__0,@_____]F&$J!9P12K?_\] M2JW__&\&("W__&!6</]@4DJ#9P13K`0H2JW_\&8X("W__&`^<``@;`0H$!`K& M0/_T4JP$*$'L`4G1[?_T$!`(```#9N`B+?_TLJW_^&<`_N(@+?_\8`Q2K?_\# M8`#^U"`M__Q,WP`,3EU.=4Y5__QP`"!L!"@0$%*L!"@K0/_\2H!F`G#_3EU.O M=0``)(E*J@`$<&%.5?_P2.<@`'``*T#__"M`__@K0/_P(&T`"!(0#`$`+68,! M<`$K0/_X*T#_\&`,#`$`*V8&<`$K0/_X<``@;0`((BW_^!`P&``O`$ZZ^BQ8H M3TJ`9RH@+?_\<@I.NA.\(BW_^%*M__AT`"!M``@4,!@`T(($@````#`K0/_\2 M8+Q*K?_P9P1$K?_\(&T`#""M__P@+?_X3-\`!$Y=3G5.5?_R2.<`($(M__MP7 M""M`__Q3K?_\("T`#"(``H$````/0>P"O-'!(BW__!N0&//H@"M```P"@`__B M__\K0``,2JT`#&;,0>W_\]'M__PB2"1M``@4V6;\<`B0K?_\3-\$`$Y=3G5.P M50``+RT`#"\M``AAC%!/3EU.=0``3E7_\$CG("!P"RM`__!"+?__4ZW_\"`M: M``PB``*!````!P:!````,"0M__`;@2CTYH`K0``,`H`?____*T``#$JM``QF" MS$'M__31[?_P(D@D;0`(%-EF_'`+D*W_\$S?!`1.74YU3E4``"\M``PO+0`(C M88Q03TY=3G4``$Y5__!(YP`@<`LK0/_P0BW__U.M__`@+0`,<@I.NA&\!H$`] M```P("W_\!N!"/0@+0`,<@I.NA&D*T``#$JM``QFT$'M__31[?_P(D@D;0`(7 M%-EF_'`+D*W_\$S?!`!.74YU```@;P`$(F\`"'``<@`0&!(9#```86T*#```D M>FX$!```(`P!`&%M"@P!`'IN!`0!`""0@68$2@%FU$YU``!.5?_X2.<!`"!MM M``Q*&&;\4XB1[0`,+@@@;0`(2AAF_%.(D>T`""`((FT`"-/`*TG_^"(M`!"^_ M@6,"+@$@!R!M``Q@`A+84X!D^B!M__A",'@`("T`"$S?`(!.74YU``!.5?_\, M*VT`"/_\(&W__$H09QAP`!`0+P!.N@`:6$\@;?_\$(!2K?_\8.`@+0`(3EU.D M=0``("\`!`P``&%M"@P``'IN!`0``"!.=0``3E7_^"\M``A.NO5V6$\K0/_X% M2H!F!'#_8$@@;?_X""@``P`#9Q)(>``"0J<O+0`(3KKWBD_O``PO+0`0+RT`H M#"!M__@O*``$3KH22D_O``PK0/_\2JP`&&<$</]@!"`M__Q.74YU``!.5?_L/ M2.<@("1M``P@+0`((BH`&"0!`H(````Q*T#_]$J"9P9P_V```L@@`0*```"`R M`%;"1`)(@DC"&T+__DJJ`!1F``"2"`$``F8``(IP`"5```P,K?____\`"&<`, M`I(O"DZZ`I183TJ`9PP(Z@`%`!MP_V```GH(Z@`!`!M*+?_^9PX@*@`4(@!$G M@25!``Q@""`J`!0E0``,4ZH`#"`J``Q*@&L4(&H`!%*J``0@+0`($(!R`!(09 M8!8@+0`(`H````#_+PHO`&$`_S903R(`(`%@``(<""H``@`;9V@B+0`(#('_K M____9@9P`&```@(;0?__2BW__F<F#($````*9AYP`B\`2&P"T"\J`!PK0/_PI M3KK^A$_O``PK0/_X8!QP`2\`2&W__R\J`!PK0/_P3KK^9D_O``PK0/_X</\K& M0``(8```_`CJ``$`&THM__YG5B(M``@,@?____]G2E2J``P,@0````IF(B!JG M``12J@`$$+P`#4JJ``QK#"\*2'C__V$`_GQ03U*J``P@:@`$4JH`!"`M``@0` M@$JJ``QK``%0</\K0``(("H`!)"J`!`K0/_P2H!G``""""H`!@`:9UY(>``"< M0J<O*@`<3KKUAD_O``PK0/_L2BW__F="4ZW_["`M_^Q*@&LV0J<O`"\J`!Q.' MNO5@3^\`#$AX``%(;?_]+RH`'$ZZ][Q/[P`,2JP`&&8,$"W__0P``!IGP$YQ* M+RW_\"\J`!`O*@`<3KK]:D_O``PK0/_X8`9P`"M`__@B+?_X#('_____9@@(! MZ@`%`!M@#+*M__!G!@CJ``0`&THM__YG#B`J`!0B`$2!)4$`#&`8""H``@`;I M9PAP`"5```Q@""`J`!0E0``,(&H`$"5(``0B+0`(#('_____9RQ3J@`,("H`8 M#$J`:Q`@:@`$4JH`!!"!<``0$&`0`H$```#_+PHO`6$`_3A03R`J`!@"@```T M`#!*@&<$</]@$B(M__0,@?____]F!'``8`(@`4S?!`1.74YU3E4``"!M``A*1 MJ``49PP(*``#`!MF!'``8#PO+`%$3KKS'%A/(&T`""%```0A0``02H!F"G`,R M*4`"N'#_8!@A;`%$`!0"J/____,`&'``(4``#"%```A.74YU`````IW@``!P% M84Y5__!(YP$P)&T`"`RL````(`0L;```D!(2#`$`(&<,#`$`"6<&#`$`"F8$X M4HI@Z$H29W(@+`0LY8!2K`0L0>P$--'`*TC__`P2`")F*%**((I*$F<*#!(`+ M(F<$4HI@\DH29@Q(>``!3KH-*EA/8)Q"$E**8)8@;?_\((I*$F<8$A(,`0`@P M9Q`,`0`)9PH,`0`*9P12BF#D2A)F`F`(0A)2BF``_VA*K`0L9@8@;`!(8`1!. M[`0T*4@$,$JL!"QF``"&0>P#0")(1^P$M";9)MDFV2;9-I$F;`!((FL`)$AXN M`"@O*0`$2&P$M$ZZ^J1/[P`,0>P$M"(()#P```/N+&P$!$ZN_^(I0`3T("P$N M]"E`!/QR!"E!!/@I0`4$*4$%`.6`*T#_\)/)+'@`!$ZN_MHK0/_T(&W_\")M: M__0C:``(`*1^`&`R+&P$!$ZN_\HI0`3T+&P$!$ZN_\0I0`3\0>P#4B(()#P`4 M``/M+&P$!$ZN_^(I0`4$?@0@!R`'`(```(`!@:P$\"`'(`<`@```@`*!K`3X* M`*P``(`#!0!*K`+49P1P`&`&(#P``(``+@!"K`+T(`<@!P"``````2E``O!P) M`2E``Q8@!R`'`(`````"*4`#$G`"*4`#."`'(`<`@````(`I0`,T0?H,1BE(3 M`#`O+`0P+RP$+$ZZ[?Q03T*G3KKP<EA/3-\,@$Y=3G4````89@P0+?_]#```( M&F?`3G$O+?_P+RH`$$Y5_\1(YR`@<``;?``@__MR`"M!__9T_RM"__)![?_0+ M&T#_\1M`__P;0/_]&T#__AM`__\K0?_D*T'_Z"M(_\P@;0`(2A!G5!`0`D``5 M_W(874%K2+![$`AF]D[[$`0`(V```"P`(&```!X`*V```!``+6````(;?``!E M__]@&!M\``'__F`0&WP``?_]8`@;?``!__Q.<5*M``A@I"!M``@2$`P!`#!FN M"AM\`##_^U*M``@@;0`(#!``*F82(FT`#"!16)$K4/_V4JT`"&`02&W_]B\(B M3KKV7E!/T:T`""!M``@2$`P!`"YF,%*M``@@;0`(#!``*F82(FT`#"!16)$K# M4/_R4JT`"&`02&W_\B\(3KKV(E!/T:T`""!M``@2$`P!`&QF#!M\``'_\5*M# M``A@"@P!`&AF!%*M``@@;0`($!!2K0`(&T#_\`)``/]R,%U!:P`";K![$`AFC M]$[[$`0`8V```D0`<V```?P`6&```8H`>&```80`<&```6P`;V```1H`=6``& M`/``9&````)*+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[$J`:@IR* M`42M_^PK0?_H2JW_Z&<$<"U@#$HM__YG!'`K8`)P(!M`_]!P`!`M__XB+?_HX M@H!P`!`M__V"@$J!9PA2K?_,4JW_Y"\M_^PO+?_,3KKVQE!/*T#_R$JM__)JH M!G`!*T#_\B`M_\@B+?_RDH`K0?_$2H%O,B!M_\PB2-/!(@`D2&`"$MI3@63ZX M<``0+?_[(BW_Q"!M_\Q@`A#`4X%D^B`M__(K0/_(T:W_Y$'M_]`K2/_,2BW_W M_V<``5P;?``@__M@``%22BW_\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@$"M`@ M_^Q@`/]>2BW_\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@$"M`_^Q*+?_\9Q(@7 M;?_,$+P`,%*M_\QR`2M!_^0O`"\M_\Q.NO5P4$\K0/_(8`#_)!M\`##_^TJM/ M__)J!G`(*T#_\DHM__%G#")M``P@45B1(!!@"B)M``P@45B1(!`K0/_L2BW_/ M_&<>(&W_S!"\`#!2K?_,(&W_S!"\`'A2K?_,<@(K0?_D+P`O+?_,3KKTBE!/# M*T#_R`PM`%C_\&8`_K1(;?_03KKV:EA/8`#^IB)M``P@45B1(E`K2?_,LOP`U M`&8(0>P#6"M(_\P@;?_,2AAF_%.(D>W_S"M(_^1*K?_R:RXB+?_RL<%O)BM!^ M_^1@('`!*T#_Y")M``P@45B1(!`;0/_00BW_T6`&<`!@``"H(BW_Y"0M__:TZ M@6P(<``K0/_V8`23K?_V2BW__V="4ZW_Y"`M_^1*@&L8<``@;?_,$!!2K?_,. M+P`@;0`03I!83V#<4ZW_]B`M__9*@&M4<``0+?_[+P`@;0`03I!83V#B4ZW_& M]B`M__9*@&L2<``0+?_[+P`@;0`03I!83V#B4ZW_Y"`M_^1*@&L8<``@;?_,A M$!!2K?_,+P`@;0`03I!83V#<("T`"$S?!`1.74YU3E7_]BMM`!#_]B!M``P0+ M$%*M``P;0/__2@!G=@P``"5F,"!M``P,$``E9@92K0`,8"`O+0`(2&W_]B\(X M80#[3$_O``PK0/_Z2H!G!BM```Q@N$JL`#1G)@@M``?__V<><``0+?__+P`@, M;0`(3I!83R!M``P0$%*M``P;0/__<``0+?__+P`@;0`(3I!83V``_WI.74YU2 M2JW_\&8&<&%.5?_@2.<@`'``<@`@;0`($A!![`%)T<$2$"M`__0K0/_P"`$`Y M`F<X("W_\'(*3KH&"'(`(&T`"!(04JT`"`*!````#]"!*T#_\'``(&T`"!`0! M0>P!2='`$!`(```"9L@@;0`($A`,`0!L9@Q2K0`(<`$K0/_T8`H,`0!H9@12S MK0`((&T`#$Z0*T#__"!M``@,$`!C9QQ![`%)T>W__!`0"````V<,(&T`#$Z0N M*T#__&#D(BW__`R!_____V8,(&T`$""!<`!@``2,(&T`"!`0`D``_W(V74%KT M``1FL'L0"&;T3OL0!`!S8``$#@!C8``#I`!H8``#)`!88``!I`!X8``!G@!PF M8``!C`!O8```]@!D8```#@!U8````D*M_^Q@2G``*T#_[$JM__!G"@RM````U M`?_P;S0D+?_\#((````M9P@,@@```"MF(`R"````+68$<O]@`B(`*T'_["!M& M``Q.D%.M__`K0/_\0>P!22`M__S1P!(0"`$``F8,(&T`$""`<`!@``/,0JW_X MZ"`M_^AR"DZZ!*(B+?_\`H$````/T($K0/_H(&T`#$Z0*T#__%.M__`@+?_P- M2H!G$$'L`4G1[?_\$!`(```"9L!*K0`49P`#<$JM_^QJ!$2M_^A*K?_T9A`B0 M;0`4(%$@+?_H((!@``-0(FT`%"!1(*W_Z&```T(B+?_\#($````P;0@,@0``O M`#=O#"!M`!`@@7``8``#,D*M_^@@+?_HYX`B+?_\`H$````'T($K0/_H(&T`J M#$Z0*T#__%.M__`@+?_P2H!G%"(M__P,@0```#!M"`R!````-V_`2JT`%&<`A M`M9*K?_T9A`B;0`4(%$@+?_H((!@``+`(FT`%"!1(*W_Z&```K)*K?_P9@9P@ M""M`__!![`%)("W__-'`$A`(`0`'9@P@;0`0((!P`&```I@K;?_\__@@;0`,@ M3I`K0/_\2JW_\&<*#*T````"__!O2@RM````,/_X9D`,@````'AG"`R`````# M6&8P(&T`#$Z00>P!22)(T\`2$2M`__P(`0`'9@PB;0`0(H!P`&```CA"K?_H% M4ZW_\&!,0>P!22`M__@B2-/`$A$(`0`"9PPB``2!````,"M!_^@B2-/`$A$(& M`0``9PPB``2!````-RM!_^C1P!(0"`$``6<*!(````!7*T#_Z%.M__`@+?_PK M2H!G;D'L`4D@+?_\(DC3P!(1"`$`!V=:(BW_Z.F!(DC3P!01*T'_Z`@"``)G7 M#"(`!($````P@ZW_Z")(T\`2$0@!``!G#"(`!($````W@ZW_Z-'`$A`(`0`!( M9PH$@````%>!K?_H(&T`#$Z0*T#__&"&2JT`%&<``5!*K?_T9A`B;0`4(%$@[ M+?_H((!@``$Z(FT`%"!1(*W_Z&```2Q![`%)("W__-'`$A`(`0`"9@P@;0`0P M((!P`&```1Y"K?_L("W_['(*3KH!]"(M__P"@0````_0@2M`_^P@;0`,3I`K_ M0/_\4ZW_\"`M__!*@&<00>P!2='M__P0$`@```)FP$JM`!1G``#"(FT`%"!1O M("W_[#"`8```LDJM`!1G#B)M`!0@45*1("W__!"`4ZW_\"`M__!*@&\D(&T`> M#$Z0*T#__`R`_____V<22JT`%&?<(FT`%"!14I$0@�(BW__`R!_____V8*9 M(&T`$""!<`!@9B!M``A2B"`(8%Q*K0`49PXB;0`4(%%2D2`M__P0@"!M``Q.] MD"M`__Q2@&<<4ZW_\"`M__!*@&<00>P!2='M__P0$`@```-GPB)M`!0@44(0A M8`1P`&`0(&T`$""M__P@;0`(4H@@"$S?``1.74YU2H!J```>1(!*@6H```Q$X M@6$``"!$@4YU80``&$2`1(%.=4J!:@``#$2!80``!D2`3G4O`DA!-`%F```BZ M2$!(04A"-`!G```&A,$P`DA`-`"$P3`"2$(R`B0?3G4O`W80#$$`@&0```;AZ MF5%##$$(`&0```;IF5E##$$@`&0```;EF55#2D%K```&XYE30S0`YJA(0D)"5 MYJI(0X#!-@`P`C0#2$'$P9""9```"%-#T(%D_G(`,@-(0^>X2$##0"8?)!]." M=2YY````3$ZY```%?"\\````%$ZY```%U"!"(D,D`"8!2$)(0\3!QL#`P=1#9 M2$)"0M"")@DD"$YU3E7_^$CG`2!^`$7L!/"^K`-P;!Y*DF<4""H``@`#9P)@) M"B\J``1.N@'X6$]2AU"*8-PO+0`,+RT`"$ZZW_Y03TS?!(!.74YU3E7__'``Y M(CP``#``+'@`!$ZN_LX"@```,``K0/_\2H!F!'``8"1*K``P9QH@;``P3I!*) M@&8$<`!@$$*G2'@`%$ZZ_W903R`M__Q.74YU8;!.=0``2JP$"&820^P#\'``Y M+'@`!$ZN_=@I0`0(*6P`5`.P2'@`/$AX`/IP`"\`+P!(;`/<2&P#PDAL`Z0OD M`$ZZXQQ/[P`@4X!G!'#_8`)P`$YU``!.5?_\2.<!`$JL`#!G!$ZZ_TQ"K``8? M(BT`""0M``PF+0`0+&P$!$ZN_]8N``R'_____V82+&P$!$ZN_WPI0``8<`4IS M0`*X(`=,WP"`3EU.=4Y5__Q(YP$`2JP`,&<$3KK^_$*L`!@B+0`()"T`#"8MH M`!`L;`0$3J[_T"X`#(?_____9A(L;`0$3J[_?"E``!AP!2E``K@@!TS?`(!.` M74YU3E7_^$CG,0)*K``P9P1.NOZL0JP`&"`M`!!3@"]``!`B+0`()"T`#"8O= M`!`L;`0$3J[_OBX`#(?_____9A(L;`0$3J[_?"E``!AP%BE``K@@+0`0#(``( M```"9QP,@`````%G"DJ`9B(@+0`,8!P@!R`'T*T`#&`2(BT`"'0`=@`L;`0$4 M3J[_ODYQ3-]`C$Y=3G4``$Y5``!*K``P9P1.NOX<(BT`""QL!`1.KO_<<`!._ M74YU```#[`````(````````@T```(,0````$`````0``(+X```3N```!$@``- M``X````````#\@```^H```$&````````````````````````````````````W M````````````````````````````````````````````````````````````` M``````````````````````````!D;W,N;&EB<F%R>0!5<V%G93H@(%=-05@@U M>"!Y(%MW:6YD;W<@6W-C<F5E;EU="@`E;&0`0V%N)W0@9FEN9"!S8W)E96X@& M)R5S)PH`0V%N)W0@9FEN9"!W:6YD;W<@)R5S)R!O;B!S8W)E96X@)R5S)PH`) M`&EN='5I=&EO;BYL:6)R87)Y``I7:6YD;W<@)R5S)R!O;B!38W)E96X@)R5SJ M)PH``"`@($]L9"!-87@Z("`H)60L)60I("`@($]L9"!-:6XZ("`H)60L)60IK M"@``("`@3F5W($UA>#H@("@E9"PE9"D*"@`````"```@("`@("`@("`H*"@HY M*"`@("`@("`@("`@("`@("`@($@0$!`0$!`0$!`0$!`0$!"$A(2$A(2$A(2$( M$!`0$!`0$(&!@8&!@0$!`0$!`0$!`0$!`0$!`0$!`0$!$!`0$!`0@H*"@H*"V M`@("`@("`@("`@("`@("`@("`@(0$!`0("`@("`@("`@("@H*"@H("`@("`@P M("`@("`@("`@("`@2!`0$!`0$!`0$!`0$!`0$(2$A(2$A(2$A(00$!`0$!`00 M@8&!@8&!`0$!`0$!`0$!`0$!`0$!`0$!`0$0$!`0$!""@H*"@H("`@("`@("4 M`@("`@("`@("`@("`A`0$!`@````__\````.``X````````````````J*B!3; M=&%C:R!/=F5R9FQO=R`J*@``__\````$``0````````"8````DQ%6$E4``#_Z M_P````0`!`````````**`````&EN='5I=&EO;BYL:6)R87)Y`````````#`QZ M,C,T-38W.#EA8F-D968`````#0H`````@`````+Z````````````````````4 M```````````````````````#'```````````````````````````````````? M`````````````````````````````````````````````````````&-O;CHQK M,"\Q,"\S,C`O.#`O`"H`````````````````````````````````````````T M`"@J*B!5<V5R($%B;W)T(%)E<75E<W1E9"`J*@``__\````.``X````````#V M=`````#__P````0`!``````````````#D$-/3E1)3E5%``#__P````0`!```X M``````.X`````$%"3U)4`/__````!``$`````````]8`````:6YT=6ET:6]NU M+FQI8G)A<GD````````````````````````````$`````^P````)`````0``@ J`^@```/.```#M````YP```+Z```"V````IP```*&```"@@````````/R' `` end SHAR_EOF if test 14318 -ne "`wc -c wMax.uu`" then echo shar: error transmitting wMax.uu '(should have been 14318 characters)' fi # End of shell archive exit 0
ain@j.cc.purdue.edu (Patrick White) (06/25/88)
Submitted by: dpvc@tut.cc.rochester.edu (David P. Cervone) Summary: Make virtual screens lager than will fit on monitor. Poster Boy: Patrick White (ain@j.cc.purdue.edu) Archive Name: binaries/amiga/volume8/vscreen.b.sh.2of2.Z tested but not compiled. NOTES: The source is for Lattice -- I didn't even try compiling it. It is a bit messy when resizing in that it dosen't seem to send window resize messages when you change the size of a window, or when you exit vscreen, but it works otherwise.. I feel it might be useful despite these bugs so I'm posting it anyway. . -- Pat White (co-moderator comp.sources/binaries.amiga) ARPA/UUCP: j.cc.purdue.edu!ain BITNET: PATWHITE@PURCCVM PHONE: (317) 743-8421 U.S. Mail: 320 Brown St. apt. 406, West Lafayette, IN 47906 ======================================== # This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # wList.uu # wMove.uu # wSize.uu # This archive created: Wed Jun 22 11:38:45 1988 # By: Patrick White (PUCC Land, USA) echo shar: extracting wList.uu '(11062 characters)' cat << \SHAR_EOF > wList.uu begin 17 wList M```#\P`````````"``````````$```;B```!,````^D```;B2.=^_DOO`#0DC M2"0`2?D`````+'@`!"E.`$`I3P!,0JP`2)/)3J[^VB9`*6L`F``X2JL`K&<`) M`'`@#9"M``0&@````(`I0``$80`!>B!K`*S1R-'((F@`$-/)T\D@`G(`$ADI0 M20!4T(%2@$)G4H`"0/_^G\!5@$)W"``@`E.`U($?L@``(`!3@E'(__8?O``@( M(`!3@A^Q(``@`%'*__@B3R\)8```;"EK`#H`!`:L````@``$80`!#F$``/@I& M0`!(+P`D0"`J`"1G$BQL`I@@0"(H```I00`X3J[_@B(J`"!G&B0\```#[4ZNV M_^(I0`!09PKEB"!`)V@`"`"D(&P`2"\(2&P``"!H`"0I:``$`%1'^0```JQR' M`"`\````A6`")L%1R/_\3KH/Z'``8`0@+P`$+P`@+``L9P0@0$Z03KH&FBQX` M``0B;`*83J[^8DJL`J!G"")L`J!.KOYB2JP"I&<((FP"I$ZN_F)*K`!89P@B5 M;`!83J[^8DJL`$AG)"(L`#QG!$ZN_]PB+`!09P1.KO_<+'@`!$ZN_WPB;`!(* M3J[^AB`?+FP`3$S??WY.=7!D8(!!ZP!<3J[^@$'K`%Q.KOZ,3G5#[`!<<`!.@ MKOW8*4`"F&?:3G4``+_L``1E`!<R2&P`:$ZZ!MI83TAX``I.N@,06$].=4Y5$ M__Q(YP`"O^P`!&4`%PQ*K0`(9U`@;0`(2A!G2"QX``1.KO]\(&P"G"MH`#S_. M_$JM__QG)B!M__Q*J``69Q(O+0`(+R@`%DZZ"B103TJ`9PH@;?_\*U#__/ M+'@`!$ZN_W9@&BQX``1.KO]\(&P"G"MH`#S__"QX``1.KO]V2JW__&8@+'@`; M!$ZN_W8O+0`(2&P`@$ZZ!C)03TAX``I.N@)H6$\@+?_\3-]``$Y=3G5.50``3 MO^P`!&4`%EY*K0`(9QH@;0`(2J@`(&<0+R@`($AL`)A.N@7R4$]@"DAL`*).5 MN@7F6$].74YU3E4``+_L``1E`!8D2JT`"&<:(&T`"$JH`!9G$"\H`!9(;`"R2 M3KH%N%!/8`I(;`"X3KH%K%A/3EU.=4Y5__R_[``$90`5ZB!M``@K:``$__Q*J MK?_\9Q0O+?_\80#_:EA/(&W__"M0__Q@YDY=3G5.5?_X2.<``K_L``1E`!6R# M0JW__`RM`````@`(;P1A`/YH#*T````!``AO&"!M``Q*J``$9PX@:``$$!!*J M`&<$*TC__$/L`,1P`"QX``1.KOW8*4`"G$JL`IQG7B\M__QA`/Y$6$](;`#6` M*T#_^$ZZ!0!83TJM__AG*B\M__AA`/\26$\O+?_X80#_0EA/2JW__&<&0JW_J M^&#:(&W_^"M0__A@T$AL`-A.N@3&6$\B;`*<+'@`!$ZN_F),WT``3EU.=0``F M2.<P,BQY```"G"!O`!@B;P`<)&\`("9O`"0@+P`H(B\`+"0O`#`F+P`T3J[^. MI$S?3`Q.=4Y5__Q(YR``<``I0``82JT`"&LD)"T`"+2L`@1L&B("YX%![`.`7 M(DC3P4J19PHB`N>!T<$@"&`(<`DI0`%,<`!,WP`$3EU.=?__________`/]C. MC`#_9'@`_V0<``"-T4JL`IQF$D/L`3AP`"QX``1.KOW8*4`"G"EL`%0`[$AX] M`"A(>`#Z<``O`"\`2&P!)"\`2&P!"B\`3KK_,D_O`"!(>``43KH46EA/3G7_P M____`/]CC`#_9'A.5?_T2.<`($7L`6RT_```9S8(*@`"`!MF*@@J``$`&V<B, M("H`!)"J`!`K0/_X2H!G$B\`+RH`$"\J`!Q.N@@.3^\`#"128,0O+0`(3KH3+ M^EA/3-\$`$Y=3G4````!+1\``'!A3E4``"\M``AA!EA/3EU.=4Y5_^Q(YP,@_ M+BT`"$J';@9P`&```,0,AP````AL`GX((`<@!U:`Y(#E@"X`0>P!_"10*TC_V M^+3\``!G3B(J``2RAVT^LH=F$B!2(FW_^"*(GZP"`"`*8```@"`J``20APR`L M````"&T:($H@2M''()(A0``$(FW_^"*(GZP"`"`*8%8K2O_X)%)@K"`'(BP"4 MJ"`'T(%3@$ZZ$D`B+`*H3KH3%%"`+``@!B`&5H#D@.6`+``O!DZZ`*)83RM`X M__!*@&<4+P8O`$ZZ`R)03R\'80#_,%A/8`)P`$S?!,!.74YU2&P`F$ZZ!?)0; M3V`*3E4``"(M``@,@0```#!M#`R!````.6X$<`%@`G``3EU.=0``3E7_]B\M& M``A.NOVZ6$\K0/_V2H!F!'#_8"HO+0`0+RT`#"!M__8O*``$3KH4)$_O``PKA M0/_Z2JP`&&<$</]@!"`M__I.74YU3E7_^"`M``@&@`````PO0```("\``'(`J M+'@`!$ZN_SHK0/_\2JW__&8$<`!@-"`M``@&@`````P@;?_\(4``""\(2&P"H MK&$``0A03TJL`?!F!BEM__P!\"!M__S0_``,(`A.74YU3E7__"\M``AAD%A/: M*T#__$J`9@8P?/__(`A.74YU3E7_^$CG`2!A``"`<``I0``0*4``""E```PI? M0`'\*4`"`"E``?0I0`'P*4`!^$JL`>AG3"`L`J@B+`'HTH!3@2`!(BP"J$ZZ( M$+0B+`*H3KH1B%"`+@`@!R`'5H#D@.6`+@`O!V$`_Q983R1`M/P``&8$</]@6 M#"\'+PI.N@%X4$]P`$S?!(!.74YU3E7_^"ML`JS__$JM__QG)"!M__PK4/_XY M(FW__"!M__P@*``(+'@`!$ZN_RXK;?_X__Q@UI'(*4@"L"E(`JQ.74YU3E4`? M`$CG`"`B;0`((&D`!")M``PC2``$D<@BB"1M``A*DF8")(E*J@`$9P8@:@`$] M((DE20`$3-\$`$Y=3G4````"``AO!&$`_F@,K0````$`"&\8(&T`#$JH``1G[ M#G!A3E4``%*L`KA3K`&:("P!FDJ`:Q0@;`&24JP!DB`M``@0@'(`$A!@&"`MR M``@"@````/](;`&.+P!.N@3^4$\B`$Y=3G5.50``0JP"N$AM``PO+0`(2'K_E MJDZZ#MA/[P`,2&P!CDAX__].N@3.4$\@+`*X3EU.=0``3E7_^"\M``A.NOM*; M6$\K0/_\2H!F!'#_8"HO+0`0+RT`#"!M__PO*``$3KH1%$_O``PK0/_X2JP`` M&&<$</]@!"`M__A.74YU0JP"N$AM<&%.5?_\("T`#"\`+RT`""M`__QA!E!/L M3EU.=4Y5_^A(YR$P+BT`#$J';@9P_V```/(,AP````AL`GX((`<@!U:`Y(#EA M@"X`(&T`""M(__31Q]^L`@!#[`'\)%$K2/_P*TG_^+3\``!G``"B($H@*@`$M M($K1P"M(_^PD+?_PM<)C%B)M__0BBB-'``0F;?_X)HEP`&```(RUPF8>(E(F/ M;?_T)HD@*@`$(@#2AR=!``0B;?_X(HMP`&!H(FW_]+/(9`B?K`(`</]@6+/(' M9BY*DF<.(A*T@6,(GZP"`'#_8$+?J@`$2I)G$+229@P@0B`H``31J@`$))!P` M`&`F*TK_^"MM_^S_Z"128`#_6B!M__@@K?_TD<@B;?_T(H@C1P`$(`A,WPR$E M3EU.=4Y5__!(YR``<``K0/_\*T#_^"M`__`@;0`($A`,`0`M9@QP`2M`__@K" M0/_P8`P,`0`K9@9P`2M`__AP`"!M``@B+?_X$#`8`"\`3KK[J%A/2H!G*B`M> M__QR"DZZ#F`B+?_X4JW_^'0`(&T`"!0P&`#0@@2`````,"M`__Q@O$JM__!GC M!$2M__P@;0`,(*W__"`M__A,WP`$3EU.=4Y5__)(YP`@0BW_^W`(*T#__%.M< M__P@+0`,(@`"@0````]![`%0T<$B+?_\&Y`8\^B`*T``#`*`#____RM```Q*& MK0`,9LQ![?_ST>W__")()&T`"!399OQP")"M__Q,WP0`3EU.=4Y5```O+0`,N M+RT`"&&,4$].74YU``!.5?_P2.<@('`+*T#_\$(M__]3K?_P("T`#"(``H$`. M```'!H$````P)"W_\!N!*/3F@"M```P"@!____\K0``,2JT`#&;,0>W_]-'M\ M__`B2"1M``@4V6;\<`N0K?_P3-\$!$Y=3G5.50``+RT`#"\M``AAC%!/3EU.] M=0``3E7_\$CG`"!P"RM`__!"+?__4ZW_\"`M``QR"DZZ#&`&@0```#`@+?_P# M&X$(]"`M``QR"DZZ#$@K0``,2JT`#&;00>W_]-'M__`B2"1M``@4V6;\<`N0D MK?_P3-\$`$Y=3G4``"!O``0B;P`(<`!R`!`8$AD,``!A;0H,``!Z;@0$```@: M#`$`86T*#`$`>FX$!`$`()"!9@1*`6;43G4``$Y5__A(YP$`(&T`#$H89OQ3` MB)'M``PN""!M``A*&&;\4XB1[0`((`@B;0`(T\`K2?_X(BT`$+Z!8P(N`2`'8 M(&T`#&`"$MA3@&3Z(&W_^$(P>``@+0`(3-\`@$Y=3G4``$Y5__PK;0`(__P@+ M;?_\2A!G&'``$!`O`$ZZ`!I83R!M__P0@%*M__Q@X"`M``A.74YU```@+P`$Q M#```86T*#```>FX$!```($YU``!.5?_X+RT`"$ZZ]O)83RM`__A*@&8$</]@] M2"!M__@(*``#``-G$DAX``)"IR\M``A.NOD&3^\`#"\M`!`O+0`,(&W_^"\H* M``1.N@SN3^\`#"M`__Q*K``89P1P_V`$("W__$Y=3G4``$Y5_^Q(YR`@)&T`& M#"`M``@B*@`8)`$"@@```#$K0/_T2H)G!G#_8``"R"`!`H```(``5L)$`DB": M2,(;0O_^2JH`%&8``)((`0`"9@``BG``)4``#`RM_____P`(9P`"DB\*3KH"[ ME%A/2H!G#`CJ``4`&W#_8``">@CJ``$`&THM__YG#B`J`!0B`$2!)4$`#&`(K M("H`%"5```Q3J@`,("H`#$J`:Q0@:@`$4JH`!"`M``@0@'(`$A!@%B`M``@"+ M@````/\O"B\`80#_-E!/(@`@`6```AP(*@`"`!MG:"(M``@,@?____]F!G``W M8``"`AM!__]*+?_^9R8,@0````IF'G`"+P!(;`%D+RH`'"M`__!.NOZ$3^\`K M#"M`__A@''`!+P!(;?__+RH`'"M`__!.NOYF3^\`#"M`__AP_RM```A@``#\B M".H``0`;2BW__F=6(BT`"`R!_____V=*5*H`#`R!````"F8B(&H`!%*J``007 MO``-2JH`#&L,+PI(>/__80#^?%!/4JH`#"!J``12J@`$("T`"!"`2JH`#&L`7 M`5!P_RM```@@*@`$D*H`$"M`__!*@&<``(((*@`&`!IG7DAX``)"IR\J`!Q.= MNO<"3^\`#"M`_^Q*+?_^9T)3K?_L("W_[$J`:S9"IR\`+RH`'$ZZ]MQ/[P`,O M2'@``4AM__TO*@`<3KKY.$_O``Q*K``89@P0+?_]#```&F?`3G$O+?_P+RH`3 M$"\J`!Q.NOUJ3^\`#"M`__A@!G``*T#_^"(M__@,@?____]F"`CJ``4`&V`,3 MLJW_\&<&".H`!``;2BW__F<.("H`%"(`1($E00`,8!@(*@`"`!MG"'``)4``W M#&`(("H`%"5```P@:@`0)4@`!"(M``@,@?____]G+%.J``P@*@`,2H!K$"!JO M``12J@`$$(%P`!`08!`"@0```/\O"B\!80#].%!/("H`&`*`````,$J`9P1PN M_V`2(BW_]`R!_____V8$<`!@`B`!3-\$!$Y=3G5.50``(&T`"$JH`!1G#`@H; M``,`&V8$<`!@/"\L`-Q.NO286$\@;0`((4``!"%``!!*@&8*<`PI0`%,</]@L M&"%L`-P`%`*H____\P`8<``A0``,(4``"$Y=3G4``&<``I(O"G!A3E7_\$CG! M`3`D;0`(#*P````@`KQL``"0$A(,`0`@9PP,`0`)9P8,`0`*9@12BF#H2A)G+ M<B`L`KSE@%*L`KQ![`+$T<`K2/_\#!(`(F8H4HH@BDH29PH,$@`B9P12BF#R) M2A)F#$AX``%.N@?.6$]@G$(24HI@EB!M__P@BDH29Q@2$@P!`"!G$`P!``EG' M"@P!``IG!%**8.1*$F8"8`A"$E**8`#_:$JL`KQF!B!L`$A@!$'L`L0I2`+`- M2JP"O&8``(9![`'4(DA'[`-$)MDFV2;9)MDVD29L`$@B:P`D2'@`*"\I``1(@ M;`-$3KKZI$_O``Q![`-$(@@D/````^XL;`*83J[_XBE``X0@+`.$*4`#C'($2 M*4$#B"E``Y0I00.0Y8`K0/_PD\DL>``$3J[^VBM`__0@;?_P(FW_]"-H``@`X MI'X`8#(L;`*83J[_RBE``X0L;`*83J[_Q"E``XQ![`'F(@@D/````^TL;`*8$ M3J[_XBE``Y1^!"`'(`<`@```@`&!K`.`(`<@!P"```"``H&L`X@`K```@`,#8 MD$JL`6AG!'``8`8@/```@``N`$*L`8@@!R`'`(`````!*4`!A'`!*4`!JB`': M(`<`@`````(I0`&F<`(I0`',(`<@!P"`````@"E``<A!^@;J*4@`,"\L`L`OY M+`*\3KKP1E!/0J=.NO'N6$],WPR`3EU.=0``)4``#"!J`!`E2``$(BT`"`R!# M_____V<L3E7_Q$CG("!P`!M\`"#_^W(`*T'_]G3_*T+_\D'M_]`;0/_Q&T#_+ M_!M`__T;0/_^&T#__RM!_^0K0?_H*TC_S"!M``A*$&=4$!`"0`#_<AA=06M(* ML'L0"&;V3OL0!``C8```+``@8```'@`K8```$``M8````AM\``'__V`8&WP`8 M`?_^8!`;?``!__U@"!M\``'__$YQ4JT`"&"D(&T`"!(0#`$`,&8*&WP`,/_[L M4JT`""!M``@,$``J9A(B;0`,(%%8D2M0__92K0`(8!!(;?_V+PA.NO9>4$_1C MK0`((&T`"!(0#`$`+F8P4JT`""!M``@,$``J9A(B;0`,(%%8D2M0__)2K0`(_ M8!!(;?_R+PA.NO8B4$_1K0`((&T`"!(0#`$`;&8,&WP``?_Q4JT`"&`*#`$`Z M:&8$4JT`""!M``@0$%*M``@;0/_P`D``_W(P74%K``)NL'L0"&;T3OL0!`!C8 M8``"1`!S8``!_`!88``!B@!X8``!A`!P8``!;`!O8``!&@!U8```\`!D8```& M`DHM__%G#")M``P@45B1(!!@"B)M``P@45B1(!`K0/_L2H!J"G(!1*W_["M!? M_^A*K?_H9P1P+6`,2BW__F<$<"M@`G`@&T#_T'``$"W__B(M_^B"@'``$"W_= M_8*`2H%G"%*M_\Q2K?_D+RW_["\M_\Q.NO;&4$\K0/_(2JW_\FH&<`$K0/_R- M("W_R"(M__*2@"M!_\1*@6\R(&W_S")(T\$B`"1(8`(2VE.!9/IP`!`M__LBN M+?_$(&W_S&`"$,!3@63Z("W_\BM`_\C1K?_D0>W_T"M(_\Q*+?__9P`!7!M\( M`"#_^V```5)*+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[&``_UY*X M+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[$HM__QG$B!M_\P0O``P9 M4JW_S'(!*T'_Y"\`+RW_S$ZZ]7!03RM`_\A@`/\D&WP`,/_[2JW_\FH&<`@K? M0/_R2BW_\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@$"M`_^Q*+?_\9QX@;?_,D M$+P`,%*M_\P@;?_,$+P`>%*M_\QR`BM!_^0O`"\M_\Q.NO2*4$\K0/_(#"T`5 M6/_P9@#^M$AM_]!.NO9J6$]@`/ZF(FT`#"!16)$B4"M)_\RR_```9@A![`'L2 M*TC_S"!M_\Q*&&;\4XB1[?_,*TC_Y$JM__)K+B(M__*QP6\F*T'_Y&`@<`$K' M0/_D(FT`#"!16)$@$!M`_]!"+?_18`9P`&```*@B+?_D)"W_]K2!;`AP`"M`+ M__9@!).M__9*+?__9T)3K?_D("W_Y$J`:QAP`"!M_\P0$%*M_\PO`"!M`!!.8 MD%A/8-Q3K?_V("W_]DJ`:U1P`!`M__LO`"!M`!!.D%A/8.)3K?_V("W_]DJ`N M:Q)P`!`M__LO`"!M`!!.D%A/8.)3K?_D("W_Y$J`:QAP`"!M_\P0$%*M_\POX M`"!M`!!.D%A/8-P@+0`(3-\$!$Y=3G5.5?_V*VT`$/_V(&T`#!`04JT`#!M`H M__]*`&=V#```)68P(&T`#`P0`"5F!E*M``Q@("\M``A(;?_V+PAA`/M,3^\`H M#"M`__I*@&<&*T``#&"X2JP`-&<F""T`!___9QYP`!`M__\O`"!M``A.D%A/@ M(&T`#!`04JT`#!M`__]P`!`M__\O`"!M``A.D%A/8`#_>DY=3G7_____``!P$ M84J`:@``'D2`2H%J```,1(%A```@1(%.=6$``!A$@$2!3G5*@6H```Q$@6$`R M``9$@$YU+P)(030!9@``(DA`2$%(0C0`9P``!H3!,`)(0#0`A,$P`DA",@(D, M'TYU+P-V$`Q!`(!D```&X9E10PQ!"`!D```&Z9E90PQ!(`!D```&Y9E50TI!T M:P``!N.94T,T`.:H2$)"0N:J2$.`P38`,`(T`TA!Q,&0@F0```A30]"!9/YR5 M`#(#2$/GN$A`PT`F'R0?3G4N>0```$Q.N0``!*@O/````!1.N0``!0`@0B)#M M)``F`4A"2$/$P<;`P,'40TA"0D+0@B8))`A.=4Y5__A(YP$@?@!%[`.`OJP") M!&P>2I)G%`@J``(``V<"8`HO*@`$3KH!^%A/4H=0BF#<+RT`#"\M``A.NN>J( M4$],WP2`3EU.=4Y5__QP`"(\```P`"QX``1.KO[.`H```#``*T#__$J`9@1P$ M`&`D2JP`,&<:(&P`,$Z02H!F!'``8!!"ITAX`!1.NO]V4$\@+?_\3EU.=6&PY M3G4``$JL`IQF$D/L`H1P`"QX``1.KOW8*4`"G"EL`%0"1$AX`#Q(>`#Z<``OX M`"\`2&P"<$AL`E9(;`(X+P!.NNGT3^\`(%.`9P1P_V`"<`!.=0``3E7__$CG0 M`0!*K``P9P1.NO],0JP`&"(M``@D+0`,)BT`$"QL`IA.KO_6+@`,A_____]FH M$BQL`IA.KO]\*4``&'`%*4`!3"`'3-\`@$Y=3G5.5?_\2.<!`$JL`#!G!$ZZ. M_OQ"K``8(BT`""0M``PF+0`0+&P"F$ZN_]`N``R'_____V82+&P"F$ZN_WPI; M0``8<`4I0`%,(`=,WP"`3EU.=4Y5__A(YS$"2JP`,&<$3KK^K$*L`!@@+0`0E M4X`O0``0(BT`""0M``PF+P`0+&P"F$ZN_[XN``R'_____V82+&P"F$ZN_WPI= M0``8<!8I0`%,("T`$`R``````F<<#(`````!9PI*@&8B("T`#&`<(`<@!]"MR M``Q@$B(M``AT`'8`+&P"F$ZN_[Y.<4S?0(Q.74YU``!.50``2JP`,&<$3KK^( M'"(M``@L;`*83J[_W'``3EU.=0```^P````"````````&20``!D8````!```] M``$``!D2```$&@```1(````.`````````_(```/J````JP``````````````X M````````````````````````````````````````````````````````````` M````````````````````````````````````````````````9&]S+FQI8G)A^ M<GD`57-A9V4Z("!73$E35"!;<V-R965N70H`0V%N)W0@9FEN9"!S8W)E96X@] M)R5S)PH`("`@)R5S)PH``"`@(%M.;R!4:71L95T*```G)7,G"@!;3F\@5&ET: M;&5="@!I;G1U:71I;VXN;&EB<F%R>0`*``H```````(`__\````.``X`````N M```````````J*B!3=&%C:R!/=F5R9FQO=R`J*@``__\````$``0`````````8 M]````.!%6$E4``#__P````0`!`````````$>`````&EN='5I=&EO;BYL:6)RM M87)Y`````````#`Q,C,T-38W.#EA8F-D968`````#0H`````@`````&.````4 M```````````````````````````````````````!L```````````````````Q M````````````````````````````````````````````````````````````` M`````````&-O;CHQ,"\Q,"\S,C`O.#`O`"H`````````````````````````? M`````````````````"@J*B!5<V5R($%B;W)T(%)E<75E<W1E9"`J*@``__\`7 M```.``X````````""`````#__P````0`!``````````````")$-/3E1)3E5%W M``#__P````0`!`````````),`````$%"3U)4`/__````!``$`````````FH`^ M````:6YT=6ET:6]N+FQI8G)A<GD````````````````````````````$````* M`^P````)`````0```GP```)B```"2````C````&.```!;````3````$:```!@ )%@````````/R+ `` end SHAR_EOF if test 11062 -ne "`wc -c wList.uu`" then echo shar: error transmitting wList.uu '(should have been 11062 characters)' fi echo shar: extracting wMove.uu '(14496 characters)' cat << \SHAR_EOF > wMove.uu begin 17 wMove M```#\P`````````"``````````$```CG```!D0```^D```CG2.=^_DOO`#0D2 M2"0`2?D`````+'@`!"E.`$`I3P!,0JP`2)/)3J[^VB9`*6L`F``X2JL`K&<`) M`'`@#9"M``0&@````(`I0``$80`!>B!K`*S1R-'((F@`$-/)T\D@`G(`$ADI0 M20!4T(%2@$)G4H`"0/_^G\!5@$)W"``@`E.`U($?L@``(`!3@E'(__8?O``@( M(`!3@A^Q(``@`%'*__@B3R\)8```;"EK`#H`!`:L````@``$80`!#F$``/@I& M0`!(+P`D0"`J`"1G$BQL!!@@0"(H```I00`X3J[_@B(J`"!G&B0\```#[4ZNX M_^(I0`!09PKEB"!`)V@`"`"D(&P`2"\(2&P``"!H`"0I:``$`%1'^0``!"QR) M`"`\````AF`")L%1R/_\3KH2H'``8`0@+P`$+P`@+``L9P0@0$Z03KH'UBQXY M``0B;`083J[^8DJL!"!G"")L!"!.KOYB2JP$)&<((FP$)$ZN_F)*K`!89P@B? M;`!83J[^8DJL`$AG)"(L`#QG!$ZN_]PB+`!09P1.KO_<+'@`!$ZN_WPB;`!(* M3J[^AB`?+FP`3$S??WY.=7!D8(!!ZP!<3J[^@$'K`%Q.KOZ,3G5#[`!<<`!.@ MKOW8*4`$&&?:3G4``+_L``1E`!]&2&P`:$ZZ"!983TAX``I.N@1,6$].=4Y5= M``"_[``$90`?)"\M``A(;`"0+RT`#$ZZ"9A/[P`,4X!G`F&\3EU.=4Y5__Q(' MYP`"O^P`!&4`'O9*K0`(9SX@;0`(2A!G-B!L!!PK:``\__Q*K?_\9S(@;?_\* M2J@`%F<2+RT`""\H`!9.N@RZ4$]*@&<6(&W__"M0__Q@U")L!!P@:0`X*TC_9 M_$JM__QF("QX``1.KO]V+RT`"$AL`)1.N@=D4$](>``*3KH#FEA/("W__$S?4 M0`!.74YU3E7__$CG``*_[``$90`>9$JM``AG/B!M``A*$&<V(&T`#"MH``3_R M_$JM__QG,B!M__Q*J``@9Q(O+0`(+R@`($ZZ#"A03TJ`9Q8@;?_\*U#__) M(FP$'"!I`#0K2/_\2JW__&8J+'@`!$ZN_W8@;0`,+R@`%B\M``A(;`"L3KH&, MRD_O``Q(>``*3KH"_EA/+'@`!$ZN_W8@+?_\3-]``$Y=3G5.5?_H2.<X(K_L% M``1E`!W`D<@K2/_X*TC__"(M``@,@0````-M"`R!````!6\$80#^4B!M``PO1 M*``$2&W_]&$`_F!03R!M``PO*``(2&W_\&$`_DY03R(M``@,@0````-O&"!M5 M``Q*J``,9PX@:``,$!!*`&<$*TC__`R!````!&\8(&T`#$JH`!!G#B!H`!`0F M$$H`9P0K2/_X0^P`U'``+'@`!$ZN_=@I0`0<2JP$'&<``4`L>``$3J[_?"\M= M__AA`/X(6$\O`"\M__PK0/_H80#^BE!/*T#_["QX``1.KO]V(&W_[#`H``1(P MP$2`)"W_]+2`;`0K0/_T,"@`!DC`1(`D+?_PM(!L!"M`__`P*``$2,`B+?_T8 MTH`T*``(2,+2@B)M_^@V*0`,2,.R@V\(EH*6@"M#__0P*``&2,`B+?_PTH`TE M*``*2,+2@C8I``Y(P[*#;PB6@I:`*T/_\"1H`"XO*@`6+R@`($AL`.9.N@4V\ M3^\`#"!M_^PP*``$2,`R*``&2,$O`2\`2&P!!$ZZ!19/[P`,2JW_]&8&2JW_@ M\&=$(&W_[#`H``1(P"(M__30@30H``9(PB8M__#4@R\#+P$O`B\`2&P!($ZZN M!-I/[P`4(&W_["`M__0B+?_P+&P$'$ZN_U@B;`0<+'@`!$ZN_F),WT0<3EU.G M=4CG,#(L>0``!!P@;P`8(F\`'"1O`"`F;P`D("\`*"(O`"PD+P`P)B\`-$ZN' M_J1,WTP,3G5.5?_\2.<@`'``*4``&$JM``AK)"0M``BTK`.$;!HB`N>!0>P%8 M!")(T\%*D6<*(@+G@='!(`A@"'`)*4`"S'``3-\`!$Y=3G4`````````````Y M``````````````````!*K`0<9A)#[`*X<``L>``$3J[]V"E`!!PI;`!4`FQ(( M>``H2'@`^G``+P`O`$AL`J0O`$AL`HHO`$ZZ_S)/[P`@2'@`%$ZZ&S)83TYU* M````````````````3E7_]$CG`"!%[`+LM/P``&<V""H``@`;9BH(*@`!`!MGE M(B`J``20J@`0*T#_^$J`9Q(O`"\J`!`O*@`<3KH)BD_O``PD4F#$+RT`"$ZZ7 M&M)83TS?!`!.74YU``!G/B!M``AP84Y5```O+0`(80983TY=3G5.5?_L2.<#^ M("XM``A*AVX&<`!@``#$#(<````(;`)^""`'(`=6@.2`Y8`N`$'L`WPD4"M(9 M__BT_```9TXB*@`$LH=M/K*'9A(@4B)M__@BB)^L`X`@"F```(`@*@`$D(<,L M@`````AM&B!*($K1QR"2(4``!")M__@BB)^L`X`@"F!6*TK_^"128*P@!R(L3 M!"@@!]"!4X!.NAD8(BP$*$ZZ&>Q0@"P`(`8@!E:`Y(#E@"P`+P9.N@"B6$\K[ M0/_P2H!G%"\&+P!.N@,B4$\O!V$`_S!83V`"<`!,WP3`3EU.=2!M``A*$&<V, M(&T`#$Y5```B+0`(#($````P;0P,@0```#EN!'`!8`)P`$Y=3G4``$Y5__8OY M+0`(3KK]NEA/*T#_]DJ`9@1P_V`J+RT`$"\M``P@;?_V+R@`!$ZZ&OQ/[P`,! M*T#_^DJL`!AG!'#_8`0@+?_Z3EU.=4Y5__@@+0`(!H`````,+T```"`O``!R5 M`"QX``1.KO\Z*T#__$JM__QF!'``8#0@+0`(!H`````,(&W__"%```@O"$ALF M!"QA``$(4$]*K`-P9@8I;?_\`W`@;?_\T/P`#"`(3EU.=4Y5__PO+0`(89!83 M3RM`__Q*@&8&,'S__R`(3EU.=4Y5__A(YP$@80``@'``*4``$"E```@I0``,% M*4`#?"E``X`I0`-T*4`#<"E``WA*K`-H9TP@+`0H(BP#:-*`4X$@`2(L!"A.( MNA>,(BP$*$ZZ&&!0@"X`(`<@!U:`Y(#E@"X`+P=A`/\66$\D0+3\``!F!'#_P M8`PO!R\*3KH!>%!/<`!,WP2`3EU.=4Y5__@K;`0L__Q*K?_\9R0@;?_\*U#_C M^")M__P@;?_\("@`""QX``1.KO\N*VW_^/_\8-:1R"E(!#`I2`0L3EU.=4Y5; M``!(YP`@(FT`""!I``0B;0`,(T@`!)'((H@D;0`(2I)F`B2)2JH`!&<&(&H`Y M!""))4D`!$S?!`!.74YU```K2/_X*TC__"(M``@,@0````-M"`R!````!6\$U M80!P84Y5``!2K`0X4ZP#&B`L`QI*@&L4(&P#$E*L`Q(@+0`($(!R`!(08!@@B M+0`(`H````#_2&P##B\`3KH&>E!/(@!.74YU3E4``$*L!#A(;0`,+RT`"$AZ5 M_ZI.NA!43^\`#$AL`PY(>/__3KH&2E!/("P$.$Y=3G4``$Y5__@O+0`(3KK[0 M2EA/*T#__$J`9@1P_V`J+RT`$"\M``P@;?_\+R@`!$ZZ%^Q/[P`,*T#_^$JLH M`!AG!'#_8`0@+?_X3EU.=0```````G!A3E7__"`M``PO`"\M``@K0/_\8090" M3TY=3G5.5?_H2.<A,"XM``Q*AVX&</]@``#R#(<````(;`)^""`'(`=6@.2`+ MY8`N`"!M``@K2/_TT<??K`.`0^P#?"11*TC_\"M)__BT_```9P``HB!*("H`1 M!"!*T<`K2/_L)"W_\+7"8Q8B;?_T(HHC1P`$)FW_^":)<`!@``",M<)F'B)2M M)FW_]":)("H`!"(`TH<G00`$(FW_^"*+<`!@:")M__2SR&0(GZP#@'#_8%BSF MR&8N2I)G#B(2M(%C")^L`X!P_V!"WZH`!$J29Q"TDF8,($(@*``$T:H`!"209 M<`!@)BM*__@K;?_L_^@D4F``_UH@;?_X(*W_])'((FW_]"*((T<`!"`(3-\,1 MA$Y=3G5.5?_H2.<P`"EM``@$/$'M`!!"K?_\*TC_["!M``Q*$&<``29P`!`00 M4JT`#$'L`5W1P!(0*T#_^`@!``-FW`R`````)68``,@@;0`,#!``)68R<``@: M;`0\$!!2K`0\*T#_^$'L`5W1[?_X$!`(```#9N`,K0```"7_^&>>("W__&``? M`,H@;0`,#!``*F<,*VW_[/_H6*W_[&`*D\E2K0`,*TG_Z$*M__0O+?_H2&W_[ M]$AZ`*(O+0`,3KH.HD_O`!`K0/_P2H!6P40!2(%(P4J!9P0K0``,)BW_]`R#: M_____V882H%G!%*M__Q*K?_\;P8@+?_\8%9P_V!22H-G!%.L!#Q*K?_P9C@@+ M+?_\8#YP`"!L!#P0$"M`__12K`0\0>P!7='M__00$`@```-FX"(M__2RK?_X# M9P#^XB`M__Q@#%*M__Q@`/[4("W__$S?``Q.74YU3E7__'``(&P$/!`04JP$0 M/"M`__Q*@&8"</].74YU```DB4JJ``1P84Y5__!(YR``<``K0/_\*T#_^"M`K M__`@;0`($A`,`0`M9@QP`2M`__@K0/_P8`P,`0`K9@9P`2M`__AP`"!M``@B) M+?_X$#`8`"\`3KKZ+%A/2H!G*B`M__QR"DZZ$[PB+?_X4JW_^'0`(&T`"!0P_ M&`#0@@2`````,"M`__Q@O$JM__!G!$2M__P@;0`,(*W__"`M__A,WP`$3EU.J M=4Y5__)(YP`@0BW_^W`(*T#__%.M__P@+0`,(@`"@0````]![`+0T<$B+?_\" M&Y`8\^B`*T``#`*`#____RM```Q*K0`,9LQ![?_ST>W__")()&T`"!399OQPJ M")"M__Q,WP0`3EU.=4Y5```O+0`,+RT`"&&,4$].74YU``!.5?_P2.<@('`+" M*T#_\$(M__]3K?_P("T`#"(``H$````'!H$````P)"W_\!N!*/3F@"M```P") M@!____\K0``,2JT`#&;,0>W_]-'M__`B2"1M``@4V6;\<`N0K?_P3-\$!$Y=M M3G5.50``+RT`#"\M``AAC%!/3EU.=0``3E7_\$CG`"!P"RM`__!"+?__4ZW_. M\"`M``QR"DZZ$;P&@0```#`@+?_P&X$(]"`M``QR"DZZ$:0K0``,2JT`#&;0G M0>W_]-'M__`B2"1M``@4V6;\<`N0K?_P3-\$`$Y=3G4``"!O``0B;P`(<`!RR M`!`8$AD,``!A;0H,``!Z;@0$```@#`$`86T*#`$`>FX$!`$`()"!9@1*`6;46 M3G4``$Y5__A(YP$`(&T`#$H89OQ3B)'M``PN""!M``A*&&;\4XB1[0`((`@B) M;0`(T\`K2?_X(BT`$+Z!8P(N`2`'(&T`#&`"$MA3@&3Z(&W_^$(P>``@+0`(E M3-\`@$Y=3G4``$Y5__PK;0`(__P@;?_\2A!G&'``$!`O`$ZZ`!I83R!M__P03 M@%*M__Q@X"`M``A.74YU```@+P`$#```86T*#```>FX$!```($YU``!.5?_XM M+RT`"$ZZ]7983RM`__A*@&8$</]@2"!M__@(*``#``-G$DAX``)"IR\M``A.[ MNO>*3^\`#"\M`!`O+0`,(&W_^"\H``1.NA)*3^\`#"M`__Q*K``89P1P_V`$8 M("W__$Y=3G4``$Y5_^Q(YR`@)&T`#"`M``@B*@`8)`$"@@```#$K0/_T2H)GT M!G#_8``"R"`!`H```(``5L)$`DB"2,(;0O_^2JH`%&8``)((`0`"9@``BG``Y M)4``#`RM_____P`(9P`"DB\*3KH"E%A/2H!G#`CJ``4`&W#_8``">@CJ``$`T M&THM__YG#B`J`!0B`$2!)4$`#&`(("H`%"5```Q3J@`,("H`#$J`:Q0@:@`$H M4JH`!"`M``@0@'(`$A!@%B`M``@"@````/\O"B\`80#_-E!/(@`@`6```AP(K M*@`"`!MG:"(M``@,@?____]F!G``8``"`AM!__]*+?_^9R8,@0````IF'G`"> M+P!(;`+D+RH`'"M`__!.NOZ$3^\`#"M`__A@''`!+P!(;?__+RH`'"M`__!.Z MNOYF3^\`#"M`__AP_RM```A@``#\".H``0`;2BW__F=6(BT`"`R!_____V=*8 M5*H`#`R!````"F8B(&H`!%*J``00O``-2JH`#&L,+PI(>/__80#^?%!/4JH`T M#"!J``12J@`$("T`"!"`2JH`#&L``5!P_RM```@@*@`$D*H`$"M`__!*@&<`` M`(((*@`&`!IG7DAX``)"IR\J`!Q.NO6&3^\`#"M`_^Q*+?_^9T)3K?_L("W_P M[$J`:S9"IR\`+RH`'$ZZ]6!/[P`,2'@``4AM__TO*@`<3KKWO$_O``Q*K``8% M9@P0+?_]#```&F?`3G$O+?_P+RH`$"\J`!Q.NOUJ3^\`#"M`__A@!G``*T#_[ M^"(M__@,@?____]F"`CJ``4`&V`,LJW_\&<&".H`!``;2BW__F<.("H`%"(`H M1($E00`,8!@(*@`"`!MG"'``)4``#&`(("H`%"5```P@:@`0)4@`!"(M``@,S M@?____]G+%.J``P@*@`,2H!K$"!J``12J@`$$(%P`!`08!`"@0```/\O"B\!^ M80#].%!/("H`&`*`````,$J`9P1P_V`2(BW_]`R!_____V8$<`!@`B`!3-\$V M!$Y=3G5.50``(&T`"$JH`!1G#`@H``,`&V8$<`!@/"\L`5A.NO,<6$\@;0`(N M(4``!"%``!!*@&8*<`PI0`+,</]@&"%L`5@`%`*H____\P`8<``A0``,(4``4 M"$Y=3G4``&<``I(O"G!A3E7_\$CG`3`D;0`(#*P````@!$!L``"0$A(,`0`@O M9PP,`0`)9P8,`0`*9@12BF#H2A)G<B`L!$#E@%*L!$!![`1(T<`K2/_\#!(`= M(F8H4HH@BDH29PH,$@`B9P12BF#R2A)F#$AX``%.N@TJ6$]@G$(24HI@EB!M` M__P@BDH29Q@2$@P!`"!G$`P!``EG"@P!``IG!%**8.1*$F8"8`A"$E**8`#_L M:$JL!$!F!B!L`$A@!$'L!$@I2`1$2JP$0&8``(9![`-4(DA'[`3()MDFV2;9( M)MDVD29L`$@B:P`D2'@`*"\I``1(;`3(3KKZI$_O``Q![`3((@@D/````^XLE M;`083J[_XBE`!0@@+`4(*4`%$'($*4$%#"E`!1@I0044Y8`K0/_PD\DL>``$O M3J[^VBM`__0@;?_P(FW_]"-H``@`I'X`8#(L;`083J[_RBE`!0@L;`083J[_5 MQ"E`!1!![`-F(@@D/````^TL;`083J[_XBE`!1A^!"`'(`<`@```@`&!K`4$P M(`<@!P"```"``H&L!0P`K```@`,%%$JL`NAG!'``8`8@/```@``N`$*L`P@@: M!R`'`(`````!*4`#!'`!*4`#*B`'(`<`@`````(I0`,F<`(I0`-,(`<@!P"`` M````@"E``TA!^@Q&*4@`,"\L!$0O+`1`3KKME%!/0J=.NO!R6$],WPR`3EU.V M=0``2H!K$"!J``12J@`$$(%P`!`08!`"@0``3E7_Q$CG("!P`!M\`"#_^W(`$ M*T'_]G3_*T+_\D'M_]`;0/_Q&T#__!M`__T;0/_^&T#__RM!_^0K0?_H*TC_L MS"!M``A*$&=4$!`"0`#_<AA=06M(L'L0"&;V3OL0!``C8```+``@8```'@`KF M8```$``M8````AM\``'__V`8&WP``?_^8!`;?``!__U@"!M\``'__$YQ4JT`? M"&"D(&T`"!(0#`$`,&8*&WP`,/_[4JT`""!M``@,$``J9A(B;0`,(%%8D2M0[ M__92K0`(8!!(;?_V+PA.NO9>4$_1K0`((&T`"!(0#`$`+F8P4JT`""!M``@,^ M$``J9A(B;0`,(%%8D2M0__)2K0`(8!!(;?_R+PA.NO8B4$_1K0`((&T`"!(0C M#`$`;&8,&WP``?_Q4JT`"&`*#`$`:&8$4JT`""!M``@0$%*M``@;0/_P`D``2 M_W(P74%K``)NL'L0"&;T3OL0!`!C8``"1`!S8``!_`!88``!B@!X8``!A`!P] M8``!;`!O8``!&@!U8```\`!D8````DHM__%G#")M``P@45B1(!!@"B)M``P@F M45B1(!`K0/_L2H!J"G(!1*W_["M!_^A*K?_H9P1P+6`,2BW__F<$<"M@`G`@> M&T#_T'``$"W__B(M_^B"@'``$"W__8*`2H%G"%*M_\Q2K?_D+RW_["\M_\Q.9 MNO;&4$\K0/_(2JW_\FH&<`$K0/_R("W_R"(M__*2@"M!_\1*@6\R(&W_S")(O MT\$B`"1(8`(2VE.!9/IP`!`M__LB+?_$(&W_S&`"$,!3@63Z("W_\BM`_\C18 MK?_D0>W_T"M(_\Q*+?__9P`!7!M\`"#_^V```5)*+?_Q9PPB;0`,(%%8D2`0G M8`HB;0`,(%%8D2`0*T#_[&``_UY*+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8O MD2`0*T#_[$HM__QG$B!M_\P0O``P4JW_S'(!*T'_Y"\`+RW_S$ZZ]7!03RM`O M_\A@`/\D&WP`,/_[2JW_\FH&<`@K0/_R2BW_\6<,(FT`#"!16)$@$&`*(FT`O M#"!16)$@$"M`_^Q*+?_\9QX@;?_,$+P`,%*M_\P@;?_,$+P`>%*M_\QR`BM!' M_^0O`"\M_\Q.NO2*4$\K0/_(#"T`6/_P9@#^M$AM_]!.NO9J6$]@`/ZF(FT`. M#"!16)$B4"M)_\RR_```9@A![`-L*TC_S"!M_\Q*&&;\4XB1[?_,*TC_Y$JM: M__)K+B(M__*QP6\F*T'_Y&`@<`$K0/_D(FT`#"!16)$@$!M`_]!"+?_18`9P# M`&```*@B+?_D)"W_]K2!;`AP`"M`__9@!).M__9*+?__9T)3K?_D("W_Y$J`- M:QAP`"!M_\P0$%*M_\PO`"!M`!!.D%A/8-Q3K?_V("W_]DJ`:U1P`!`M__LO8 M`"!M`!!.D%A/8.)3K?_V("W_]DJ`:Q)P`!`M__LO`"!M`!!.D%A/8.)3K?_D_ M("W_Y$J`:QAP`"!M_\P0$%*M_\PO`"!M`!!.D%A/8-P@+0`(3-\$!$Y=3G5.` M5?_V*VT`$/_V(&T`#!`04JT`#!M`__]*`&=V#```)68P(&T`#`P0`"5F!E*MW M``Q@("\M``A(;?_V+PAA`/M,3^\`#"M`__I*@&<&*T``#&"X2JP`-&<F""T`9 M!___9QYP`!`M__\O`"!M``A.D%A/(&T`#!`04JT`#!M`__]P`!`M__\O`"!M" M``A.D%A/8`#_>DY=3G4@;0`,3I!P84Y5_^!(YR``<`!R`"!M``@2$$'L`5W1B MP1(0*T#_]"M`__`(`0`"9S@@+?_P<@I.N@8(<@`@;0`($A!2K0`(`H$````/5 MT($K0/_P<``@;0`($!!![`%=T<`0$`@```)FR"!M``@2$`P!`&QF#%*M``AP= M`2M`__1@"@P!`&AF!%*M``@@;0`,3I`K0/_\(&T`"`P0`&-G'$'L`5W1[?_\G M$!`(```#9PP@;0`,3I`K0/_\8.0B+?_\#('_____9@P@;0`0((%P`&``!(P@" M;0`($!`"0`#_<C9=06L`!&:P>Q`(9O1.^Q`$`'-@``0.`&-@``.D`&A@``,DI M`%A@``&D`'A@``&>`'!@``&,`&]@``#V`&1@```.`'5@```"0JW_[&!*<``K^ M0/_L2JW_\&<*#*T````!__!O-"0M__P,@@```"UG"`R"````*V8@#((````M^ M9@1R_V`"(@`K0?_L(&T`#$Z04ZW_\"M`__Q![`%=("W__-'`$A`(`0`"9@P@E M;0`0((!P`&```\Q"K?_H("W_Z'(*3KH$HB(M__P"@0````_0@2M`_^@@;0`,( M3I`K0/_\4ZW_\"`M__!*@&<00>P!7='M__P0$`@```)FP$JM`!1G``-P2JW_? M[&H$1*W_Z$JM__1F$")M`!0@42`M_^@@@&```U`B;0`4(%$@K?_H8``#0B(MI M__P,@0```#!M"`R!````-V\,(&T`$""!<`!@``,R0JW_Z"`M_^CG@"(M__P"L M@0````?0@2M`_^@@;0`,3I`K0/_\4ZW_\"`M__!*@&<4(BW__`R!````,&T(T M#($````W;\!*K0`49P`"UDJM__1F$")M`!0@42`M_^@@@&```L`B;0`4(%$@; MK?_H8``"LDJM__!F!G`(*T#_\$'L`5T@+?_\T<`2$`@!``=F#"!M`!`@@'``! M8``"F"MM__S_^"!M``Q.D"M`__Q*K?_P9PH,K0````+_\&]*#*T````P__AFA M0`R`````>&<(#(````!89C`@;0`,3I!![`%=(DC3P!(1*T#__`@!``=F#")M& M`!`B@'``8``".$*M_^A3K?_P8$Q![`%=("W_^")(T\`2$0@!``)G#"(`!($`! M```P*T'_Z")(T\`2$0@!``!G#"(`!($````W*T'_Z-'`$A`(`0`!9PH$@```" M`%<K0/_H4ZW_\"`M__!*@&=N0>P!72`M__PB2-/`$A$(`0`'9UHB+?_HZ8$BY M2-/`%!$K0?_H"`(``F<,(@`$@0```#"#K?_H(DC3P!(1"`$``&<,(@`$@0``# M`#>#K?_HT<`2$`@!``%G"@2`````5X&M_^@@;0`,3I`K0/_\8(9*K0`49P`!B M4$JM__1F$")M`!0@42`M_^@@@&```3HB;0`4(%$@K?_H8``!+$'L`5T@+?_\; MT<`2$`@!``)F#"!M`!`@@'``8``!'D*M_^P@+?_L<@I.N@'T(BW__`*!````T M#]"!*T#_["!M``Q.D"M`__Q3K?_P("W_\$J`9Q!![`%=T>W__!`0"````F;`3 M2JT`%&<``,(B;0`4(%$@+?_L,(!@``"R2JT`%&<.(FT`%"!14I$@+?_\$(!3D MK?_P("W_\$J`;R0@;0`,3I`K0/_\#(#_____9Q)*K0`49]PB;0`4(%%2D1"`H M8-`B+?_\#('_____9@H@;0`0((%P`&!F(&T`"%*((`A@7$JM`!1G#B)M`!0@] M45*1("W__!"`(&T`#$Z0*T#__%*`9QQ3K?_P("W_\$J`9Q!![`%=T>W__!`0. M"````V?"(FT`%"!10A!@!'``8!`@;0`0(*W__"!M``A2B"`(3-\`!$Y=3G5*! M@&H``!Y$@$J!:@``#$2!80``($2!3G5A```81(!$@4YU2H%J```,1(%A```&- M1(!.=2\"2$$T`68``")(0$A!2$(T`&<```:$P3`"2$`T`(3!,`)(0C(")!].S M=2\#=A`,00"`9```!N&944,,00@`9```!NF964,,02``9```!N6954-*06L`R M``;CF5-#-`#FJ$A"0D+FJDA#@,$V`#`"-`-(0<3!D()D```(4T/0@63^<@`R< M`TA#Y[A(0,-`)A\D'TYU+GD```!,3KD```7D+SP````43KD```8\($(B0R0`9 M)@%(0DA#Q,'&P,#!U$-(0D)"T((F"20(3G5.5?_X2.<!('X`1>P%!+ZL`X1L< M'DJ29Q0(*@`"``-G`F`*+RH`!$ZZ`?A83U*'4(I@W"\M``PO+0`(3KK?EE!/; M3-\$@$Y=3G5.5?_\<``B/```,``L>``$3J[^S@*````P`"M`__Q*@&8$<`!@% M)$JL`#!G&B!L`#!.D$J`9@1P`&`00J=(>``43KK_=E!/("W__$Y=3G5AL$YU< M``!*K`0<9A)#[`0$<``L>``$3J[]V"E`!!PI;`!4`\1(>``\2'@`^G``+P`OK M`$AL`_!(;`/62&P#N"\`3KKC'$_O`"!3@&<$</]@`G``3G4``$Y5__Q(YP$`' M2JP`,&<$3KK_3$*L`!@B+0`()"T`#"8M`!`L;`083J[_UBX`#(?_____9A(LG M;`083J[_?"E``!AP!2E``LP@!TS?`(!.74YU3E7__$CG`0!*K``P9P1.NO[\- M0JP`&"(M``@D+0`,)BT`$"QL!!A.KO_0+@`,A_____]F$BQL!!A.KO]\*4``E M&'`%*4`"S"`'3-\`@$Y=3G5.5?_X2.<Q`DJL`#!G!$ZZ_JQ"K``8("T`$%.`Y M+T``$"(M``@D+0`,)B\`$"QL!!A.KO^^+@`,A_____]F$BQL!!A.KO]\*4``. M&'`6*4`"S"`M`!`,@`````)G'`R``````6<*2H!F(B`M``Q@'"`'(`?0K0`,_ M8!(B+0`(=`!V`"QL!!A.KO^^3G%,WT",3EU.=0``3E4``$JL`#!G!$ZZ_APB\ M+0`(+&P$&$ZN_]QP`$Y=3G4```/L`````@```````"$X```A+`````0````!Z M```A)@``!58```$2````#@````````/R```#Z@```0L`````````````````Q M````````````````````````````````````````````````````````````` M`````````````````````````````````````````````&1O<RYL:6)R87)YI M`%5S86=E.B`@5TU/5D4@9'@@9'D@6W=I;F1O=R!;<V-R965N75T*```E;&0`] M0V%N)W0@9FEN9"!S8W)E96X@)R5S)PH`0V%N)W0@9FEN9"!W:6YD;W<@)R5SC M)R!O;B!S8W)E96X@)R5S)PH``&EN='5I=&EO;BYL:6)R87)Y``I7:6YD;W<@\ M)R5S)R!O;B!38W)E96X@)R5S)PH``"`@($]L9"!P;W-I=&EO;CH@("@E9"PE# M9"D*```@("!.97<@<&]S:71I;VXZ("`H)60L)60I"B`@($-H86YG960Z("`@M M("`@("@E9"PE9"D*"@```````@``("`@("`@("`@*"@H*"@@("`@("`@("`@- M("`@("`@("!($!`0$!`0$!`0$!`0$!`0A(2$A(2$A(2$A!`0$!`0$!"!@8&!4 M@8$!`0$!`0$!`0$!`0$!`0$!`0$!`1`0$!`0$(*"@H*"@@("`@("`@("`@("8 M`@("`@("`@("$!`0$"`@("`@("`@("`H*"@H*"`@("`@("`@("`@("`@("`@Z M($@0$!`0$!`0$!`0$!`0$!"$A(2$A(2$A(2$$!`0$!`0$(&!@8&!@0$!`0$![ M`0$!`0$!`0$!`0$!`0$!$!`0$!`0@H*"@H*"`@("`@("`@("`@("`@("`@("? M`@(0$!`0(````/__````#@`.````````````````*BH@4W1A8VL@3W9E<F9LV M;W<@*BH``/__````!``$`````````G0```)@15A)5```__\````$``0`````X M```"G@````!I;G1U:71I;VXN;&EB<F%R>0`````````P,3(S-#4V-S@Y86)C9 M9&5F``````T*`````(`````##@``````````````````````````````````7 M`````````S``````````````````````````````````````````````````S M``````````````````````````````````````!C;VXZ,3`O,3`O,S(P+S@P& M+P`J```````````````````````````````````````````H*BH@57-E<B!!U M8F]R="!297%U97-T960@*BH``/__````#@`.`````````X@`````__\````$D M``0``````````````Z1#3TY424Y510``__\````$``0````````#S`````!!F M0D]25`#__P````0`!`````````/J`````&EN='5I=&EO;BYL:6)R87)Y````P M````````````````````````!`````/L````"0````$```/\```#X@```\@`L ?``.P```##@```NP```*P```"F@```I8````````#\@$`. `` end SHAR_EOF if test 14496 -ne "`wc -c wMove.uu`" then echo shar: error transmitting wMove.uu '(should have been 14496 characters)' fi echo shar: extracting wSize.uu '(14665 characters)' cat << \SHAR_EOF > wSize.uu begin 17 wSize M```#\P`````````"``````````$```D&```!D````^D```D&2.=^_DOO`#0D1 M2"0`2?D`````+'@`!"E.`$`I3P!,0JP`2)/)3J[^VB9`*6L`F``X2JL`K&<`) M`'`@#9"M``0&@````(`I0``$80`!>B!K`*S1R-'((F@`$-/)T\D@`G(`$ADI0 M20!4T(%2@$)G4H`"0/_^G\!5@$)W"``@`E.`U($?L@``(`!3@E'(__8?O``@( M(`!3@A^Q(``@`%'*__@B3R\)8```;"EK`#H`!`:L````@``$80`!#F$``/@I& M0`!(+P`D0"`J`"1G$BQL!!0@0"(H```I00`X3J[_@B(J`"!G&B0\```#[4ZNT M_^(I0`!09PKEB"!`)V@`"`"D(&P`2"\(2&P``"!H`"0I:``$`%1'^0``!"AR% M`"`\````AF`")L%1R/_\3KH3''``8`0@+P`$+P`@+``L9P0@0$Z03KH(4BQXS M``0B;`043J[^8DJL!!QG"")L!!Q.KOYB2JP$(&<((FP$($ZN_F)*K`!89P@B+ M;`!83J[^8DJL`$AG)"(L`#QG!$ZN_]PB+`!09P1.KO_<+'@`!$ZN_WPB;`!(* M3J[^AB`?+FP`3$S??WY.=7!D8(!!ZP!<3J[^@$'K`%Q.KOZ,3G5#[`!<<`!.@ MKOW8*4`$%&?:3G4``+_L``1E`!_"2&P`:$ZZ"))83TAX``I.N@3(6$].=4Y5- M``"_[``$90`?H"\M``A(;`":+RT`#$ZZ"A1/[P`,4X!G`F&\3EU.=4Y5__Q(* MYP`"O^P`!&4`'W)*K0`(9SX@;0`(2A!G-B!L!!@K:``\__Q*K?_\9S(@;?_\# M2J@`%F<2+RT`""\H`!9.N@TV4$]*@&<6(&W__"M0__Q@U")L!!@@:0`X*TC_2 M_$JM__QF("QX``1.KO]V+RT`"$AL`)Y.N@?@4$](>``*3KH$%EA/("W__$S?7 M0`!.74YU3E7__$CG``*_[``$90`>X$JM``AG/B!M``A*$&<V(&T`#"MH``3_N M_$JM__QG,B!M__Q*J``@9Q(O+0`(+R@`($ZZ#*103TJ`9Q8@;?_\*U#__% M(FP$&"!I`#0K2/_\2JW__&8J+'@`!$ZN_W8@;0`,+R@`%B\M``A(;`"V3KH'3 M1D_O``Q(>``*3KH#>EA/+'@`!$ZN_W8@+?_\3-]``$Y=3G5.5?_D2.<X(K_LZ M``1E`!X\D<AP`2M`_^0K2/_X*TC__"(M``@,@0````-M"`R!````!F\$80#^T M3"!M``PO*``$2&W_]&$`_EI03R!M``PO*``(2&W_\&$`_DA03R(M``@,@0``& M``-O&"!M``Q*J``,9PX@:``,$!!*`&<$*TC__`R!````!&\8(&T`#$JH`!!G' M#B!H`!`0$$H`9P0K2/_X#($````%;P9P`"M`_^1#[`#><``L>``$3J[]V"E`) M!!A*K`089P`!J"QX``1.KO]\+RW_^&$`_?183R\`+RW__"M`_^AA`/YV4$\K@ M0/_L+'@`!$ZN_W8@;?_L,"@`!$C`,B@`"$C!)`'4@-2M__0B;?_H-BD`#$C#D MM(-O"):`EH$K0__T,"@`"$C`(BW_]-*`-"@`$$C"LH)L!I2`*T+_]#`H``A(P MP-"M__1R`#(H`!2P@6,82JW_Y&<2<``P*``4,B@`"$C!D($K0/_T,"@`!DC`K M,B@`"DC!)`'4@-2M__`V*0`.2,.T@V\(EH"6@2M#__`P*``*2,`B+?_PTH`TT M*``22,*R@FP&E(`K0O_P,"@`"DC`T*W_\'(`,B@`%K"!8QA*K?_D9Q)P`#`H9 M`!8R*``*2,&0@2M`__`D:``N+RH`%B\H`"!(;`#P3KH%-D_O``P@;?_L,"@`/ M"$C`,B@`"DC!+P$O`$AL`0Y.N@463^\`#$JM__1F!DJM__!G1"!M_^PP*``(+ M2,`B+?_TT($T*``*2,(F+?_PU(,O`R\!+P(O`$AL`29.N@3:3^\`%"!M_^P@1 M+?_T(BW_\"QL!!A.KO[@(FP$&"QX``1.KOYB3-]$'$Y=3G5(YS`R+'D```08E M(&\`&")O`!PD;P`@)F\`)"`O`"@B+P`L)"\`,"8O`#1.KOZD3-],#$YU3E7_& M_$CG(`!P`"E``!A*K0`(:R0D+0`(M*P#@&P:(@+G@4'L!0`B2-/!2I%G"B("X MYX'1P2`(8`AP"2E``LAP`$S?``1.74YU+'@`!$ZN_W8@;0`,+R@`%B\M``A(. M;`"V2JP$&&820^P"M'``+'@`!$ZN_=@I0`08*6P`5`)H2'@`*$AX`/IP`"\`3 M+P!(;`*@+P!(;`*&+P!.NO\R3^\`($AX`!1.NALR6$].=?WT6$\O`"\M__PK2 M0$Y5__1(YP`@1>P"Z+3\``!G-@@J``(`&V8J""H``0`;9R(@*@`$D*H`$"M`& M__A*@&<2+P`O*@`0+RH`'$ZZ"8I/[P`,)%)@Q"\M``A.NAK26$],WP0`3EU.M M=0``__`V*0`.<&%.50``+RT`"&$&6$].74YU3E7_[$CG`R`N+0`(2H=N!G``= M8```Q`R'````"&P"?@@@!R`'5H#D@.6`+@!![`-X)%`K2/_XM/P``&=.(BH`% M!+*';3ZRAV82(%(B;?_X(HB?K`-\(`I@``"`("H`!)"'#(`````(;1H@2B!*C MT<<@DB%```0B;?_X(HB?K`-\(`I@5BM*__@D4F"L(`<B+`0D(`?0@5.`3KH9` M&"(L!"1.NAGL4(`L`"`&(`96@.2`Y8`L`"\&3KH`HEA/*T#_\$J`9Q0O!B\`W M3KH#(E!/+P=A`/\P6$]@`G``3-\$P$Y=3G5*K?_T9@9*K?_P9T1.50``(BT`! M"`R!````,&T,#($````Y;@1P`6`"<`!.74YU``!.5?_V+RT`"$ZZ_;I83RM`T M__9*@&8$</]@*B\M`!`O+0`,(&W_]B\H``1.NAK\3^\`#"M`__I*K``89P1P( M_V`$("W_^DY=3G5.5?_X("T`"`:`````#"]````@+P``<@`L>``$3J[_.BM`0 M__Q*K?_\9@1P`&`T("T`"`:`````#"!M__PA0``(+PA(;`0H80`!"%!/2JP#, M;&8&*6W__`-L(&W__-#\``P@"$Y=3G5.5?_\+RT`"&&06$\K0/_\2H!F!C!\P M__\@"$Y=3G5.5?_X2.<!(&$``(!P`"E``!`I0``(*4``#"E``W@I0`-\*4`#F M<"E``VPI0`-T2JP#9&=,("P$)"(L`V32@%.!(`$B+`0D3KH7C"(L!"1.NAA@_ M4(`N`"`'(`=6@.2`Y8`N`"\'80#_%EA/)$"T_```9@1P_V`,+P<O"DZZ`7A0% M3W``3-\$@$Y=3G5.5?_X*VP$*/_\2JW__&<D(&W__"M0__@B;?_\(&W__"`H% M``@L>``$3J[_+BMM__C__D<@I2`0L*4@$*$Y=3G5.50``2.<`(")M``@@' M:0`$(FT`#"-(``21R"*()&T`"$J29@(DB4JJ``1G!B!J``0@B25)``1,WP0`! M3EU.=0``$+8L;`V`3J[_W'#_```````#'D@```04!PH*86EL<&%.50``4JP$G M-%.L`Q8@+`,62H!K%"!L`PY2K`,.("T`"!"`<@`2$&`8("T`"`*`````_TALA M`PHO`$ZZ!GI03R(`3EU.=4Y5``!"K`0T2&T`#"\M``A(>O^J3KH05$_O``Q(* M;`,*2'C__TZZ!DI03R`L!#1.74YU``!.5?_X+RT`"$ZZ^TI83RM`__Q*@&8$L M</]@*B\M`!`O+0`,(&W__"\H``1.NA?L3^\`#"M`__A*K``89P1P_V`$("W__ M^$Y=3G5"K`0T2&UP84Y5__P@+0`,+P`O+0`(*T#__&$&4$].74YU3E7_Z$CGO M(3`N+0`,2H=N!G#_8```\@R'````"&P"?@@@!R`'5H#D@.6`+@`@;0`(*TC_O M]-''WZP#?$/L`W@D42M(__`K2?_XM/P``&<``*(@2B`J``0@2M'`*TC_["0M= M__"UPF,6(FW_]"**(T<`!"9M__@FB7``8```C+7"9AXB4B9M__0FB2`J``0BD M`-*')T$`!")M__@BBW``8&@B;?_TL\AD")^L`WQP_V!8L\AF+DJ29PXB$K2!3 M8PB?K`-\</]@0M^J``1*DF<0M))F#"!"("@`!-&J``0DD'``8"8K2O_X*VW_X M[/_H)%)@`/]:(&W_^""M__21R")M__0BB"-'``0@"$S?#(1.74YU3E7_Z$CG# M,``I;0`(!#A![0`00JW__"M(_^P@;0`,2A!G``$F<``0$%*M``Q![`%9T<`26 M$"M`__@(`0`#9MP,@````"5F``#((&T`#`P0`"5F,G``(&P$.!`04JP$."M`. M__A![`%9T>W_^!`0"````V;@#*T````E__AGGB`M__Q@``#*(&T`#`P0`"IGV M#"MM_^S_Z%BM_^Q@"I/)4JT`#"M)_^A"K?_T+RW_Z$AM__1(>@"B+RT`#$ZZS M#J)/[P`0*T#_\$J`5L%$`4B!2,%*@6<$*T``#"8M__0,@_____]F&$J!9P124 MK?_\2JW__&\&("W__&!6</]@4DJ#9P13K`0X2JW_\&8X("W__&`^<``@;`0X# M$!`K0/_T4JP$.$'L`5G1[?_T$!`(```#9N`B+?_TLJW_^&<`_N(@+?_\8`Q2& MK?_\8`#^U"`M__Q,WP`,3EU.=4Y5__QP`"!L!#@0$%*L!#@K0/_\2H!F`G#_^ M3EU.=0``)(E*J@`$<&%.5?_P2.<@`'``*T#__"M`__@K0/_P(&T`"!(0#`$`; M+68,<`$K0/_X*T#_\&`,#`$`*V8&<`$K0/_X<``@;0`((BW_^!`P&``O`$ZZ) M^BQ83TJ`9RH@+?_\<@I.NA.\(BW_^%*M__AT`"!M``@4,!@`T(($@````#`K5 M0/_\8+Q*K?_P9P1$K?_\(&T`#""M__P@+?_X3-\`!$Y=3G5.5?_R2.<`($(MH M__MP""M`__Q3K?_\("T`#"(``H$````/0>P"S-'!(BW__!N0&//H@"M```P". M@`____\K0``,2JT`#&;,0>W_\]'M__PB2"1M``@4V6;\<`B0K?_\3-\$`$Y=M M3G5.50``+RT`#"\M``AAC%!/3EU.=0``3E7_\$CG("!P"RM`__!"+?__4ZW_N M\"`M``PB``*!````!P:!````,"0M__`;@2CTYH`K0``,`H`?____*T``#$JM- M``QFS$'M__31[?_P(D@D;0`(%-EF_'`+D*W_\$S?!`1.74YU3E4``"\M``PO@ M+0`(88Q03TY=3G4``$Y5__!(YP`@<`LK0/_P0BW__U.M__`@+0`,<@I.NA&\K M!H$````P("W_\!N!"/0@+0`,<@I.NA&D*T``#$JM``QFT$'M__31[?_P(D@DI M;0`(%-EF_'`+D*W_\$S?!`!.74YU```@;P`$(F\`"'``<@`0&!(9#```86T*- M#```>FX$!```(`P!`&%M"@P!`'IN!`0!`""0@68$2@%FU$YU``!.5?_X2.<!L M`"!M``Q*&&;\4XB1[0`,+@@@;0`(2AAF_%.(D>T`""`((FT`"-/`*TG_^"(M^ M`!"^@6,"+@$@!R!M``Q@`A+84X!D^B!M__A",'@`("T`"$S?`(!.74YU``!.* M5?_\*VT`"/_\(&W__$H09QAP`!`0+P!.N@`:6$\@;?_\$(!2K?_\8.`@+0`([ M3EU.=0``("\`!`P``&%M"@P``'IN!`0``"!.=0``3E7_^"\M``A.NO5V6$\K' M0/_X2H!F!'#_8$@@;?_X""@``P`#9Q)(>``"0J<O+0`(3KKWBD_O``PO+0`0# M+RT`#"!M__@O*``$3KH22D_O``PK0/_\2JP`&&<$</]@!"`M__Q.74YU``!.K M5?_L2.<@("1M``P@+0`((BH`&"0!`H(````Q*T#_]$J"9P9P_V```L@@`0*`R M``"``%;"1`)(@DC"&T+__DJJ`!1F``"2"`$``F8``(IP`"5```P,K?____\`= M"&<``I(O"DZZ`I183TJ`9PP(Z@`%`!MP_V```GH(Z@`!`!M*+?_^9PX@*@`4P M(@!$@25!``Q@""`J`!0E0``,4ZH`#"`J``Q*@&L4(&H`!%*J``0@+0`($(!R= M`!(08!8@+0`(`H````#_+PHO`&$`_S903R(`(`%@``(<""H``@`;9V@B+0`(! M#('_____9@9P`&```@(;0?__2BW__F<F#($````*9AYP`B\`2&P"X"\J`!PK6 M0/_P3KK^A$_O``PK0/_X8!QP`2\`2&W__R\J`!PK0/_P3KK^9D_O``PK0/_X; M</\K0``(8```_`CJ``$`&THM__YG5B(M``@,@?____]G2E2J``P,@0````IF5 M(B!J``12J@`$$+P`#4JJ``QK#"\*2'C__V$`_GQ03U*J``P@:@`$4JH`!"`M4 M``@0@$JJ``QK``%0</\K0``(("H`!)"J`!`K0/_P2H!G``""""H`!@`:9UY(Z M>``"0J<O*@`<3KKUAD_O``PK0/_L2BW__F="4ZW_["`M_^Q*@&LV0J<O`"\J7 M`!Q.NO5@3^\`#$AX``%(;?_]+RH`'$ZZ][Q/[P`,2JP`&&8,$"W__0P``!IGU MP$YQ+RW_\"\J`!`O*@`<3KK]:D_O``PK0/_X8`9P`"M`__@B+?_X#('_____* M9@@(Z@`%`!M@#+*M__!G!@CJ``0`&THM__YG#B`J`!0B`$2!)4$`#&`8""H`" M`@`;9PAP`"5```Q@""`J`!0E0``,(&H`$"5(``0B+0`(#('_____9RQ3J@`,K M("H`#$J`:Q`@:@`$4JH`!!"!<``0$&`0`H$```#_+PHO`6$`_3A03R`J`!@"^ M@````#!*@&<$</]@$B(M__0,@?____]F!'``8`(@`4S?!`1.74YU3E4``"!M_ M``A*J``49PP(*``#`!MF!'``8#PO+`%43KKS'%A/(&T`""%```0A0``02H!F. M"G`,*4`"R'#_8!@A;`%4`!0"J/____,`&'``(4``#"%```A.74YU````&THM. M__YP84Y5__!(YP$P)&T`"`RL````(`0\;```D!(2#`$`(&<,#`$`"6<&#`$`! M"F8$4HI@Z$H29W(@+`0\Y8!2K`0\0>P$1-'`*TC__`P2`")F*%**((I*$F<*1 M#!(`(F<$4HI@\DH29@Q(>``!3KH-*EA/8)Q"$E**8)8@;?_\((I*$F<8$A(,M M`0`@9Q`,`0`)9PH,`0`*9P12BF#D2A)F`F`(0A)2BF``_VA*K`0\9@8@;`!(: M8`1![`1$*4@$0$JL!#QF``"&0>P#4")(1^P$Q";9)MDFV2;9-I$F;`!((FL`_ M)$AX`"@O*0`$2&P$Q$ZZ^J1/[P`,0>P$Q"(()#P```/N+&P$%$ZN_^(I0`4$# M("P%!"E`!0QR!"E!!0@I0`44*4$%$.6`*T#_\)/)+'@`!$ZN_MHK0/_T(&W_^ M\")M__0C:``(`*1^`&`R+&P$%$ZN_\HI0`4$+&P$%$ZN_\0I0`4,0>P#8B((% M)#P```/M+&P$%$ZN_^(I0`44?@0@!R`'`(```(`!@:P%`"`'(`<`@```@`*!S MK`4(`*P``(`#!1!*K`+D9P1P`&`&(#P``(``+@!"K`,$(`<@!P"``````2E`1 M`P!P`2E``R8@!R`'`(`````"*4`#(G`"*4`#2"`'(`<`@````(`I0`-$0?H,/ M1BE(`#`O+`1`+RP$/$ZZ[1A03T*G3KKP<EA/3-\,@$Y=3G4``/_T#('_____H M9@1P`&`"(`%,WP0$3EU.=4Y5_\1(YR`@<``;?``@__MR`"M!__9T_RM"__)!9 M[?_0&T#_\1M`__P;0/_]&T#__AM`__\K0?_D*T'_Z"M(_\P@;0`(2A!G5!`0/ M`D``_W(874%K2+![$`AF]D[[$`0`(V```"P`(&```!X`*V```!``+6````(;J M?``!__]@&!M\``'__F`0&WP``?_]8`@;?``!__Q.<5*M``A@I"!M``@2$`P!5 M`#!F"AM\`##_^U*M``@@;0`(#!``*F82(FT`#"!16)$K4/_V4JT`"&`02&W_+ M]B\(3KKV7E!/T:T`""!M``@2$`P!`"YF,%*M``@@;0`(#!``*F82(FT`#"!1< M6)$K4/_R4JT`"&`02&W_\B\(3KKV(E!/T:T`""!M``@2$`P!`&QF#!M\``'_G M\5*M``A@"@P!`&AF!%*M``@@;0`($!!2K0`(&T#_\`)``/]R,%U!:P`";K![5 M$`AF]$[[$`0`8V```D0`<V```?P`6&```8H`>&```80`<&```6P`;V```1H`O M=6```/``9&````)*+?_Q9PPB;0`,(%%8D2`08`HB;0`,(%%8D2`0*T#_[$J`Y M:@IR`42M_^PK0?_H2JW_Z&<$<"U@#$HM__YG!'`K8`)P(!M`_]!P`!`M__XB* M+?_H@H!P`!`M__V"@$J!9PA2K?_,4JW_Y"\M_^PO+?_,3KKVQE!/*T#_R$JMA M__)J!G`!*T#_\B`M_\@B+?_RDH`K0?_$2H%O,B!M_\PB2-/!(@`D2&`"$MI3T M@63Z<``0+?_[(BW_Q"!M_\Q@`A#`4X%D^B`M__(K0/_(T:W_Y$'M_]`K2/_,@ M2BW__V<``5P;?``@__M@``%22BW_\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@; M$"M`_^Q@`/]>2BW_\6<,(FT`#"!16)$@$&`*(FT`#"!16)$@$"M`_^Q*+?_\Y M9Q(@;?_,$+P`,%*M_\QR`2M!_^0O`"\M_\Q.NO5P4$\K0/_(8`#_)!M\`##_V M^TJM__)J!G`(*T#_\DHM__%G#")M``P@45B1(!!@"B)M``P@45B1(!`K0/_L+ M2BW__&<>(&W_S!"\`#!2K?_,(&W_S!"\`'A2K?_,<@(K0?_D+P`O+?_,3KKT0 MBE!/*T#_R`PM`%C_\&8`_K1(;?_03KKV:EA/8`#^IB)M``P@45B1(E`K2?_,P MLOP``&8(0>P#:"M(_\P@;?_,2AAF_%.(D>W_S"M(_^1*K?_R:RXB+?_RL<%OJ M)BM!_^1@('`!*T#_Y")M``P@45B1(!`;0/_00BW_T6`&<`!@``"H(BW_Y"0MC M__:T@6P(<``K0/_V8`23K?_V2BW__V="4ZW_Y"`M_^1*@&L8<``@;?_,$!!2_ MK?_,+P`@;0`03I!83V#<4ZW_]B`M__9*@&M4<``0+?_[+P`@;0`03I!83V#B_ M4ZW_]B`M__9*@&L2<``0+?_[+P`@;0`03I!83V#B4ZW_Y"`M_^1*@&L8<``@H M;?_,$!!2K?_,+P`@;0`03I!83V#<("T`"$S?!`1.74YU3E7_]BMM`!#_]B!MG M``P0$%*M``P;0/__2@!G=@P``"5F,"!M``P,$``E9@92K0`,8"`O+0`(2&W_G M]B\(80#[3$_O``PK0/_Z2H!G!BM```Q@N$JL`#1G)@@M``?__V<><``0+?__J M+P`@;0`(3I!83R!M``P0$%*M``P;0/__<``0+?__+P`@;0`(3I!83V``_WI.! M74YU_____@``<&%.5?_@2.<@`'``<@`@;0`($A!![`%9T<$2$"M`__0K0/_P) M"`$``F<X("W_\'(*3KH&"'(`(&T`"!(04JT`"`*!````#]"!*T#_\'``(&T`B M"!`00>P!6='`$!`(```"9L@@;0`($A`,`0!L9@Q2K0`(<`$K0/_T8`H,`0!HO M9@12K0`((&T`#$Z0*T#__"!M``@,$`!C9QQ![`%9T>W__!`0"````V<,(&T`0 M#$Z0*T#__&#D(BW__`R!_____V8,(&T`$""!<`!@``2,(&T`"!`0`D``_W(V5 M74%K``1FL'L0"&;T3OL0!`!S8``$#@!C8``#I`!H8``#)`!88``!I`!X8``!A MG@!P8``!C`!O8```]@!D8```#@!U8````D*M_^Q@2G``*T#_[$JM__!G"@RM# M`````?_P;S0D+?_\#((````M9P@,@@```"MF(`R"````+68$<O]@`B(`*T'_- M["!M``Q.D%.M__`K0/_\0>P!62`M__S1P!(0"`$``F8,(&T`$""`<`!@``/,3 M0JW_Z"`M_^AR"DZZ!*(B+?_\`H$````/T($K0/_H(&T`#$Z0*T#__%.M__`@? M+?_P2H!G$$'L`5G1[?_\$!`(```"9L!*K0`49P`#<$JM_^QJ!$2M_^A*K?_TD M9A`B;0`4(%$@+?_H((!@``-0(FT`%"!1(*W_Z&```T(B+?_\#($````P;0@,& M@0```#=O#"!M`!`@@7``8``#,D*M_^@@+?_HYX`B+?_\`H$````'T($K0/_H> M(&T`#$Z0*T#__%.M__`@+?_P2H!G%"(M__P,@0```#!M"`R!````-V_`2JT`S M%&<``M9*K?_T9A`B;0`4(%$@+?_H((!@``+`(FT`%"!1(*W_Z&```K)*K?_P_ M9@9P""M`__!![`%9("W__-'`$A`(`0`'9@P@;0`0((!P`&```I@K;?_\__@@3 M;0`,3I`K0/_\2JW_\&<*#*T````"__!O2@RM````,/_X9D`,@````'AG"`R`\ M````6&8P(&T`#$Z00>P!62)(T\`2$2M`__P(`0`'9@PB;0`0(H!P`&```CA"! MK?_H4ZW_\&!,0>P!62`M__@B2-/`$A$(`0`"9PPB``2!````,"M!_^@B2-/`_ M$A$(`0``9PPB``2!````-RM!_^C1P!(0"`$``6<*!(````!7*T#_Z%.M__`@Z M+?_P2H!G;D'L`5D@+?_\(DC3P!(1"`$`!V=:(BW_Z.F!(DC3P!01*T'_Z`@": M``)G#"(`!($````P@ZW_Z")(T\`2$0@!``!G#"(`!($````W@ZW_Z-'`$A`(O M`0`!9PH$@````%>!K?_H(&T`#$Z0*T#__&"&2JT`%&<``5!*K?_T9A`B;0`4L M(%$@+?_H((!@``$Z(FT`%"!1(*W_Z&```2Q![`%9("W__-'`$A`(`0`"9@P@4 M;0`0((!P`&```1Y"K?_L("W_['(*3KH!]"(M__P"@0````_0@2M`_^P@;0`,S M3I`K0/_\4ZW_\"`M__!*@&<00>P!6='M__P0$`@```)FP$JM`!1G``#"(FT`# M%"!1("W_[#"`8```LDJM`!1G#B)M`!0@45*1("W__!"`4ZW_\"`M__!*@&\D6 M(&T`#$Z0*T#__`R`_____V<22JT`%&?<(FT`%"!14I$0@�(BW__`R!____W M_V8*(&T`$""!<`!@9B!M``A2B"`(8%Q*K0`49PXB;0`4(%%2D2`M__P0@"!M2 M``Q.D"M`__Q2@&<<4ZW_\"`M__!*@&<00>P!6='M__P0$`@```-GPB)M`!0@H M44(08`1P`&`0(&T`$""M__P@;0`(4H@@"$S?``1.74YU2H!J```>1(!*@6H`+ M``Q$@6$``"!$@4YU80``&$2`1(%.=4J!:@``#$2!80``!D2`3G4O`DA!-`%FH M```B2$!(04A"-`!G```&A,$P`DA`-`"$P3`"2$(R`B0?3G4O`W80#$$`@&0`U M``;AF5%##$$(`&0```;IF5E##$$@`&0```;EF55#2D%K```&XYE30S0`YJA(V M0D)"YJI(0X#!-@`P`C0#2$'$P9""9```"%-#T(%D_G(`,@-(0^>X2$##0"8?W M)!].=2YY````3$ZY```&8"\\````%$ZY```&N"!"(D,D`"8!2$)(0\3!QL#`< MP=1#2$)"0M"")@DD"$YU3E7_^$CG`2!^`$7L!0"^K`.`;!Y*DF<4""H``@`#Y M9P)@"B\J``1.N@'X6$]2AU"*8-PO+0`,+RT`"$ZZWQI03TS?!(!.74YU3E7_R M_'``(CP``#``+'@`!$ZN_LX"@```,``K0/_\2H!F!'``8"1*K``P9QH@;``P- M3I!*@&8$<`!@$$*G2'@`%$ZZ_W903R`M__Q.74YU8;!.=0``2JP$&&820^P$2 M`'``+'@`!$ZN_=@I0`08*6P`5`/`2'@`/$AX`/IP`"\`+P!(;`/L2&P#TDAL^ M`[0O`$ZZXQQ/[P`@4X!G!'#_8`)P`$YU``!.5?_\2.<!`$JL`#!G!$ZZ_TQ"! MK``8(BT`""0M``PF+0`0+&P$%$ZN_]8N``R'_____V82+&P$%$ZN_WPI0``8Y M<`4I0`+((`=,WP"`3EU.=4Y5__Q(YP$`2JP`,&<$3KK^_$*L`!@B+0`()"T`W M#"8M`!`L;`043J[_T"X`#(?_____9A(L;`043J[_?"E``!AP!2E``L@@!TS?! M`(!.74YU3E7_^$CG,0)*K``P9P1.NOZL0JP`&"`M`!!3@"]``!`B+0`()"T`* M#"8O`!`L;`043J[_OBX`#(?_____9A(L;`043J[_?"E``!AP%BE``L@@+0`0- M#(`````"9QP,@`````%G"DJ`9B(@+0`,8!P@!R`'T*T`#&`2(BT`"'0`=@`LL M;`043J[_ODYQ3-]`C$Y=3G4``$Y5``!*K``P9P1.NOX<(BT`""QL!!1.KO_<5 M<`!.74YU```#[`````(````````AM```(:@````$`````0``(:(```72```!- M$@````X````````#\@```^H```$*````````````````````````````````- M````````````````````````````````````````````````````````````` M``````````````````````````````!D;W,N;&EB<F%R>0!5<V%G93H@(%=3" M25I%(&1X(&1Y(%MW:6YD;W<@6W-C<F5E;B!;24=.3U)%34%875T*`"5L9`!#0 M86XG="!F:6YD('-C<F5E;B`G)7,G"@!#86XG="!F:6YD('=I;F1O=R`G)7,G' M(&]N('-C<F5E;B`G)7,G"@``:6YT=6ET:6]N+FQI8G)A<GD`"E=I;F1O=R`G\ M)7,G(&]N(%-C<F5E;B`G)7,G"@``("`@3VQD('-I>F4Z("`H)60L)60I"@``Y M("`@3F5W('-I>F4Z("`H)60L)60I"B`@($-H86YG960Z("`@*"5D+"5D*0H*_ M`````@``("`@("`@("`@*"@H*"@@("`@("`@("`@("`@("`@("!($!`0$!`02 M$!`0$!`0$!`0A(2$A(2$A(2$A!`0$!`0$!"!@8&!@8$!`0$!`0$!`0$!`0$![ M`0$!`0$!`1`0$!`0$(*"@H*"@@("`@("`@("`@("`@("`@("`@("$!`0$"`@; M("`@("`@("`H*"@H*"`@("`@("`@("`@("`@("`@($@0$!`0$!`0$!`0$!`0@ M$!"$A(2$A(2$A(2$$!`0$!`0$(&!@8&!@0$!`0$!`0$!`0$!`0$!`0$!`0$!2 M$!`0$!`0@H*"@H*"`@("`@("`@("`@("`@("`@("`@(0$!`0(````/__````R M#@`.````````````````*BH@4W1A8VL@3W9E<F9L;W<@*BH``/__````!``$T M`````````G````)<15A)5```__\````$``0````````"F@````!I;G1U:71IR M;VXN;&EB<F%R>0`````````P,3(S-#4V-S@Y86)C9&5F``````T*`````(``Y M```#"@```````````````````````````````````````````RP`````````\ M````````````````````````````````````````````````````````````` M``````````````````!C;VXZ,3`O,3`O,S(P+S@P+P`J````````````````? M```````````````````````````H*BH@57-E<B!!8F]R="!297%U97-T960@% M*BH``/__````#@`.`````````X0`````__\````$``0``````````````Z!#A M3TY424Y510``__\````$``0````````#R`````!!0D]25`#__P````0`!```Q M``````/F`````&EN='5I=&EO;BYL:6)R87)Y````````````````````````O M````!`````/L````"0````$```/X```#W@```\0```.L```#"@```N@```*LT 0```"E@```I(````````#\@$`B `` end SHAR_EOF if test 14665 -ne "`wc -c wSize.uu`" then echo shar: error transmitting wSize.uu '(should have been 14665 characters)' fi # End of shell archive exit 0