home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume35 / bitio / part01 < prev    next >
Encoding:
Text File  |  1993-03-02  |  59.0 KB  |  1,140 lines

  1. Newsgroups: comp.sources.misc
  2. From: pdh@netcom.com (Philip D. Howard)
  3. Subject: v35i105:  bitio - portable bit stream function library, Part01/03
  4. Message-ID: <csm-v35i105=bitio.091656@sparky.IMD.Sterling.COM>
  5. X-Md4-Signature: 6c2571404bf52f23e719763b7dc60094
  6. Date: Wed, 3 Mar 1993 15:17:18 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: pdh@netcom.com (Philip D. Howard)
  10. Posting-number: Volume 35, Issue 105
  11. Archive-name: bitio/part01
  12. Environment: MS-DOS, UNIX, ANSI-C, BCC, GCC, MSC, PC, NeXT, Sparc, Sequent
  13.  
  14. Version 1.04 of BITIO
  15.  
  16. Author:        Philip D. Howard
  17. Email:        pdh@netcom.com
  18.  
  19. BITIO is a function library package that implements a bit stream on top
  20. of a byte stream (8 bits per byte).  This bit stream is designed to be
  21. exchangeable between different platforms and retain the same bit order
  22. regardless of the endianness of the platforms.
  23.  
  24. C programs may read and write 0 to 32 bits or more in each function
  25. call.  Special functions and macros are implemented for doing exactly
  26. one bit at a time with less overhead.  The variable length functions
  27. come in versions that pass the data justified on the low order end of
  28. the unsigned long value, or on the high order end of the unsigned long
  29. value.  The single bit functions always use the low order end (i.e. have
  30. values 0 or 1).  Consistency is maintained through the use of all
  31. functions and macros executed in any sequence.
  32.  
  33. For UNIX platforms, I have tested this program with the GNU C Compiler.
  34. The makefiles are provided with this assumption.
  35.  
  36. For the MS-DOS platform, special makefiles are provided for Borland C
  37. and MicroSoft C.  I have tested this package with Borland C++ 3.1 and
  38. MicroSoft C 6.00a.  Special BAT files are provided to make BITIO on
  39. these compilers:
  40.  
  41. BCLEAN   or MCLEAN   make clean
  42. BMAKE    or MMAKE    make the library and test programs
  43. BMAKEALL or MMAKEALL make all memory models (CHLMS) of the library
  44. BREMAKE  or MREMAKE  make clean and make
  45. BVIRGIN  or MVIRGIN  make clean and virgin (delete .EXE and .LIB files)
  46.  
  47. Unlike versions prior to 1.02, this version includes its own random
  48. number generator for the test programs which is designed to produce
  49. the same random sequence on any platform (this has not been quite as
  50. thoroughly tested as BITIO itself since some platforms were tested
  51. only on previous versions).
  52.  
  53. Three tests are performed.
  54.  
  55. Test 1 compares a random sequence against a distributed random data
  56. file (not the same in versions prior to 1.02) to ensure that
  57. portability works.
  58.  
  59. Test 2 writes random data and reads it back in to compare in order to
  60. verify that the various operations are working consistently.  This test
  61. (and test 1) uses a mixture of the function calls to write and read the
  62. data, including the macros.  Alternative tests may be configured in the
  63. file TESTIO.H.
  64.  
  65. Test 3 tests the macros BIT1PUT and BIT1GET for speed.  This is only a
  66. demostration test.  If you need actual timings, you will need to add
  67. the capability to capture it in or around these programs.
  68.  
  69. -------
  70. #! /bin/sh
  71. # This is a shell archive.  Remove anything before this line, then feed it
  72. # into a shell via "sh file" or similar.  To overwrite existing files,
  73. # type "sh file -c".
  74. # Contents:  bitio104 bitio104/COPYING bitio104/bitget.h
  75. #   bitio104/test.bit.UU
  76. # Wrapped by kent@sparky on Wed Mar  3 09:07:09 1993
  77. PATH=/bin:/usr/bin:/usr/ucb:/usr/local/bin:/usr/lbin ; export PATH
  78. echo If this archive is complete, you will see the following message:
  79. echo '          "shar: End of archive 1 (of 3)."'
  80. if test ! -d 'bitio104' ; then
  81.     echo shar: Creating directory \"'bitio104'\"
  82.     mkdir 'bitio104'
  83. fi
  84. if test -f 'bitio104/COPYING' -a "${1}" != "-c" ; then 
  85.   echo shar: Will not clobber existing file \"'bitio104/COPYING'\"
  86. else
  87.   echo shar: Extracting \"'bitio104/COPYING'\" \(25265 characters\)
  88.   sed "s/^X//" >'bitio104/COPYING' <<'END_OF_FILE'
  89. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  90. X               Version 2, June 1991
  91. X
  92. X Copyright (C) 1991 Free Software Foundation, Inc.
  93. X                    675 Mass Ave, Cambridge, MA 02139, USA
  94. X Everyone is permitted to copy and distribute verbatim copies
  95. X of this license document, but changing it is not allowed.
  96. X
  97. X[This is the first released version of the library GPL.  It is
  98. X numbered 2 because it goes with version 2 of the ordinary GPL.]
  99. X
  100. X                Preamble
  101. X
  102. X  The licenses for most software are designed to take away your
  103. Xfreedom to share and change it.  By contrast, the GNU General Public
  104. XLicenses are intended to guarantee your freedom to share and change
  105. Xfree software--to make sure the software is free for all its users.
  106. X
  107. X  This license, the Library General Public License, applies to some
  108. Xspecially designated Free Software Foundation software, and to any
  109. Xother libraries whose authors decide to use it.  You can use it for
  110. Xyour libraries, too.
  111. X
  112. X  When we speak of free software, we are referring to freedom, not
  113. Xprice.  Our General Public Licenses are designed to make sure that you
  114. Xhave the freedom to distribute copies of free software (and charge for
  115. Xthis service if you wish), that you receive source code or can get it
  116. Xif you want it, that you can change the software or use pieces of it
  117. Xin new free programs; and that you know you can do these things.
  118. X
  119. X  To protect your rights, we need to make restrictions that forbid
  120. Xanyone to deny you these rights or to ask you to surrender the rights.
  121. XThese restrictions translate to certain responsibilities for you if
  122. Xyou distribute copies of the library, or if you modify it.
  123. X
  124. X  For example, if you distribute copies of the library, whether gratis
  125. Xor for a fee, you must give the recipients all the rights that we gave
  126. Xyou.  You must make sure that they, too, receive or can get the source
  127. Xcode.  If you link a program with the library, you must provide
  128. Xcomplete object files to the recipients so that they can relink them
  129. Xwith the library, after making changes to the library and recompiling
  130. Xit.  And you must show them these terms so they know their rights.
  131. X
  132. X  Our method of protecting your rights has two steps: (1) copyright
  133. Xthe library, and (2) offer you this license which gives you legal
  134. Xpermission to copy, distribute and/or modify the library.
  135. X
  136. X  Also, for each distributor's protection, we want to make certain
  137. Xthat everyone understands that there is no warranty for this free
  138. Xlibrary.  If the library is modified by someone else and passed on, we
  139. Xwant its recipients to know that what they have is not the original
  140. Xversion, so that any problems introduced by others will not reflect on
  141. Xthe original authors' reputations.
  142. X
  143. X  Finally, any free program is threatened constantly by software
  144. Xpatents.  We wish to avoid the danger that companies distributing free
  145. Xsoftware will individually obtain patent licenses, thus in effect
  146. Xtransforming the program into proprietary software.  To prevent this,
  147. Xwe have made it clear that any patent must be licensed for everyone's
  148. Xfree use or not licensed at all.
  149. X
  150. X  Most GNU software, including some libraries, is covered by the ordinary
  151. XGNU General Public License, which was designed for utility programs.  This
  152. Xlicense, the GNU Library General Public License, applies to certain
  153. Xdesignated libraries.  This license is quite different from the ordinary
  154. Xone; be sure to read it in full, and don't assume that anything in it is
  155. Xthe same as in the ordinary license.
  156. X
  157. X  The reason we have a separate public license for some libraries is that
  158. Xthey blur the distinction we usually make between modifying or adding to a
  159. Xprogram and simply using it.  Linking a program with a library, without
  160. Xchanging the library, is in some sense simply using the library, and is
  161. Xanalogous to running a utility program or application program.  However, in
  162. Xa textual and legal sense, the linked executable is a combined work, a
  163. Xderivative of the original library, and the ordinary General Public License
  164. Xtreats it as such.
  165. X
  166. X  Because of this blurred distinction, using the ordinary General
  167. XPublic License for libraries did not effectively promote software
  168. Xsharing, because most developers did not use the libraries.  We
  169. Xconcluded that weaker conditions might promote sharing better.
  170. X
  171. X  However, unrestricted linking of non-free programs would deprive the
  172. Xusers of those programs of all benefit from the free status of the
  173. Xlibraries themselves.  This Library General Public License is intended to
  174. Xpermit developers of non-free programs to use free libraries, while
  175. Xpreserving your freedom as a user of such programs to change the free
  176. Xlibraries that are incorporated in them.  (We have not seen how to achieve
  177. Xthis as regards changes in header files, but we have achieved it as regards
  178. Xchanges in the actual functions of the Library.)  The hope is that this
  179. Xwill lead to faster development of free libraries.
  180. X
  181. X  The precise terms and conditions for copying, distribution and
  182. Xmodification follow.  Pay close attention to the difference between a
  183. X"work based on the library" and a "work that uses the library".  The
  184. Xformer contains code derived from the library, while the latter only
  185. Xworks together with the library.
  186. X
  187. X  Note that it is possible for a library to be covered by the ordinary
  188. XGeneral Public License rather than by this special one.
  189. X
  190. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  191. X   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  192. X
  193. X  0. This License Agreement applies to any software library which
  194. Xcontains a notice placed by the copyright holder or other authorized
  195. Xparty saying it may be distributed under the terms of this Library
  196. XGeneral Public License (also called "this License").  Each licensee is
  197. Xaddressed as "you".
  198. X
  199. X  A "library" means a collection of software functions and/or data
  200. Xprepared so as to be conveniently linked with application programs
  201. X(which use some of those functions and data) to form executables.
  202. X
  203. X  The "Library", below, refers to any such software library or work
  204. Xwhich has been distributed under these terms.  A "work based on the
  205. XLibrary" means either the Library or any derivative work under
  206. Xcopyright law: that is to say, a work containing the Library or a
  207. Xportion of it, either verbatim or with modifications and/or translated
  208. Xstraightforwardly into another language.  (Hereinafter, translation is
  209. Xincluded without limitation in the term "modification".)
  210. X
  211. X  "Source code" for a work means the preferred form of the work for
  212. Xmaking modifications to it.  For a library, complete source code means
  213. Xall the source code for all modules it contains, plus any associated
  214. Xinterface definition files, plus the scripts used to control compilation
  215. Xand installation of the library.
  216. X
  217. X  Activities other than copying, distribution and modification are not
  218. Xcovered by this License; they are outside its scope.  The act of
  219. Xrunning a program using the Library is not restricted, and output from
  220. Xsuch a program is covered only if its contents constitute a work based
  221. Xon the Library (independent of the use of the Library in a tool for
  222. Xwriting it).  Whether that is true depends on what the Library does
  223. Xand what the program that uses the Library does.
  224. X  
  225. X  1. You may copy and distribute verbatim copies of the Library's
  226. Xcomplete source code as you receive it, in any medium, provided that
  227. Xyou conspicuously and appropriately publish on each copy an
  228. Xappropriate copyright notice and disclaimer of warranty; keep intact
  229. Xall the notices that refer to this License and to the absence of any
  230. Xwarranty; and distribute a copy of this License along with the
  231. XLibrary.
  232. X
  233. X  You may charge a fee for the physical act of transferring a copy,
  234. Xand you may at your option offer warranty protection in exchange for a
  235. Xfee.
  236. X
  237. X  2. You may modify your copy or copies of the Library or any portion
  238. Xof it, thus forming a work based on the Library, and copy and
  239. Xdistribute such modifications or work under the terms of Section 1
  240. Xabove, provided that you also meet all of these conditions:
  241. X
  242. X    a) The modified work must itself be a software library.
  243. X
  244. X    b) You must cause the files modified to carry prominent notices
  245. X    stating that you changed the files and the date of any change.
  246. X
  247. X    c) You must cause the whole of the work to be licensed at no
  248. X    charge to all third parties under the terms of this License.
  249. X
  250. X    d) If a facility in the modified Library refers to a function or a
  251. X    table of data to be supplied by an application program that uses
  252. X    the facility, other than as an argument passed when the facility
  253. X    is invoked, then you must make a good faith effort to ensure that,
  254. X    in the event an application does not supply such function or
  255. X    table, the facility still operates, and performs whatever part of
  256. X    its purpose remains meaningful.
  257. X
  258. X    (For example, a function in a library to compute square roots has
  259. X    a purpose that is entirely well-defined independent of the
  260. X    application.  Therefore, Subsection 2d requires that any
  261. X    application-supplied function or table used by this function must
  262. X    be optional: if the application does not supply it, the square
  263. X    root function must still compute square roots.)
  264. X
  265. XThese requirements apply to the modified work as a whole.  If
  266. Xidentifiable sections of that work are not derived from the Library,
  267. Xand can be reasonably considered independent and separate works in
  268. Xthemselves, then this License, and its terms, do not apply to those
  269. Xsections when you distribute them as separate works.  But when you
  270. Xdistribute the same sections as part of a whole which is a work based
  271. Xon the Library, the distribution of the whole must be on the terms of
  272. Xthis License, whose permissions for other licensees extend to the
  273. Xentire whole, and thus to each and every part regardless of who wrote
  274. Xit.
  275. X
  276. XThus, it is not the intent of this section to claim rights or contest
  277. Xyour rights to work written entirely by you; rather, the intent is to
  278. Xexercise the right to control the distribution of derivative or
  279. Xcollective works based on the Library.
  280. X
  281. XIn addition, mere aggregation of another work not based on the Library
  282. Xwith the Library (or with a work based on the Library) on a volume of
  283. Xa storage or distribution medium does not bring the other work under
  284. Xthe scope of this License.
  285. X
  286. X  3. You may opt to apply the terms of the ordinary GNU General Public
  287. XLicense instead of this License to a given copy of the Library.  To do
  288. Xthis, you must alter all the notices that refer to this License, so
  289. Xthat they refer to the ordinary GNU General Public License, version 2,
  290. Xinstead of to this License.  (If a newer version than version 2 of the
  291. Xordinary GNU General Public License has appeared, then you can specify
  292. Xthat version instead if you wish.)  Do not make any other change in
  293. Xthese notices.
  294. X
  295. X  Once this change is made in a given copy, it is irreversible for
  296. Xthat copy, so the ordinary GNU General Public License applies to all
  297. Xsubsequent copies and derivative works made from that copy.
  298. X
  299. X  This option is useful when you wish to copy part of the code of
  300. Xthe Library into a program that is not a library.
  301. X
  302. X  4. You may copy and distribute the Library (or a portion or
  303. Xderivative of it, under Section 2) in object code or executable form
  304. Xunder the terms of Sections 1 and 2 above provided that you accompany
  305. Xit with the complete corresponding machine-readable source code, which
  306. Xmust be distributed under the terms of Sections 1 and 2 above on a
  307. Xmedium customarily used for software interchange.
  308. X
  309. X  If distribution of object code is made by offering access to copy
  310. Xfrom a designated place, then offering equivalent access to copy the
  311. Xsource code from the same place satisfies the requirement to
  312. Xdistribute the source code, even though third parties are not
  313. Xcompelled to copy the source along with the object code.
  314. X
  315. X  5. A program that contains no derivative of any portion of the
  316. XLibrary, but is designed to work with the Library by being compiled or
  317. Xlinked with it, is called a "work that uses the Library".  Such a
  318. Xwork, in isolation, is not a derivative work of the Library, and
  319. Xtherefore falls outside the scope of this License.
  320. X
  321. X  However, linking a "work that uses the Library" with the Library
  322. Xcreates an executable that is a derivative of the Library (because it
  323. Xcontains portions of the Library), rather than a "work that uses the
  324. Xlibrary".  The executable is therefore covered by this License.
  325. XSection 6 states terms for distribution of such executables.
  326. X
  327. X  When a "work that uses the Library" uses material from a header file
  328. Xthat is part of the Library, the object code for the work may be a
  329. Xderivative work of the Library even though the source code is not.
  330. XWhether this is true is especially significant if the work can be
  331. Xlinked without the Library, or if the work is itself a library.  The
  332. Xthreshold for this to be true is not precisely defined by law.
  333. X
  334. X  If such an object file uses only numerical parameters, data
  335. Xstructure layouts and accessors, and small macros and small inline
  336. Xfunctions (ten lines or less in length), then the use of the object
  337. Xfile is unrestricted, regardless of whether it is legally a derivative
  338. Xwork.  (Executables containing this object code plus portions of the
  339. XLibrary will still fall under Section 6.)
  340. X
  341. X  Otherwise, if the work is a derivative of the Library, you may
  342. Xdistribute the object code for the work under the terms of Section 6.
  343. XAny executables containing that work also fall under Section 6,
  344. Xwhether or not they are linked directly with the Library itself.
  345. X
  346. X  6. As an exception to the Sections above, you may also compile or
  347. Xlink a "work that uses the Library" with the Library to produce a
  348. Xwork containing portions of the Library, and distribute that work
  349. Xunder terms of your choice, provided that the terms permit
  350. Xmodification of the work for the customer's own use and reverse
  351. Xengineering for debugging such modifications.
  352. X
  353. X  You must give prominent notice with each copy of the work that the
  354. XLibrary is used in it and that the Library and its use are covered by
  355. Xthis License.  You must supply a copy of this License.  If the work
  356. Xduring execution displays copyright notices, you must include the
  357. Xcopyright notice for the Library among them, as well as a reference
  358. Xdirecting the user to the copy of this License.  Also, you must do one
  359. Xof these things:
  360. X
  361. X    a) Accompany the work with the complete corresponding
  362. X    machine-readable source code for the Library including whatever
  363. X    changes were used in the work (which must be distributed under
  364. X    Sections 1 and 2 above); and, if the work is an executable linked
  365. X    with the Library, with the complete machine-readable "work that
  366. X    uses the Library", as object code and/or source code, so that the
  367. X    user can modify the Library and then relink to produce a modified
  368. X    executable containing the modified Library.  (It is understood
  369. X    that the user who changes the contents of definitions files in the
  370. X    Library will not necessarily be able to recompile the application
  371. X    to use the modified definitions.)
  372. X
  373. X    b) Accompany the work with a written offer, valid for at
  374. X    least three years, to give the same user the materials
  375. X    specified in Subsection 6a, above, for a charge no more
  376. X    than the cost of performing this distribution.
  377. X
  378. X    c) If distribution of the work is made by offering access to copy
  379. X    from a designated place, offer equivalent access to copy the above
  380. X    specified materials from the same place.
  381. X
  382. X    d) Verify that the user has already received a copy of these
  383. X    materials or that you have already sent this user a copy.
  384. X
  385. X  For an executable, the required form of the "work that uses the
  386. XLibrary" must include any data and utility programs needed for
  387. Xreproducing the executable from it.  However, as a special exception,
  388. Xthe source code distributed need not include anything that is normally
  389. Xdistributed (in either source or binary form) with the major
  390. Xcomponents (compiler, kernel, and so on) of the operating system on
  391. Xwhich the executable runs, unless that component itself accompanies
  392. Xthe executable.
  393. X
  394. X  It may happen that this requirement contradicts the license
  395. Xrestrictions of other proprietary libraries that do not normally
  396. Xaccompany the operating system.  Such a contradiction means you cannot
  397. Xuse both them and the Library together in an executable that you
  398. Xdistribute.
  399. X
  400. X  7. You may place library facilities that are a work based on the
  401. XLibrary side-by-side in a single library together with other library
  402. Xfacilities not covered by this License, and distribute such a combined
  403. Xlibrary, provided that the separate distribution of the work based on
  404. Xthe Library and of the other library facilities is otherwise
  405. Xpermitted, and provided that you do these two things:
  406. X
  407. X    a) Accompany the combined library with a copy of the same work
  408. X    based on the Library, uncombined with any other library
  409. X    facilities.  This must be distributed under the terms of the
  410. X    Sections above.
  411. X
  412. X    b) Give prominent notice with the combined library of the fact
  413. X    that part of it is a work based on the Library, and explaining
  414. X    where to find the accompanying uncombined form of the same work.
  415. X
  416. X  8. You may not copy, modify, sublicense, link with, or distribute
  417. Xthe Library except as expressly provided under this License.  Any
  418. Xattempt otherwise to copy, modify, sublicense, link with, or
  419. Xdistribute the Library is void, and will automatically terminate your
  420. Xrights under this License.  However, parties who have received copies,
  421. Xor rights, from you under this License will not have their licenses
  422. Xterminated so long as such parties remain in full compliance.
  423. X
  424. X  9. You are not required to accept this License, since you have not
  425. Xsigned it.  However, nothing else grants you permission to modify or
  426. Xdistribute the Library or its derivative works.  These actions are
  427. Xprohibited by law if you do not accept this License.  Therefore, by
  428. Xmodifying or distributing the Library (or any work based on the
  429. XLibrary), you indicate your acceptance of this License to do so, and
  430. Xall its terms and conditions for copying, distributing or modifying
  431. Xthe Library or works based on it.
  432. X
  433. X  10. Each time you redistribute the Library (or any work based on the
  434. XLibrary), the recipient automatically receives a license from the
  435. Xoriginal licensor to copy, distribute, link with or modify the Library
  436. Xsubject to these terms and conditions.  You may not impose any further
  437. Xrestrictions on the recipients' exercise of the rights granted herein.
  438. XYou are not responsible for enforcing compliance by third parties to
  439. Xthis License.
  440. X
  441. X  11. If, as a consequence of a court judgment or allegation of patent
  442. Xinfringement or for any other reason (not limited to patent issues),
  443. Xconditions are imposed on you (whether by court order, agreement or
  444. Xotherwise) that contradict the conditions of this License, they do not
  445. Xexcuse you from the conditions of this License.  If you cannot
  446. Xdistribute so as to satisfy simultaneously your obligations under this
  447. XLicense and any other pertinent obligations, then as a consequence you
  448. Xmay not distribute the Library at all.  For example, if a patent
  449. Xlicense would not permit royalty-free redistribution of the Library by
  450. Xall those who receive copies directly or indirectly through you, then
  451. Xthe only way you could satisfy both it and this License would be to
  452. Xrefrain entirely from distribution of the Library.
  453. X
  454. XIf any portion of this section is held invalid or unenforceable under any
  455. Xparticular circumstance, the balance of the section is intended to apply,
  456. Xand the section as a whole is intended to apply in other circumstances.
  457. X
  458. XIt is not the purpose of this section to induce you to infringe any
  459. Xpatents or other property right claims or to contest validity of any
  460. Xsuch claims; this section has the sole purpose of protecting the
  461. Xintegrity of the free software distribution system which is
  462. Ximplemented by public license practices.  Many people have made
  463. Xgenerous contributions to the wide range of software distributed
  464. Xthrough that system in reliance on consistent application of that
  465. Xsystem; it is up to the author/donor to decide if he or she is willing
  466. Xto distribute software through any other system and a licensee cannot
  467. Ximpose that choice.
  468. X
  469. XThis section is intended to make thoroughly clear what is believed to
  470. Xbe a consequence of the rest of this License.
  471. X
  472. X  12. If the distribution and/or use of the Library is restricted in
  473. Xcertain countries either by patents or by copyrighted interfaces, the
  474. Xoriginal copyright holder who places the Library under this License may add
  475. Xan explicit geographical distribution limitation excluding those countries,
  476. Xso that distribution is permitted only in or among countries not thus
  477. Xexcluded.  In such case, this License incorporates the limitation as if
  478. Xwritten in the body of this License.
  479. X
  480. X  13. The Free Software Foundation may publish revised and/or new
  481. Xversions of the Library General Public License from time to time.
  482. XSuch new versions will be similar in spirit to the present version,
  483. Xbut may differ in detail to address new problems or concerns.
  484. X
  485. XEach version is given a distinguishing version number.  If the Library
  486. Xspecifies a version number of this License which applies to it and
  487. X"any later version", you have the option of following the terms and
  488. Xconditions either of that version or of any later version published by
  489. Xthe Free Software Foundation.  If the Library does not specify a
  490. Xlicense version number, you may choose any version ever published by
  491. Xthe Free Software Foundation.
  492. X
  493. X  14. If you wish to incorporate parts of the Library into other free
  494. Xprograms whose distribution conditions are incompatible with these,
  495. Xwrite to the author to ask for permission.  For software which is
  496. Xcopyrighted by the Free Software Foundation, write to the Free
  497. XSoftware Foundation; we sometimes make exceptions for this.  Our
  498. Xdecision will be guided by the two goals of preserving the free status
  499. Xof all derivatives of our free software and of promoting the sharing
  500. Xand reuse of software generally.
  501. X
  502. X                NO WARRANTY
  503. X
  504. X  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  505. XWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  506. XEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  507. XOTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  508. XKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  509. XIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  510. XPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  511. XLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  512. XTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  513. X
  514. X  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  515. XWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  516. XAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  517. XFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  518. XCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  519. XLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  520. XRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  521. XFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  522. XSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  523. XDAMAGES.
  524. X
  525. X             END OF TERMS AND CONDITIONS
  526. X
  527. X     Appendix: How to Apply These Terms to Your New Libraries
  528. X
  529. X  If you develop a new library, and you want it to be of the greatest
  530. Xpossible use to the public, we recommend making it free software that
  531. Xeveryone can redistribute and change.  You can do so by permitting
  532. Xredistribution under these terms (or, alternatively, under the terms of the
  533. Xordinary General Public License).
  534. X
  535. X  To apply these terms, attach the following notices to the library.  It is
  536. Xsafest to attach them to the start of each source file to most effectively
  537. Xconvey the exclusion of warranty; and each file should have at least the
  538. X"copyright" line and a pointer to where the full notice is found.
  539. X
  540. X    <one line to give the library's name and a brief idea of what it does.>
  541. X    Copyright (C) <year>  <name of author>
  542. X
  543. X    This library is free software; you can redistribute it and/or
  544. X    modify it under the terms of the GNU Library General Public
  545. X    License as published by the Free Software Foundation; either
  546. X    version 2 of the License, or (at your option) any later version.
  547. X
  548. X    This library is distributed in the hope that it will be useful,
  549. X    but WITHOUT ANY WARRANTY; without even the implied warranty of
  550. X    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  551. X    Library General Public License for more details.
  552. X
  553. X    You should have received a copy of the GNU Library General Public
  554. X    License along with this library; if not, write to the Free
  555. X    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  556. X
  557. XAlso add information on how to contact you by electronic and paper mail.
  558. X
  559. XYou should also get your employer (if you work as a programmer) or your
  560. Xschool, if any, to sign a "copyright disclaimer" for the library, if
  561. Xnecessary.  Here is a sample; alter the names:
  562. X
  563. X  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  564. X  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  565. X
  566. X  <signature of Ty Coon>, 1 April 1990
  567. X  Ty Coon, President of Vice
  568. X
  569. XThat's all there is to it!
  570. END_OF_FILE
  571.   if test 25265 -ne `wc -c <'bitio104/COPYING'`; then
  572.     echo shar: \"'bitio104/COPYING'\" unpacked with wrong size!
  573.   fi
  574.   # end of 'bitio104/COPYING'
  575. fi
  576. if test -f 'bitio104/bitget.h' -a "${1}" != "-c" ; then 
  577.   echo shar: Will not clobber existing file \"'bitio104/bitget.h'\"
  578. else
  579.   echo shar: Extracting \"'bitio104/bitget.h'\" \(3850 characters\)
  580.   sed "s/^X//" >'bitio104/bitget.h' <<'END_OF_FILE'
  581. X/***********************************************************************\
  582. X|   Copyright (C) 1993 - by Philip David Howard - all rights reserved    |
  583. X|                                    |
  584. X|   This library is free software; you may redistribute it and/or    |
  585. X|   modify it under the terms of the GNU Library General Public        |
  586. X|   License as published by the Free Software Foundation; either    |
  587. X|   version 2 of the license, or (at your option) any later version.    |
  588. X|                                    |
  589. X|   This library is distributed in the hope that it will be useful,    |
  590. X|   but WITHOUT ANY WARRANTY; without even the implied warranty of    |
  591. X|   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    |
  592. X|   GNU Library General Public License for more details.        |
  593. X|                                    |
  594. X|   You should have received a copy of the GNU Library General Public    |
  595. X|   License along with this library.  If not, write to the Free        |
  596. X|   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.    |
  597. X|                                    |
  598. X|author:    Philip D. Howard (ka9wgn)                |
  599. X|email:        pdh@netcom.com                        |
  600. X|postal:    PO Box 5012;  Champaign, IL  61825-5012            |
  601. X|voice/fax:    217-384-4934                        |
  602. X\***********************************************************************/
  603. X/***********************************************************************\
  604. X|header:    bitget                            |
  605. X|purpose:    to input bit data from a bit stream file        |
  606. X|        generate code for bithget.c or bitlget.c        |
  607. X\***********************************************************************/
  608. X{
  609. X    ulong    data    ;
  610. X    uint    have    ;
  611. X    uint    need    ;
  612. X    int        c    ;
  613. X
  614. X#ifdef BITIO_CHECK_ERROR
  615. X    /********************************************************\
  616. X    |if the bit stream file is in error then return zero bits|
  617. X    \********************************************************/
  618. X    if ( NULL == bitstream || 0 == ( BITIO_INPUT & bitstream->flags ) ) {
  619. X    if ( countptr ) *countptr = 0;
  620. X    return ( 0 );
  621. X    }
  622. X#endif
  623. X
  624. X    need = count;
  625. X    have = 0;
  626. X    data = 0;
  627. X
  628. X    /*******************************************************************\
  629. X    |if we need more bits than are already buffered then read some bytes|
  630. X    \*******************************************************************/
  631. X    if ( need > bitstream->bits ) {
  632. X
  633. X    /************************************************\
  634. X    |first take all the bits we already have buffered|
  635. X    \************************************************/
  636. X    data = 0x00ff & bitstream->buf;
  637. X    have = bitstream->bits;
  638. X    data &= ( 1 << have ) - 1;
  639. X    need -= have;
  640. X
  641. X    /**********************************************\
  642. X    |read in as many whole bytes as we need to have|
  643. X    \**********************************************/
  644. X    while ( need >= 8 ) {
  645. X        c = getc( bitstream->cfile );
  646. X        if ( EOF == c ) {
  647. X        need = 0;        /* abort on EOF */
  648. X        } else {
  649. X        data <<= 8;
  650. X        data |= 0x00ff & c;
  651. X        have += 8;
  652. X        need -= 8;
  653. X        }
  654. X    }
  655. X
  656. X    /*****************\
  657. X    |refill the buffer|
  658. X    \*****************/
  659. X    bitstream->buf = getc( bitstream->cfile );
  660. X    if ( EOF == bitstream->buf ) {
  661. X        bitstream->bits = 0;
  662. X        need = 0;
  663. X    } else {
  664. X        bitstream->bits = 8;
  665. X    }
  666. X    }
  667. X
  668. X    /*************************************\
  669. X    |take the (final) bits from the buffer|
  670. X    \*************************************/
  671. X    if ( need ) {
  672. X    data <<= need;
  673. X    bitstream->bits -= need;
  674. X    have += need;
  675. X    data |= ( ( 1 << need ) - 1 ) & ( bitstream->buf >> bitstream->bits );
  676. X    }
  677. X
  678. X    /**************************************\
  679. X    |store the count of bits being returned|
  680. X    \**************************************/
  681. X    if ( countptr ) *countptr = have;
  682. X
  683. X#ifdef BITIO_HIGH
  684. X    /******************************************\
  685. X    |return data adjusted to the high order end|
  686. X    \******************************************/
  687. X    return ( data << ( LONG_BIT - have ) );
  688. X#else
  689. X    /****************************************\
  690. X    |return data already at the low order end|
  691. X    \****************************************/
  692. X    return ( data );
  693. X#endif
  694. X
  695. X}
  696. END_OF_FILE
  697.   if test 3850 -ne `wc -c <'bitio104/bitget.h'`; then
  698.     echo shar: \"'bitio104/bitget.h'\" unpacked with wrong size!
  699.   fi
  700.   # end of 'bitio104/bitget.h'
  701. fi
  702. if test -f 'bitio104/test.bit.UU' -a "${1}" != "-c" ; then 
  703.   echo shar: Will not clobber existing file \"'bitio104/test.bit.UU'\"
  704. else
  705.   echo shar: Extracting \"'bitio104/test.bit.UU'\" \(24768 characters\)
  706.   sed "s/^X//" >'bitio104/test.bit.UU' <<'END_OF_FILE'
  707. Xbegin 644 bitio104/test.bit
  708. XM4%;&*NE%4O\0LMB"\*2R1W*V9+VU\4N;/Q00GZ?])Y.,"NW!58H7 T <8* O
  709. XM2RTP9FV-,7G[\-*>OA-LBE\,[=Q"@,?'3@-B^CV^V8LTR&3!O!K=A"@3=31S
  710. XMAY8&Y8A"26%GBMORIZJ8+]HX']'+QOF/H74<WP;VG+WS5Y(J>Z>?H4G*-)[Q
  711. XMK\?E?Y/&9((PVI](:B-"H-8;1*46A29A/"S46^FD5I@G/?W;7*OD1(F14$G+
  712. XMTKOJ&H_[3[:KD$J%5\A&<L/ @9O:=<)[R^G<Q0B]8:K^NNUUV]E.L0PI]?:I
  713. XM^=)[^9::82A](SW0VYZLN@C4J]X<*&D\P,'KN%S\\.7U8NPN*0<G[9_DGYRL
  714. XMB\##63M_GKOYATD$/J'S5U3 #5FR0;[Q4*X 3Z&?BX>NOO,N\I3+1=F[Y:5R
  715. XM[]5&Y!71PCY>?UG@;,&R^L(%E?[$VHL<4-'<U,-QL@D/"?9XWOFKCHG-X8Y%
  716. XM8A;@>5(E)3S_MD3!-U;$MX:W\Q(Y:-H]JB&DTMZ"F)[H9'89^E \:[;H@2-A
  717. XM7D8>NN9;96+8NLH-:O.<YQ8L4@=E;I86V<@;!_@<^)I;<336IA#LL%KPI=C\
  718. XML[*@"::PR:Q">'Y/KOPW\7VR%&,=L/G1X?5E9ZWWK[U3EW"U=^=F&P)TLQ[V
  719. XM=5,*<41V 8SKWD5.S$$Q89IA^QV8Y..%IMTBG6ADF,=)PJ1=,,C<[D57C<\E
  720. XM)GX@03FU>V"3J!(PLU_6R8QIJ%:S31+2*:ZWS$3SMHU/"/8,+Y,;&B&7G= Y
  721. XM3H[F9^GA Y<\U;?763LG&"@'UJ;\ST+BO+B2_)OR1*/>C%VU)[B+#DJ[!():
  722. XM[9OZ95"H;ZQ+"E!4%*5T[HQR%)057DPP&&3D]"  J8U']O-G2YD[<#C015.=
  723. XMM1'']2+ T2./Y=;M?.*:.=$-R9:)!RO^*#"UH"EF&-"( W34JVP"_^*Y84>+
  724. XM%?FM[CCY@2L]C;]81.1XJGIOKRG:G)R3JEC8"=9C*AAR7.*%ZWO4#O-D5F"%
  725. XMDXND'C=0"EB%A_.EX]_17(7'E?F\3G$#B&QEH,506F.2=$,,5[?ZY^N&Z'=5
  726. XMO\#CP:%P?V>F!TF%T_F=?L&D-\13<_,_DV=;+V>!0QXK&\?-DQ3CG;/\Q9:M
  727. XM)T+2?AXJ$]ZH)WDU$+"IA\<(3%]-S-?T[V/%OH= '*P.):N5'57X/VQ$91&O
  728. XM'"]CO#=70U> !8R?MGS7PADIAY%"[D32"W_$)'*NE$\""0?>+G7LVE<C":HE
  729. XMQ?JE705Q$U'GFS5>?>P[,UE;;1Z*)>75.*5+LG2, [MMBK15* #0E$!"Y@0X
  730. XMBM5UVOTC"W/$:G#J SB-\2KR=?A1@'.+^S+NCHKC10%#%C?2_*)-0^K_%E <
  731. XM--7(+GP%@8C40M7MW%SZY<A.7T1$)0,@4T^S<Z^IL*(@G8'X*IK6TR>E38&Q
  732. XM)Y^+Q%<%A.XXZ:Y$B!B@X8L:ZY^]P,D/8T.)1-I+2U-S0]CAK"%20"A@.7!"
  733. XM&4</.^TTGUF(I19VE;DSE-5HLM.G7&HU_JB+C@]HSWP]71\U4C"VU940(E)+
  734. XMP<H1'3F#KD:/9F%3DBCO@Q_M[MG,_Q()Y3W@T!P/3URV]1>;6]$K?%ZUP:!-
  735. XM(B"9N["J\].E@4'!=WN:'KT(E$]V[,]M[%K,LPO;G%PV,709 BO7-P+,E<RE
  736. XM4E]?\ZN&(VU$/\&!&,>\J3\Q C^Q.IL#;TC(AJI4DT7O4CA8Z]SSSVHIUI0[
  737. XM@XLP@&G<]+#,:$*JIZ@O_VFV-]SN?8SXZXVVG^S9=H'?J>+;IB+'A/I<W9+\
  738. XMR+'1( !_ 9TSM*2.D_;H\51!*G%PGA3HN+-8/@F'\\TW<CT\O/!)-BX72EFA
  739. XM''L.6<UK!\U, #)P;?9>/<6'PV"O."MT=QC(YVA+6VR_N6)]$<+67FY!"HW;
  740. XM([-B1Q Q<"VZ=WY)_D H;4D.''@#PO&B<S9KL3/9]Q_-<('W'3#81K #S2( 
  741. XM9$Y(7V+OWH]'ZLYBN_K0!YVZB<\U'X(IS;>XS?)/ E:'6""@\]E$L4FV[W=U
  742. XMW<F<^;C(WT^9^*7\/Q$/CR.!AA'O5#-&RX%CNF25J3#3E7#2 ?>3I>>AD7_U
  743. XMAS?#X<9-(GB^D!?*F4OK0[1H.BE0 D3S5U2.!X,VI__D2'%UKOH-<E=EIP#!
  744. XM&^8V@7@QZR8ECO+3^#;R^9S^T<&AKXE< [FZY5' (=N+VJSIKK$Z&>[E.YH7
  745. XM:;]AIA.IRD1QW>7%V(B5E<6,9T033'I>P./'<0[-]AH1CU7N0N\@N T3/!<D
  746. XM8I\>I':^5[>.Z:-+9CBF&MO+SMADL*"OWOMCF@D#HVYGN6T2]KGI\+QLTD$R
  747. XMSN0[-/:OYP.,BG.U4C=Q!9]L-SS;X.;LR]/#56X0'H^$1'R)8JNC+1L?6D@[
  748. XMH_LH6!M3,[1OQ.7$#<.@6Q=UA8$)6&(,'->/2LOHKE3@^W>_IMNELYL;X2"!
  749. XMR&KFIC)!L1)O$I@-%1Z@NH&V[&5+G@<41B4S< M72=70Z48)-!0-D0;OD@&B
  750. XMM9[(F>.%:%F^5DSI4?K+0>*Y8'IV=*ZDM!5U77#CB\ZGIE!XE@[S:SY7GUW(
  751. XM.\:%HS%@%?AYB;N<VZPX=9%_YS_-60$UB4UWHP"0@@13,>XX2VTUVJS:,PUH
  752. XM?HXI0P*3UIAG"#M>2UD4I*>H--WW.Q+H%NX#1)1IZY 7SSS/?+7LU_R[LL0+
  753. XM7?930JZPW;=V@KD^R,*S)C/S2W3IC7$G]9T/.*<7*"N*5[Y[;J=7)I)@QY.Q
  754. XMN!8GD.0ET1(WAM=?P<*=)W$?(<Y<=M&&+1<.<I<&/"03[QKT:3JEN]:UW^/@
  755. XM#/*2&%DQA[5GLD2-5$(1%G9X,H0B,1_@@1?T;P8Z%(_SU##QXV8.+T+S(MC;
  756. XM&^,\!ME#\'WEJ:;'TKUR_3X1@[JB.%8WCO(E5LDXO?\PA4R:/!=@S7M9AGG9
  757. XMI*G!A6#B<Y<SS/A7<W<T\9/ZL]3NN1O,'-QQ@ST]7$B_<<W4>_TYI]V=KB^1
  758. XM_=Z.7\KMXDP"@1X 4?/EW?TR:S]RY;$J4^K<A 9._)CL6E*<%M:(??Q!CA]^
  759. XM2PSAM&6D%\E(4KF9V\$_R!AF!B<P';N.)H)HPIN+8U%J1SM5SG$B2:R_ @-%
  760. XMHC]@#-?<A,L4-35+X:C"D*UHM\QU&#Z5UZB!#+H8Q ,@XP/RPUXMFLKJ[D'/
  761. XMP>S!L1/&B']P9G@5)XEWT'H#?5->'XI32FQIXBS)<W15J/V8!PNHGH&>O./_
  762. XM>O*75_UB 4_\)[]_5(U!LQ:_0V472S1$_6NSI[A6]2);(N9GJ6)@[2] IENZ
  763. XMOBL\58^/<%#YSB,S3=1#<>93*4%6^DP#\P[YRK0[=7J>&"M4EUK1JN1,*P!/
  764. XM1U<R*<=0P;#ZDT6@[T[WK,H\&Q%8XNW6<TDE# 3C]XJB$97G>0>!WB3R(\>Z
  765. XMI;PLGJ%?6C#V:1R_=I@4@^25H6LI_5=!<8@2C9#/A.F))X/ZV#/VX^3]7',E
  766. XM#H6324L?*B;JA["E6DPM=W*<G-Q3QP(@BO[1J;CD0%$M2>E-%AFV.S,0\+CB
  767. XM&JS_<'=%JN<FP$6SY8QQ!L?EXL:X!*-94,S*$QP_5'X9S.*]25@#H]ZTW??Y
  768. XM](HV!3=PEZO.E?OU)):^19>]!,O4(U9D$J!*19R0Z3N(4D,H]*'//BY3233G
  769. XMG G4K(6ERT-.]9RO,N>3[L^?PF/0BL&HM:633'C;^ZH3::*-X87KMC_7OZG,
  770. XMM/N[&B-'#D8N39BGBORCX-.,;*M6ZLW$]Z]".-;XN*)KV[P%+G&?_JG@<(&A
  771. XM$[OO+3TEJ"(7+D+.KY4_ QODVE?C9*7]BKELG:BW@+?%=EC^LNX+CFI.;1C:
  772. XM U]DFBSN6K_L+]G2F@NM_V2<2C0YT\O-K.:I]+0.+# +T?C#F:-FME21+[+W
  773. XMFHNWML18'**;LQ&/9=JS<'X-U+8C4^A0?[C.G"QO<'ZNV,$DS&P7C1Q+C39S
  774. XM(?3X9XW%U6X#\[L,RG8;HN4(5>1ITID&3YO_^.&F\]BR/'"N+@PF*:E@>@)L
  775. XMD8/;<&W.D41>RKQ.&CXQ\[>"9I+A>C/:P8?VF8JEP1"38MCO6BH%9TQ.3FCL
  776. XM=^@G^(3]^OC!;.MDZB/'T5PW'L/>B:][*M/=/+9G&\F_*OF$P 4N (<MJV!+
  777. XM,W5RD-@DTA"P:0+RL&,/W. 26=E"FR?%)_S>G1MV.)A4!:VQ?Z?D^A7EJV<K
  778. XM)JU+*# #B9F$ 8WDB<:7J@'(/-7[?H%:/9XRK"*RR=ZR#KQ! 6M1L$<58^%R
  779. XM8>DK0.1']MPAL_9JQQ4R45I36,*5P5X&$R;*'NH"1:;5>\B>1B+[E/(Y,-EU
  780. XMG0H,F\2\Y%O\LIM<'V8>XU_^R^"::!7&9VC]SYL@;0V1QA,#)#(B V)T?LJA
  781. XM*<.0L$-1D171YZV6(YI[8V7=9VJ!ZKN=U1X@?9)V>:O:VI-J#H#"D,BT,:!\
  782. XM5'6=YC_%/H_(]B"(+[<#"AR2Q+VW0AOD$]W58V,Z&;"T@7#/.1O02(\TI&L+
  783. XM\N>7Y5/1!I^>#$:3% >"'B<;?>GCW@'L!)T6XFKHIBTF0DJ GM?\2;,@>Q):
  784. XM@S]I)FV-'$VRI O5<HVIKYYD7A*9.0I>LR]YL<9@E"1W@/+$$>[$2IR90(P0
  785. XM[C$\3'R+;!>7D2U=[\AYE7,(5C"NP^%4/%F:1_WDT&A:N<$WF*R+*9E'2ZV6
  786. XM7"CMFL*X3%VPQM']5Y/B!'OFJE)%^V+3>EX>[Z@BP2"+;>+R5%D.&%%;6([Q
  787. XMN5'ISE#R_+S9G/"13\EJPT*J?!SI%(AVU2?\8D:E:D%CTVQ2_"<.[7D:I^>;
  788. XMHBI(,GG[5.W.=F+C.^@4__AMP!W<\1U,!R %=L?Z17@62JR!6K(V?P:W"[I^
  789. XM[AIQ*&6#+OHD*URLNGC/[4ZB+*1Q+^5!?T_=:D38E/12;%^CA&OA,^P:3<Y^
  790. XMD@-;SO<,$.UD%,Z%KO<42<2XYS7C/QVIG3(L-,"APLA74V\OZ;9BPO:W_062
  791. XMBM1GJ)I<'"QF+-.WM@;@FA(7=\CU?^7&VOY#L@:!HU _,3@AYE)U(;^0DAB]
  792. XM/=\"DDW&R&$* _5-0!<-_ET^=A*4.*I\D:DB?2:(L6=FL?](%:>111LZ1E!U
  793. XMT??1Y?OP&\IJ?BN[(B*8E_ZC;N$2///%<Y0W*I%3U$[Y1:P'0C+_^F05H,^(
  794. XM8<H.PU.P;@!5^:&+L)M&0.:)P(?S;V4*?SGP^^K'"B5XB\%"4Y9&#':E[*)Y
  795. XM_9SQ1[YV+N"3+/D""2J2O%:7&@XZLH)E7[,U9H:7DSWXT=>$D^H0H+O7@C8[
  796. XM8B^E=W;%U.U)KH_GW"Y;A/$+/,&[$U^@/D64@):.-1VL;4CY%C4ERW3\S^5]
  797. XM,(^%]+B*EDR,U ITN,;"HO$I1C/,]($'K6Q+W6/KX;!4Z+V#"^3P70Z\&]!C
  798. XMPYUC+C7%DYJNTQ Y?V:W[S#?[>/O#<_Y>]#;1Q5[,]Q-%$]P=[U;$,,%*N^O
  799. XM4C^[7.7W#[/U 7/;M"A(MSL!3U&#&>=)2=&<HT%[-/)+R 9"'9J6&=;M9D+:
  800. XM %TUY*U:)+]\SQ\9E]*!Q@_/05 Z"FG'F]?H8:^'ER'&_3>((R>Q<K& PLT1
  801. XM1E&H[+$::!KN.?4['BS;7$7_$B)W&N,@(=E$-7?#^T%TTCD&CYEJ+=SK%L1M
  802. XM\*=JE,9WJ!X7I?SF&A1=$ +5Q^\C.N+MK(?BC^87\>0F%-J.6X1#E0H(1\:4
  803. XMS1.$!GY(>@<)$*E32>6)F%(L"KZ6AI/26K2A'?6.N%GN,]Q<#NXFF2NO=(U;
  804. XMK[=?Y"@TOYQ:$);45OBQ] V8KVJ;'B]D]9=D6^LKD8,:VPR(+'Y^IMZ4:^Z*
  805. XMAVI&.X7PB*B^:+)-G,\:,*S.O+:VO2$$PPTX+=Q24 ?SCW+]O7K@^M&[?B_7
  806. XM'1'&4ROI,!WQPOPBM6:^]!Q@1M01-]T47]Z_NPL#OQ4L3?/Q&9G-<E:6%@7M
  807. XM)9D:"B /K%VR65]O74\Q]6<PZUHLO+,Q/0YKYA:.T)<TH>9*6_U0"B..WM B
  808. XM[6=CJUN)>BF0RM&8]WV((H,P4B%(TQUB4J?BV>CA-_H?I(WWR_0_V*B3W42<
  809. XM(/(*$)2;WH='2T)]%;=E?5>#0E?8:S;@JH_MED_Y#QRCU53R&M#1473G9X-$
  810. XM*G]#4Q0,H8 NZ@4J??(C);^BKMG9T/HC,_)R(E#7E#[QL_I4+[TPIIP_FKOY
  811. XMH'Y3+4#>BB7CG.+^F=>"^A]["%QR;5\0;V!TP[OQ#' O>4#EUF'3/0I^Q?M]
  812. XM<ZOL_LQSI&'C&NTYEUI"%:Y<5%"Z_CJ^ H+U<S=L=9$)EH4A-:$0B\H'+5S<
  813. XM5"[U HGM.\F Y*\0K&_TW&>S48+7JK1LVE*.K9:H-)S/E] O;7SN?!4GEDZ9
  814. XMJ= 3(Z[<=U<@#4;FHBU7@9!T#5$F0%>[&\()%PHKN'O/T,J$17N!MI";_-1)
  815. XM*+?78MUW6A@HYHRS_R_H:G7J*-7B\"^RQ)QH$5U^TD!+LVO5)'][3+#U+CJ)
  816. XM"\LD_+E9B,CJ3I^S4Q9GGZQ$6!PR')HP?":&FS"OJWB=&VBJFL]5V T$PSC:
  817. XM)ZC,'-MU("E6J.IH1UILA9!':2-)RFQI5'E.GK1+U5+_L:0MZAX;NYS]3U)V
  818. XM<[+">M'6G['$'&7_M[RS$FO#K-RB(\=9_MSU)MO\<"&60M>-JJ\/$]UAYWS7
  819. XMJ_%D#'BZ'_?7%[!H=U44#OP*9#__Y'G2A-[!E$SLV[*%S +T<%)]H@EKOD Q
  820. XM^7\>;!Z3Q* <^Y*NR(*D GLPU#A:#Y*CX!61IEP&K5Y?S4YV<(8"P3J.3;&?
  821. XM(E.)G=C?'!%!K%;P9EE2W)=(1@?8U$QKA*HA*A?>^SY8 ,B@K[3E^;G*=D!<
  822. XM<Z"SH55KJ?5"[%X%,7<AC$=X.:R'@ O +PX/#C U=SQAHY#+I5, /3C2@=-8
  823. XM$"\%R>(4!C+$\AS,Z;Q12!P1ZCJ6L@9V"5AA%IT#^'N@=<4"V:U7>;WZ@#$^
  824. XMQAC86Z@0U^OSD(BR?IIA\?0H\ZRNU"R9K0X'!=74_9GI6'!$-\QL&B9AGZP%
  825. XMKY]2T!?3^0-M(\U^W*+M"=,8!SE?T$U"P$D+XD;=A6+2TUOZ+_/!L.K'!T9%
  826. XMJJ3:7<<AS]?@GHE5(IF3S_I0P0()'X?Q=SJU;;M]1_:9NAT$&*P!G<G"T_SR
  827. XMY\AX&1Q/MLN^!/.@;_2?/6H%ID-73<D=,S9)E@>]@7=>_>M8N_67ZUK-7U_5
  828. XMM5V90M/WB&R9]\FHE7+V;1(98UO>F;=L=GC&Q4)\^,)I'GG7F>38FK3_CETR
  829. XM+C#@F %9Q9*HXDM8$EZK&KYWF4-JM0Z@%85-??40&A+HE(RY;UVZR-E5NM54
  830. XM /:/-Z!1TE%3YIDM8@1(2J%.G3S=1X1M&TSHJIL" %\81-B&<)Z5U\OB,*V$
  831. XM-\[7RN"7\WBJ*T^>C"NZ!=)'A7C2EX-OK R'8Q0J;$2Z2 __1),YRP0LM_M,
  832. XM;WSKK&YS,DY.5Q[:4S/"7I-C#_#:@#'?5^ (#E(IR*01WU,246:0"%B3MZ.O
  833. XM/<!Q'V.+MVM+ HZTH0AT^.:9[$ 1>QY55XN/!V,K3<+47:]5=%46_&\X/AFN
  834. XMFY?<0JB8X_J5^4S$J,5;^ :Y[<CAU+3VK5Y(YB<UC):4)2^D)!QSB%U1$/&C
  835. XMMI,-T$8,DQJF[$M, S-=J#0;U\V,9(\FEX&'?R.S)HJ%S^ \WPG9Z&4QR>!>
  836. XM/NF>YD^E<:HAY5S"C=@F5:5RR5#7Z:TXA>^'W19>?G)!F76'?X0UFY080Y/:
  837. XMA\VT(G&)[EJ$V,SOQ$X74<&0"/*[U7^!TH7P4$Q64PY68:7I!MCYCQ')TJK&
  838. XMD7'.",5""T?<]0\0@BDE]S^<_3W\*K+\$?($&2@6=(+V"6DS-* U=S5AC-/[
  839. XMN9%Y>T\?23>::VM>#!XOIIZ*+!48(EEZ=ER:WO]CIW$4RZ,0EIQT]@$17/,S
  840. XM5O,I_SN$!%=A^*@ LAK-4_0+/L0"KIL"9D$2$%WGWW&3A+J>ZHS8B;RF>B3O
  841. XM5;&+RQ3N<A>A2,>"<2SKV+UFOXLS(JVQD'2R-. 9R))0[O<7XH99.H 9XK1N
  842. XM%+OJDH%/E!!Z%T?%<:"+F8^635"74-\6\L3/!SCM+:WTL77;WVH:-2^H<O=U
  843. XM8)VA8I_E]UU3@ +0!:/RX$0N4@@5&9YP5AXR%35IOVJ]"?P]4@YUU*&_\;)L
  844. XMDFDOBE2;N$7>^_!X40TJ,6;D@G.*ZCC++?',!3@@_%WCDV6_C!"'KJF6L"5R
  845. XMRY["")6L;R"[+6'N*>OBM/;%FV4UMH 9^U_#HJA X:X4@^GBA[N.LILL.CAN
  846. XM/#%J"H*H^>GQ>.)KXYU2%7\_CS(W AY#>8-K_U'QRE;5.:?M#%XG+ R($!?5
  847. XM6B([1]-\F(N1#C&\^^&P3'N?Q3.GZ\=;[/@\L7\H"[<\=&1 .1_5FP5J+'6#
  848. XM ?'[9CH4W5"4@ +Z:]88>6V5(7OVZ5)?:_UCQY\H9EX:E'AY;D/_OH@H:YP@
  849. XMYX9XJTD']%,,K7<BA*-KT+W^B;\@&:Z;6\P :.1>JX1;H S E=X1X3-%6VK5
  850. XM8!]0&1H><A8WD0S SYZ3#)PB<Y<W*FIO]M;9^ZN7W>S$.=W\?=DE8GU B$NZ
  851. XM1T51J]_3PC#JHG_O]967<,&+5J\BC978HIIY]PCV.J<BP>;>SE2 .U[:YT94
  852. XM^W0P(R-9&VI0.@QRQ6)JB69'(*0 JY<H>^Z<S&RN\*>1V'G0E?JZ57X4\R]4
  853. XM.'Z!R^H:L=,##[=_IS_P,3B'K\$I<DZS;8!LUDVZT-V5YS1#<J_N(MT9FANX
  854. XMHS-?]71FFE@1)1><O:1*\WKP3IA=#O"T6!#TBDHY"KQ%)6"L5Z,EY3843-(T
  855. XMPP"R]!^UZXS)RSRAB]>T1&*BYVE>_7LZ[X)+#=E<_2G?FQV0>GKR1^C6X8YL
  856. XM&U^RQ2.G/.C'B7P'" ((0%3;*?QBSE&1,U$SHEP*M-1(L'^2-]V\.R>I"DQD
  857. XM=;N-XAVR_A]RT7,X"S70VM),JN_SPIIM6\ZV&NC;_KGG.)"A$->C2(JC<0 A
  858. XM+;V4K7^/&AT^/KOU]O%OH+[ U&LCVNH3;:T2)F^&[YQWL#.Y4.5)ORL@U!PM
  859. XM76G&AJRP6.= :(.\Y#\K[.R#N]0D+Q:%<GYNZ,8&$1TYS&NO2/N93 0L*PS,
  860. XMBW@A6IJF#]H9\T5*%2 >7R3Z>T!Z)R;I>B:V:*Z.,L6JAMIYTP ]!N_'@@5^
  861. XMZ39-)24DURK("WS0MBO$RHWLS/!%Z"#2>#$.X^&]K=*7,>R7^(4PBY1>S0E8
  862. XMXL%'.[BC,K=3T-TJN>CK0)F.AS-(S3("J&+?WF/.6RZI:.XD5B38?A \VNG-
  863. XM>5S.R4:SSEE]R)+UTN,"X]< C%!">G<PK*U4.>M\(S;54)GHO$YP(UZ!6,7"
  864. XMG 'QV7Z(T4U\\!;J89SUGTL><N(0AI"UX2.<S1'"9'1R3$J@Z1DN>X+95J*<
  865. XME+5?0T2HK\I3F;D_RQ^-ICAZWL[J*5FTT/\U<YDKNCR&V1(!(TT#6_ #LA[M
  866. XM%.DVG": %AA.X.,GRF?#C!P@QH\R..V]B!.UXC)'"XN.L:NV: 1"QJS4YSI$
  867. XMU?EW$"[S,(^@UO791)X4WN6^D\M-U1'\OBOA,$Z#KU6M+L(7A=7J5KG89%US
  868. XMU=Q2:WW<U\:I\K*&"IMQ(?1AL#-GCB0S1B]$JO->)<^N-9E28L[*)4OSB$,;
  869. XM-0ZQ@4$I-7-W.^8N=LF(VNIXLX,)10BKG_DM J$J0V4?DS4S#MU</,:$U7/C
  870. XMI:2TH^C^2?NNPB(@EX>!IX[&7B'P?7Q3(A-8G]A"Q"PK>8\Q@H5(<6A6A];9
  871. XMG_1,=4#!7FVDGBJ\G%: W[:FB2C9OI97*C7Q_8F^HYZ?T-?S!R9-;%7;<K"'
  872. XMY^&5%99-XI,8?D'DAU:0EP*S2GN&9KC.U(Y:14=O]B^XYC4?IK$.P3<==&UT
  873. XM],XT#_3<9F $.7"H ]'7_.R(MTBV_0F_50"L5P8+]MLE*N^7FH'7[;'VEFKB
  874. XMX4E'A!=.,UR);"D=>?/9#Q^G:L.V04A%3H4(P.WT +4F=3Z/)EN\_L5]!+Z>
  875. XM[RLQ9<R<5J#$M?,?0;V3L,%I-.;\#(&"/).I1?P)QQZ&V-N&"NY0HSOD6!+3
  876. XM!=FQQ) 03&!Y,:+%W6@0<<0NWV^LD[,K)=YNUS4(% "%C*'A'@I OU@'@4-'
  877. XM+)T[A)?J#X>FE=^[R)?(XY$3ZB=V16D.ZHN9J\U-%TS1OD_VH+;=N_Q1)@6"
  878. XM?-4 2\K]0@,G1@DK(!3WV^B:54" #<-3XP"&[X?TSU_&#<&"MHA[:;"<LX>"
  879. XMW)'2MQ!P-**[9YYQ@DE;TM7GC5"[@[K.9CF'<9B^+D:(01.OS[&I+1'J*$.#
  880. XM!&UJ-1 N>;8 +Y#33DB/B@QUU[\<L\&P_)XDK=_8L8Q&<5^:=T. :53 M:17
  881. XMJH9MZ^$0!_I4[ZA]YY#G*(W=^/4&?86"G@AKAIZ9">Y8[J9Z]_FU!F.T@S_Q
  882. XMG8)LBQ I K/-S^8.X87.! X!YUUK.PWV<D1DJ6'3,0/TQAE-/6!EFT &U2AJ
  883. XM(7$=61]F!X;")CS6AH-C >S91# +K,NA+870"@2TYJ4O3\AB<=0MKA5J6C_4
  884. XM;?7]8A"@9@^#P.UNVMC;3AD""8 ?*^VFQ)%SCWZK]%:PN)S@'[SSF(#(,-X=
  885. XMO2+UB2JZ_W/:>62"=!,_&_/$O=RV&4'((X(W#ZO%FR&'1P.*I[H3=RK\VV"G
  886. XM5^\$>J3XQ_X=$[!AHE%*L198P2-_1)3(7OT7X#GNT%*<,YWNCT:??1O^8(5%
  887. XMTT6O@2(BSF] @3L\;N2S/K:1C8*$'S$J\'B6_B@!=_4=@MV[73J1\?!2FC/%
  888. XMT^.U%40/AN4\O0/"\X^A8F;Q;"O7ATGWQA5@1* H<=8%*I0(F:Q7.WGO[41C
  889. XM2./$%8;LI+=/S&R_*.I&#H;]5S&>+C*0E.JWG7(->KYQ88F$JODL&]OR'=CG
  890. XM+,03JBF45<X#4\^OB_GG<C#;3,(1$%A77AWH-":;)R025QOI^'Z!U/C(\"T)
  891. XM4ACQ9MU*6Y7>&-?5VOJBF[,"&>!)%( X1'' \EE,?\TZ/Q)#S"Z ]0WFJQC>
  892. XMR1HH7Q8621]:Q#F>C?^FVEGN5D6/!O64$W<OXT/.QLL]\<4^4+<"HZC_I1@"
  893. XMO*;IQ-7):M28']=6G"SME!Q"XQ^J^"=INVG6B32?#04 %XP>'W=(B)@[\WOQ
  894. XMVK/]+>ZB_;IUV3=<(-PSU;=Z.JZ"K"[:]?'ZQF@N)+,)62--G*=^3E0+P7V"
  895. XMI9TL *.3I0_U-+ O<,>J^*7L6,DPP80JR.-_66XK;RXI;\A6JN$09IS]IJ/Y
  896. XMSV$:8'SMZQL6%)',Q.LOG'),'+-/\%?J#6*WEMN$N4[:EPBY4\<3-HID#E@9
  897. XMZ+$5%:7/=>:-$9C_P[3CH"#*F/%K%CBKJ\&X-V'3S$B#I\#V([4AE/!T!^;+
  898. XMIM<5__HQE@!A\ FJ0*)PPX!Q[,IL.AC>PE=>&DWE1+R?2-F:F/6[E61IP@@\
  899. XMHD6U7$ 7!*+!@%@@]?A[6P?M#BMPM%1 >$92#@ 7'^95#FJ:L(ET(W!7(VG0
  900. XMT#UV[?WHPP:M!F*/PQJ1RG;7$.C'?9SV@2<:KG&L>CW>$\*LA2/A('>>YWO^
  901. XMVF/+V8(P8CG','VMIF6RIEKF7R$8.V$E_C=<IUMKX]ZI/2W3QL5<KS#NW[$D
  902. XM2N5$SJ@ZSU(4"8RU0Y1!#3*G8AABV54B";= CY1R8]O](-VKO:-US:J ^!^U
  903. XMOB?F,).#&57 ?!FK$S ZP+<"3O,F1UM80"F-%U^EH<6R5@TT#G)-;K7L!R99
  904. XMY*)F6'VW<3V95P:S3&%\I/#**"]]B(/8)D)G.I9Z8&H>IDJUL2+$0K* >@W6
  905. XM,#2-Q:-: D?(5*', 5@6_ OP0Q ^99P_M F-G*S(V$[FSF.03<*(A+): #N7
  906. XM!1[9;->;)EU&>Z:)P+&NU$\K'-O4GE]\MR:(-2%G1A-1T=J2 ]-#QA+^MG5"
  907. XM;=LI]C\W%#\DG$H=!E2P)(B^3"&*E89OK6+N4#KF-BCZ<$%0_Z"+'U/**.\L
  908. XMNK8 RG0?D_J44KR$3"A0[GK"2FKP3WE,L+('OX#;1;0-/W4C9]_<WT751SDA
  909. XM^[E!5P>.)/4)AJ/]H@GFK](FA!=?*9U'0G\_&_P5O>8+CGPG2GP"J+T@?6(;
  910. XMJW(-@3)<U8*O[CF"%I7:D:($<+#R8+TZ[>>TC7;3"\<2#GN<26+PK!<<2;3\
  911. XM*> #O3Y<$F14I:1_420AX>B>@,&WIZV6\FQ\BO>[?SD$/"*0IPFBL/QAN*4X
  912. XMQJEJF5U)R4"^LS6H![Z$%D/>6^M>\=W95*I1D6#.\DAK&U#/'VCJ7D&9)1.6
  913. XM?D!48FO[#2H1D?ZF7F,4;N<"3 1JWPKF_)1&^=.^%@[A92<-HJF&[L+-6'60
  914. XM;8:QR/.:]-BG7R_'C8^>#8:L^DXIC7)*\5^8L_EX O QZ(*:GJ1PAK]OPD;E
  915. XM),/,4!]%H-3^AT;9](JAD@KCO*VI\E8E,IYV@U;M;V2)?X!]D<4ATHV#]<)"
  916. XM86>I%_B\D+G>%))KUI-&&C3HR:(#-YD?NWNJ6L?ON":$:WH8G&6?6A[&'-4\
  917. XM@LA ^0]QI'@W>IM  =C(S<D'NFSK7N\FP[B$NJ-,&@4(:_&,E=[R2VO%F2RD
  918. XM7'(^L]C?'>>P5B=AO"4".IYJZ;AC8CR.[L2N1_TG7N #%FZ+;<U]>)H-LN5E
  919. XMG]L$F.!$C#;-UVJP2*IK-O]<=(L:)=)?<&"?\U$L:)&KE]SP+?F^/K@8S-4I
  920. XM@O.$IQC89Z:$[K7&6,];B@-L#SHUC_7V34M7G>A^VK'A+'T,'20<(2@41AR/
  921. XM<R@?5(0_(>Q_&'(C=20MXS?+(E4Q7U%/'P"=^_:2G#);BR]FR#=B"[Y-<K&1
  922. XM4$I"X8E _%$\B4?SNY-.6)57SER$V\F.OL/)H=7Z!E,JSF+Y>K9M587M!N$S
  923. XMG>XSD-(:@O_8Q"_7]:5.P+7NM,YCG+EK@3Y6@!>3_DU,#+TMR!3%*-/^F_]5
  924. XM7K F.R4_V07+@&6D6/>'/RA+$S8?Y7#DWM0[)2*,B*G?$RG=R60=Q.D/Z1@,
  925. XM'7)=AU _?5]HE!K;Z<9,^FU46U+%<F@R));)G$;0>D0UQ2E",>QZ3;5JQ-%F
  926. XM7+@P_QZ,>OW\O=30>@/->:C$'[,:E=MBW1_(W9SRQCT[L13HO&FS F6(=83J
  927. XM:08E+.10/0XQZ(+S9%KBMF\#(*8_L\TQYI/_T8.#0",M J,SN>J$CR"<4*S8
  928. XM'FD6@V%$E(<ZP+5)9-[MU'Q$G%I06P)Z=6@;4$I1RA3MP<-T]0E#->J0-C+_
  929. XM$4KCH+@6 [(ZFU^X?*]6NHQ55SAH=GVB*R!A)J=Q0L>%6P-^4^)I9V\>&ME\
  930. XM:%:V259^R#B"U"EB[NWDX1<)]U[E5APZ?K0VU?H5N3G!/#RF2*1]^-5'5 2[
  931. XM5Y0?NZ+/,[=(IW9]$=P<Q]&LO_?4 P?):HJ_3I'\&.9N+:<..'Y5WCPWR!'\
  932. XM\,8<PM5V&31KJH>UMBR/FNOJD8G<OBPCESG=95&?9':KB0"J\#@-D4&(IK1%
  933. XM[P[WA&O+1&=US:M.=$JKD>N%/VB.U99(Y ES D(/9]7HM36'Z(P"VV&(NE]G
  934. XMH$^VX\&'QNM'8A +904@L]$P*"E%@J*5301680I,*UKA2Y51_Z>\NR.8,-["
  935. XM9:%TQT#>"?0R7J$I7[E_/31<M!2PESW9^+Y'*["P61?_ZWK9_VUIE5@RM3J/
  936. XM@R>_HK9DRJINY_XTQDQ_'O?3W,(?OUW\$Z>@^V D1F0I")S&U8OG"WLU;"V)
  937. XMQDB\X[3W]C'Q"ZK;LD%%V6T>]]D> !<3YT7IK( _41'CV[L4W(/T27L=$&SJ
  938. XMS7PF#];A.U:W9 @A/>X@,7O3C%:#./L1OFH U7:*4Y*'B!"^_4[$?J+5==$5
  939. XM5<O;OJ4 0AV 5;/\ &"UZ<.<6B-46+$4M9:EL%U"XD/C4)M%@[ATS?TX5XYN
  940. XMZ7FDNR]P!+_L0Z-YNH)=DIVT)!ICB,\+XWOZP7VMI6<8$R9[DCNW_)_;_MQQ
  941. XM;4PFQSO@626N'BA04.0/BV6^EWNBCA.<3K#^#B%.^GU(<_+W %9]_H(2%P:U
  942. XM#C'%[P2>QBX=BD'C[5,H-&JOQS";(1<.Q+_J,C=O$#D:*X_H_+RLI[[@??AD
  943. XMW&E,^"Q7Y92L.J:^C7TV8$?U^.3+QWMCSX!R;<?4Y6(IUSPLX#BK=27R7K)F
  944. XM4]2"4E>>:6WS$^RT:G9.8V=BVUI'=X1[:'?2PAOX&E/0[/^*F'SMC(?BC*G6
  945. XMQ![R9@F:R/]$SAC*8TS77NEF.E.P0X4>7"_8L4,/0\)C8.W8J^EGZHV +29U
  946. XM4H<R;VRL+@>H9M?(TB']CH9_AK^8G7TD*E&2]E_Q< @];"HEZV\L#J.54"<%
  947. XM)IXK8'@F<)Q(Y,)%KB67R /K5W6$3%M-A?M3DZ']1;&P6T4,).$G)47W,'75
  948. XMQS;H+[3G,7TH?0.;$4P\U6N/<#0JAC<'_[U#L O!NH&7L>Q5YN!@+P$43L.K
  949. XM+6<U;K$\I]ZW]0G4J[TGCEU3>>9*$\?S+C$-P[\"E8+C/9W;_" QXN6\P#]E
  950. XM\:@M<4S0![$%(_9 [[[Q62P#^C,>I3*8\CKM=E-JZ3V'?@[%*6ME6AVU]")P
  951. XM?(JL(C^V(V63C!;RK^\5=S Y<^\K.;_@5:_F'J=5AN"%(]GB3&I0Q-8Q6;/,
  952. XM%8;QM?TV,=IF6&@]4$O--E'_!IP[B)R80$Y[S\]4.8%WL=T8B5FG[XP9H20=
  953. XM!N^:O'&R<9%<31'/.9 IZ]XL5I_K: T>^CIIZ.OB$Q3;&I95IFB0R4$)*#6'
  954. XME%PL+TW*CKCTX#. E?7K3N?CLMAB"?2K:[O[@<:SYV!&+ /<;C_]/N7KXFXQ
  955. XM!S]*T.6!_7^;7$L""^0I/WMV+E#%\UTLW%S;0F,PW<;)0]EE-+TS&"9]8./T
  956. XMOZ.Q-X\5MDX)_Q:UO#MR!*J_+_%8?B"2:+*L(]?$'=%+;)W<GB\CEQ!^=%AW
  957. XM55%X75!Q88]E18R69<9Q+1](J9[:R=U%H>(6E\L);WK7\\O$BT($2 @^H2 "
  958. XMYI4=77>"[ 7+(X6L^GY$S*!UUYPW,OV8FCF=PT (,1WN@/F]G]$TABVSX:B(
  959. XMMF5]B18/%O*<W^T"2'.=2J >LQE"TY!1NS><B<)QQ!(U[Y_O$(S[L0%G(.'2
  960. XMU04C< [9Z :STPEIGB*8'Y]8</IZA.YA_LGH.\=(S3 I#1F1>%=&NYO^Y[,6
  961. XMS$REO"0*+)+HG7?(J@54+SR^HDCP)D6;RR:J\'HX\)GK;TK__M9YOU+Z>=(B
  962. XM6=#^1D()'?P R!1LR=9B 379VD_Q:P?'(]'!+J2"N!9+2.1;B#_\?.$MU]-Y
  963. XM+Q(SF,/#S3ZFXZGTN 17(\E5M0LPC !7C@(K<506%U"^?6U"7<GU%,L:H:O^
  964. XM\2U<.J%,G>'7++$1DSI**GI7ALG^^1TN%WF2MY5<&D@I<+T?6L;5\&.&3Z<\
  965. XM.QXX#1#P"SF:4:H_H0>*^JM5<"NN,1WTU.(SA<=T[C\2':?: +<((0!NO+EA
  966. XM/#VZ-/R^K8 DQFWBD@]]][0KQ"IWZ43-A;]N;-->S;.WXD/Q:9AD$S>5NUBT
  967. XMXGX5(XH=BYBCP84TX=HV$[T6"?#KN$J^.=0Z34/6^8T.9)9AK&B<\U73'26$
  968. XM6[UI7)-^M0@Y]OE#G)W?9Z=Z.7*Z0T8S])]*%\EOCZR+H8== 0INSL)H.FJE
  969. XME0'PCXB".75:0D3BOXB$[E0FDEMU8@H,K[_/!(K5^!.X/52,P;A)<1@;J'M(
  970. XME3@P]57& 'SOF_#75=UJ,V&C>7<>3"SU-I_!>W9$W+6KR:],WTF,YGC5P,9B
  971. XM\<3D[M#85X?P_0\_Q8RO*T5X*)Y<OCK@0_FXJZ\?$'^.K$%S89*A[U5\6L-_
  972. XMU9W-MK]$)(BF\] :-VK_WCHQ#Q'*IX+D'RU>#PJH\[F82_L#*AU/XBBUMHE&
  973. XM%DT6$B/:R-#9RL"FOR3S-YI4-(8-]I-"(-_ >PH>UC'-L:GM$T"/01@IG4X.
  974. XM#K(Y*=]'WX;"F1P+"VNL8@@'Q'ZW1ZI2<R +OTD*C9J:U5ZD<W(<)-I-L..*
  975. XMJO8BYY4!<?+9[0RX=296BD/NX'$YL X4,CAW:HED4Q?>?<A$X4K$<_:$6^5+
  976. XMBZZUO]V/3)>3S_N-]BJZA&^.=RWKK:O"SA-]6,^AQO7SJ 4E60@V9)'5T&[X
  977. XM)8=JNXN5!F+:A;LBLW[IW9M;3]/ =;>6L^0!E'5X!.VH)?LOR;\>J]8/P",3
  978. XM@;N:<0:M[D/?O:K3GUMT.T?B;C+ D-B#C;A7PK*CZ/2/$FI5IY]4+[*::<^P
  979. XM2,T/Q6&=)DH!IL*J157BR]XGCRL:(#Z)4$^6<AM9;29.KDGDL>33$6U\%S90
  980. XMD)WC!'<K6$/%[Q'@U2AOL/>4?7&&2!@A#>4!ZXBC#SQVX_C^;+#,)1/KZ^8-
  981. XM6#H% E4:\;/5B@#;30Z0N#.K^H#,FH"_YDLL 4)@LJK9_?]FGNL7,;^[[P5R
  982. XM"B>X47VB7(F<ZA?)*KSE'P\&*J!_N3EL;E?BO?']:QLU_*VPUAYFXB:V[5 %
  983. XM*80 'Y$$WK".\+DWF%=[HMKITQ+A:Q=-B&"D)B^(OTB *7U7:I,4%KB<"><0
  984. XM*-K[QUR=;[-(Q(XJS!;[/.V [21=B0;LT[U(("P<M?N18'B'BW6QC^JH-?=-
  985. XM:*'*6@/G+"S15X4U-=MR2VF[/4%@G"1D3$-9M,*_&A@*N2(:?OWBKKTU#=V7
  986. XM\I+'9A1Y]NHLD:315WRBZ$F1$8]77LJU:%L0,<PEU,RB2R($^O'$3]RQEL-*
  987. XM TD:(),*'=0(MS%:PG?4,T!)0Z> ;(;9>E@'J]G2EA9?7F[?XD#V/"57%2>T
  988. XM<A1S2"<21(#D\P ]O^,,K[VW-^T6&R44^58Q:^&PMZMPAIFM#51'QQ T5:PP
  989. XM8#^FYGIA0Q >I%-/@7-@%)T,LOH7?-"'+;XFFCYW=^CDI+2E>)"V+GU\IZUR
  990. XMR)K# %[T*GZ$9=NM+!+.')+^=Y9>W81RLVD%E9 29A6V;*/JJE.>8&J*"P*F
  991. XML#*F+,SO>N^%?9L ^ZL0:*H7*?_(%CPG+0Y-\](8[HHT,1^!3#2;MXI);O/Q
  992. XMJ+(S"6K9<137+)"@8*#R(/37.SX@Y>OZGJ)//2U864>"O!.$X'CX/[2I=WW[
  993. XMUB<F,QU#:1AZK,W1?0BAAR_'PU_JRD^IM? Z</3Y*T_?!1L6<[D--C'%*VFL
  994. XMJE$,(90L>WRK?%0S9,ID'LG:R#)J:>M)2TK=#^"[PIYAAQP#IN;&Q3C+/-68
  995. XM9C?'5:^4*<8*#LJA*O&?P0B/.A"6IC^/]PCX'K4G:CFAIX"V-^#5,M#5X[X1
  996. XM/POR)76*%JA0,TH*04!B"@L[,$SWXH.40W03Y!KV'./&.^V0Y_:C(5PX<$H@
  997. XM0:RX1?D"N]ACJ&?-NF<)B#@[/91OC\E%HG4%T:ASZXODKOS)^#!US3$[*2;8
  998. XM29TRGJ3F?>V:('!_M&>,5O9-!U&?!K\%3;RQQB61QA@4(.5B/C);#9>@&C67
  999. XMC&G6E\"<N^ E4EN]T:6O'(G).5I2<-YHP["W82/J]:)F<&PY)DW4*1VF&JHH
  1000. XM8%D;\1OGA*V97 ?!KY"-BC@5EP(J3M,8VSTRZRU#?"T*>LZ-(S "L1^0B4I(
  1001. XMSGWVW:238-+?$_%]?#^2A)JLQI2FX_]T"AX?N)9SG( A+!C85F-_4:^DR9%_
  1002. XM#VK F ):)CHAR5]3QMS1R).JA[(8I;RBK*]XN6[[B.-!HVK0&5 ]$ #G?H82
  1003. XM@9HO[Y3;1@]\1*\:;3K?[A@E]8Z1<@CM?+1_43PH!@.]M*&5.125'!94D8 D
  1004. XMXH3P>?8\L/<DOMAX>77(0:*VH+&'$+SC";QM<G<9Q1!'#.1X460_8=TI$_9O
  1005. XM2MV93<,Q6EVCUL4NB!$8=.-*<VO9WAZUZRAYF"PP]#AX^K%(-AZ9R.=8.4?K
  1006. XM_[__%HFO!-_;#\I*O6XL)L1Z%_P6F ^ V!3S1S%\U7C,U3:](PM;O#$[U*7D
  1007. XMU2-*'05F.ON4,RE?R(7_ 'S5K+2_^8C($;B6^X"[@F%BA#&1GS8B[^),_P4M
  1008. XM(6A"^H<V#N0=Y/#%ME)"B4-H?R1+*)Y.1&06GG&"OO1SUKDLY\O*)]7.&A9%
  1009. XM7JS>%5)H4LW8;^\ 2,G&IL[M"O\[C1"8%>3\%P-G4%!BBHP<0Z($O)@*>?+#
  1010. XML(5%B4B3Y.=?QG.'$UK(;TE;2-)LQZU*M2[CDJ&0-'5Z+Y!DR9X@^(+X0+++
  1011. XM?P9=HM3_%(I^=64$HS'MM<1%@QR\>:KQW.J&Y++L7[*"\X-]Y2-?,DB9-/,8
  1012. XM-Q[!+<%[+[PZX4KRWXF%5;E=:OVLT1UPT\%S$H6[-GPO&Q5UQB%$D*,%Y358
  1013. XM4+%ME)PQL[=@(0!7PF+80M[M5@$IH&:V ?8/CQ #&Z?3.Q P&W<+#[?36,;(
  1014. XMZ6+C6U)2Q_YT)DM4Q=%^Z6PC?K*4AOW&HT:P>+()?[.E<HR1DB^#Y5<N)D2&
  1015. XM0H6J[<-G0PH9<M:=+/PH^+UP&MN:XZD71J<!JDZ%$.]N<WNM:RDSO?D!$Z!V
  1016. XM46$8K-QD[:B(2"]#)72$R=[Q^,=-9:.3%G6UOJX!:VGX%--"2X)]EN5-GGCT
  1017. XMQZ&\KIT2<Q^(Q@J4RQOFA([&IOX[0[RH59=7;\X+;FJHP*='PI(CES)91]9;
  1018. XM35):#F6T"2Y@"MQ"@*:N@_!QN9=W3Q)G,,._<X '0*O/5Y&U=SP]/8(ECH%D
  1019. XMH6Y6.M_HK<6&"=SFZIP4;NH[!D5[$<>$>9>?@RW4?=+?P)K+]Z@WJ=):D, 7
  1020. XM]R/;BN@^D)<Y^7KA?0MN&+>./6/RXEU.Q_J'ZL(>[GA4X4:!(/H00U;=YB"0
  1021. XMI5J#T+.O3R.1^76:LD8(V2)$NG!DQLI3]<M&AL?KN(!_O"RAIE!M)KBVTM$Z
  1022. XM1:[&A-)D4X07M&:7W8USD*>%/T#+@*\@\8/73U]7R8I;O.2LXT3UDCV3;_ X
  1023. XM"TFZTXE2EBT]] L[8%B\8?[$22(6)Z].@]"? GK3^9WIBR7\;=#)1RYZZBG6
  1024. XM/\?F1?YF-<].=_M( Z<2H5<E2NXS]"LI+^=GP]F<]'S?9O;O'',"Y/V<ZS8 
  1025. XM7V.N@\99&.]AC5-2A##[+[^BQ9PJ!)<V>^]ZSIRL3((-FNKLG-8*LY,2;&J]
  1026. XM^50O</ OQDYZ:RC+K386_H#8[R6D4Q.&)<X?J?#X;!0]&=2P@C1R 2?U!KAG
  1027. XM6 BP=<(WN#'JTV!4=@FN7@4HEKJ&V4L0U%P'Z_>#E/+4M"74 R4M<X,^.OT_
  1028. XM*]9V@QQUTC^8'$?W^)I8^ROZT<M]OTB(Y9MXR9C:!R1;HHB:@R1PM=>LT0.F
  1029. XM*14&?=-"I(N?OB2;X<+L'F!/?Z,?]2&>U9<1[U02I2<I)/(F>4*$OMOO'I")
  1030. XM82'0_*<T5I[?]T+=/"XQC<S:V7$W_Q]LL=AM0[IO?]\\LG!5ACY^/M/=BABI
  1031. XMQ= 8';QQ#A]^(07)N/;01VFK(@YQY&V-=!KG4[-W.K(K>S+2N8>II"2;8U%W
  1032. XM Y^!TJBB9-3&F5B&"Y@?F$KQV5 I\>JL ZR(R,146.1-)-GN[^WI80LZ83E)
  1033. XMKJIF*GM3!U=+W>N*<FPD9QL:+&%[@FR8\B4Z%GYUJDCPHTZICFV';\-Q!':C
  1034. XM=&&V\M/9UIFB@EWKMSPA8,D __C>X^]L,1!KMOA$O2>K2I^EV$+!M\M)N14%
  1035. XMD8_0G>U,N\\D012[/%6*XT\!P@LI$[%><O[+-A!LQ=V/@;(#DL=:MR+QLI%(
  1036. XMS::%RVPW21C)=Y_W+%:VT8\_1X)=-3!# 1@.:S33NC "XJ-XHPHG@2!;I].;
  1037. XM@H(.3AC(4W:Q>0TW]JC,T%U-?_Z$ <W83\.M\]V_K0!\O4/1V%=5[2K_D4&*
  1038. XM+\51^%;R./22L2E63"_W\D=Y58GW=FD7!5!(T>=4\22QD<^[BAJ&8]>\Y^"%
  1039. XM(AALJZJ4\%+(K(T;=W0Y(H0RHO:P>GTS9_&C515K4H3ZK,H2M9&&K5;QDN"1
  1040. XM$&7U9>W(^K,*+")32<#BA@;&G3%.#P)&0"^WK_5:5Z>N_O\>E&]#JA>8(;#1
  1041. XM(\T7U3[Q9.CSMH=AP2P!6Z%0- CM:]PF-ZX4P^JQFHSKJ(]]Z#\DBUG9]WV\
  1042. XMT8G*.E%O+8L(@S^$(I  (GT>TS:%^5NE1D,)\M5 N^_D/S;R*8L'[&F](G(T
  1043. XM[Z/A52 DZ1@M8#9H(V-3<K'[FWOZMS-49++ O4]WE97._+@F4N16O(X06 B1
  1044. XM\H"LC/[)F2KPT2T\CC-YB@L/-4I5PN:I'5.M:?)#!^C^@[K.IGUG<_-_&?\4
  1045. XM9^K' 6%AH7A5\M8IRXJ1&? K%VO=ER_N "EW/H9%.:UA"3PM])>E6S55H"2!
  1046. XMA/TZ:K:)('%M.\O+39PKDRXF38.+4W>5%^MKH_:?^'(1(8/#JXPN!]FJ3P,P
  1047. XMA6@-@@A\!\08>$LCX6]U$L;(JM:SN8G_ ">\J"*^%(5:8P]].@5Y\@VP.T7S
  1048. XMGF+S%L5I&"8T/P0+,*"*Y=7P10,C,!,[QG16/2'9T$%I;JB#].$!+ VM,P_?
  1049. XM!T<[V:@R!P:LO86=6Z\_#04TML12EW>R/HA@TC[QF!U7XFC04+F@UII+$@/1
  1050. XMM3*?B7X*_W)3!'>_C+K6\"0QMYA8D7?W(;>37'VN%E\?T^?PE1)XXGG^Z2IK
  1051. XM;]_4D B:)C=\G) 2$?M18A_J?\LPOBLX7.=#9 G!E*IL-T1RXVEA.LTKM=T)
  1052. XM::CL0/A*N;?QJ+:S.@..?E/!P>9-C5OG1*#QDC+VO86<DOTSWLU+Q="OK "V
  1053. XMHN\%'3X=L-C9@3H#(Y$;R2D1RNV_[0^576-#,M4<%P\,U(R7!M0FC_O.N%$A
  1054. XMNIGJCJL2N,D8@3WH&BJZ?:/&QY4LLPG4>"(I@$@C14*K".93M'M4D6:/Z&#.
  1055. XM%4S7K 6%=VA@UM>"M]7K; HSM;TQ74VP;;O!ZZIP-V]O'>@8N?4T:*XTT1*9
  1056. XM#PITCV:;3SXAD7VN_+N@>JD8SM./\1\GO1Q$+8[HK_&M7;KSP+"1S38LZ)KU
  1057. XM%T%]A9- SOPQR[60)00FEF9*?[_E!F<[-3+?+8@I[Y+Y$ZC.L#\GM"S<2#"U
  1058. XM2%WDY"+F=72A<*VY(;!7%T1F3WQ5@4/7/E^+</&-M?E@A'SE#?[PZ+GU---L
  1059. XM@HQ:0\N+\/0VGYO,$W2$>^XGNL[!O]XXQ=[#3F]*#4;@T>>-Y%P2JLHO)DEI
  1060. XMTXRY0]YJXH"T@%?@M)34$Q7(4/)NA?7WH6<>#G18B5B8]KDD"4IMYL7#Z]0=
  1061. XM4$G[%]*Y_[-+76,1<92>FA)LXW]).*@D7ZYA+O0S5)][MX=E,!?/(T0LK' A
  1062. XM)'>+PPY?)LPC'&%.22CY6'S:<\6]0:9]X:@Q7^5E@\=S;(JY94XAB^R>78.[
  1063. XM+?O6M21@T-J[W.W5-^RFY=]S/;/S#V[9YPA]U8M!U8.MF@K@F]@ KX2GO3+R
  1064. XM/&?NPVV/AN<TT[\[3EAT4Y] 0N.' GZYVTUO>&_[#6_BSOB8R4L&5F$3_:(2
  1065. XMN:/UYV!9VNBZ@45%$;;<=BQ<98-E1:[7DSE>-!O?UE(ML3;![YU8>&LZ,X &
  1066. XM0U&AO)54O#!J9&NM#!+];X!DE)15G>1@73*+B.S:K_+@.M7^[\-#C11A*>FU
  1067. XMNZ(?,1E39#1HU(@O?[B6RJL[I29JBV1\-3EGO\8'=+TK:Y*K:N?*/4@5'!2C
  1068. XMB)+TY"ZPS4#@JO\:@I!N]"A2-3WMPH>GZ7'DL$R\#[7SE+-]'C538&UCY[A.
  1069. XM*6'Y$.AV%_G4UY.&TZ9',S]_R?T\^5(^N-*VG6(KKMMC'0AV-55=] LNIX97
  1070. XM!97.;:9'MS"6+D;RT2BM+LKULDJ\9AVE8 .!.S 0J&W,,H,\/N['9^-WHM<4
  1071. XMZ,L5*I9?F4_VJE 7Y;%,%%GO([W4K8;/7CK+&;C1#4PT'BM8IR3D[!P@VUSO
  1072. XM>B]3,,H\^MS%U?QHD-7?,WJK098L<$ D%'-L?L%;LQ'N27=!JV4<.21V,2Y!
  1073. XMAD>QAS!D:A.7 (+=#IPH,EXOSN2?M=>V3$BO6JZE05FQU@4;(C3TK^%C]1$"
  1074. XM8\R0W^D\T<QSU"B/RBO?3R9'.VB4B_"VZ('8=L,IQG8V5M]>7(^@J$:#J6&\
  1075. XM*GQ?YG5R$%6SE(0T6,<<D[+3R/TTX;6X^MF(RK]!&4;8J4JJF?$"AW,08[;G
  1076. XMZR\ABU]-ST[='C,3R(+(3V;M*>H0DWBEF_O99;"UZ'(1/I#"W/Q/0ZM?_G)6
  1077. XM[W=KT6(,9%K<_&XBCO7=EK$"]ES.R9@TSZU'58UNT"@B% S@1.L''DZ;,BW&
  1078. XM3)TQQI4IG$9A#WQB\G6R NQ/8CSQT8LKB3(R,*NQAP]TT#+)IS![3+X6]_A 
  1079. XMH^2*=Q:VKUD3JUB!4F""*I3ZI\#L 5I@BGRY A!YZ%\JY_,?\%XYQ?UKN%-G
  1080. XMCW!]MZ\U2.WPE;84'4B02 ;'*.9=+0RK-4UR77%&:(9M/Y\ENVB*T0.]KLZR
  1081. XMS/4K\KR<0*I"3Y^V_(%B]XSQ) *<)$E"47/%*V7S!1>)!QUQ'9M2Z6PYYAA.
  1082. XMT Y948=0IWAF"E>=8'<8-]7?G1^5^.!I?QG!P=!<+=^SRL,BHJV[ZA*B]9<I
  1083. XMDP.8)8+$@\EH#;'6?&M1]XAF!<L:@:_VV QD(Q3^S5<7 31S4UW5D+L;)B"'
  1084. XM.47*K&O2'MJ!#8)<^DQH_*7M7M< P)Y?4<R;V]>NW ,6**4A*Z5Z?@$FB#+>
  1085. XMTFXP4L^_&-4F"_GII%8%VA2O.!%+/[U!ULU\/Y?W>LYGC?7D%_R$@)9X$.Z>
  1086. XM=O8CNS'!X7S'D:Y5 <5'3NKZ>;I.S/,)H&I&52]_&1 + V[1=GDC.\CJ3QAQ
  1087. XM(B8P?N^ASO/9%S.QVS(:;?Z=?@5F84$*0C&_TW@&+U<9O:]\34E."II>GQF!
  1088. XM@5@M] -1GV-_)*%E=QA(<XJF"7?(/%;5 _08+P?]I<2&CS-BM(SR)8[HW:Q#
  1089. XMZHNO>0PF-BK$#_YXP&&MQ#A_56>9(#W/IM &$O#S2LQT_62W"$'#HE\9(X*I
  1090. XM97SH*;!^GHYE:C8(:X4CD:L7?LRZ&3B>^)1.9AI2#6L^OKF\?R+^!PL_Q@/-
  1091. XMBY26)"<J?3O:[@0"_H 1#Z1G9%M;WO=FDLKGYBX2SPW(AW[&_M%<*ANSM!)Y
  1092. XMN&Y'TTF]^IZT8L8ZG5</8NG' GW/K=W"_*EV GC&HM@!-,.9B31VERCV6E2#
  1093. XMEY.Y3+Z3@%:H]S_(_=.4.H)906 DQ1^V4C(@RZ7^]]H*Q9J5EGDOMT])K.DT
  1094. XMH'J)>P5^TT*.T6D[DH_(J&O")M;A=#]O7%E%Y5[F7-N;"7YETFMZA&5;!W4F
  1095. XM$'S[F8R72I0P&'->>9@?@MHZ%9QP#8U<@4.E!N5Q=^T27U;;]1F.Y$2J.&K;
  1096. XM#OLF>X-J<#=>=4:X&SI)]D&^^PN;T$=%3Z5BC;R$40EU4X][@VA'>3X3H1V*
  1097. XMV3-S;4?'4I8UC@L*&Q^Y9H&Y5^#' 0^LMK)W02AKW*1#.BS99&!/PZ F]:IT
  1098. XM_6TDG'T5V4&$"+"3=NAM ']YPDQ$6H^*D8()& K)OTWYQ[O+&@!>F#90L+VM
  1099. XMOYHN',9&Z+TZ<\CBJINPC%P#HZSXU 8Q19XMZ235I%IC"3 -D)-%1^TC(6_?
  1100. XMP^ZNX]/QE\!&A_#%WP J8#[PNN3S66Y*9+$(-E<[5[!IC<JM&[D'8:!^A/G.
  1101. XM&J?KWE60ZD3_:IY4:_PH@-G$F,FBYUSY<L$&',XES&# *\ OT#.SORW:U\%4
  1102. XMQE]4$\?P<B+\W$I6H>?B^WF'VG4/'*N?WV?GAA^_IW9X%SJ0?Q>G#J17+&( 
  1103. XM-DBLL\\:J9)'[X8Z7QB48:5O;,B2++6T79%O_P<TMC:!*=,RVL-K\J8X7A:7
  1104. XM0R2'IH*:.VU'45!=#VP3FFHJ:I+N&!.Y=%O:EYZ$E+G\"PNV<+8E<&J6?)R_
  1105. XM3W0:C/V.(5P[ -/Q'66\_*7I&N59KOE\JZ;?O\ AV[^+AH6BC!2!_J$:=XDD
  1106. XJN'_WN+ +EML^=D=OW(I@D*B2!IIES4?\%?'[/68B7:II7 ]^061$H.L 
  1107. Xend
  1108. END_OF_FILE
  1109.   if test 24768 -ne `wc -c <'bitio104/test.bit.UU'`; then
  1110.     echo shar: \"'bitio104/test.bit.UU'\" unpacked with wrong size!
  1111.   else
  1112.     echo shar: Uudecoding \"'bitio104/test.bit'\" \(17952 characters\)
  1113.     cat bitio104/test.bit.UU | uudecode
  1114.     if test 17952 -ne `wc -c <'bitio104/test.bit'`; then
  1115.       echo shar: \"'bitio104/test.bit'\" uudecoded with wrong size!
  1116.     else
  1117.       rm bitio104/test.bit.UU
  1118.     fi
  1119.   fi
  1120.   # end of 'bitio104/test.bit.UU'
  1121. fi
  1122. echo shar: End of archive 1 \(of 3\).
  1123. cp /dev/null ark1isdone
  1124. MISSING=""
  1125. for I in 1 2 3 ; do
  1126.     if test ! -f ark${I}isdone ; then
  1127.     MISSING="${MISSING} ${I}"
  1128.     fi
  1129. done
  1130. if test "${MISSING}" = "" ; then
  1131.     echo You have unpacked all 3 archives.
  1132.     rm -f ark[1-9]isdone
  1133. else
  1134.     echo You still must unpack the following archives:
  1135.     echo "        " ${MISSING}
  1136. fi
  1137. exit 0
  1138. exit 0 # Just in case...
  1139.