Mercurial > hg > xemacs-beta
changeset 229:434959a2fba3 r20-5b13
Import from CVS: tag r20-5b13
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:13:02 +0200 |
parents | 654d0f3a6a9b |
children | 39ed1d2bdd9d |
files | CHANGES-beta ChangeLog PROBLEMS etc/BETA etc/edt-user.doc etc/frame-icon/RIP.xbm etc/frame-icon/abacus.xbm etc/frame-icon/archie.xbm etc/frame-icon/batman.xbm etc/frame-icon/broadcast.xbm etc/frame-icon/bug-48.xbm etc/frame-icon/c++.xbm etc/frame-icon/c.xbm etc/frame-icon/calculator.xbm etc/frame-icon/calendar.xbm etc/frame-icon/candle.xbm etc/frame-icon/cat_black.xbm etc/frame-icon/coffee.xbm etc/frame-icon/connections-48.xbm etc/frame-icon/cray.xbm etc/frame-icon/dont_panic.xbm etc/frame-icon/drawing.xbm etc/frame-icon/elisp.xbm etc/frame-icon/escherknot.xbm etc/frame-icon/eye.xbm etc/frame-icon/filing.xbm etc/frame-icon/finger.xbm etc/frame-icon/galaxy.xbm etc/frame-icon/gnu.xbm etc/frame-icon/gopher.xbm etc/frame-icon/help.xbm etc/frame-icon/hourglass.xbm etc/frame-icon/kotl.xbm etc/frame-icon/library.xbm etc/frame-icon/lisp.xbm etc/frame-icon/load.xbm etc/frame-icon/mail.xbm etc/frame-icon/manpage.xbm etc/frame-icon/manpage2.xbm etc/frame-icon/match.xbm etc/frame-icon/meter.xbm etc/frame-icon/mickey-wiz.xbm etc/frame-icon/network.xbm etc/frame-icon/news.xbm etc/frame-icon/news2.xbm etc/frame-icon/nuke.xbm etc/frame-icon/outline.xbm etc/frame-icon/page.xbm etc/frame-icon/perl.xbm etc/frame-icon/phone.xbm etc/frame-icon/quality.xbm etc/frame-icon/question.xbm etc/frame-icon/radioactive.xbm etc/frame-icon/recycle.xbm etc/frame-icon/rlogin.xbm etc/frame-icon/scroll.xbm etc/frame-icon/scroll2.xbm etc/frame-icon/splat.xbm etc/frame-icon/stopsign.xbm etc/frame-icon/sundae.xbm etc/frame-icon/swissknife.xbm etc/frame-icon/tardis.xbm etc/frame-icon/terminal.xbm etc/frame-icon/termlock.xbm etc/frame-icon/tex-48.xbm etc/frame-icon/texinfo.xbm etc/frame-icon/tree-48.xbm etc/frame-icon/tree.xbm etc/frame-icon/wizard.xbm etc/frame-icon/words.xbm etc/frame-icon/world-inv.xbm etc/frame-icon/world.xbm etc/frame-icon/xmosaic.xbm etc/frame-icon/ying-yang-48.xbm etc/time/0.xpm etc/time/1.xpm etc/time/2.xpm etc/time/3.xpm etc/time/4.xpm etc/time/5.xpm etc/time/6.xpm etc/time/7.xpm etc/time/8.xpm etc/time/9.xpm etc/time/am.xpm etc/time/dp.xpm etc/time/l-0.0.xpm etc/time/l-0.5.xpm etc/time/l-1.0.xpm etc/time/l-1.5.xpm etc/time/l-2.0.xpm etc/time/l-2.5.xpm etc/time/l-3.0.xpm etc/time/letter.xpm etc/time/no-letter.xpm etc/time/pm.xpm lisp/ChangeLog lisp/about.el lisp/dumped-lisp.el lisp/format.el lisp/help.el lisp/loaddefs.el lisp/make-docfile.el lisp/x-init.el lisp/x-win-sun.el lisp/x-win-xfree86.el man/Makefile src/ChangeLog src/device.c src/lread.c version.sh |
diffstat | 111 files changed, 182 insertions(+), 4271 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES-beta Mon Aug 13 10:12:39 2007 +0200 +++ b/CHANGES-beta Mon Aug 13 10:13:02 2007 +0200 @@ -1,4 +1,10 @@ -*- indented-text -*- +to 20.5 beta13 "Boer" +-- Run time dependencies on x-win*.el removed. +-- Total package upgrade +-- Miscellaneous bug fixes +-- Documentation fixes + to 20.5 beta12 "Bhuj" -- MS Windows NT patches courtesy of Jeff Sparkes and Kirill Katsnelson -- userlock.el is now unpackaged
--- a/ChangeLog Mon Aug 13 10:12:39 2007 +0200 +++ b/ChangeLog Mon Aug 13 10:13:02 2007 +0200 @@ -1,3 +1,12 @@ +1997-12-25 SL Baur <steve@altair.xemacs.org> + + * XEmacs 20.5-beta13 is released. + +1997-12-21 SL Baur <steve@altair.xemacs.org> + + * etc/BETA (Prerequisite): Add cookbook procedures for maintaining + package lisp directories. + 1997-12-20 SL Baur <steve@altair.xemacs.org> * XEmacs 20.5-beta 12 is released.
--- a/PROBLEMS Mon Aug 13 10:12:39 2007 +0200 +++ b/PROBLEMS Mon Aug 13 10:13:02 2007 +0200 @@ -28,12 +28,19 @@ * Problems with building XEmacs =============================== -** Don't use -O2 with gcc 2.7.2 under Linux without also using +** Don't use -O2 with gcc 2.7.2 under Intel/XXX without also using `-fno-strength-reduce'. gcc will generate incorrect code otherwise. This bug is present in at least 2.6.x and 2.7.[0-2]. This bug has been fixed in GCC 2.7.2.1 and -later. +later. This bug is also O/S independent. + +** Don't use -O2 with gcc 2.7.2 under Intel architectures without also +using `-fno-caller-saves'. + +gcc will generate incorrect code otherwise. This bug is still present +in gcc 2.7.2.3. There have been no reports to indicate the bug is +present in egcs 1.0 (or pgcc 1.0) or later. This bug is O/S independent. ** Excessive optimization with pgcc can break XEmacs @@ -41,7 +48,17 @@ to XEmacs failures. The workaround is to use a lower optimization level. -O2 and -O4 have been tested extensively. -All of this depends heavily on the version of pgcc. +All of this depends heavily on the version of pgcc and the version +of libc. Snapshots near the release of pgcc-1.0 have been tested +extensively and no sign of breakage has been seen on systems using +glibc-2. + +** `compress' and `uncompress' not found and XFree86 + +XFree86 installs a very old version of libz.a by default ahead of where +more modern version of libz might be installed. This will cause problems +when attempting to link against libMagick. The fix is to remove the old +libz.a in the X11 binary directory. ** Excessive optimization on AIX 4.2 can lead to compiler failure.
--- a/etc/BETA Mon Aug 13 10:12:39 2007 +0200 +++ b/etc/BETA Mon Aug 13 10:13:02 2007 +0200 @@ -307,7 +307,7 @@ ** Binary package installation (binary-packages) ================================================ -Prerequisite: XEmacs 20.4-b1. +Prerequisite: XEmacs 20.5-b1. Binary packages are complete entities that can be untarred at the top level of an XEmacs package hierarchy and work at runtime. To install files @@ -317,9 +317,32 @@ ** Single file package installation =================================== -Prerequisite: XEmacs 20.4-b1. +Prerequisite: XEmacs 20.5-b1. These are single file, self-contained lisp packages that don't need a separate directory. To install something from this directory, run the command `M-x package-admin-add-single-file-package' and fill in the prompts. + +** Manual procedures for package management +=========================================== + +Prerequisite: XEmacs 20.5 + +When adding and deleting files from a lisp directory the +auto-autoloads.el (global symbols) and custom-load.el (Customization +groups) must be kept in synch. Assuming one is manipulating a +directory called `lisp-utils', the command to rebuild the +auto-autoloads.el file is: + +xemacs-20.5 -vanilla -batch -l autoload -f batch-update-directory lisp-utils + +The command to rebuild the custom-load.el file is: + +xemacs-20.5 -vanilla -batch -l cus-dep \ + -f Custom-make-dependencies lisp-utils + +To bytecompile both of these files the command is: + +xemacs-20.5 -vanilla -batch -f batch-byte-compile \ + lisp-utils/auto-autoloads.el lisp-utils/custom-laod.el
--- a/etc/edt-user.doc Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,782 +0,0 @@ -File: edt-user.doc --- EDT Emulation User Instructions - - For GNU Emacs 19 - -Copyright (C) 1986, 1992, 1994, 1995 Free Software Foundation, Inc. - -Author: Kevin Gallagher <kgallagh@spd.dsccc.com> -Maintainer: Kevin Gallagher <kgallagh@spd.dsccc.com> -Keywords: emulations - -This file is part of GNU Emacs. - -GNU Emacs is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2, or (at your option) -any later version. - -GNU Emacs is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GNU Emacs; see the file COPYING. If not, write to the -Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. - -============================================================================ - -I. OVERVIEW: - -This version of the EDT emulation package for GNU Emacs is a substantially -enhanced version of the original. A large part of the original can still be -found here, of course, but much of it has been modified and quite a bit is -new. Many of the ideas found here are borrowed from others. In particular, -some of the code found here was drawn from an earlier re-write of the EDT -package done at DSC in 1989 by Matthew Frohman. - -Send bug fixes, suggestions for enhancements, and corrections to this -documentation to Kevin Gallagher (kgallagh@spd.dsccc.com). - -The EDT emulation consists of the following files: - -edt-user.doc - User instructions (which you are reading now) -edt.el - EDT Emulation Functions and Default Configuration -edt-lk201.el - Support for DEC LK-201 Keyboards -edt-vt100.el - Support for DEC VT-100 (and above) terminals -edt-mapper.el - Support for Keyboards used under X Windows -edt-pc.el - Support for the PC AT Keyboard under MS-DOS - -Several goals were kept in mind when making this version: - - 1. Emulate EDT Keypad Mode commands closely so that current - EDT users will find that it easy and comfortable to use - GNU Emacs with a small learning curve; - - 2. Make it easy for a user to customize EDT emulation key - bindings without knowing much about Emacs Lisp; - - 3. Make it easy to switch between the original EDT default bindings - and the user's customized bindings, without having to exit Emacs. - - 4. Provide support for some TPU/EVE functions not supported in - EDT. - - 5. Provide an easy way to restore ALL original Emacs key bindings, - just as they existed before the EDT emulation was first invoked. - - 6. Support GNU Emacs 19. (Support for GNU Emacs 18 has been dropped. - Also, although there is some code designed to support Xemacs 19 - (formerly Lucid Emacs), this is not fully implemented at this - time. - - 7. When running under X, support highlighting of marked text. - - 8. Handle terminal configuration under X interactively when the - emulation is invoked for the first time. - - 9. Support a PC AT keyboard under MS-DOS. - -II. TERMINALS/KEYBOARDS SUPPORTED: - -Keyboards used under X Windows are supported via the edt-mapper function. The -first time you invoke the emulation under X, the edt-mapper function is run -automatically and the user is prompted to identify which keys the emulation is -to use for the standard keypad and function keys EDT expects (e.g., PF1, PF2, -etc.). This configuration is saved to disk read each time the emulation is -invoked. - -In character oriented connections not running a window manager, the following -terminals/keyboards are supported. (1) DEC VT-100 series and higher. This -includes well behaved VT clones and emulators. If you are using a VT series -terminal, be sure that the term environment variable is set properly before -invoking emacs. (2) PC AT keyboard under MS-DOS. - -Be sure to read the SPECIAL NOTES FOR SOME PLATFORMS sections to see if those -notes apply to you. - - -III. STARTING THE EDT EMULATION: - -Start up GNU Emacs and enter "M-x edt-emulation-on" to begin the emulation. -After initialization is complete, the following message will appear below the -status line informing you that the emulation has been enabled: - - Default EDT keymap active - -You can have the EDT Emulation start up automatically, each time you initiate -a GNU Emacs session, by adding the following line to your .emacs file: - - (setq term-setup-hook 'edt-emulation-on) - -A reference sheet is included (later on) listing the default EDT Emulation key -bindings. This sheet is also accessible on line from within Emacs by pressing -PF2, GOLD H, or HELP (when in the EDT Default Mode). - -It is easy to customize key bindings in the EDT Emulation. (See CUSTOMIZING -section, below.) Customizations are placed in a file called edt-user.el. (A -sample edt-user.el file can be found in the CUSTOMIZING section.) If -edt-user.el is found in your GNU Emacs load path during EDT Emulation -initialization, then the following message will appear below the status line -indicating that the emulation has been enabled, enhanced by your own -customizations: - - User EDT custom keymap active - -Once enabled, it is easy to switch back and forth between your customized EDT -Emulation key bindings and the default EDT Emulation key bindings. It is also -easy to turn off the emulation. Doing so completely restores the original key -bindings in effect just prior to invoking the emulation. - -Where EDT key bindings and GNU Emacs key bindings conflict, the default GNU -Emacs key bindings are retained by the EDT emulation by default. If you are a -diehard EDT user you may not like this. The CUSTOMIZING section explains how -to change this default. - - -IV. SPECIAL NOTES FOR SOME PLATFORMS: - - Sun Workstations running X: - - Some earlier Sun keyboards do not have arrow keys separate from the - keypad keys. It is difficult to emulate the full EDT keypad and still - retain use of the arrow keys on such keyboards. - - The Sun Type 5 keyboard, however, does have separate arrow keys. This - makes it a candidate for setting up a reasonable EDT keypad emulation. - Unfortunately, Sun's default X keynames for the keypad keys don't permit - GNU Emacs to interpret the keypad 2, 4, 6, and 8 keys as something other - than arrow keys, nor use all the top row of keys for PF1 thru PF4 keys. - Here's the contents of an .xmodmaprc file which corrects this problem for - Sun Type 5 keyboards: - - ! File: .xmodmaprc - ! - ! Set up Sun Type 5 keypad for use with the GNU Emacs EDT Emulation - ! - keycode 53 = KP_Divide - keycode 54 = KP_Multiply - keycode 57 = KP_Decimal - keycode 75 = KP_7 - keycode 76 = KP_8 - keycode 77 = KP_9 - keycode 78 = KP_Subtract - keycode 97 = KP_Enter - keycode 98 = KP_4 - keycode 99 = KP_5 - keycode 100 = KP_6 - keycode 101 = KP_0 - keycode 105 = F24 - keycode 119 = KP_1 - keycode 120 = KP_2 - keycode 121 = KP_3 - keycode 132 = KP_Add - - Feed .xmodmaprc to the xmodmap command and all the Sun Type 5 keypad keys - will now be configurable for the emulation of an LK-201 keypad (less the - comma key). The line - - keycode 105 = F24 - - modifies the NumLock key to be the F24 key which can then be configured - to behave as the PF1 key. In doing so, you will no longer have a NumLock - key. If you are using other software under X which requires a NumLock - key, then examine your keyboard and look for one you don't use and - redefine it to be the NumLock key. (See the man page on xmodmap for for - further help on how to do this.) - - PC users running MS-DOS: - - By default, F1 is configured to emulate the PF1 (GOLD) key. But NumLock - can be used instead if you load a freeware TSR distributed with - MS-Kermit, call gold.com. It is distributed in a file called gold22.zip - and comes with the source code as well as a loadable binary image. - (See edt-pc.el for more information.) - - PC users running Linux: - - The default X server configuration of three keys PC AT keyboard keys - needs to be modified to permit the PC keyboard to emulate an LK-201 - keyboard properly. Here's the contents of an .xmodmaprc file which makes - these changes for your: - - ! File: .xmodmaprc - ! - ! Set up PC keypad under Linux for the GNU Emacs EDT Emulation - ! - keycode 22 = BackSpace - keycode 77 = F12 - keycode 96 = Num_Lock - - Feed the file to the xmodmap command and all the PC keypad keys will now - be configurable for the emulation of an LK-201 keypad (less the comma - key), the standard keyboard supplied with DEC terminals VT-200 and above. - This file switches the role of the F12 and NumLock keys. It also - modifies the definition of the Delete key above the arrow keys so that it - can be assigned a keybinding independently of the the BackSpace key. - - NOTE: It is necessary to have NumLock ON for the PC keypad to emulate the - LK-201 keypad properly. - - -V. HOW DOES THIS EDT EMULATION DIFFER FROM REAL EDT?: - -In general, you will find that this emulation of EDT replicates most, but not -all, of EDT's most used Keypad Mode editing functions and behavior. It is not -perfect, but most EDT users who have tried the emulation agree that it is -quite good enough to make it easy for die-hard EDT users to move over to using -GNU Emacs. - -Here's a list of the most important differences between EDT and this GNU Emacs -EDT Emulation. The list is short but you must be aware of these differences -if you are to use the EDT Emulation effectively. - -1. Entering repeat counts works a little differently than in EDT. - - EDT allows users to enter a repeat count before entering a command that - accepts repeat counts. For example, when in EDT, pressing these three - keys in sequence, GOLD 5 KP1, will move the cursor in the current - direction 5 words. - - Emacs provides two ways to enter repeat counts, though neither involves - using the GOLD key. In Emacs, repeat counts can be entered by using the - ESC key. For example, pressing these keys in sequence, ESC 1 0 KP1, will - move the cursor in the current direction 10 words. - - Emacs provides another command called universal-argument that can do the - same thing, plus a few other things. Normally, Emacs has this bound to - C-u. - -2. The EDT SUBS command, bound to GOLD ENTER, is NOT supported. The built-in - Emacs query-replace command has been bound to GOLD ENTER, instead. It is - much more convenient to use than SUBS. - -3. EDT's line mode commands and nokeypad mode commands are NOT supported - (with one important exception; see item 8 in the Highlights section - below). Although, at first, this may seem like a big omission, the set of - built-in Emacs commands provides a much richer set of capabilities which - more than make up for this omission. - - To enter Emacs commands not bound to keys, you can press GOLD KP7 or the - DO key. Emacs will display it's own command prompt called Meta-x (M-x). - You can also invoke this prompt the normal Emacs way by entering ESC x. - -4. Selected text is highlighted ONLY when running under X Windows. Gnu Emacs - 19 does not support highlighting of text on VT series terminals, at this - time. - -5. Just like TPU/EVE, The ENTER key is NOT used to terminate input when the - editor prompts you for input. The RETURN key is used, instead. (KP4 and - KP5 do terminate input for the FIND command, just like in EDT, however.) - - - - -VI. SOME HIGHLIGHTS IN THIS EDT EMULATION, AND SOME COMPARISONS TO THE - ORIGINAL GNU EMACS EDT EMULATION: - -1. The EDT define key command is supported (edt-define-key) and is bound to - C-k in the default EDT mode when EDT control sequence bindings are enabled - or one of the sample edt-user.el customization files is used. The TPU/EVE - learn command is supported but not bound to a key in the default EDT mode - but is bound in the sample edt-user.el files. - - Unlike the TPU/EVE learn command, which uses one key to begin the learn - sequence, C-l, and another command to remember the sequence, C-r, this - version of the learn command (edt-learn) serves as a toggle to both begin - and to remember the learn sequence. - - Many users who change the meaning of a key with the define key and the - learn commands, would like to be able to restore the original key binding - without having to quit and restart emacs. So a restore key command is - provided to do just that. When invoked, it prompts you to press the key - to which you wish the last replaced key definition restored. It is bound - to GOLD C-k in the default EDT mode when EDT control sequence bindings are - enabled or one of the sample edt-user.el customization files is used. - -2. Direction support is fully supported. It is no longer accomplished by - re-defining keys each time the direction is changed. Thus, commands - sensitive to the current direction setting may be bound easily to any key. - -3. All original emacs bindings are fully restored when EDT emulation is - turned off. - -4. User custom EDT bindings are kept separate from the default EDT bindings. - One can toggle back and forth between the custom EDT bindings and default - EDT bindings. - -5. The Emacs functions in edt.el attempt to emulate, where practical, the - exact behavior of the corresponding EDT keypad mode commands. In a few - cases, the emulation is not exact, but we hope you will agree it is close - enough. In a very few cases, we chose to use the Emacs way of handling - things. As mentioned earlier, we do not emulate the EDT SUBS command. - Instead, we chose to use the Emacs query-replace function, which we find - to be easier to use. - -6. Emacs uses the regexp assigned to page-delimiter to determine what marks a - page break. This is normally "^\f", which causes the edt-page command to - ignore form feeds not located at the beginning of a line. To emulate the - EDT PAGE command exactly, page-delimiter is set to "\f" when EDT emulation - is turned on, and restored to "^\f" when EDT emulation is turned off. - But, since some users prefer the Emacs definition of a page break, or may - wish to preserve a customized definition of page break, one can override - the EDT definition by placing - - (setq edt-keep-current-page-delimiter t) - - in your .emacs file. - -7. The EDT definition of a section of a terminal window is hardwired to be 16 - lines of its one-and-only 24-line window (the EDT SECT command bound to - KP8). That's two-thirds of the window at a time. Since Emacs, like - TPU/EVE, can handle multiple windows of sizes of other than 24 lines, the - definition of section used here has been modified to two-thirds of the - current window. (There is also an edt-scroll-window function which you - may prefer over the SECT emulation.) - -8. Cursor movement and deletion involving word entities is identical to EDT. - This, above all else, gives the die-hard EDT user a sense of being at - home. Also, an emulation of EDT's SET ENTITY WORD command is provided, - for those users who like to customize movement by a word at a time to - their own liking. - -9. EDT's FIND and FNDNXT are supported. - -10. EDT's APPEND and REPLACE commands are supported. - -11. CHNGCASE is supported. It works on individual characters or selected - text, if SELECT is active. In addition, two new commands are provided: - edt-lowercase and edt-uppercase. They work on individual WORDS or - selected text, if SELECT is active. - -12. Form feed and tab insert commands are supported. - -13. A new command, edt-duplicate-word, is provided. If you experiment with - it, you might find it to be surprisingly useful and may wonder how you - ever got along without it! It is assigned to C-j in the sample - edt-user.el customization files. - -14. TPU/EVE's Rectangular Cut and Paste functions (originally from the EVE-Plus - package) are supported. But unlike the TPU/EVE versions, these here - support both insert and overwrite modes. The seven rectangular functions - are bound to F7, F8, GOLD-F8, F9, GOLD-F9, F10, and GOLD-F10 in the - default EDT mode. - -15. The original EDT emulation package set up many default regular and GOLD - bindings. We tried to preserve most (but not all!) of these, so users of - the original emulation package will feel more at home. - - Nevertheless, there are still many GOLD key sequences which are not bound - to any functions. These are prime candidates to use for your own - customizations. - - Also, there are several commands in edt.el not bound to any key. So, you - will find it worthwhile to look through edt.el for functions you may wish - to add to your personal customized bindings. - -16. The VT200/VT300 series terminals steal the function keys F1 to F5 for - their own use. These do not generate signals which are sent to the host. - So, edt.el does not assign any default bindings to F1 through F5. - - In addition, our VT220 terminals generate an interrupt when the F6 key is - pressed (^C or ^Y, can't remember which) and not the character sequence - documented in the manual. So, binding emacs commands to F6 will not work - if your terminal behaves the same way. - -17. The VT220 terminal has no ESC, BS, nor LF keys, as does a VT100. So the - default EDT bindings adopt the standard DEC convention of having the F11, - F12, and F13 keys, on a VT200 series (and above) terminal, assigned to the - same EDT functions that are bound to ESC, BS, and LF on a VT100 terminal. - -18. Each user, through the use of a private edt-user.el file, can customize, - very easily, personal EDT emulation bindings. - -19. The EDT SELECT and RESET functions are supported. However, unlike EDT, - pressing RESET to cancel text selection does NOT reset the existing - setting of the current direction. - - We also provide a TPU/EVE like version of the single SELECT/RESET - function, called edt-toggle-select, which makes the EDT SELECT function - into a toggle on/off switch. That is, if selection is ON, pressing SELECT - again turns selection off (cancels selection). This function is used in - the sample edt-user.el customization files. - - -VII. CUSTOMIZING: - -Most EDT users, at one time or another, make some custom key bindings, or -use someone else's custom key bindings, which they come to depend upon just as -if they were built-in bindings. This EDT Emulation for GNU Emacs is designed -to make it easy to customize bindings. - -If you wish to customize the EDT Emulation to use some of your own key -bindings, you need to make a private version of edt-user.el in your own -private lisp directory. There are two sample files edt-user.el1 and -edt-user.el2 for you to use as templates and for ideas. Look at -edt-user.el1 first. Unless you will be using two or more very different -types of terminals on the same system, you need not look at edt-user.el2. - -First, you need to have your own private lisp directory, say ~/lisp, and -you should add it to the GNU Emacs load path. - -NOTE: A few sites have different load-path requirements, so the above - directions may need some modification if your site has such special - needs. - - -Creating your own edt-user.el file: - -A sample edt-user.el file is attached to the end of this user documentation. -You should use it as a guide to learn how you can customize EDT emulation -bindings to your own liking. Names used to identify the set of LK-201 -keypad and function keys are: - -Keypad Keys: - PF1 PF2 PF3 PF4 - KP7 KP8 KP9 KP- - KP4 KP5 KP6 KP, - KP1 KP2 KP3 - KP0 KPP KPE - -Arrow Keys: - LEFT RIGHT DOWN UP - -Function Keys: - F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 - HELP DO F17 F18 F19 F20 - - FIND INSERT REMOVE - SELECT PREVIOUS NEXT - -Note: - Many VT-200 terminals, and above, steal function keys F1 thru - F5 for terminal setup control and don't send anything to the - host if pressed. So customizing bindings to these keys may - not work for you. - -There are three basic functions that do the EDT emulation bindings: -edt-bind-standard-key, edt-bind-gold-key, and edt-bind-function-key. - -The first two are for binding functions to keys which are standard across most -keyboards. This makes them keyboard independent, making it possible to define -these key bindings for all terminals in the file edt.el. - -The first, edt-bind-standard-key, is used typically to bind emacs commands to -control keys, although some people use it to bind commands to other keys, as -well. (For example, some people use it to bind the VT200 seldom used -back-tick key (`) to the function "ESC-prefix" so it will behave like an ESC -key.) The second function, edt-bind-gold-key, is used to bind emacs commands -to gold key sequences involving alpha-numeric keys, special character keys, -and control keys. - -The third function, edt-bind-function-key, is terminal dependent and is -defined in a terminal specific file (see edt-vt100.el for example). It is -used to bind emacs commands to function keys, to keypad keys, and to gold -sequences of those keys. - -WARNING: Each of the three functions, edt-bind-function-key, - edt-bind-gold-key, and edt-bind-standard-key, has an optional - last argument. The optional argument should NOT be used in - edt-user.el! When the optional argument is missing, each - function knows to make the key binding part of the user's EDT - custom bindings, which is what you want to do in edt-user.el! - - The EDT default bindings are set up in edt.el by calling these - same functions with the optional last argument set to "t". So, if - you decide to copy such function calls from edt.el to edt-user.el - for subsequent modification, BE SURE TO DELETE THE "t" AT THE END - OF EACH PARAMETER LIST! - - -SPECIFYING WORD ENTITIES: - -The variable edt-word-entities is used to emulate EDT's SET ENTITY WORD -command. It contains a list of characters to be treated as words in -themselves. If the user does not define edt-word-entities in his/her .emacs -file, then it is set up with the EDT default containing only TAB. - -The characters are stored in the list by their numerical values, not as -strings. Emacs supports several ways to specify the numerical value of a -character. One method is to use the question mark: ?A means the numerical -value for A, ?/ means the numerical value for /, and so on. Several -unprintable characters have special representations: - - ?\b specifies BS, C-h - ?\t specifies TAB, C-i - ?\n specifies LFD, C-j - ?\v specifies VTAB, C-k - ?\f specifies FF, C-l - ?\r specifies CR, C-m - ?\e specifies ESC, C-[ - ?\\ specifies \ - -Here are some examples: - - (setq edt-word-entities '(?\t ?- ?/)) ;; Specifies TAB, - , and / - (setq edt-word-entities '(?\t) ;; Specifies TAB, the default - -You can also specify characters by their decimal ascii values: - - (setq edt-word-entities '(9 45 47)) ;; Specifies TAB, - , and / - - -ENABLING EDT CONTROL KEY SEQUENCE BINDINGS: - -Where EDT key bindings and GNU Emacs key bindings conflict, the default GNU -Emacs key bindings are retained by default. Some diehard EDT users may not -like this. So, if the variable edt-use-EDT-control-key-bindings is set to -true in a user's .emacs file, then the default EDT Emulation mode will enable -most of the original EDT control key sequence bindings. If you wish to do -this, add the following line to your .emacs file: - - (setq edt-use-EDT-control-key-bindings t) - - - DEFAULT EDT Keypad - - F7: Copy Rectangle +----------+----------+----------+----------+ - F8: Cut Rect Overstrike |Prev Line |Next Line |Bkwd Char |Frwd Char | - G-F8: Paste Rect Overstrike | (UP) | (DOWN) | (LEFT) | (RIGHT) | - F9: Cut Rect Insert |Window Top|Window Bot|Bkwd Sent |Frwd Sent | - G-F9: Paste Rect Insert +----------+----------+----------+----------+ - F10: Cut Rectangle -G-F10: Paste Rectangle - F11: ESC - F12: Begining of Line +----------+----------+----------+----------+ -G-F12: Delete Other Windows | GOLD | HELP | FNDNXT | DEL L | - F13: Delete to Begin of Word | (PF1) | (PF2) | (PF3) | (PF4) | - HELP: Keypad Help |Mark Wisel|Desc Funct| FIND | UND L | - DO: Execute extended command +----------+----------+----------+----------+ - | PAGE | SECT | APPEND | DEL W | - C-g: Keyboard Quit | (7) | (8) | (9) | (-) | -G-C-g: Keyboard Quit |Ex Ext Cmd|Fill Regio| REPLACE | UND W | - C-h: Beginning of Line +----------+----------+----------+----------+ -G-C-h: Emacs Help | ADVANCE | BACKUP | CUT | DEL C | - C-i: Tab Insert | (4) | (5) | (6) | (,) | - C-j: Delete to Begin of Word | BOTTOM | TOP | Yank | UND C | - C-k: Define Key +----------+----------+----------+----------+ -G-C-k: Restore Key | WORD | EOL | CHAR | Next | - C-l: Form Feed Insert | (1) | (2) | (3) | Window | - C-n: Set Screen Width 80 | CHNGCASE | DEL EOL |Quoted Ins| ! - C-r: Isearch Backward +---------------------+----------+ (ENTER) | - C-s: Isearch Forward | LINE | SELECT | ! - C-t: Display the Time | (0) | (.) | Query | - C-u: Delete to Begin of Line | Open Line | RESET | Replace | - C-v: Redraw Display +---------------------+----------+----------+ - C-w: Set Screen Width 132 - C-z: Suspend Emacs +----------+----------+----------+ -G-C-\: Split Window | FNDNXT | Yank | CUT | - | (FIND) | (INSERT) | (REMOVE) | - G-b: Buffer Menu | FIND | | COPY | - G-c: Compile +----------+----------+----------+ - G-d: Delete Window |SELECT/RES|SECT BACKW|SECT FORWA| - G-e: Exit | (SELECT) |(PREVIOUS)| (NEXT) | - G-f: Find File | | | | - G-g: Find File Other Window +----------+----------+----------+ - G-h: Keypad Help - G-i: Insert File - G-k: Toggle Capitalization Word - G-l: Lowercase Word or Region - G-m: Save Some Buffers - G-n: Next Error - G-o: Switch to Next Window - G-q: Quit - G-r: Revert File - G-s: Save Buffer - G-u: Uppercase Word or Region - G-v: Find File Other Window - G-w: Write file - G-y: EDT Emulation OFF - G-z: Switch to User EDT Key Bindings - G-1: Delete Other Windows - G-2: Split Window - G-%: Go to Percentage - G- : Undo (GOLD Spacebar) - G-=: Go to Line - G-`: What line - -;;; File: edt-user.el --- Sample User Customizations for the Enhanced -;;; EDT Keypad Mode Emulation -;;; -;;; For GNU Emacs 19 -;;; -;; Copyright (C) 1986, 1992, 1993 Free Software Foundation, Inc. - -;; Author: Kevin Gallagher <kgallagh@spd.dsccc.com> -;; Maintainer: Kevin Gallagher <kgallagh@spd.dsccc.com> -;; Keywords: emulations - -;; GNU Emacs is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, -;; Boston, MA 02111-1307, USA. - -;;; Commentary: - -;; This file contains GNU Emacs User Custom EDT bindings and functions. In -;; this example file, there is no special test for the type of terminal being -;; used. The assumption is that all key bindings here apply to all terminals -;; that may be used. (In fact, it was written by an individual who uses only -;; VT series terminals when logging into a VAX.) -;; -;; WARNING: Each of the three functions, edt-bind-function-key, -;; edt-bind-gold-key, and edt-bind-standard-key, has an optional -;; last argument. The optional argument should NOT be used in -;; edt-user.el! When the optional argument is missing, each -;; function knows to make the key binding part of the user's EDT -;; custom bindings, which is what you want to do in edt-user.el! -;; -;; The EDT default bindings are set up in edt.el by calling these -;; same functions with the optional last argument set to "t". So, if -;; you decide to copy such function calls from edt.el to edt-user.el -;; for subsequent modification, BE SURE TO DELETE THE "t" AT THE END -;; OF EACH PARAMETER LIST! -;; - -;;; Usage: - -;; See edt-user.doc in the emacs etc directory. - -;; ==================================================================== - -;;;; -;;;; Setup user custom EDT key bindings. -;;;; - -(defun edt-setup-user-bindings () - "Assigns user custom EDT Emulation keyboard bindings." - - ;; PF1 (GOLD), PF2, PF3, PF4 - ;; - ;; This file MUST contain a binding of PF1 to edt-user-gold-map. So - ;; DON'T CHANGE OR DELETE THE REGULAR KEY BINDING OF PF1 BELOW! - ;; (However, you may change the GOLD-PF1 binding, if you wish.) - (edt-bind-function-key "PF1" 'edt-user-gold-map 'edt-mark-section-wisely) - (edt-bind-function-key "PF2" 'query-replace 'other-window) - (edt-bind-function-key "PF4" 'edt-delete-entire-line 'edt-undelete-line) - - ;; EDT Keypad Keys - (edt-bind-function-key "KP1" 'edt-word-forward 'edt-change-case) - (edt-bind-function-key "KP3" 'edt-word-backward 'edt-copy) - (edt-bind-function-key "KP6" 'edt-cut-or-copy 'yank) - (edt-bind-function-key "KP8" 'edt-scroll-window 'fill-paragraph) - (edt-bind-function-key "KP9" 'open-line 'edt-eliminate-all-tabs) - (edt-bind-function-key "KPP" - 'edt-toggle-select 'edt-line-to-middle-of-window) - (edt-bind-function-key "KPE" 'edt-change-direction 'overwrite-mode) - - ;; GOLD bindings for regular keys. - (edt-bind-gold-key "a" 'edt-append) - (edt-bind-gold-key "A" 'edt-append) - (edt-bind-gold-key "h" 'edt-electric-user-keypad-help) - (edt-bind-gold-key "H" 'edt-electric-user-keypad-help) - - ;; Control bindings for regular keys. - ;;; Leave binding of C-c as original prefix key. - (edt-bind-standard-key "\C-j" 'edt-duplicate-word) - (edt-bind-standard-key "\C-k" 'edt-define-key) - (edt-bind-gold-key "\C-k" 'edt-restore-key) - (edt-bind-standard-key "\C-l" 'edt-learn) - ;;; Leave binding of C-m to newline. - (edt-bind-standard-key "\C-n" 'edt-set-screen-width-80) - (edt-bind-standard-key "\C-o" 'open-line) - (edt-bind-standard-key "\C-p" 'fill-paragraph) - ;;; Leave binding of C-r to isearch-backward. - ;;; Leave binding of C-s to isearch-forward. - (edt-bind-standard-key "\C-t" 'edt-display-the-time) - (edt-bind-standard-key "\C-v" 'redraw-display) - (edt-bind-standard-key "\C-w" 'edt-set-screen-width-132) - ;;; Leave binding of C-x as original prefix key. -) - -;;; -;;; LK-201 KEYBOARD USER EDT KEYPAD HELP -;;; - -(defun edt-user-keypad-help () - " - USER EDT Keypad Active - - +----------+----------+----------+----------+ - F7: Copy Rectangle |Prev Line |Next Line |Bkwd Char |Frwd Char | - F8: Cut Rect Overstrike | (UP) | (DOWN) | (LEFT) | (RIGHT) | - G-F8: Paste Rect Overstrike |Window Top|Window Bot|Bkwd Sent |Frwd Sent | - F9: Cut Rect Insert +----------+----------+----------+----------+ - G-F9: Paste Rect Insert - F10: Cut Rectangle -G-F10: Paste Rectangle - F11: ESC +----------+----------+----------+----------+ - F12: Begining of Line | GOLD |Query Repl| FNDNXT |Del Ent L | -G-F12: Delete Other Windows | (PF1) | (PF2) | (PF3) | (PF4) | - F13: Delete to Begin of Word |Mark Wisel|Other Wind| FIND | UND L | - HELP: Keypad Help +----------+----------+----------+----------+ - DO: Execute extended command | PAGE |Scroll Win|Open Line | DEL W | - | (7) | (8) | (9) | (-) | - C-a: Beginning of Line |Ex Ext Cmd|Fill Parag|Elim Tabs | UND W | - C-b: Switch to Buffer +----------+----------+----------+----------+ - C-d: Delete Character | ADVANCE | BACKUP | CUT/COPY | DEL C | - C-e: End of Line | (4) | (5) | (6) | (,) | - C-f: Forward Character | BOTTOM | TOP | Yank | UND C | - C-g: Keyboard Quit +----------+----------+----------+----------+ -G-C-g: Keyboard Quit | Fwd Word | EOL | Bwd Word | Change | - C-h: Electric Emacs Help | (1) | (2) | (3) | Direction| -G-C-h: Emacs Help | CHNGCASE | DEL EOL | COPY | | - C-i: Indent for Tab +---------------------+----------+ (ENTER) | - C-j: Duplicate Word | LINE |SELECT/RES| | - C-k: Define Key | (0) | (.) | Toggle | -G-C-k: Restore Key | Open Line |Center Lin|Insrt/Over| - C-l: Learn +---------------------+----------+----------+ - C-n: Set Screen Width 80 - C-o: Open Line +----------+----------+----------+ - C-p: Fill Paragraph | FNDNXT | Yank | CUT | - C-q: Quoted Insert | (FIND)) | (INSERT) | (REMOVE) | - C-r: Isearch Backward | FIND | | COPY | - C-s: Isearch Forward +----------+----------+----------+ - C-t: Display the Time |SELECT/RES|SECT BACKW|SECT FORWA| - C-u: Universal Argument | (SELECT) |(PREVIOUS)| (NEXT) | - C-v: Redraw Display | | | | - C-w: Set Screen Width 132 +----------+----------+----------+ - C-z: Suspend Emacs -G-C-\\: Split Window - - G-a: Append to Kill Buffer - G-b: Buffer Menu - G-c: Compile - G-d: Delete Window - G-e: Exit - G-f: Find File - G-g: Find File Other Window - G-h: Keypad Help - G-i: Insert File - G-k: Toggle Capitalization Word - G-l: Lowercase Word or Region - G-m: Save Some Buffers - G-n: Next Error - G-o: Switch Windows - G-q: Quit - G-r: Revert File - G-s: Save Buffer - G-u: Uppercase Word or Region - G-v: Find File Other Window - G-w: Write file - G-y: EDT Emulation OFF - G-z: Switch to Default EDT Key Bindings - G-2: Split Window - G-%: Go to Percentage - G- : Undo (GOLD Spacebar) - G-=: Go to Line - G-`: What line" - - (interactive) - (describe-function 'edt-user-keypad-help))
--- a/etc/frame-icon/RIP.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define dead_width 64 -#define dead_height 54 -static char dead_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, - 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xf5, 0x0f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xe0, 0x5e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x13, - 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0xec, 0x22, 0x22, 0x02, 0x00, 0x00, - 0x00, 0x00, 0xd6, 0x88, 0x88, 0x04, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x44, - 0x44, 0x0c, 0x00, 0x00, 0x00, 0x80, 0x1a, 0x11, 0x11, 0x19, 0x00, 0x00, - 0x00, 0x80, 0x2d, 0x22, 0x22, 0x22, 0x00, 0x00, 0x00, 0x40, 0x8b, 0x88, - 0x88, 0x28, 0x00, 0x00, 0x00, 0xc0, 0x45, 0x44, 0x44, 0x44, 0x00, 0x00, - 0x00, 0x60, 0x17, 0x11, 0x11, 0x51, 0x00, 0x00, 0x00, 0xa0, 0x25, 0x22, - 0x22, 0x62, 0x00, 0x00, 0x00, 0x70, 0x8b, 0x88, 0x88, 0x88, 0x00, 0x00, - 0x00, 0xf0, 0x46, 0x44, 0x44, 0xc4, 0x00, 0x00, 0x00, 0x50, 0x13, 0x11, - 0x11, 0x91, 0x00, 0x00, 0x00, 0xb0, 0x22, 0x22, 0x22, 0xa2, 0x00, 0x00, - 0x00, 0x50, 0x8b, 0x88, 0x88, 0x88, 0x00, 0x00, 0x00, 0xb0, 0xfe, 0xff, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0xc0, 0x00, 0x00, - 0x00, 0xb0, 0xf6, 0x81, 0xc7, 0xcf, 0x00, 0x00, 0x00, 0x50, 0x67, 0x02, - 0x83, 0xd9, 0x00, 0x00, 0x00, 0xb0, 0x66, 0x06, 0x83, 0xd9, 0x00, 0x00, - 0x00, 0x50, 0x67, 0x06, 0x83, 0xd9, 0x00, 0x00, 0x00, 0xb0, 0x66, 0x02, - 0x83, 0xd9, 0x00, 0x00, 0x00, 0x50, 0xe7, 0x01, 0x83, 0xcf, 0x00, 0x00, - 0x00, 0xb0, 0x66, 0x01, 0x83, 0xc1, 0x00, 0x00, 0x00, 0x50, 0x67, 0x03, - 0x83, 0xc1, 0x00, 0x00, 0x00, 0xb0, 0x66, 0x03, 0x83, 0xc1, 0x00, 0x00, - 0x00, 0x50, 0x67, 0x2e, 0x93, 0xc9, 0x00, 0x00, 0x00, 0xb0, 0xf6, 0xac, - 0xd7, 0xcb, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0xc0, 0x00, 0x00, - 0x00, 0xb0, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x50, 0x13, 0x11, - 0x11, 0x91, 0x00, 0x00, 0x00, 0xb0, 0x22, 0x22, 0x22, 0xa2, 0x00, 0x00, - 0x00, 0x50, 0x8b, 0x88, 0x88, 0x88, 0x00, 0x00, 0x00, 0xb1, 0x46, 0x44, - 0x44, 0xc4, 0x00, 0x00, 0x00, 0x59, 0x13, 0x11, 0x11, 0x91, 0x00, 0x00, - 0x80, 0xba, 0x22, 0x22, 0x22, 0xa2, 0x10, 0x00, 0x80, 0x56, 0x8b, 0x88, - 0x88, 0x88, 0x10, 0x00, 0x80, 0xf6, 0x67, 0x44, 0x44, 0xc6, 0x38, 0x00, - 0x20, 0x5d, 0x33, 0x15, 0x51, 0xd3, 0x38, 0x01, 0x40, 0xfd, 0xb3, 0xaf, - 0xb2, 0xa2, 0xd5, 0x00, 0x40, 0xf5, 0xbb, 0xbe, 0xba, 0xeb, 0xf5, 0x00, - 0x80, 0xf9, 0xd7, 0x75, 0x55, 0xd6, 0xeb, 0x00, 0x80, 0xaa, 0xff, 0xff, - 0xff, 0xff, 0xe7, 0x00, 0x00, 0x87, 0xe9, 0xea, 0x56, 0xea, 0x35, 0x01, - 0x00, 0x07, 0x69, 0xea, 0xba, 0x16, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x5c, - 0x92, 0x7a, 0x14, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x6a, 0x24, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/abacus.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define abicus_width 64 -#define abicus_height 54 -static char abicus_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xfe, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x2f, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, - 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, 0x2e, 0x0e, 0x87, 0x83, - 0xe0, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x4e, 0x87, 0xd0, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0xcf, 0x87, 0xf0, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x87, 0x83, - 0xe0, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x0e, 0x81, 0xd0, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0x0f, 0xc1, 0xf1, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x07, 0xa1, - 0xe3, 0x70, 0x38, 0x2e, 0x2e, 0x04, 0x02, 0xe1, 0x43, 0x20, 0x10, 0x2e, - 0x2e, 0x04, 0x82, 0xc3, 0x41, 0x20, 0x10, 0x2e, 0x2e, 0x04, 0x42, 0xa7, - 0x43, 0x20, 0x10, 0x2e, 0x3e, 0x04, 0xc2, 0xe7, 0x43, 0x20, 0x10, 0x3e, - 0x22, 0x04, 0x82, 0xc3, 0x41, 0x20, 0x10, 0x22, 0xea, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x2b, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20, 0x20, - 0x02, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x20, 0xea, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x2b, 0x22, 0x04, 0x82, 0x83, 0x40, 0x20, 0x10, 0x22, - 0x3e, 0x04, 0x42, 0x87, 0x40, 0x20, 0x10, 0x3e, 0x2e, 0x04, 0xc2, 0x87, - 0x40, 0x20, 0x10, 0x2e, 0x2e, 0x04, 0x82, 0x83, 0x40, 0x20, 0x10, 0x2e, - 0x2e, 0x04, 0x42, 0x87, 0x40, 0x20, 0x10, 0x2e, 0x2e, 0x04, 0xc2, 0x87, - 0x40, 0x20, 0x10, 0x2e, 0x2e, 0x04, 0x82, 0x83, 0x40, 0x20, 0x10, 0x2e, - 0x2e, 0x04, 0x02, 0x81, 0x40, 0x20, 0x10, 0x2e, 0x2e, 0x0e, 0x07, 0xc1, - 0xe1, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x0e, 0xa1, 0xd3, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0x0f, 0xe1, 0xf3, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x07, 0xc1, - 0xe1, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x0e, 0xa1, 0xd3, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0x0f, 0xe1, 0xf3, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x87, 0xc3, - 0xe1, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x4e, 0xa7, 0xd3, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0xcf, 0xe7, 0xf3, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x87, 0xc3, - 0xe1, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x4e, 0xa7, 0xd3, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0xcf, 0xe7, 0xf3, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x87, 0xc3, - 0xe1, 0x70, 0x38, 0x2e, 0x2e, 0x9d, 0x4e, 0xa7, 0xd3, 0xe9, 0x74, 0x2e, - 0x2e, 0x9f, 0xcf, 0xe7, 0xf3, 0xf9, 0x7c, 0x2e, 0x2e, 0x0e, 0x87, 0xc3, - 0xe1, 0x70, 0x38, 0x2e, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0xfe, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x2f, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, - 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/archie.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define archer_width 64 -#define archer_height 54 -static char archer_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xfc, 0x1f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x01, 0x08, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, - 0x80, 0x0e, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x40, 0x07, 0x00, 0x10, - 0x00, 0x00, 0x00, 0x00, 0xa0, 0x03, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, - 0xd0, 0x03, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x40, - 0x00, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, - 0xd0, 0x01, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0x80, - 0x7f, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0xe0, 0xff, 0x01, 0x00, 0x00, - 0xe8, 0x00, 0x00, 0xf0, 0xff, 0x07, 0x00, 0x00, 0xe8, 0x00, 0x00, 0xf8, - 0xff, 0x07, 0x00, 0x00, 0x68, 0x00, 0x00, 0xf8, 0xff, 0x0f, 0x1a, 0x00, - 0x68, 0x00, 0x00, 0x90, 0xff, 0x0f, 0xad, 0x00, 0x68, 0x00, 0x00, 0x18, - 0xf9, 0x0f, 0x52, 0x01, 0xfc, 0x0f, 0x00, 0x08, 0xfb, 0x8f, 0x29, 0x01, - 0x74, 0xfc, 0x07, 0xb0, 0xf9, 0x47, 0xb4, 0x00, 0x8a, 0x00, 0xfe, 0x28, - 0xfd, 0x87, 0x92, 0x00, 0x82, 0x00, 0x80, 0x07, 0xe6, 0xc7, 0x49, 0x00, - 0xc4, 0x01, 0x00, 0x0c, 0xe0, 0x87, 0x3e, 0x00, 0x02, 0x3e, 0x00, 0x10, - 0xf0, 0x43, 0x0a, 0x00, 0x3a, 0xc0, 0x01, 0x10, 0xa1, 0x3e, 0x05, 0x00, - 0x76, 0x20, 0xfe, 0xff, 0x10, 0x96, 0x02, 0x00, 0xba, 0x00, 0xf0, 0x37, - 0x00, 0x57, 0xff, 0x03, 0x1a, 0x23, 0xf8, 0x73, 0xc0, 0x6f, 0x01, 0x0c, - 0x1a, 0x0c, 0xf8, 0xf3, 0xff, 0xab, 0xe7, 0x31, 0x1a, 0x30, 0xf8, 0xf3, - 0xff, 0xd5, 0x1f, 0x26, 0x1a, 0xc0, 0xf9, 0xf3, 0xff, 0xea, 0x0f, 0x40, - 0x3a, 0x00, 0xf6, 0xf7, 0x93, 0xf5, 0x1f, 0x40, 0x3a, 0x00, 0xe0, 0xe7, - 0x71, 0xfa, 0x1f, 0x21, 0x3a, 0x00, 0x00, 0xe6, 0xa3, 0xff, 0x8f, 0x1c, - 0x7a, 0x00, 0x00, 0xee, 0x05, 0xe0, 0xf7, 0x03, 0x74, 0x00, 0x00, 0xcc, - 0x09, 0xe5, 0x03, 0x00, 0x74, 0x00, 0x00, 0x8e, 0x09, 0xe8, 0x00, 0x00, - 0xf4, 0x00, 0x00, 0x9d, 0x23, 0x70, 0x00, 0x00, 0xe8, 0x01, 0x80, 0xbc, - 0x14, 0x78, 0x00, 0x00, 0xd0, 0x01, 0x40, 0xbc, 0xe6, 0x7f, 0x00, 0x00, - 0xa0, 0x03, 0x30, 0x3c, 0x5d, 0x7c, 0x00, 0x00, 0x40, 0x0e, 0x08, 0x7c, - 0x96, 0x3c, 0x00, 0x00, 0x80, 0x0d, 0x04, 0x7c, 0x84, 0x3e, 0x00, 0x00, - 0x00, 0x1a, 0x03, 0x3c, 0x83, 0x3f, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x5c, - 0x53, 0x3f, 0x00, 0x00, 0x00, 0x70, 0x00, 0x9c, 0x84, 0x1c, 0x00, 0x00, - 0x00, 0x30, 0x00, 0x1c, 0x81, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x0c, - 0xe9, 0x1f, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x0c, 0xc0, 0x0f, 0x00, 0x00};
--- a/etc/frame-icon/batman.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -#define batman_icon_width 64 -#define batman_icon_height 64 - -static char batman_icon_bits[] = { - 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x44, 0x44, 0x44, 0x44, 0xf4, 0xff, 0x44, 0x44, - 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x07, 0x00, 0x11, 0x11, 0x11, 0xd1, - 0xff, 0xff, 0x1f, 0x11, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x7f, 0x00, - 0x44, 0x44, 0x44, 0xfc, 0x2f, 0x2a, 0xff, 0x44, 0x00, 0x00, 0x00, 0xff, - 0xd9, 0xbe, 0xfd, 0x01, 0x11, 0x11, 0xd1, 0x7f, 0xf1, 0xff, 0xf3, 0x13, - 0x00, 0x00, 0xe0, 0x4f, 0xfd, 0xff, 0xf7, 0x03, 0x44, 0x44, 0xf4, 0x23, - 0xff, 0xff, 0xef, 0x47, 0x00, 0x00, 0xfc, 0xa9, 0xff, 0xff, 0xaf, 0x07, - 0x11, 0x11, 0x7e, 0xf3, 0xff, 0xff, 0x9f, 0x1f, 0x00, 0x00, 0x3f, 0xdc, - 0xff, 0xff, 0x7f, 0x0f, 0x44, 0xc4, 0x9f, 0xa6, 0xfe, 0xff, 0x3f, 0x4f, - 0x00, 0xc0, 0x47, 0x29, 0xfc, 0xff, 0xff, 0x0e, 0x11, 0xf1, 0x93, 0x15, - 0xf9, 0xff, 0x7f, 0x17, 0x00, 0xf0, 0x69, 0x00, 0xf8, 0xff, 0x7f, 0x0a, - 0x44, 0xfc, 0xd0, 0x44, 0xf4, 0xff, 0x7f, 0x57, 0x00, 0x78, 0xca, 0x11, - 0xf0, 0xff, 0xff, 0x02, 0x11, 0x7d, 0xd5, 0x03, 0xf9, 0xff, 0x7f, 0x15, - 0x00, 0x3e, 0xe0, 0x4f, 0xf8, 0xff, 0x7f, 0x02, 0x44, 0x9d, 0xfe, 0x3f, - 0xfc, 0xff, 0x7f, 0x55, 0x00, 0x0c, 0xfd, 0xff, 0xff, 0x7f, 0xfc, 0x00, - 0x11, 0x57, 0xf8, 0xff, 0xff, 0x3f, 0x79, 0x15, 0x40, 0x02, 0xf1, 0xff, - 0xff, 0x1f, 0xf8, 0x04, 0x04, 0x4b, 0xe4, 0xff, 0xff, 0x5f, 0x34, 0x55, - 0x20, 0x01, 0xe0, 0xff, 0xff, 0x1f, 0xb0, 0x04, 0x81, 0x10, 0xd1, 0xff, - 0xff, 0x1f, 0x11, 0x16, 0x80, 0x1a, 0xc0, 0xff, 0xff, 0x1f, 0xd4, 0x0e, - 0x54, 0x98, 0x84, 0xff, 0xff, 0x5f, 0x62, 0x46, 0x40, 0x3c, 0x80, 0xff, - 0xff, 0x00, 0x88, 0x0e, 0x49, 0x3d, 0x91, 0xff, 0x7f, 0x15, 0x51, 0x17, - 0x30, 0x7e, 0x84, 0xff, 0x7f, 0x40, 0x54, 0x07, 0x64, 0xfe, 0xc0, 0xff, - 0x7f, 0x35, 0xb3, 0x43, 0xb8, 0xfe, 0xf7, 0xff, 0x7f, 0x80, 0xda, 0x03, - 0x35, 0xff, 0xff, 0xff, 0x7f, 0x55, 0xd5, 0x13, 0x7c, 0xff, 0xff, 0xff, - 0xff, 0x50, 0xed, 0x01, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xa5, 0xea, 0x44, - 0xbc, 0xff, 0xff, 0xff, 0xe0, 0x9d, 0xf6, 0x00, 0x3d, 0xff, 0xff, 0x7f, - 0xc5, 0x53, 0x7b, 0x11, 0xbc, 0xff, 0xff, 0x7f, 0x48, 0xdf, 0x7d, 0x00, - 0x7c, 0xff, 0xff, 0x7f, 0xa5, 0xf6, 0x7e, 0x44, 0xbc, 0xff, 0xff, 0x7f, - 0x90, 0xaf, 0x1e, 0x00, 0x3d, 0xff, 0xff, 0x7f, 0xd9, 0x7d, 0x1f, 0x11, - 0xfc, 0xff, 0xff, 0x01, 0x54, 0xb5, 0x07, 0x00, 0x3c, 0xff, 0xff, 0x54, - 0x29, 0xdb, 0x47, 0x44, 0x7c, 0xff, 0x7f, 0xa0, 0xdc, 0xee, 0x03, 0x00, - 0x79, 0xff, 0x7f, 0x11, 0x75, 0xf7, 0x11, 0x11, 0x78, 0xfe, 0x7f, 0xc8, - 0x56, 0x7b, 0x00, 0x00, 0xfc, 0xfe, 0xff, 0x24, 0xfb, 0x7e, 0x44, 0x44, - 0xf0, 0xfc, 0xff, 0xe3, 0x6e, 0x1f, 0x00, 0x00, 0xf1, 0xfd, 0xff, 0x3f, - 0xbb, 0x1f, 0x11, 0x11, 0xe0, 0xf3, 0xff, 0x4f, 0xef, 0x07, 0x00, 0x00, - 0xe4, 0xef, 0xff, 0xf7, 0xfb, 0x45, 0x44, 0x44, 0xc0, 0x9f, 0xb5, 0xaa, - 0xfe, 0x00, 0x00, 0x00, 0x91, 0x7f, 0x55, 0xf5, 0x3f, 0x11, 0x11, 0x11, - 0x00, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x44, 0xfc, 0xff, 0xff, - 0x47, 0x44, 0x44, 0x44, 0x00, 0xf0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x11, 0x81, 0xff, 0x17, 0x11, 0x11, 0x11, 0x11, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
--- a/etc/frame-icon/broadcast.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define noname_width 64 -#define noname_height 64 -static char noname_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x06,0x00,0x00,0x30,0x10,0x00,0x00, - 0x0e,0x01,0x00,0x00,0x40,0x28,0x00,0x00,0x89,0x00,0x00,0x00,0x80,0xc8,0x00, - 0xc0,0x68,0x00,0x00,0x00,0x00,0x0b,0xe1,0x30,0x10,0x00,0x00,0x00,0x00,0x04, - 0xf2,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0xf0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xe2,0x08,0x00,0x00,0x00,0x00, - 0x00,0x80,0x41,0x10,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x20,0x00,0x00,0x00, - 0x00,0x00,0x18,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x10,0xe0,0x80,0x00,0x00, - 0x00,0x00,0x00,0x20,0xe0,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0xe0,0xc0,0x00, - 0x00,0x00,0x00,0x00,0x20,0xe0,0x40,0x00,0x00,0x00,0x00,0x00,0x18,0x30,0x81, - 0x00,0x00,0x00,0x00,0x00,0x04,0x30,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x50, - 0x01,0x02,0x00,0x00,0x00,0x80,0x01,0x50,0x01,0x04,0x00,0x00,0x00,0x40,0x00, - 0x90,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x98,0x03,0x10,0x00,0x00,0x00,0x00, - 0x00,0xa8,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x02,0x00,0x00,0x00,0x00, - 0x00,0x00,0x98,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x03,0x00,0x00,0x00, - 0x00,0x00,0x00,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x05,0x00,0x00, - 0x00,0x00,0x00,0x00,0xc4,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x07,0x00, - 0x00,0x00,0x00,0x00,0x00,0x0e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x0b, - 0x00,0x00,0x00,0x00,0x00,0x00,0xe2,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xb2, - 0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x0e,0x00,0x00,0x00,0x00,0x00,0x00, - 0x07,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x13,0x00,0x00,0x00,0x00,0x00, - 0x00,0xe1,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x13,0x00,0x00,0x00,0x00, - 0x00,0x00,0x07,0x1c,0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x2c,0x00,0x00,0x00, - 0x00,0x00,0x80,0x9c,0x23,0x00,0x00,0x00,0x00,0x00,0x80,0xe0,0x20,0x00,0x00, - 0x00,0x00,0x00,0x80,0x1c,0x27,0x00,0x00,0x00,0x00,0x00,0xc0,0x03,0x78,0x00, - 0x00,0x00,0x00,0x00,0x40,0x03,0x58,0x00,0x00,0x00,0x00,0x00,0x40,0x0c,0x46, - 0x00,0x00,0x00,0x00,0x00,0x40,0x10,0x41,0x00,0x00,0x00,0x00,0x00,0x40,0xe0, - 0x40,0x00,0x00,0x00,0x00,0x00,0x20,0xb0,0x81,0x00,0x00,0x00,0x00,0x00,0x20, - 0x08,0x82,0x00,0x00,0x00,0x00,0x00,0x38,0x06,0x8c,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0xb0,0x02,0x00,0x00,0x00,0x00,0x66,0x00,0xc0,0x06,0x00,0x00,0x00, - 0x00,0xe4,0xff,0xff,0x20,0x00,0x00,0x00,0x00,0x68,0xc8,0x18,0x10,0x00,0x00, - 0x00,0x00,0x80,0x1c,0xc0,0x13,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00};
--- a/etc/frame-icon/bug-48.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -#define noname_width 48 -#define noname_height 48 -static char noname_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x01,0x00, - 0x03,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00, - 0x00,0x04,0x0a,0x06,0x00,0x00,0x00,0x88,0x07,0x0e,0x00,0x00,0x00,0xe0,0x0f, - 0x0c,0x00,0x00,0x00,0xc0,0xe7,0x18,0x00,0x00,0x00,0xa0,0xf9,0x19,0x01,0x00, - 0x20,0x80,0xfe,0x09,0x03,0x00,0xc0,0x01,0xff,0x8b,0x01,0x00,0x00,0x03,0xff, - 0x81,0x01,0x00,0x00,0x86,0xff,0x8d,0x00,0x00,0x00,0xc6,0xff,0x8e,0x00,0x00, - 0x00,0x8c,0x3f,0xff,0x00,0x00,0x00,0x98,0x8f,0x3f,0x00,0x00,0x00,0x18,0xb0, - 0x3f,0x00,0x00,0x00,0xf0,0x7f,0xff,0x01,0x00,0x00,0x00,0x7f,0xff,0x03,0x00, - 0x00,0x00,0xff,0xfe,0x06,0x00,0x00,0x08,0xfe,0xfc,0x0d,0x00,0x00,0x7c,0xfe, - 0xfd,0x19,0x00,0x00,0xf0,0xff,0xfb,0x31,0x00,0x00,0x00,0xf8,0xfb,0x63,0x00, - 0x00,0x00,0xf8,0xf7,0xc3,0x03,0x00,0x00,0xf8,0xe7,0x03,0x00,0x00,0x00,0xec, - 0xef,0x07,0x00,0x00,0x00,0xc8,0xcf,0x07,0x00,0x00,0x00,0x88,0x9f,0x07,0x00, - 0x00,0x00,0x88,0xbf,0x0f,0x00,0x00,0x00,0x18,0x3f,0x0f,0x00,0x00,0x00,0x10, - 0x7e,0x0f,0x00,0x00,0x00,0x30,0x7e,0x06,0x00,0x00,0x00,0x60,0xfc,0x00,0x00, - 0x00,0x00,0x60,0xf0,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00};
--- a/etc/frame-icon/c++.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define c++.xbm_width 64 -#define c++.xbm_height 64 -static char c++.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0x03, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, - 0x1f, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x3e, 0x00, 0x00, 0x00, - 0x00, 0xe0, 0x7f, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0x00, - 0x60, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x80, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xc0, 0x03, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xe0, 0x01, 0x00, 0x06, - 0x00, 0x00, 0x06, 0x00, 0xe0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xe0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xe0, 0x01, 0x00, 0x06, - 0x00, 0x00, 0x06, 0x00, 0xf0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xf0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xf0, 0x01, 0xff, 0xff, - 0x0f, 0xff, 0xff, 0x0f, 0xf0, 0x01, 0xff, 0xff, 0x0f, 0xff, 0xff, 0x0f, - 0xf0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xf0, 0x01, 0x00, 0x06, - 0x00, 0x00, 0x06, 0x00, 0xf0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xe0, 0x01, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xe0, 0x01, 0x00, 0x06, - 0x00, 0x00, 0x06, 0x00, 0xe0, 0x03, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xe0, 0x03, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0xe0, 0x03, 0x00, 0x06, - 0x00, 0x00, 0x06, 0x00, 0xc0, 0x07, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, - 0xc0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0f, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x03, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x0f, 0x00, 0x20, 0x00, 0x00, 0x00, - 0x00, 0xc0, 0x3f, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x00, - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x1f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xf8, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/c.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define c.xbm_width 64 -#define c.xbm_height 64 -static char c.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, - 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x7f, 0x00, 0x1f, 0x00, 0x00, - 0x00, 0x00, 0xf0, 0x3f, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x20, 0x00, 0x00, - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xc0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x10, 0x00, 0x00, - 0x00, 0x00, 0xe0, 0x1f, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x7f, - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xfc, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/calculator.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -#define icon_width 28 -#define icon_height 48 -static char icon_bits[] = { - 0xff, 0xff, 0xff, 0x0f, 0xff, 0xff, 0xff, 0x0f, 0x03, 0x00, 0x00, 0x0c, - 0xd3, 0x5d, 0x5d, 0x0c, 0x13, 0x51, 0x45, 0x0c, 0xd3, 0xdd, 0xdd, 0x0d, - 0x53, 0x10, 0x51, 0x0d, 0xd3, 0x1d, 0xdd, 0x0d, 0x03, 0x00, 0x00, 0x0c, - 0xff, 0xff, 0xff, 0x0f, 0xff, 0xff, 0xff, 0x0f, 0x01, 0x00, 0x00, 0x08, - 0xbd, 0xf7, 0xde, 0x0b, 0xbd, 0xf7, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, - 0xbd, 0xf7, 0xde, 0x0b, 0xa5, 0x94, 0x52, 0x0a, 0xbd, 0xf7, 0xde, 0x0b, - 0x01, 0x00, 0x00, 0x08, 0xbd, 0xf7, 0xde, 0x0b, 0xbd, 0xf7, 0xde, 0x0b, - 0xbd, 0xf7, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, 0xbd, 0xf7, 0xde, 0x0b, - 0xbd, 0xf7, 0xde, 0x0b, 0xbd, 0xf7, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, - 0xbd, 0xf7, 0xde, 0x0b, 0xbd, 0x94, 0xd2, 0x0b, 0xbd, 0x94, 0xd2, 0x0b, - 0xbd, 0xf7, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, 0xbd, 0xf7, 0xde, 0x0b, - 0xbd, 0x94, 0xd2, 0x0b, 0xbd, 0x94, 0xd2, 0x0b, 0xbd, 0xf7, 0xde, 0x0b, - 0x01, 0x00, 0x00, 0x08, 0xbd, 0xf7, 0xde, 0x0b, 0xbd, 0x94, 0xd2, 0x0b, - 0xbd, 0x94, 0xd2, 0x0b, 0xbd, 0xf7, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, - 0xbd, 0xff, 0xde, 0x0b, 0xbd, 0x80, 0xd2, 0x0b, 0xbd, 0x80, 0xd2, 0x0b, - 0xbd, 0xff, 0xde, 0x0b, 0x01, 0x00, 0x00, 0x08, 0xff, 0xff, 0xff, 0x0f};
--- a/etc/frame-icon/calendar.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define calendar_width 64 -#define calendar_height 54 -static char calendar_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x30, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, - 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0xa0, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x68, 0x00, 0x20, 0x01, 0x00, 0x00, 0x80, 0xff, 0xcf, 0xff, - 0xbf, 0xff, 0x1f, 0x00, 0x80, 0x00, 0x68, 0x0a, 0x20, 0x29, 0x10, 0x00, - 0x80, 0x00, 0x48, 0x05, 0xa0, 0x15, 0x10, 0x00, 0x80, 0x00, 0xe8, 0x0a, - 0x20, 0x2b, 0xb0, 0x00, 0x80, 0x00, 0x48, 0x05, 0xa0, 0x15, 0x50, 0x01, - 0x80, 0x00, 0xec, 0x02, 0x30, 0x0b, 0xb0, 0x00, 0x80, 0x00, 0xcc, 0x01, - 0xb0, 0x07, 0x50, 0x01, 0x80, 0x00, 0xfc, 0x00, 0xf0, 0x03, 0xb0, 0x00, - 0x80, 0x00, 0x78, 0x00, 0xe0, 0x01, 0x50, 0x01, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x01, - 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xf0, - 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xfc, 0x07, 0x00, 0xb0, 0x00, - 0x80, 0x00, 0x00, 0xfc, 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xfc, - 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xfc, 0x07, 0x00, 0x50, 0x01, - 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xc0, - 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0xb0, 0x00, - 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xc0, - 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x50, 0x01, - 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xc0, - 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0xb0, 0x00, - 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x50, 0x01, 0x80, 0x00, 0x00, 0xc0, - 0x07, 0x00, 0xb0, 0x00, 0x80, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x50, 0x01, - 0x80, 0xff, 0x01, 0xc0, 0x07, 0x00, 0xb0, 0x00, 0x80, 0x01, 0x01, 0xc0, - 0x07, 0x00, 0x50, 0x01, 0x80, 0x02, 0x01, 0xc0, 0x07, 0x00, 0xb0, 0x00, - 0x80, 0x04, 0x01, 0xc0, 0x07, 0x00, 0x50, 0x01, 0x80, 0x08, 0x01, 0x00, - 0x00, 0x00, 0xb0, 0x00, 0x80, 0x10, 0x01, 0x00, 0x00, 0x00, 0x50, 0x01, - 0x80, 0x20, 0x01, 0x00, 0x00, 0x00, 0xb0, 0x00, 0x80, 0x40, 0x01, 0x00, - 0x00, 0x00, 0x50, 0x01, 0x80, 0x80, 0x01, 0x00, 0x00, 0x00, 0xb0, 0x00, - 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0x01, 0x00, 0xaa, 0xaa, 0xaa, - 0xaa, 0xaa, 0xaa, 0x00, 0x00, 0x54, 0x55, 0x55, 0x55, 0x55, 0x55, 0x01, - 0x00, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x00, 0x00, 0x54, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/candle.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define candle_width 64 -#define candle_height 54 -static char candle_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x48, 0x04, 0x01, 0x00, 0x00, - 0x20, 0x88, 0x40, 0x01, 0xa0, 0x00, 0x00, 0x00, 0x80, 0x00, 0x82, 0x20, - 0x40, 0x20, 0x60, 0x00, 0x00, 0x02, 0x00, 0xc0, 0x20, 0x01, 0x18, 0x00, - 0x00, 0x80, 0x80, 0x20, 0x11, 0x08, 0x06, 0x0c, 0x00, 0x00, 0x00, 0x20, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x10, 0x04, 0x10, 0x04, 0x00, - 0x70, 0x01, 0x00, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x84, 0x40, 0xb0, - 0x04, 0x08, 0x10, 0x00, 0xc0, 0x10, 0x00, 0x60, 0x03, 0x01, 0x00, 0x78, - 0x00, 0x00, 0x02, 0xc0, 0x21, 0x00, 0x84, 0x00, 0x00, 0x09, 0x10, 0x80, - 0x00, 0x10, 0x80, 0x00, 0x20, 0x00, 0x00, 0x8e, 0x0e, 0x00, 0x40, 0x00, - 0x04, 0x12, 0x80, 0xf0, 0x30, 0x00, 0x21, 0x06, 0x00, 0x88, 0x40, 0x80, - 0x43, 0x22, 0x02, 0x18, 0x00, 0x40, 0x40, 0x60, 0x84, 0x10, 0x04, 0x00, - 0x00, 0x00, 0x40, 0x18, 0x84, 0x08, 0x08, 0x00, 0x00, 0x08, 0x80, 0x48, - 0x4a, 0x00, 0x00, 0x00, 0x00, 0x04, 0x54, 0x51, 0x34, 0x20, 0x20, 0x00, - 0x00, 0x02, 0x00, 0xa1, 0x18, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x62, - 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x19, 0x08, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x04, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x04, - 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x08, 0x0c, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, - 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0a, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, - 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x04, - 0x0d, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x04, 0x0a, 0x00, 0xe0, 0x0f, - 0x00, 0x00, 0x00, 0x04, 0x0d, 0x00, 0xfc, 0x19, 0x00, 0x00, 0x00, 0x84, - 0x0a, 0x00, 0x3f, 0x38, 0x00, 0x00, 0x00, 0x04, 0x0d, 0x80, 0x0f, 0x30, - 0x00, 0x00, 0x00, 0x87, 0x3a, 0x80, 0x07, 0x30, 0x00, 0x00, 0xc0, 0x06, - 0xdd, 0x00, 0x0f, 0x18, 0x00, 0x00, 0xe0, 0x8c, 0x8a, 0x01, 0x1e, 0x0f, - 0x00, 0xc0, 0xe9, 0xf1, 0xc7, 0xe5, 0xf8, 0x03, 0x00, 0xfe, 0x9c, 0x00, - 0x78, 0xee, 0xdf, 0x00, 0x80, 0xc7, 0x1e, 0xfc, 0x0f, 0x6f, 0x78, 0x00, - 0xf0, 0xe1, 0x04, 0x00, 0xe0, 0xe7, 0xe7, 0x03, 0xf8, 0x00, 0x01, 0xf8, - 0xff, 0xf1, 0xdf, 0x07, 0xf0, 0x01, 0x00, 0xff, 0x7f, 0xfc, 0xe7, 0x03, - 0xc0, 0x07, 0x00, 0xf8, 0x07, 0x1e, 0xf8, 0x01, 0x00, 0x1e, 0x00, 0x00, - 0xe0, 0xe3, 0x3f, 0x00, 0x00, 0xf0, 0x01, 0x80, 0xff, 0xff, 0x0f, 0x00, - 0x00, 0x00, 0xfe, 0xf0, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, - 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/cat_black.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define noname_width 64 -#define noname_height 64 -static char noname_bits[] = { - 0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe6, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0x03,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0x07,0x00,0x00,0x00,0x00,0x00,0x80,0xf7,0x0f,0x00,0x00,0x00,0x00,0x00, - 0xc0,0xf7,0x1f,0x00,0x00,0x00,0x00,0x00,0xc0,0xff,0x39,0x00,0x00,0x00,0x00, - 0x00,0xe0,0xff,0x35,0x00,0x00,0x00,0x00,0x00,0xe0,0xff,0x7f,0x00,0x00,0x00, - 0x00,0x00,0xe0,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xe0,0xff,0xff,0x00,0x00, - 0x00,0xc0,0x03,0xe0,0xff,0x7f,0xf0,0x00,0x00,0xe0,0x07,0xd0,0xff,0x7f,0xf8, - 0x01,0x00,0xf8,0x07,0xd0,0xff,0x3f,0xfc,0x01,0x00,0xfc,0x07,0x18,0xff,0x1f, - 0xfe,0x01,0x00,0xfc,0x03,0x3c,0xfe,0x03,0xff,0x01,0x00,0xfe,0x01,0xfc,0xe0, - 0x80,0xff,0x00,0x00,0x7e,0x00,0xfe,0x3f,0xc0,0x7f,0x00,0x00,0x3f,0x00,0xfe, - 0x3f,0xf8,0x07,0x00,0x00,0x1f,0x00,0xfe,0x7f,0xfe,0x01,0x00,0x80,0x1f,0x00, - 0xfe,0xff,0xff,0x00,0x00,0x80,0x0f,0x00,0xfe,0xff,0x7f,0x00,0x00,0x80,0x0f, - 0x00,0xff,0xff,0x3f,0x00,0x00,0x80,0x0f,0x00,0xff,0xff,0x3f,0x00,0x00,0x80, - 0x07,0x80,0xff,0xff,0x1f,0x00,0x00,0x80,0x07,0x80,0xff,0xff,0x0f,0x00,0x00, - 0x80,0x07,0xc0,0xff,0xff,0x0f,0x00,0x00,0x80,0x07,0xf0,0xff,0xff,0x37,0x00, - 0x00,0x80,0x07,0xf8,0xff,0xff,0xfb,0x3e,0x00,0x00,0x0f,0xff,0xff,0xff,0xfd, - 0x6f,0x00,0x00,0xcf,0xff,0xff,0x31,0xfe,0x5f,0x00,0x00,0xee,0xff,0x7f,0x0f, - 0xe0,0x7f,0x00,0x00,0xee,0xff,0xbf,0x07,0x80,0x67,0x00,0x00,0xfc,0xff,0xff, - 0x07,0x00,0x3e,0x00,0x00,0xfc,0xff,0xff,0x07,0x00,0x00,0x00,0x00,0xf0,0xff, - 0xff,0x03,0x00,0x00,0x00,0x00,0xf0,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0xf0, - 0xff,0xff,0x01,0x00,0x00,0x00,0x00,0xe0,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0xe0,0xff,0xfb,0x00,0x00,0x00,0x00,0x00,0xc0,0xff,0xfb,0x00,0x00,0x00,0x00, - 0x00,0xc0,0xff,0x7d,0x00,0x00,0x00,0x00,0x00,0xc0,0xff,0x7e,0x00,0x00,0x00, - 0x00,0x00,0xe0,0xff,0x7e,0x00,0x00,0x00,0x00,0x00,0xf0,0x7f,0x3f,0x00,0x00, - 0x00,0x00,0x00,0xf0,0xbf,0x3f,0x00,0x00,0x00,0x00,0x00,0xf0,0xbf,0x1f,0x00, - 0x00,0x00,0x00,0x00,0xf0,0xdf,0x0f,0x00,0x00,0x00,0x00,0x00,0xf0,0xcf,0x03, - 0x00,0x00,0x00,0x00,0x00,0xe0,0xe7,0x01,0x00,0x00,0x00,0x00,0x00,0xe0,0xe7, - 0x01,0x00,0x00,0x00,0x00,0x00,0xe0,0xe7,0x01,0x00,0x00,0x00,0x00,0x00,0xe0, - 0xe7,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0xc3,0x07,0x00,0x00,0x00,0x00,0x00, - 0xc0,0x83,0x1f,0x00,0x00,0x00,0x00,0x00,0xe0,0x87,0x3f,0x00,0x00,0x00,0x00, - 0x00,0xe0,0x0f,0x3f,0x00,0x00,0x00,0x00,0x00,0xc0,0x0f,0x00,0x00,0x00,0x00, - 0x00,0x00,0xc0,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x0f,0x00,0x00,0x00, - 0x00,0x00};
--- a/etc/frame-icon/coffee.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define t_width 64 -#define t_height 54 -static char t_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x7f, 0x00, 0x00, 0x00, - 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x00, 0xfe, 0xff, 0xff, - 0xff, 0xff, 0x3f, 0x00, 0x00, 0xcc, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x00, - 0x00, 0x38, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0xe0, 0xf8, 0xff, - 0xff, 0xff, 0xff, 0x07, 0x00, 0x80, 0xf3, 0xff, 0xff, 0x7f, 0xfc, 0x0f, - 0x00, 0x00, 0x6e, 0x06, 0xfc, 0x0f, 0xf0, 0x1f, 0x00, 0x00, 0xd4, 0xff, - 0xff, 0x07, 0xc0, 0x3f, 0x00, 0xc0, 0xfd, 0xff, 0xff, 0x0f, 0x00, 0x7f, - 0x00, 0xc0, 0xfd, 0xff, 0xff, 0x0f, 0x00, 0x7e, 0x00, 0x80, 0xfb, 0xff, - 0xff, 0x07, 0x00, 0xfc, 0x00, 0x20, 0x00, 0x00, 0x00, 0x10, 0x00, 0xf8, - 0x00, 0x08, 0x00, 0x00, 0x00, 0x40, 0x00, 0xf0, 0x00, 0x02, 0x00, 0x00, - 0x00, 0x00, 0x01, 0xf0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, - 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x08, 0xf0, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xf0, 0x00, 0xf0, 0xee, 0xa6, - 0xff, 0x0f, 0x40, 0xf0, 0xc4, 0xff, 0xb3, 0x54, 0xac, 0xfc, 0x01, 0xf0, - 0xfc, 0xe5, 0xff, 0xeb, 0xd6, 0x54, 0xff, 0xf0, 0xfe, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x01, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0x01, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xcf, 0x03, 0xff, 0x3f, 0x00, 0x00, 0xc0, 0xff, 0x9f, 0x03, - 0xff, 0x07, 0xff, 0xff, 0x07, 0xfe, 0x9f, 0x03, 0xff, 0xc3, 0xff, 0xff, - 0x1f, 0xfc, 0x9f, 0x03, 0x3f, 0x06, 0xfc, 0xff, 0x00, 0xff, 0xdf, 0x03, - 0x1f, 0xc8, 0x00, 0x00, 0x9c, 0xff, 0xdf, 0x03, 0x4f, 0x09, 0x00, 0x62, - 0xab, 0xff, 0xef, 0x03, 0xaf, 0x0b, 0x00, 0x80, 0x94, 0xff, 0xf7, 0x01, - 0xae, 0x0f, 0x00, 0x00, 0xaa, 0xff, 0xff, 0x01, 0xae, 0x0f, 0x00, 0x00, - 0x94, 0xff, 0xf9, 0x00, 0x4c, 0x0e, 0x00, 0x00, 0xa8, 0x7f, 0xfe, 0x00, - 0x9c, 0x0a, 0x00, 0x00, 0x94, 0xff, 0x7f, 0x00, 0x78, 0x08, 0x00, 0x00, - 0xa9, 0xff, 0x7f, 0x00, 0xf8, 0x0f, 0x00, 0x00, 0x90, 0xff, 0x3f, 0x00, - 0xf0, 0x0f, 0x00, 0x00, 0xa8, 0xff, 0x3f, 0x00, 0xc0, 0x0f, 0x00, 0x00, - 0x90, 0xff, 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x80, 0xff, 0x07, 0x00, - 0x00, 0x0c, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, - 0x80, 0x3f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x08, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, - 0x60, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x1f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/connections-48.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -#define cxism_width 48 -#define cxism_height 48 -static char cxism_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x07, 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, - 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, - 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x07, 0x80, 0xe3, 0x30, 0x0c, 0xc7, 0x01, - 0x00, 0x4d, 0x4b, 0xd2, 0xb2, 0x00, 0x00, 0x72, 0x8c, 0x31, 0x4e, 0x00, - 0x00, 0xc4, 0x99, 0x99, 0x23, 0x00, 0x00, 0x48, 0x66, 0x66, 0x12, 0x00, - 0x00, 0x88, 0xbc, 0x3d, 0x11, 0x00, 0x00, 0x90, 0xf2, 0x4f, 0x09, 0x00, - 0x00, 0xa0, 0xea, 0x57, 0x05, 0x00, 0x00, 0xc0, 0x3e, 0x7c, 0x03, 0x00, - 0x00, 0x80, 0x0f, 0xf0, 0x01, 0x00, 0x00, 0x80, 0x03, 0xc0, 0x01, 0x00, - 0x00, 0x40, 0x04, 0x20, 0x02, 0x00, 0x00, 0x40, 0x04, 0x20, 0x02, 0x00, - 0x00, 0x40, 0x04, 0x20, 0x02, 0x00, 0x00, 0x80, 0x03, 0xc0, 0x01, 0x00, - 0x00, 0x80, 0x0f, 0xf0, 0x01, 0x00, 0x00, 0xc0, 0x3e, 0x7c, 0x03, 0x00, - 0x00, 0xa0, 0xea, 0x57, 0x05, 0x00, 0x00, 0x90, 0xf2, 0x4f, 0x09, 0x00, - 0x00, 0x88, 0xbc, 0x3d, 0x11, 0x00, 0x00, 0x48, 0x66, 0x66, 0x12, 0x00, - 0x00, 0xc4, 0x99, 0x99, 0x23, 0x00, 0x00, 0x72, 0x8c, 0x31, 0x4e, 0x00, - 0x00, 0x4d, 0x4b, 0xd2, 0xb2, 0x00, 0x80, 0xe3, 0x30, 0x0c, 0xc7, 0x01, - 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x07, 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, - 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, 0x10, 0x89, 0x44, 0x22, 0x91, 0x08, - 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/cray.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define noname_width 64 -#define noname_height 64 -static char noname_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xe7,0xe3,0x1c, - 0x00,0x00,0x00,0x00,0xbc,0xff,0xff,0x1f,0x00,0x00,0x00,0x00,0xfc,0xff,0xff, - 0xff,0x03,0x00,0x00,0x00,0xbc,0x61,0x30,0xf8,0x03,0x00,0x00,0x00,0xb4,0x61, - 0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4, - 0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00, - 0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00, - 0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00, - 0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02, - 0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18, - 0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30, - 0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61, - 0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4, - 0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00, - 0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00, - 0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00, - 0x00,0x00,0xb4,0x61,0x30,0x18,0x02,0x00,0x00,0x00,0xb4,0x61,0x30,0x18,0x02, - 0x00,0x00,0xe0,0xb7,0x61,0x30,0x18,0x02,0x00,0x00,0xfc,0xb7,0x61,0x30,0x18, - 0x0e,0x00,0x80,0xff,0xb7,0x61,0x30,0x18,0x7e,0x00,0xe0,0xff,0xb7,0x61,0x30, - 0x18,0xfe,0x03,0xf0,0xff,0xbf,0x61,0x30,0xf8,0xff,0x0f,0xf8,0xff,0xbf,0x61, - 0x30,0xf8,0xff,0x3f,0xfc,0xff,0xff,0x63,0x30,0x18,0x00,0x20,0xfc,0xff,0xff, - 0xff,0x30,0x1e,0x00,0x20,0xfc,0xff,0xff,0xff,0xff,0x3f,0x00,0x20,0xf4,0xff, - 0xff,0xff,0xff,0x7f,0x00,0x20,0xe4,0xff,0xff,0xff,0xff,0xff,0x00,0x20,0x44, - 0xff,0xff,0xff,0xff,0xff,0x01,0x20,0x44,0xfc,0xff,0xff,0xff,0xff,0x03,0x20, - 0x44,0xf8,0xff,0xff,0xff,0xff,0x07,0x20,0x44,0x10,0xff,0xff,0xff,0xff,0x0f, - 0x20,0x44,0x10,0xe0,0xff,0xff,0x07,0x08,0x20,0x44,0x10,0x20,0x00,0x02,0x00, - 0x08,0x20,0x44,0x10,0x20,0x00,0x02,0x00,0xf8,0x3f,0x44,0x10,0x20,0x00,0x02, - 0x00,0xf8,0x3f,0x4c,0x10,0x20,0x00,0x02,0x00,0x08,0x00,0x58,0x10,0x20,0x00, - 0x02,0x00,0x08,0x00,0x70,0x10,0x20,0x00,0x02,0x00,0x08,0x00,0xe0,0x10,0x20, - 0x00,0x02,0x00,0x08,0x00,0xc0,0x13,0x20,0x00,0x02,0x00,0x08,0x00,0x80,0x1f, - 0x20,0x00,0x02,0x00,0x08,0x00,0x00,0xfe,0x21,0x00,0x02,0x00,0x08,0x00,0x00, - 0xf0,0xff,0x00,0x02,0xe0,0x0f,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x0f,0x00, - 0x00,0x00,0x80,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00};
--- a/etc/frame-icon/dont_panic.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define dont_panic_new_width 64 -#define dont_panic_new_height 64 -static char dont_panic_new_bits[] = { - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xfc, - 0xff, 0xff, 0x5f, 0xfd, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x5f, 0xf5, - 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x58, 0xf6, 0xff, 0xff, 0xfb, 0xff, - 0xff, 0xf7, 0x13, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0xf8, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0x0f, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0x8f, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xf3, 0xcf, 0xfb, - 0xff, 0x3f, 0xfb, 0xff, 0xff, 0xf3, 0xcf, 0xff, 0xbf, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, - 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0x3f, 0x00, - 0xf8, 0xff, 0xcf, 0xff, 0xff, 0xff, 0x0f, 0x00, 0xe0, 0xff, 0xcf, 0xff, - 0xff, 0xfd, 0x07, 0x00, 0xc0, 0xff, 0xcf, 0xff, 0xff, 0xff, 0x03, 0x00, - 0x80, 0xff, 0xc7, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xc7, 0xff, - 0xff, 0xff, 0x00, 0x00, 0x00, 0xfe, 0xc3, 0xff, 0xff, 0xff, 0x00, 0x06, - 0x00, 0xfe, 0xc1, 0xff, 0xff, 0x7f, 0x00, 0x06, 0x00, 0xc4, 0xe0, 0xff, - 0xff, 0x7f, 0x00, 0x1d, 0x00, 0x04, 0xf0, 0xff, 0xff, 0x7f, 0x1c, 0x2d, - 0x00, 0x04, 0xfc, 0xff, 0xff, 0x3f, 0xf0, 0xc0, 0x70, 0x08, 0xff, 0xff, - 0xff, 0x3f, 0xa0, 0xaa, 0xfb, 0xc8, 0xff, 0xff, 0xef, 0x3f, 0xe0, 0xaa, - 0xf9, 0xf9, 0xff, 0xff, 0xff, 0x3f, 0xac, 0xc0, 0xfc, 0xf9, 0xff, 0xff, - 0xff, 0x3f, 0x2e, 0x3d, 0xfe, 0xf9, 0xff, 0xf9, 0xff, 0x3f, 0x2f, 0x1f, - 0xfe, 0xf9, 0xff, 0xf9, 0xff, 0x2f, 0x9f, 0x00, 0xfd, 0xf9, 0xff, 0xff, - 0xff, 0x4f, 0x4f, 0xc1, 0xfe, 0xfc, 0xff, 0xff, 0xff, 0x4f, 0xc6, 0xbe, - 0xff, 0xfc, 0xff, 0xff, 0xff, 0x47, 0xe4, 0xd3, 0xff, 0xfc, 0xff, 0xff, - 0xff, 0xc7, 0xf2, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0xff, 0xe3, 0xf9, 0xff, - 0x3f, 0xfe, 0xf7, 0xff, 0xbf, 0xe3, 0xf4, 0xff, 0x1f, 0xff, 0xff, 0xff, - 0xff, 0x73, 0xe2, 0xff, 0x8d, 0xff, 0xff, 0xff, 0xff, 0x71, 0xc6, 0xff, - 0xdb, 0xff, 0xff, 0xfb, 0xff, 0x39, 0x0f, 0xdf, 0xe3, 0xff, 0xff, 0xff, - 0xff, 0x19, 0x3f, 0x3c, 0x84, 0xff, 0xff, 0xff, 0xff, 0x98, 0xff, 0x61, - 0x08, 0xfe, 0xff, 0xff, 0xff, 0xcc, 0xff, 0xff, 0x21, 0x80, 0xff, 0xff, - 0xff, 0xc4, 0xff, 0xff, 0x83, 0x83, 0xff, 0xff, 0xff, 0xe0, 0xef, 0xff, - 0x07, 0x80, 0xff, 0xff, 0x7f, 0xf0, 0xff, 0xff, 0x0f, 0xc0, 0xff, 0xff, - 0x7f, 0xf8, 0xff, 0xff, 0x1f, 0xf8, 0xff, 0xff, 0x7f, 0xf8, 0xff, 0xff, - 0x7e, 0xf8, 0xff, 0xfe, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
--- a/etc/frame-icon/drawing.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -#define drafting_width 64 -#define drafting_height 54 -static char drafting_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00, - 0xf8,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0xce,0x1b,0x00,0x00,0x00,0x00,0x00, - 0x00,0x83,0x07,0x00,0x00,0x00,0x00,0x00,0x80,0xe1,0x1f,0x00,0x00,0x00,0x00, - 0x00,0xc0,0xf8,0x1f,0x00,0x00,0x00,0x00,0x00,0xc0,0x3e,0x3e,0x00,0x00,0x00, - 0x00,0x40,0xc0,0x07,0x33,0x00,0x00,0x00,0x00,0x80,0xe1,0x01,0x13,0x00,0x00, - 0x00,0x00,0x80,0x79,0x80,0x11,0x00,0x00,0x00,0x00,0x00,0x1e,0x80,0x19,0x00, - 0x00,0x00,0x00,0x00,0x0e,0xc0,0x08,0x00,0x00,0xc0,0x7f,0x00,0x0b,0xc0,0x0c, - 0x00,0x00,0xf0,0xff,0xc0,0x10,0x60,0x07,0x00,0x00,0xf8,0xff,0x31,0x20,0xe0, - 0x03,0x00,0x00,0xfc,0x7f,0x0c,0x40,0xf0,0x00,0x00,0x00,0xfe,0x1f,0x07,0x80, - 0x18,0x00,0x00,0x00,0xfe,0xcf,0x0f,0x00,0x19,0xf0,0x00,0x00,0xff,0xf3,0x1f, - 0x00,0x0e,0xff,0x00,0x00,0xff,0xfc,0x1f,0x00,0xfc,0x3f,0x00,0x00,0x7f,0xff, - 0x1f,0x00,0x7e,0x39,0x00,0x00,0xff,0xff,0x1f,0xd0,0x7e,0x3e,0x00,0x00,0xff, - 0xff,0x1f,0x7c,0xff,0x27,0x00,0x00,0xff,0xff,0xff,0x7f,0xff,0x3b,0x00,0x00, - 0xff,0x3f,0xe0,0xbf,0xfd,0x1f,0x00,0x00,0xff,0x3b,0x7e,0x85,0xf1,0x01,0x00, - 0x00,0xff,0xb1,0x03,0xc0,0x73,0x00,0x00,0x00,0xfe,0x21,0x00,0x40,0x7e,0x00, - 0x00,0x00,0xfe,0x40,0x00,0x60,0x38,0x00,0x00,0x00,0xfc,0x80,0x00,0x20,0x1c, - 0x00,0x00,0x00,0x78,0x00,0x01,0x30,0x1e,0x00,0x00,0x00,0x60,0x00,0x02,0x10, - 0x17,0x00,0x00,0x00,0x20,0x00,0x04,0x98,0x13,0x00,0x00,0x00,0x20,0x00,0x08, - 0xc8,0x10,0x00,0x00,0x00,0x10,0x00,0x10,0x6c,0x10,0x00,0x00,0x00,0x10,0x00, - 0x20,0x3c,0x10,0x00,0x00,0x00,0x08,0x00,0x40,0x0e,0x10,0x00,0x00,0x00,0x08, - 0x00,0x80,0x06,0x10,0x00,0x00,0x00,0x04,0x00,0x00,0x01,0x10,0x00,0x00,0x00, - 0x04,0x00,0x00,0x02,0x10,0x00,0x00,0x00,0xfe,0xff,0xff,0x03,0x10,0x00,0x00, - 0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x00, - 0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x10, - 0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0xe0,0xff,0xff, - 0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
--- a/etc/frame-icon/elisp.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define elisp.xbm_width 64 -#define elisp.xbm_height 64 -static char elisp.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0xc0, 0xe3, 0x07, - 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0xf8, 0xe3, 0x0f, 0xfe, 0x3f, 0x07, 0x00, - 0x1c, 0xfe, 0xe3, 0x3e, 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0x1f, 0xe0, 0x3c, - 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x0f, 0xe0, 0x78, 0x0e, 0x00, 0x07, 0x00, - 0x9c, 0x07, 0xe0, 0x70, 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x03, 0xe0, 0x70, - 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x03, 0xe0, 0xe0, 0x0e, 0x00, 0x07, 0x00, - 0x9c, 0x01, 0xe0, 0xe0, 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x01, 0xe0, 0xe0, - 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x01, 0xe0, 0xe0, 0x0e, 0x00, 0x07, 0x00, - 0x9c, 0x03, 0xe0, 0xe0, 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x03, 0xe0, 0xe0, - 0x0e, 0x00, 0x07, 0x00, 0x9c, 0x03, 0xe0, 0xe0, 0x0e, 0x00, 0x07, 0x00, - 0x1c, 0x07, 0xe0, 0xf0, 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x0e, 0xe0, 0x78, - 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0x1c, 0xe0, 0x3f, 0xfe, 0x3f, 0x07, 0x00, - 0x1c, 0x3c, 0xe0, 0x1f, 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0x78, 0xe0, 0x03, - 0xfe, 0x3f, 0x07, 0x00, 0x1c, 0xf0, 0xe0, 0x00, 0x0e, 0x00, 0x07, 0x00, - 0x1c, 0xe0, 0xe1, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x1c, 0xc0, 0xe1, 0x00, - 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x80, 0xe3, 0x00, 0x0e, 0x00, 0x07, 0x00, - 0x1c, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x00, 0xe7, 0x00, - 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x07, 0x00, - 0x1c, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x00, 0xe7, 0x00, - 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x07, 0x00, - 0x1c, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x07, 0x00, 0x1c, 0x80, 0xe3, 0x00, - 0x0e, 0x00, 0x07, 0x00, 0x1c, 0xc0, 0xe3, 0x00, 0xfe, 0x3f, 0x07, 0x00, - 0x1c, 0xf0, 0xe1, 0x00, 0xfe, 0x3f, 0xff, 0xff, 0x1c, 0xf8, 0xe0, 0x00, - 0xfe, 0x3f, 0xff, 0xff, 0x9c, 0x7f, 0xe0, 0x00, 0xfe, 0x3f, 0xff, 0xff, - 0x9c, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/escherknot.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define escherknot_width 64 -#define escherknot_height 54 -static char escherknot_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x40, 0x45, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x10, 0x90, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, - 0x00, 0x00, 0x20, 0x09, 0x44, 0x02, 0x68, 0x00, 0x00, 0x00, 0x02, 0xa0, - 0x91, 0x04, 0xd2, 0x00, 0x00, 0x80, 0x50, 0x4d, 0xac, 0x12, 0xa4, 0x01, - 0x00, 0x00, 0x89, 0x52, 0x71, 0x2f, 0x68, 0x01, 0x00, 0x50, 0xd4, 0xaa, - 0xad, 0x1b, 0xc0, 0x01, 0x00, 0x00, 0x55, 0x6d, 0xd5, 0x3f, 0x50, 0x03, - 0x00, 0xa8, 0x7a, 0xaf, 0x55, 0x7e, 0xa0, 0x02, 0x00, 0x44, 0xd5, 0x7d, - 0xeb, 0x4b, 0xc8, 0x03, 0x00, 0x50, 0xff, 0xd7, 0x5a, 0x06, 0xa0, 0x02, - 0x00, 0xea, 0xfe, 0xff, 0xd7, 0x4d, 0x68, 0x03, 0x00, 0xb4, 0xff, 0xff, - 0xad, 0x1a, 0x90, 0x03, 0x00, 0xd9, 0xfe, 0xff, 0xbf, 0x37, 0xe8, 0x03, - 0x80, 0xec, 0x1f, 0xf4, 0xd7, 0x5a, 0xa4, 0x02, 0x00, 0xdb, 0x86, 0xea, - 0xbf, 0x36, 0xe8, 0x03, 0x80, 0xf4, 0x07, 0xb9, 0xff, 0x0d, 0x54, 0x01, - 0x40, 0x57, 0x23, 0xd7, 0xad, 0x05, 0xf5, 0x01, 0x80, 0xfa, 0x43, 0xf8, - 0x78, 0x07, 0xb4, 0x01, 0x40, 0xd7, 0x81, 0xed, 0xf0, 0x41, 0xdd, 0x00, - 0x40, 0x7d, 0x21, 0xf6, 0xe0, 0x11, 0xf5, 0x00, 0x40, 0xd7, 0xa2, 0xd9, - 0x40, 0x40, 0x7b, 0x00, 0x80, 0x77, 0x41, 0xfa, 0x00, 0x50, 0x7d, 0x00, - 0x40, 0xad, 0x51, 0x5b, 0x00, 0xa0, 0x1b, 0x00, 0x80, 0x5f, 0x55, 0xea, - 0x00, 0xda, 0x1e, 0x00, 0x80, 0xb6, 0x52, 0xbb, 0x52, 0xb4, 0x1f, 0x00, - 0x80, 0xdf, 0xa5, 0xd6, 0x04, 0xd5, 0x1f, 0x00, 0x00, 0xad, 0xaa, 0xaa, - 0xd1, 0x7a, 0x1f, 0x00, 0x00, 0x7f, 0xa5, 0xba, 0xab, 0xee, 0x3b, 0x00, - 0x00, 0xde, 0x1b, 0x55, 0xe9, 0xfb, 0x1f, 0x00, 0x00, 0x7c, 0x6d, 0xad, - 0x5a, 0x7f, 0x3f, 0x00, 0x00, 0xf8, 0x57, 0xb5, 0xfe, 0x7f, 0x3b, 0x00, - 0x00, 0xf0, 0x7d, 0x55, 0xe9, 0x4f, 0x3f, 0x00, 0x00, 0xe0, 0x6f, 0xad, - 0xfa, 0xa3, 0x3e, 0x00, 0x00, 0xc0, 0xff, 0xeb, 0xea, 0x40, 0x3b, 0x00, - 0x00, 0x00, 0x7f, 0x5d, 0x25, 0x80, 0x3f, 0x00, 0x00, 0x00, 0xf8, 0xab, - 0x1a, 0xa4, 0x3a, 0x00, 0x00, 0x00, 0x40, 0xdb, 0x26, 0x40, 0x3f, 0x00, - 0x00, 0x00, 0x00, 0xf6, 0xb5, 0xa0, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x5c, - 0xab, 0xaa, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x7e, 0xed, 0x1e, 0x00, - 0x00, 0x00, 0x00, 0xf8, 0xab, 0xbb, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0xfe, 0xee, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xf7, 0xff, 0x07, 0x00, - 0x00, 0x00, 0x00, 0x80, 0xbf, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x7f, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xa0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/eye.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define eye_width 64 -#define eye_height 54 -static char eye_bits[] = { - 0x00, 0x00, 0x0a, 0x92, 0x02, 0x00, 0x20, 0x45, 0x11, 0x22, 0xa1, 0xfd, - 0x6d, 0x4b, 0x8a, 0x90, 0x04, 0x48, 0xed, 0x6f, 0xff, 0x0d, 0x49, 0x16, - 0x40, 0xb5, 0x7e, 0xfb, 0xdb, 0xfe, 0x66, 0xc9, 0x51, 0xab, 0x95, 0xdf, - 0xff, 0xf7, 0x5b, 0xb6, 0xe8, 0x54, 0xc0, 0xea, 0xfe, 0x7f, 0xff, 0xeb, - 0xba, 0x17, 0x12, 0xf4, 0xbb, 0xed, 0x6b, 0xbf, 0xcc, 0x42, 0x80, 0x48, - 0xef, 0xff, 0xff, 0xf5, 0x75, 0x10, 0x09, 0xa2, 0xfd, 0x7f, 0xdb, 0x5f, - 0x9a, 0x06, 0xa0, 0x58, 0x6f, 0xdb, 0x7f, 0xfb, 0x06, 0x41, 0x04, 0xa8, - 0xfd, 0xff, 0xff, 0xef, 0x61, 0x00, 0x81, 0xc6, 0xaa, 0xf7, 0x6d, 0xbd, - 0x09, 0x14, 0x10, 0x58, 0xff, 0xfd, 0xff, 0xf7, 0x80, 0x00, 0x41, 0xed, - 0x76, 0x7f, 0xdb, 0x7f, 0x15, 0x20, 0x74, 0xba, 0xdf, 0xdf, 0xff, 0xee, - 0x00, 0x85, 0xd0, 0xef, 0xfb, 0xf7, 0xff, 0xff, 0x24, 0x10, 0xbe, 0xfd, - 0xfe, 0xff, 0x77, 0xbb, 0x00, 0x42, 0xed, 0xff, 0xff, 0xff, 0xfe, 0xdf, - 0xa9, 0xe8, 0xff, 0xd7, 0xff, 0xff, 0xbf, 0xf7, 0x00, 0x70, 0x07, 0xcd, - 0xfd, 0xf7, 0xff, 0xff, 0x44, 0xde, 0xa0, 0x7b, 0xff, 0xfe, 0xfb, 0xbe, - 0x10, 0x7c, 0xcc, 0xfe, 0xbf, 0xff, 0xbf, 0xef, 0x41, 0x3f, 0xfc, 0xff, - 0xff, 0xff, 0xef, 0xff, 0x94, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, - 0xc1, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xc8, 0xf6, 0xff, 0xff, - 0xff, 0xff, 0xfe, 0xee, 0xa0, 0xeb, 0xeb, 0xea, 0xff, 0xff, 0xbf, 0xbf, - 0xda, 0xf5, 0xee, 0xe7, 0xff, 0xff, 0xff, 0xff, 0x60, 0xbf, 0x61, 0xf7, - 0xff, 0xff, 0xff, 0xed, 0x98, 0xfa, 0xf0, 0xfd, 0xff, 0xdb, 0xdf, 0xbf, - 0xe1, 0x3f, 0xe0, 0xf7, 0xff, 0xff, 0xff, 0xfe, 0x40, 0x07, 0xf0, 0xff, - 0xff, 0xeb, 0xf7, 0x37, 0x88, 0x05, 0xe2, 0xfe, 0xff, 0x57, 0x7f, 0xdf, - 0x20, 0x50, 0xc0, 0xff, 0xff, 0xe9, 0xff, 0x55, 0x01, 0x30, 0xc0, 0xff, - 0xf7, 0xf7, 0x5f, 0x37, 0x00, 0x84, 0xc0, 0xff, 0x7f, 0xdb, 0xff, 0x8c, - 0x00, 0x00, 0x82, 0xdf, 0xfb, 0xf5, 0x37, 0x93, 0x00, 0x69, 0x08, 0xf7, - 0xbf, 0xda, 0x3e, 0x25, 0x00, 0x80, 0x01, 0xfc, 0x7f, 0xf7, 0xcf, 0x22, - 0x00, 0x40, 0x12, 0xf8, 0x97, 0xfd, 0x33, 0x44, 0x00, 0x90, 0x94, 0x44, - 0xf5, 0xdf, 0xae, 0x10, 0x00, 0x02, 0x32, 0xa0, 0xbe, 0xf5, 0x3f, 0x45, - 0x00, 0xa0, 0xdc, 0xd5, 0xf1, 0xbf, 0x0a, 0x00, 0x00, 0x00, 0xec, 0x7f, - 0x5f, 0xef, 0x5f, 0x12, 0x00, 0x48, 0x65, 0xdf, 0xfb, 0xfb, 0x0f, 0x00, - 0x00, 0x00, 0xba, 0xf5, 0xfe, 0xff, 0x45, 0x21, 0x00, 0x80, 0xb0, 0xff, - 0xbf, 0xff, 0x23, 0x08, 0x00, 0x20, 0xf2, 0xde, 0xfb, 0xdf, 0x08, 0x00, - 0x00, 0x00, 0x40, 0xf7, 0xfe, 0x77, 0x02, 0x41, 0x00, 0x04, 0x94, 0xbd, - 0xef, 0xbd, 0x40, 0x10, 0x00, 0x00, 0xa0, 0xea, 0x7f, 0x1f, 0x0a, 0x04, - 0x08, 0x01, 0x09, 0xfd, 0xfe, 0x87, 0x00, 0x00, 0x00, 0x00, 0x40, 0xaa, - 0xbb, 0x15, 0x40, 0x00, 0x00, 0x00, 0x10, 0xd4, 0xef, 0x41, 0x04, 0x21};
--- a/etc/frame-icon/filing.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define filing_width 64 -#define filing_height 54 -static char filing_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xc0, 0x13, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x44, - 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x11, 0x91, 0x01, 0x00, 0x00, - 0x00, 0xf0, 0x44, 0x44, 0x44, 0x06, 0x00, 0x00, 0x00, 0x1c, 0x11, 0x11, - 0x11, 0x19, 0x00, 0x00, 0x00, 0x4c, 0x44, 0x44, 0x44, 0x74, 0x00, 0x00, - 0x00, 0x34, 0x11, 0x11, 0x11, 0x6e, 0x00, 0x00, 0x00, 0xc4, 0x44, 0x44, - 0xc4, 0x55, 0x00, 0x00, 0x00, 0x04, 0x13, 0x11, 0xb9, 0x6a, 0x00, 0x00, - 0x00, 0x04, 0x4c, 0x44, 0x57, 0x55, 0x00, 0x00, 0x00, 0x04, 0x30, 0xf1, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x5c, 0x55, 0x55, 0x00, 0x00, - 0x00, 0x04, 0x00, 0xab, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x84, 0x00, 0x56, - 0x55, 0x55, 0x00, 0x00, 0x00, 0x84, 0x01, 0xaa, 0xaa, 0x6a, 0x00, 0x00, - 0x00, 0x04, 0x16, 0x56, 0x55, 0x55, 0x00, 0x00, 0x00, 0x04, 0x18, 0xaa, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x56, 0x55, 0x55, 0x00, 0x00, - 0x00, 0x1d, 0x00, 0xaa, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x71, 0x00, 0x56, - 0x55, 0x55, 0x00, 0x00, 0x00, 0xc1, 0x01, 0xaa, 0xaa, 0x6a, 0x00, 0x00, - 0x00, 0x01, 0x07, 0x56, 0x55, 0x55, 0x00, 0x00, 0x00, 0x01, 0x1c, 0xaa, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x01, 0x70, 0x56, 0x55, 0x55, 0x00, 0x00, - 0x00, 0x01, 0xc0, 0xab, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x21, 0x00, 0x57, - 0x55, 0x55, 0x00, 0x00, 0x00, 0x61, 0x00, 0xab, 0xaa, 0x6a, 0x00, 0x00, - 0x00, 0x81, 0x05, 0x57, 0x55, 0x55, 0x00, 0x00, 0x00, 0x01, 0x06, 0xab, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x03, 0x00, 0x57, 0x55, 0x55, 0x00, 0x00, - 0x00, 0x0c, 0x00, 0xab, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x34, 0x00, 0x57, - 0x55, 0x55, 0x00, 0x00, 0x00, 0xc4, 0x00, 0xab, 0xaa, 0x6a, 0x00, 0x00, - 0x00, 0x04, 0x03, 0x57, 0x55, 0x55, 0x00, 0x00, 0x00, 0x04, 0x0c, 0xab, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x04, 0x30, 0x57, 0x55, 0x55, 0x00, 0x00, - 0x00, 0x04, 0xc0, 0xab, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x84, 0x00, 0x56, - 0x55, 0x55, 0x00, 0x00, 0x00, 0x84, 0x01, 0xaa, 0xaa, 0x6a, 0x00, 0x00, - 0x00, 0x04, 0x16, 0x56, 0x55, 0x55, 0x00, 0x00, 0x00, 0x04, 0x18, 0xaa, - 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x56, 0x55, 0x75, 0x00, 0x00, - 0x00, 0x30, 0x00, 0xaa, 0xaa, 0xbe, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x56, - 0xd5, 0xef, 0x06, 0x00, 0x00, 0x00, 0x03, 0xaa, 0xfa, 0xbb, 0x1b, 0x00, - 0x00, 0x00, 0x0c, 0x56, 0xef, 0xee, 0x6e, 0x00, 0x00, 0x00, 0x30, 0xea, - 0xbb, 0xbb, 0x3b, 0x00, 0x00, 0x00, 0xc0, 0xfe, 0xee, 0xee, 0x6e, 0x00, - 0x00, 0x00, 0x00, 0xbf, 0xbb, 0xbb, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/finger.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define finger_width 64 -#define finger_height 54 -static char finger_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x80, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x30, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x80, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x01, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x26, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x0c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xe0, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x88, 0x01, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x03, - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0xfc, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x08, 0x84, 0x83, 0x03, 0x00, 0x00, 0x00, 0x00, 0x08, 0x6c, - 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x00, 0x0c, 0x00, 0x00, - 0x00, 0x00, 0x10, 0x2e, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x11, - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x58, 0x08, 0x00, 0x60, 0x00, 0x00, - 0x00, 0x00, 0xc4, 0x07, 0x3c, 0x40, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, - 0x47, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x84, 0xf0, 0x40, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x0c, 0x3f, 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0a, - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x18, 0x12, 0x04, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x30, 0x11, 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x48, 0x09, - 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x88, 0x07, 0x0c, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x08, 0x02, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x10, 0x07, - 0x18, 0x80, 0x01, 0x00, 0x00, 0x00, 0x30, 0x09, 0x70, 0x40, 0x01, 0x00, - 0x00, 0x00, 0xa0, 0x48, 0xc1, 0x0b, 0x03, 0x00, 0x00, 0x00, 0xc0, 0x08, - 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x80, 0x07, 0x04, 0x00, 0x0c, 0x00, - 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x06, - 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x20, 0x00, - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x80, - 0x07, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x80, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x0c, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/galaxy.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define galaxy_width 64 -#define galaxy_height 64 -static char galaxy_bits[] = { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,0xff,0xff, - 0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xfe,0xff,0xf7,0xff,0xff,0xfd,0xff, - 0x1f,0x7b,0xff,0xf3,0xff,0xff,0xfd,0xff,0x07,0xff,0xff,0xff,0xff,0xff,0xff, - 0x7f,0xf1,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xe4,0x1f,0x83,0xff,0xff,0xff, - 0xff,0x7f,0xf7,0xbb,0xff,0xff,0xff,0xff,0xff,0x1e,0xff,0xc0,0xee,0xff,0xff, - 0xff,0xff,0x9f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x8e,0xf1,0xff,0xff,0xfb, - 0xff,0xff,0xff,0x3f,0xfe,0xaf,0xff,0xe7,0xbf,0xff,0x3f,0xc7,0xff,0x73,0xfe, - 0xff,0xbf,0xff,0xff,0xf7,0xee,0xff,0xf9,0x7f,0xbf,0xff,0x7f,0xf9,0x4f,0xff, - 0xf7,0xff,0xff,0xff,0xff,0xfd,0x9f,0xfb,0x8f,0xff,0xfd,0xff,0xff,0xec,0xd6, - 0xff,0xff,0xff,0xff,0xff,0x7f,0x6d,0xf6,0xdf,0xff,0xfc,0xff,0xff,0x3d,0xff, - 0xf6,0xa3,0xff,0xff,0xfd,0xff,0xbf,0x7d,0x57,0x10,0xfd,0xff,0xfb,0xff,0xb9, - 0x75,0x4f,0x20,0xf8,0xf7,0xff,0xff,0x73,0x74,0x0f,0xf0,0xf9,0xf7,0xfd,0xff, - 0x7f,0xdc,0x0e,0x29,0xc3,0xff,0xff,0xff,0x77,0xec,0x0f,0xe0,0xe7,0xff,0xff, - 0xff,0xff,0xec,0x27,0x48,0x9f,0xef,0xff,0xff,0xef,0xe9,0x07,0x90,0x7e,0xef, - 0xff,0xff,0xbe,0x33,0x22,0x60,0x5f,0xff,0xff,0xff,0xff,0xf6,0x89,0xe0,0xfb, - 0xfe,0xff,0xff,0xff,0xc9,0x1f,0xb0,0xbf,0xfe,0xff,0xff,0xff,0x1f,0xc0,0x1a, - 0xfe,0xed,0xff,0xff,0xff,0xcf,0x7f,0x70,0xbd,0xfe,0xff,0xff,0xff,0xbf,0xc7, - 0x70,0x3c,0xfe,0xff,0xff,0xf7,0xff,0xfa,0x3f,0xa7,0xef,0xff,0xff,0xef,0xfb, - 0x0f,0x9f,0xbf,0xfe,0xff,0xff,0xcf,0xf7,0xff,0xdf,0xbf,0xfe,0xff,0xff,0xdf, - 0xe7,0xff,0xe7,0x7f,0xfb,0xff,0xff,0xbf,0x7f,0x73,0x61,0xba,0xff,0xff,0xff, - 0xff,0xff,0xc0,0xfc,0xbb,0xff,0xff,0xff,0xff,0xef,0x1f,0x7a,0xcb,0xff,0xdf, - 0xff,0xff,0xf9,0x77,0xbf,0xcf,0xff,0xdf,0xff,0xff,0x73,0xf9,0xff,0xef,0xff, - 0xdf,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfb, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0x8f,0xff,0xff, - 0xfe,0xff,0xff,0xff,0xff,0x7f,0xe8,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x1f, - 0xf9,0xff,0xff,0xfe,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf3,0x7f,0xff, - 0xff,0x7f,0xff,0xff,0xcf,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff};
--- a/etc/frame-icon/gnu.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,33 +0,0 @@ -#define gnu_width 50 -#define gnu_height 50 -static unsigned char gnu_bits[] = { - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x7f, 0xfc, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf1, - 0xff, 0xff, 0xf3, 0xff, 0x8f, 0xff, 0xe1, 0xff, 0xff, 0xf9, 0x3f, 0x22, - 0xfe, 0xcb, 0xff, 0xff, 0xf8, 0xc3, 0xf8, 0xfc, 0xcb, 0xff, 0x7f, 0xfc, - 0xe0, 0xf9, 0xf9, 0xdb, 0xff, 0x7f, 0xfc, 0xf0, 0xfb, 0xf3, 0xd9, 0xff, - 0x3f, 0x7e, 0xf8, 0xff, 0xf7, 0xcc, 0xff, 0x9f, 0x3e, 0x1c, 0x7f, 0x44, - 0xce, 0xff, 0xcf, 0x1e, 0xcc, 0x01, 0x00, 0xe7, 0xff, 0xef, 0x0e, 0xce, - 0x38, 0x1c, 0xe0, 0xff, 0xef, 0x0e, 0x27, 0xfe, 0xfa, 0xc3, 0xff, 0xef, - 0x7c, 0x93, 0xff, 0xe5, 0xbf, 0xff, 0xef, 0x99, 0xc9, 0xab, 0x2a, 0x00, - 0xff, 0xcf, 0xc3, 0x24, 0x54, 0xc5, 0xd5, 0xff, 0x9f, 0x7f, 0x16, 0xab, - 0xca, 0xff, 0xff, 0x1f, 0x1f, 0x93, 0x46, 0x95, 0xff, 0xff, 0x7f, 0xc8, - 0x49, 0x99, 0x8a, 0xff, 0xff, 0xff, 0xf0, 0x49, 0x4b, 0x95, 0xff, 0xff, - 0xff, 0xf9, 0x4c, 0x88, 0x8a, 0xff, 0xff, 0xff, 0x1e, 0xe6, 0x58, 0x95, - 0xff, 0xff, 0x3f, 0x00, 0xe6, 0xb7, 0x0a, 0xff, 0xff, 0xbf, 0x8a, 0xea, - 0x50, 0x15, 0xff, 0xff, 0xff, 0x8f, 0xca, 0x99, 0x2a, 0xff, 0xff, 0xff, - 0xa7, 0x95, 0x7f, 0x15, 0xff, 0xff, 0xff, 0x23, 0x55, 0x7f, 0x2a, 0xfe, - 0xff, 0xff, 0x63, 0xd8, 0xfc, 0x14, 0xfe, 0xff, 0xff, 0x43, 0x9a, 0xfb, - 0x2b, 0xfe, 0xff, 0xff, 0xc3, 0xaa, 0x12, 0x94, 0xfc, 0xff, 0xff, 0xc1, - 0x32, 0xd5, 0xc1, 0xfd, 0xff, 0xff, 0x81, 0x46, 0xd5, 0x47, 0xfc, 0xff, - 0xff, 0x83, 0x6c, 0xc2, 0x6e, 0xfc, 0xff, 0xff, 0x83, 0x89, 0x88, 0x69, - 0xfe, 0xff, 0xff, 0x07, 0x92, 0x09, 0x3b, 0xfe, 0xff, 0xff, 0x07, 0x22, - 0x01, 0x3c, 0xfe, 0xff, 0xff, 0x0f, 0x4e, 0x02, 0x03, 0xfe, 0xff, 0xff, - 0x2f, 0xd0, 0x18, 0x3e, 0xff, 0xff, 0xff, 0x3f, 0xb0, 0x19, 0x9e, 0xff, - 0xff, 0xff, 0x7f, 0x00, 0x09, 0x80, 0xff, 0xff, 0xff, 0x7f, 0x01, 0xe3, - 0xc1, 0xff, 0xff, 0xff, 0xff, 0x05, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, - 0x07, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xfd, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff};
--- a/etc/frame-icon/gopher.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define xgopher_width 64 -#define xgopher_height 54 -static char xgopher_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x01, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, - 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x76, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xc0, 0x39, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xf9, - 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xf0, 0x06, 0x03, 0x00, 0x00, - 0x00, 0x00, 0xf0, 0x30, 0x0e, 0x07, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x78, - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x20, 0x0f, 0xf8, 0x01, - 0x80, 0x3f, 0xf8, 0xf0, 0xff, 0x1f, 0x06, 0x06, 0xc0, 0xc0, 0xf8, 0xff, - 0xff, 0x97, 0x01, 0x0c, 0x20, 0x80, 0xf9, 0xff, 0xff, 0xe3, 0xf0, 0x08, - 0x90, 0x07, 0x1f, 0xff, 0xff, 0x40, 0xf8, 0x11, 0xd8, 0x1f, 0x26, 0x38, - 0x38, 0x4c, 0xfc, 0x12, 0xe8, 0x3f, 0x1a, 0xc0, 0x07, 0x90, 0x9e, 0x20, - 0x28, 0x3e, 0x8e, 0x01, 0xc0, 0xa3, 0x1f, 0x20, 0x08, 0x7e, 0xe4, 0x07, - 0x70, 0x8e, 0x0f, 0x20, 0x08, 0x7c, 0x31, 0x08, 0x10, 0x90, 0x03, 0x20, - 0x08, 0xf8, 0x11, 0x30, 0x08, 0x10, 0x07, 0x20, 0x18, 0xf8, 0x09, 0x20, - 0x08, 0x20, 0x07, 0x20, 0x18, 0xf0, 0x89, 0x67, 0xe8, 0x21, 0x03, 0x10, - 0x30, 0xa0, 0xe9, 0x67, 0xe8, 0xe7, 0x03, 0x10, 0x20, 0xc0, 0x01, 0x40, - 0x0b, 0x00, 0x03, 0x08, 0x60, 0xe0, 0x31, 0x80, 0x07, 0x58, 0x07, 0x04, - 0xc0, 0x41, 0x00, 0xc0, 0x0f, 0x00, 0x06, 0x03, 0x00, 0xdf, 0x0f, 0xc0, - 0x0f, 0xe0, 0xff, 0x01, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, - 0x00, 0xc0, 0x1f, 0x00, 0x00, 0xfe, 0x07, 0x00, 0x00, 0x7f, 0x00, 0x00, - 0x00, 0x00, 0x7c, 0x00, 0xc0, 0x40, 0x0f, 0x00, 0x02, 0xf0, 0x87, 0x01, - 0x00, 0xe0, 0xc0, 0x00, 0x07, 0x0c, 0x06, 0x00, 0x00, 0xbe, 0x00, 0xff, - 0xff, 0xe3, 0x7b, 0x00, 0x80, 0x81, 0x13, 0x1e, 0xc2, 0xf1, 0x80, 0x01, - 0x00, 0x00, 0x3e, 0x08, 0xc2, 0x11, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, - 0xc2, 0x08, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x10, 0x40, 0x04, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x11, 0x22, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, - 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x1f, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xcc, 0x8f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, - 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xc0, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x28, 0x60, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, - 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x7f, 0x07, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x18, 0x40, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, - 0xc0, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xd0, 0x1c, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x18, 0xf0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, - 0x20, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x20, 0x72, 0x00, 0x00};
--- a/etc/frame-icon/help.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define help_width 64 -#define help_height 54 -static char help_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, - 0x00, 0x00, 0x03, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, - 0x00, 0xc0, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x00, 0xe0, 0x01, 0x00, - 0x00, 0xe0, 0x0f, 0x20, 0x02, 0xf0, 0x03, 0x00, 0x00, 0xf0, 0x1f, 0x84, - 0x48, 0xf8, 0x07, 0x00, 0x00, 0xf8, 0x3f, 0x50, 0x95, 0xfc, 0x0f, 0x00, - 0x00, 0xfc, 0x7f, 0xaa, 0x2a, 0xfe, 0x1f, 0x00, 0x00, 0xfc, 0xff, 0x55, - 0x55, 0xff, 0x1f, 0x00, 0x00, 0xf2, 0xff, 0xfb, 0xaf, 0xff, 0x3f, 0x00, - 0x00, 0xe2, 0xff, 0x0f, 0xf8, 0xff, 0x27, 0x00, 0x00, 0xc1, 0xff, 0x03, - 0xe0, 0xff, 0x23, 0x00, 0x00, 0x81, 0xff, 0x01, 0xc0, 0xff, 0x41, 0x00, - 0x00, 0x01, 0xff, 0x00, 0x80, 0xff, 0x40, 0x00, 0x80, 0x00, 0x7e, 0x00, - 0x00, 0x7f, 0x80, 0x00, 0x80, 0x00, 0x3c, 0x00, 0x00, 0x3e, 0x80, 0x00, - 0x80, 0x00, 0x1a, 0x00, 0x00, 0x5c, 0x80, 0x00, 0x80, 0x00, 0x14, 0x00, - 0x00, 0x28, 0x80, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, - 0x40, 0x00, 0xe7, 0xfe, 0x0e, 0x3f, 0x00, 0x01, 0x40, 0x00, 0x42, 0x84, - 0x04, 0x62, 0x00, 0x01, 0x40, 0x00, 0x42, 0x04, 0x04, 0x42, 0x00, 0x01, - 0x40, 0x00, 0x42, 0x44, 0x04, 0x62, 0x00, 0x01, 0x40, 0x00, 0x7e, 0x7c, - 0x04, 0x3e, 0x00, 0x01, 0x40, 0x00, 0x42, 0x44, 0x04, 0x02, 0x00, 0x01, - 0x40, 0x00, 0x42, 0x04, 0x04, 0x02, 0x00, 0x01, 0x40, 0x00, 0x42, 0x84, - 0x44, 0x02, 0x00, 0x01, 0x80, 0x00, 0xe7, 0xfe, 0x7e, 0x07, 0x80, 0x00, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x80, 0x00, 0x38, 0x00, - 0x00, 0x0e, 0x80, 0x00, 0x80, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0x80, 0x00, - 0x00, 0x01, 0xfe, 0x00, 0x80, 0x3f, 0x40, 0x00, 0x00, 0x01, 0xff, 0x01, - 0xc0, 0x7f, 0x40, 0x00, 0x00, 0x82, 0xff, 0x03, 0xe0, 0xff, 0x20, 0x00, - 0x00, 0xc2, 0xff, 0x0f, 0xf8, 0xff, 0x21, 0x00, 0x00, 0xe2, 0xff, 0xfb, - 0xe7, 0xff, 0x13, 0x00, 0x00, 0xf4, 0xff, 0x01, 0xc0, 0xff, 0x17, 0x00, - 0x00, 0xfc, 0xff, 0x00, 0x80, 0xff, 0x0f, 0x00, 0x00, 0xf8, 0x7f, 0x00, - 0x00, 0xff, 0x0f, 0x00, 0x00, 0xf0, 0x3f, 0x00, 0x00, 0xfe, 0x07, 0x00, - 0x00, 0xe0, 0x1f, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0xc0, 0x0f, 0x00, - 0x00, 0xf8, 0x01, 0x00, 0x00, 0x80, 0x47, 0x00, 0x80, 0xf4, 0x00, 0x00, - 0x00, 0x00, 0x17, 0x12, 0x21, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x45, - 0x54, 0x1d, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xaa, 0xaa, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x57, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/hourglass.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define hourglass_width 64 -#define hourglass_height 54 -static char hourglass_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x0f, 0x58, 0x25, 0x11, 0x04, 0x82, 0x10, 0x49, 0x15, - 0x58, 0x25, 0x55, 0x95, 0xaa, 0x54, 0x49, 0x15, 0xf0, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x0f, 0xc0, 0xdf, 0x80, 0x03, 0x78, 0x00, 0xe2, 0x03, - 0xc0, 0x7a, 0x80, 0x02, 0x58, 0x00, 0xd4, 0x02, 0xc0, 0x5a, 0x80, 0x00, - 0x58, 0x00, 0xd4, 0x02, 0xc0, 0x1a, 0x00, 0x02, 0x58, 0x00, 0xd4, 0x02, - 0xc0, 0x32, 0x80, 0x02, 0x58, 0x00, 0xca, 0x02, 0xc0, 0x32, 0x80, 0x02, - 0x58, 0x00, 0xca, 0x02, 0xc0, 0x52, 0x81, 0x00, 0x58, 0x00, 0xca, 0x02, - 0xc0, 0xa2, 0x00, 0x82, 0x5a, 0x00, 0xc5, 0x02, 0xc0, 0xe2, 0x80, 0xd0, - 0x5d, 0x00, 0xc5, 0x02, 0xc0, 0x42, 0x81, 0x7e, 0x59, 0x80, 0xc2, 0x02, - 0xc0, 0x82, 0x83, 0xdf, 0x5c, 0x41, 0xc1, 0x02, 0xc0, 0x02, 0xe7, 0xbf, - 0xd9, 0xa4, 0xc0, 0x02, 0xc0, 0x02, 0xfa, 0xdb, 0x5a, 0x53, 0xc0, 0x02, - 0xc0, 0x02, 0xec, 0xef, 0xdd, 0x24, 0xc0, 0x02, 0xc0, 0x02, 0x98, 0xbf, - 0x5a, 0x19, 0xc0, 0x02, 0xc0, 0x02, 0x60, 0xd6, 0x59, 0x06, 0xc0, 0x02, - 0xc0, 0x02, 0x80, 0xb9, 0xda, 0x01, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0xa7, - 0x5d, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0xcd, 0x59, 0x00, 0xc0, 0x02, - 0xc0, 0x02, 0x80, 0x95, 0x5b, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0xa5, - 0x5c, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0x25, 0x5d, 0x00, 0xc0, 0x02, - 0xc0, 0x02, 0x80, 0xa5, 0x5c, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0x65, - 0x5d, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0xd5, 0x5a, 0x00, 0xc0, 0x02, - 0xc0, 0x02, 0x80, 0x2d, 0x5d, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0x97, - 0x59, 0x00, 0xc0, 0x02, 0xc0, 0x02, 0x80, 0x03, 0xd9, 0x01, 0xc0, 0x02, - 0xc0, 0x02, 0xe0, 0x84, 0x58, 0x06, 0xc0, 0x02, 0xc0, 0x02, 0xd8, 0x02, - 0x59, 0x19, 0xc0, 0x02, 0xc0, 0x02, 0x34, 0x82, 0x5a, 0x24, 0xc0, 0x02, - 0xc0, 0x02, 0x8a, 0x00, 0x58, 0x50, 0xc0, 0x02, 0xc0, 0x02, 0x85, 0x02, - 0x58, 0xa0, 0xc0, 0x02, 0xc0, 0x82, 0x83, 0x82, 0x59, 0x40, 0xc1, 0x02, - 0xc0, 0xc2, 0x01, 0x42, 0x5e, 0x80, 0xc2, 0x02, 0xc0, 0xe2, 0x80, 0xea, - 0x5a, 0x00, 0xc5, 0x02, 0xc0, 0xa2, 0x80, 0x5e, 0x5d, 0x00, 0xc5, 0x02, - 0xc0, 0x72, 0x81, 0xba, 0xdd, 0x00, 0xca, 0x02, 0xc0, 0xd2, 0x80, 0x6f, - 0x5a, 0x01, 0xca, 0x02, 0xc0, 0x2a, 0xc1, 0xf6, 0x59, 0x03, 0xd4, 0x02, - 0xc0, 0xba, 0xe0, 0x55, 0x5a, 0x04, 0xd4, 0x02, 0xc0, 0x6a, 0x79, 0xaf, - 0x5c, 0x09, 0xd4, 0x02, 0xc0, 0xaa, 0xfd, 0x5b, 0xda, 0x34, 0xd4, 0x02, - 0xc0, 0xd6, 0xfe, 0x6f, 0x5c, 0x50, 0xe8, 0x02, 0xc0, 0xb6, 0xff, 0x37, - 0x5b, 0xa5, 0xe9, 0x02, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, - 0x58, 0x25, 0x11, 0x04, 0x82, 0x10, 0x49, 0x15, 0x58, 0x25, 0x55, 0xa5, - 0xaa, 0x54, 0x49, 0x15, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f};
--- a/etc/frame-icon/kotl.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define kotl.xbm_width 64 -#define kotl.xbm_height 64 -static char kotl.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x1c, 0x60, 0xfc, 0xff, 0xfc, 0x7f, 0x0e, 0x00, - 0x1c, 0x70, 0xfc, 0xff, 0xfc, 0x7f, 0x0e, 0x00, 0x1c, 0x38, 0xfc, 0xff, - 0xfc, 0x7f, 0x0e, 0x00, 0x1c, 0x1c, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0x1c, 0x0e, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0x1c, 0x07, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x9c, 0x03, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0xdc, 0x01, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0xfc, 0x00, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x7c, 0x00, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0x3c, 0x00, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0x3c, 0x00, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x7c, 0x00, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0xfc, 0x00, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0xfc, 0x00, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0xdc, 0x01, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0xdc, 0x01, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0x9c, 0x03, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x9c, 0x03, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0x1c, 0x07, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0x1c, 0x07, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x1c, 0x0e, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0x1c, 0x0e, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, 0x1c, 0x1c, 0x1c, 0xe0, - 0x80, 0x03, 0x0e, 0x00, 0x1c, 0x1c, 0x1c, 0xe0, 0x80, 0x03, 0x0e, 0x00, - 0x1c, 0x38, 0xfc, 0xff, 0x80, 0x03, 0xfe, 0x3f, 0x1c, 0x78, 0xfc, 0xff, - 0x80, 0x03, 0xfe, 0x3f, 0x1c, 0x70, 0xfc, 0xff, 0x80, 0x03, 0xfe, 0x3f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/library.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define library_width 64 -#define library_height 54 -static char library_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x04, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x60, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x04, 0x00, 0x00, - 0x00, 0x80, 0x3f, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, - 0x60, 0x04, 0x00, 0x00, 0x00, 0x80, 0x2e, 0xfc, 0x3f, 0x06, 0x00, 0x00, - 0x00, 0x80, 0x2a, 0x04, 0xe0, 0x05, 0x00, 0x00, 0x00, 0x80, 0x2e, 0x04, - 0x20, 0xff, 0x00, 0x00, 0x00, 0x80, 0x20, 0x04, 0xe0, 0x84, 0x00, 0x00, - 0x00, 0x80, 0x20, 0x04, 0x20, 0x87, 0x00, 0x00, 0x00, 0x80, 0x20, 0x54, - 0x63, 0xb4, 0x00, 0x00, 0x00, 0x80, 0x2a, 0xb4, 0xae, 0xa7, 0x00, 0x00, - 0x00, 0x86, 0x2c, 0x04, 0xe0, 0x84, 0x30, 0x00, 0x00, 0x85, 0xe8, 0x07, - 0x20, 0xb6, 0x50, 0x00, 0x00, 0x85, 0xec, 0x47, 0xe1, 0x84, 0x50, 0x00, - 0xe0, 0xce, 0x62, 0x46, 0xa2, 0x97, 0xb9, 0x03, 0x30, 0xd8, 0x60, 0xc7, - 0xe2, 0x95, 0x0d, 0x06, 0x90, 0xf0, 0xe6, 0x07, 0x23, 0xa7, 0x87, 0x04, - 0xc8, 0xe0, 0xe4, 0x46, 0x61, 0x84, 0x83, 0x09, 0x08, 0xc0, 0x6c, 0x87, - 0xa0, 0x87, 0x01, 0x08, 0x04, 0xc0, 0xe2, 0x07, 0xe1, 0xb5, 0x01, 0x10, - 0xa4, 0xc3, 0x64, 0xc6, 0x20, 0xa7, 0xe1, 0x12, 0x54, 0xc4, 0x62, 0x47, - 0xe2, 0x84, 0x11, 0x15, 0x34, 0xc4, 0xea, 0x47, 0x20, 0xb7, 0x11, 0x16, - 0x18, 0xc8, 0x6e, 0x87, 0x62, 0xa4, 0x09, 0x0c, 0x00, 0xc8, 0xe0, 0x86, - 0xa1, 0x87, 0x09, 0x00, 0x00, 0xc8, 0x62, 0x06, 0xe3, 0xa5, 0x09, 0x00, - 0x00, 0xcc, 0xe4, 0x47, 0x20, 0x96, 0x19, 0x00, 0x00, 0xc4, 0xe2, 0x07, - 0xe3, 0x94, 0x11, 0x00, 0x00, 0xc6, 0x60, 0x06, 0xa3, 0x87, 0x31, 0x00, - 0x00, 0xc3, 0xe0, 0xc7, 0xe2, 0x95, 0x61, 0x00, 0x80, 0xc1, 0x7f, 0x07, - 0x61, 0xa6, 0xc1, 0x00, 0xc0, 0xc0, 0xe4, 0x46, 0x60, 0xa5, 0x81, 0x01, - 0x60, 0xc0, 0x6a, 0x87, 0xa3, 0x97, 0x01, 0x03, 0x30, 0xc0, 0x7f, 0xc7, - 0x63, 0xb5, 0x01, 0x06, 0x18, 0xc0, 0xe0, 0x07, 0xa1, 0xa6, 0x01, 0x0c, - 0x08, 0xc0, 0xe0, 0xc7, 0xe1, 0x95, 0x01, 0x08, 0x08, 0xc0, 0xe0, 0x07, - 0x20, 0x87, 0x01, 0x08, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/lisp.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define lisp.xbm_width 64 -#define lisp.xbm_height 64 -static char lisp.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x80, 0xc7, 0x0f, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0xf0, 0xc7, 0x1f, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0xfc, 0xc7, 0x7d, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x3e, 0xc0, 0x79, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x1e, 0xc0, 0xf1, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0x0f, 0xc0, 0xe1, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x07, 0xc0, 0xe1, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x07, 0xc0, 0xc1, 0x01, 0x00, 0x0e, 0x00, 0x38, - 0x03, 0xc0, 0xc1, 0x01, 0x00, 0x0e, 0x00, 0x38, 0x03, 0xc0, 0xc1, 0x01, - 0x00, 0x0e, 0x00, 0x38, 0x03, 0xc0, 0xc1, 0x01, 0x00, 0x0e, 0x00, 0x38, - 0x07, 0xc0, 0xc1, 0x01, 0x00, 0x0e, 0x00, 0x38, 0x07, 0xc0, 0xc1, 0x01, - 0x00, 0x0e, 0x00, 0x38, 0x07, 0xc0, 0xc1, 0x01, 0x00, 0x0e, 0x00, 0x38, - 0x0e, 0xc0, 0xe1, 0x01, 0x00, 0x0e, 0x00, 0x38, 0x1c, 0xc0, 0xf1, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x38, 0xc0, 0x7f, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0x78, 0xc0, 0x3f, 0x00, 0x00, 0x0e, 0x00, 0x38, 0xf0, 0xc0, 0x07, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0xe0, 0xc1, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0xc0, 0xc3, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x80, 0xc3, 0x01, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0x00, 0xc6, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x00, 0xce, 0x01, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x00, 0xce, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0x00, 0xce, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x00, 0xce, 0x01, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x00, 0xce, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0x00, 0xce, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, 0x00, 0xc7, 0x01, 0x00, - 0x00, 0x0e, 0x00, 0x38, 0x80, 0xc7, 0x01, 0x00, 0x00, 0x0e, 0x00, 0x38, - 0xe0, 0xc3, 0x01, 0x00, 0x00, 0xfe, 0xff, 0x39, 0xf0, 0xc1, 0x01, 0x00, - 0x00, 0xfe, 0xff, 0x39, 0xff, 0xc0, 0x01, 0x00, 0x00, 0xfe, 0xff, 0x39, - 0x7f, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/load.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define load_width 64 -#define load_height 54 -static char load_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x18, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x04, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x3e, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x04, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x7f, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, 0x20, - 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x04, 0x80, 0xff, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x04, 0xc0, 0xff, 0x01, 0x00, 0x00, 0x00, 0x20, - 0x04, 0xc0, 0xff, 0x01, 0x00, 0x00, 0x00, 0x20, 0x04, 0xe1, 0xff, 0x03, - 0x00, 0x00, 0x00, 0x20, 0x04, 0xe3, 0xff, 0x03, 0x00, 0x00, 0x00, 0x20, - 0x84, 0xf3, 0xff, 0x03, 0x00, 0x00, 0x00, 0x20, 0xc4, 0xf7, 0xff, 0x07, - 0x00, 0x00, 0x00, 0x20, 0xc4, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x20, - 0xc4, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x20, 0xe4, 0xff, 0xff, 0x0f, - 0x00, 0x00, 0x00, 0x20, 0xe4, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x20, - 0xe4, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x20, 0xe4, 0xff, 0xff, 0x1f, - 0x00, 0x00, 0x00, 0x20, 0xf4, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x20, - 0xf4, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x20, 0xf4, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x3f, 0xf4, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x20, - 0xfc, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x30, 0xfc, 0xff, 0xff, 0x7f, - 0x00, 0x00, 0x00, 0x30, 0xfc, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x30, - 0xfc, 0xff, 0xff, 0xff, 0x00, 0x04, 0x00, 0x38, 0xfc, 0xff, 0xff, 0xff, - 0x10, 0x16, 0x00, 0x38, 0xfc, 0xff, 0xff, 0xff, 0x39, 0x1e, 0x02, 0x3c, - 0xfc, 0xff, 0xff, 0xff, 0x7b, 0x3f, 0x27, 0x3e, 0xfc, 0xff, 0xff, 0xff, - 0xff, 0xff, 0x7f, 0x3f, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, - 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, - 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, - 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/mail.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define MailFull_width 64 -#define MailFull_height 64 -static char MailFull_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x50, 0x55, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x75, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x7a, - 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x20, 0x8c, 0x79, 0x36, - 0xf8, 0x78, 0x66, 0x78, 0x50, 0xdc, 0xcd, 0x36, 0x98, 0xcd, 0x6e, 0x74, - 0x20, 0xac, 0xfd, 0x36, 0xf8, 0xcc, 0x18, 0x78, 0x50, 0x8c, 0xcd, 0x36, - 0x98, 0xcd, 0x76, 0x74, 0x20, 0x8c, 0xcd, 0xf6, 0xfb, 0x78, 0x66, 0x78, - 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0xa0, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x7b, 0xd0, 0xff, 0x7f, 0xff, 0xe1, 0xc0, 0xff, 0x77, - 0xa0, 0xff, 0x3f, 0xfe, 0x40, 0x80, 0xff, 0x7b, 0x50, 0x55, 0x15, 0x7c, - 0x00, 0x00, 0x55, 0x75, 0xa0, 0xaa, 0x0a, 0x38, 0x20, 0x80, 0xab, 0x7a, - 0xf8, 0xff, 0x07, 0x30, 0x10, 0xc0, 0xff, 0x7f, 0xfc, 0xff, 0x03, 0x60, - 0x48, 0xe2, 0xff, 0x7f, 0xfe, 0xff, 0x21, 0xc0, 0x24, 0xf1, 0xff, 0x7f, - 0x00, 0x80, 0x40, 0x80, 0x93, 0x38, 0x00, 0x00, 0x00, 0x40, 0x90, 0x00, - 0x4b, 0x1c, 0x00, 0x00, 0x00, 0x40, 0x24, 0x01, 0x26, 0x0e, 0x00, 0x00, - 0x00, 0x80, 0x48, 0x02, 0x1c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x91, 0x00, - 0x98, 0x03, 0x00, 0x00, 0x00, 0x00, 0x22, 0x09, 0xf0, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x44, 0x12, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x24, - 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x09, 0x9f, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x02, 0xce, 0x03, 0x00, 0x00, 0x00, 0x00, 0x40, 0x04, - 0xe4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0xf0, 0x03, 0x06, 0x00, - 0x00, 0x00, 0x00, 0x01, 0x78, 0x07, 0x19, 0x00, 0x00, 0x00, 0x00, 0x02, - 0x7c, 0x8e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x04, 0x7e, 0x5c, 0x66, 0x00, - 0x00, 0x00, 0x00, 0x08, 0x3f, 0x38, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x90, - 0x07, 0x10, 0x87, 0x01, 0xe0, 0xff, 0xff, 0xf3, 0x03, 0x08, 0x02, 0x03, - 0x20, 0x00, 0x00, 0x0a, 0x01, 0x04, 0x00, 0x06, 0x20, 0x00, 0xe0, 0x06, - 0x00, 0x02, 0x00, 0x0e, 0x20, 0x00, 0xe0, 0x02, 0x08, 0x01, 0x10, 0x07, - 0x20, 0x00, 0xe0, 0x01, 0x84, 0x20, 0x89, 0x03, 0x20, 0x00, 0x80, 0x00, - 0x42, 0x90, 0xc4, 0x01, 0x20, 0xff, 0x00, 0x01, 0x29, 0x48, 0xe2, 0x00, - 0x20, 0x00, 0x00, 0x82, 0x14, 0x24, 0x70, 0x00, 0x20, 0xdf, 0x03, 0x46, - 0x0a, 0x92, 0x38, 0x00, 0x20, 0x00, 0x00, 0x0e, 0x05, 0x49, 0x1c, 0x00, - 0x20, 0xff, 0x07, 0x9e, 0x08, 0x24, 0x0e, 0x00, 0x20, 0x00, 0x00, 0x2e, - 0x18, 0x10, 0x07, 0x00, 0xe0, 0xff, 0xff, 0x4f, 0x3c, 0x88, 0x03, 0x00, - 0x80, 0xff, 0xff, 0x8f, 0x4e, 0xc0, 0x01, 0x00, 0x80, 0xff, 0xff, 0x0f, - 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/manpage.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define manpage_width 64 -#define manpage_height 54 -static char manpage_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, - 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x55, 0x92, 0x24, - 0x49, 0x92, 0x3c, 0x00, 0x00, 0x19, 0x49, 0x92, 0x24, 0x49, 0x3c, 0x00, - 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x7d, 0x01, 0x00, 0x59, 0x92, 0x24, - 0x49, 0x92, 0xac, 0x02, 0x00, 0x15, 0x49, 0x92, 0x24, 0x49, 0x7c, 0x01, - 0x00, 0x99, 0x24, 0x49, 0x92, 0x24, 0xbd, 0x02, 0x00, 0x51, 0x92, 0x24, - 0x49, 0x92, 0x7c, 0x01, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x02, - 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0x99, 0x73, 0xfe, - 0x38, 0xe7, 0xb4, 0x02, 0x00, 0x91, 0x73, 0xfe, 0x39, 0xe7, 0x7c, 0x01, - 0x00, 0x99, 0x73, 0xfe, 0x39, 0xff, 0xbc, 0x02, 0x00, 0x95, 0x73, 0xce, - 0x39, 0x3c, 0x74, 0x01, 0x00, 0x99, 0x73, 0xce, 0x39, 0x18, 0xb4, 0x02, - 0x00, 0x91, 0x73, 0xce, 0x39, 0x3c, 0x74, 0x01, 0x00, 0x99, 0x7f, 0xce, - 0x39, 0xff, 0xbc, 0x02, 0x00, 0x95, 0x7f, 0xce, 0x39, 0xe7, 0x7c, 0x01, - 0x00, 0x19, 0x3f, 0xce, 0x39, 0xe7, 0xbc, 0x02, 0x00, 0x11, 0x00, 0x00, - 0x00, 0x00, 0x7c, 0x01, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x02, - 0x00, 0x55, 0x92, 0x24, 0x49, 0x92, 0x74, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xb4, 0x02, 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x6d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xac, 0x02, 0x00, 0x15, 0x49, 0x92, - 0x24, 0x49, 0x6c, 0x01, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x02, - 0x00, 0x51, 0x14, 0x63, 0x92, 0x89, 0x7c, 0x01, 0x00, 0x19, 0xaa, 0x94, - 0x52, 0x0a, 0xac, 0x02, 0x00, 0x95, 0xa2, 0x97, 0xd2, 0x0b, 0x75, 0x01, - 0x00, 0x59, 0xa2, 0x94, 0x52, 0x8a, 0xbc, 0x02, 0x00, 0x11, 0xa2, 0x94, - 0x4c, 0x3a, 0x7c, 0x01, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x02, - 0x00, 0x55, 0x92, 0x24, 0x49, 0x92, 0x7c, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xb4, 0x02, 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x6d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xb4, 0x02, 0x00, 0x15, 0x49, 0x92, - 0x24, 0x49, 0x74, 0x01, 0x00, 0x99, 0x24, 0x49, 0x92, 0x24, 0xb5, 0x02, - 0x00, 0x51, 0x92, 0x24, 0x49, 0x92, 0x74, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xbc, 0x02, 0x00, 0x95, 0x24, 0x49, 0x92, 0x24, 0x7d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xac, 0x02, 0x00, 0x31, 0x00, 0x00, - 0x00, 0x00, 0x6e, 0x01, 0x00, 0xee, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x02, - 0x00, 0x51, 0x3f, 0x1e, 0xfb, 0x3f, 0x7d, 0x01, 0x00, 0xb1, 0xfa, 0xaf, - 0xef, 0xff, 0xbb, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x01, - 0x00, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, 0x00, 0x50, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x01, 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02};
--- a/etc/frame-icon/manpage2.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define manpage_width 64 -#define manpage_height 54 -static char manpage_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, - 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xaa, 0x8a, 0x08, - 0x00, 0xa8, 0x1c, 0x00, 0x00, 0x32, 0x55, 0x00, 0x00, 0x40, 0x3d, 0x00, - 0x00, 0xa2, 0x02, 0x00, 0x00, 0x82, 0x7c, 0x01, 0x00, 0x32, 0x91, 0x04, - 0x26, 0x01, 0xad, 0x02, 0x00, 0xaa, 0xa0, 0x0a, 0x29, 0x80, 0x7c, 0x01, - 0x00, 0x32, 0x41, 0x0e, 0x29, 0x00, 0xbd, 0x02, 0x00, 0xa2, 0x20, 0x02, - 0x29, 0x00, 0x7c, 0x01, 0x00, 0x32, 0x11, 0x0c, 0x66, 0x80, 0xbc, 0x02, - 0x00, 0xaa, 0x02, 0x00, 0x00, 0x50, 0x74, 0x01, 0x00, 0x32, 0x04, 0x00, - 0x00, 0x00, 0xb4, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x01, - 0x00, 0xb2, 0x73, 0xfe, 0x38, 0xe7, 0xbc, 0x02, 0x00, 0xaa, 0x73, 0xfe, - 0x39, 0xe7, 0x74, 0x01, 0x00, 0xb2, 0x73, 0xfe, 0x39, 0xff, 0xb4, 0x02, - 0x00, 0xa2, 0x73, 0xce, 0x39, 0x3c, 0x74, 0x01, 0x00, 0xb2, 0x73, 0xce, - 0x39, 0x18, 0xbc, 0x02, 0x00, 0xaa, 0x73, 0xce, 0x39, 0x3c, 0x7c, 0x01, - 0x00, 0xb2, 0x7f, 0xce, 0x39, 0xff, 0xbc, 0x02, 0x00, 0xa2, 0x7f, 0xce, - 0x39, 0xe7, 0x7c, 0x01, 0x00, 0x32, 0x3f, 0xce, 0x39, 0xe7, 0xbc, 0x02, - 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0xb2, 0x00, 0x00, - 0x00, 0x00, 0xb4, 0x02, 0x00, 0x22, 0x85, 0x1d, 0x49, 0x00, 0x6d, 0x01, - 0x00, 0xb2, 0x4a, 0xa4, 0x4a, 0xa0, 0xac, 0x02, 0x00, 0x2a, 0x85, 0x9c, - 0x4b, 0x40, 0x6d, 0x01, 0x00, 0xb2, 0x02, 0x85, 0x48, 0x80, 0xb4, 0x02, - 0x00, 0x22, 0xc1, 0x04, 0xdb, 0x00, 0x7d, 0x01, 0x00, 0xb2, 0x00, 0x00, - 0x00, 0x10, 0xac, 0x02, 0x00, 0x2a, 0x09, 0xc6, 0x04, 0x09, 0x75, 0x01, - 0x00, 0xb2, 0x08, 0x29, 0x85, 0x02, 0xbc, 0x02, 0x00, 0x22, 0x38, 0x29, - 0x95, 0x03, 0x7d, 0x01, 0x00, 0xb2, 0x48, 0x29, 0x8d, 0x80, 0xbc, 0x02, - 0x00, 0x2a, 0x39, 0xc6, 0x14, 0x03, 0x7d, 0x01, 0x00, 0xb2, 0x02, 0x00, - 0x00, 0x00, 0xb4, 0x02, 0x00, 0x22, 0x01, 0x00, 0x00, 0x40, 0x6d, 0x01, - 0x00, 0xb2, 0x02, 0x80, 0x00, 0x80, 0xb4, 0x02, 0x00, 0x2a, 0x55, 0x10, - 0x40, 0x01, 0x75, 0x01, 0x00, 0xb2, 0xaa, 0xa2, 0x00, 0x80, 0xb4, 0x02, - 0x00, 0x22, 0x55, 0x55, 0x15, 0x50, 0x75, 0x01, 0x00, 0xb2, 0xaa, 0xaa, - 0x0a, 0xa0, 0xbc, 0x02, 0x00, 0x2a, 0x55, 0x55, 0x55, 0x51, 0x7c, 0x01, - 0x00, 0xb2, 0xaa, 0x22, 0x88, 0x00, 0xac, 0x02, 0x00, 0x62, 0x00, 0x00, - 0x00, 0x00, 0x6e, 0x01, 0x00, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xab, 0x02, - 0x00, 0x62, 0x3f, 0x1e, 0xfb, 0x3f, 0x7d, 0x01, 0x00, 0xa2, 0xfa, 0xaf, - 0xef, 0xff, 0xbb, 0x02, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x5f, 0x01, - 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, 0x00, 0x40, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x01, 0x00, 0x80, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02};
--- a/etc/frame-icon/match.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define burn_width 64 -#define burn_height 54 -static char burn_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x80, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, - 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, - 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x46, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x10, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, - 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x8d, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x84, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, - 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x9a, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x62, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, - 0x0a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x0d, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xc1, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, - 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x0f, 0x01, 0x00, 0x00, - 0x00, 0xf0, 0x03, 0xbf, 0x1a, 0x01, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0xd5, - 0x1f, 0x01, 0x00, 0x00, 0x3e, 0x00, 0xfc, 0xfe, 0x9f, 0x00, 0x00, 0x00, - 0x00, 0xf0, 0x03, 0xfc, 0x9f, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0xfc, - 0x5f, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xc0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/meter.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define meter_width 64 -#define meter_height 64 -static char meter_bits[] = { - 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xfc, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x1f, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0xc3, 0x01, 0x00, 0xfc, - 0x1f, 0x00, 0xc0, 0x61, 0x23, 0x02, 0x80, 0xff, 0xff, 0x00, 0x20, 0x62, - 0x13, 0x04, 0xf0, 0xff, 0xff, 0x07, 0x10, 0x64, 0x13, 0x04, 0xfc, 0x03, - 0xe0, 0x1f, 0x10, 0x64, 0x13, 0x04, 0x7f, 0x00, 0x00, 0x7f, 0x10, 0x64, - 0x23, 0x82, 0x0f, 0x00, 0x00, 0xf8, 0x20, 0x62, 0xc3, 0xc1, 0x07, 0x00, - 0x00, 0xf0, 0xc1, 0x61, 0x03, 0xe0, 0x01, 0x00, 0x00, 0xc0, 0x03, 0x60, - 0x03, 0xf0, 0x00, 0x80, 0x00, 0x80, 0x07, 0x60, 0x03, 0x38, 0x80, 0x80, - 0x80, 0x00, 0x0e, 0x60, 0x03, 0x1c, 0x80, 0x80, 0x80, 0x00, 0x1c, 0x60, - 0x03, 0x1e, 0x02, 0x81, 0x40, 0x20, 0x3c, 0x60, 0x03, 0x0f, 0x02, 0x01, - 0x40, 0x20, 0x78, 0x60, 0x03, 0x07, 0x24, 0x00, 0x00, 0x10, 0x70, 0x60, - 0x83, 0x07, 0x64, 0x00, 0x00, 0x10, 0xf0, 0x60, 0x83, 0x03, 0xe0, 0x00, - 0x00, 0x00, 0xe0, 0x60, 0xc3, 0x09, 0xe0, 0x01, 0x00, 0x00, 0xc8, 0x61, - 0xc3, 0x11, 0xe0, 0x03, 0x00, 0x00, 0xc4, 0x61, 0xc3, 0x21, 0xe0, 0x03, - 0x00, 0x00, 0xc2, 0x61, 0xe3, 0x00, 0xe0, 0x01, 0x00, 0x00, 0x80, 0x63, - 0xe3, 0x00, 0x80, 0x01, 0x00, 0x00, 0x80, 0x63, 0xe3, 0x00, 0x80, 0x01, - 0x00, 0x00, 0x80, 0x63, 0x73, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x67, - 0x73, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x03, - 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x67, - 0x73, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x06, - 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x67, - 0x73, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x0c, - 0x00, 0x00, 0x00, 0x67, 0x73, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x67, - 0x73, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x67, 0xe3, 0x00, 0x00, 0x18, - 0x00, 0x00, 0x80, 0x63, 0xe3, 0x00, 0x00, 0x38, 0x00, 0x00, 0x80, 0x63, - 0xe3, 0x00, 0x00, 0x30, 0x00, 0x00, 0x80, 0x63, 0xc3, 0x01, 0x00, 0x70, - 0x00, 0x00, 0xc0, 0x61, 0xc3, 0x01, 0x00, 0x70, 0x00, 0x00, 0xc0, 0x61, - 0xc3, 0x01, 0x00, 0xf8, 0x0f, 0x00, 0xc0, 0x61, 0x83, 0x03, 0x00, 0xff, - 0x7f, 0x00, 0xe0, 0x60, 0x83, 0x07, 0xe0, 0xff, 0xff, 0x03, 0xf0, 0x60, - 0x03, 0x07, 0xf0, 0xff, 0xff, 0x07, 0x70, 0x60, 0x03, 0x0f, 0xfc, 0xff, - 0xff, 0x1f, 0x78, 0x60, 0x03, 0x1e, 0xfe, 0xff, 0xff, 0x3f, 0x3c, 0x60, - 0x03, 0x1c, 0xff, 0x7f, 0xff, 0x7f, 0x1c, 0x60, 0x03, 0xb8, 0xff, 0xdf, - 0xfd, 0xff, 0x0e, 0x60, 0x03, 0xf0, 0xff, 0xaf, 0xfb, 0xff, 0x07, 0x60, - 0x03, 0xe0, 0xff, 0x6f, 0xfb, 0xff, 0x03, 0x60, 0xc3, 0xe1, 0xff, 0xef, - 0xfa, 0xff, 0xc3, 0x61, 0x23, 0xc2, 0xff, 0xdf, 0xfd, 0xff, 0x21, 0x62, - 0x13, 0x04, 0xff, 0x3f, 0xfe, 0x7f, 0x10, 0x64, 0x13, 0x04, 0xfc, 0xff, - 0xff, 0x1f, 0x10, 0x64, 0x13, 0x04, 0xf0, 0xff, 0xff, 0x07, 0x10, 0x64, - 0x23, 0x02, 0x80, 0xff, 0xff, 0x00, 0x20, 0x62, 0xc3, 0x01, 0x00, 0xfc, - 0x1f, 0x00, 0xc0, 0x61, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0xfc, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x1f, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/mickey-wiz.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define mickey-wiz_width 64 -#define mickey-wiz_height 64 -static char mickey-wiz_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x10, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x26, 0x0d, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, - 0x23, 0x07, 0x00, 0x00, 0x90, 0x00, 0x00, 0x80, 0xa0, 0x02, 0x00, 0x00, - 0x20, 0x01, 0x00, 0x40, 0xe2, 0x02, 0x00, 0x00, 0x20, 0x02, 0x00, 0x20, - 0x02, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x10, 0x06, 0x01, 0x00, 0x00, - 0x40, 0x04, 0x00, 0x08, 0x05, 0x01, 0x00, 0x00, 0x80, 0x08, 0x00, 0xf4, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x32, 0xa3, 0x00, 0x00, 0x00, - 0x00, 0x21, 0xc0, 0xce, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x21, 0x20, 0x30, - 0x64, 0x00, 0x00, 0x00, 0x00, 0x43, 0x10, 0xe0, 0x68, 0x00, 0x00, 0x00, - 0x80, 0xc1, 0xd0, 0x01, 0x7b, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0x71, 0x1f, - 0x46, 0x00, 0x00, 0x00, 0x40, 0x64, 0x71, 0x34, 0x28, 0x00, 0x00, 0x00, - 0x40, 0xce, 0x11, 0x60, 0x38, 0x00, 0x00, 0x00, 0x80, 0x7d, 0x71, 0xe3, - 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0xf1, 0xe3, 0xf7, 0x03, 0x00, 0x00, - 0x00, 0x44, 0xf1, 0xe3, 0xff, 0x07, 0x00, 0x00, 0x00, 0x44, 0xd1, 0xf2, - 0xff, 0x0f, 0x00, 0x00, 0x00, 0x44, 0xaf, 0x01, 0xff, 0x0f, 0x00, 0x00, - 0x00, 0x48, 0x41, 0x00, 0xfe, 0x0f, 0x00, 0x00, 0x00, 0x08, 0x01, 0x00, - 0xfe, 0x0f, 0x00, 0x00, 0x00, 0x88, 0x01, 0x60, 0xfc, 0x07, 0x00, 0x00, - 0x00, 0xf0, 0x02, 0x60, 0xe6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x05, 0x10, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0xdc, 0x7f, 0x00, 0x02, 0x00, - 0x00, 0x00, 0xc4, 0x77, 0x90, 0x81, 0x05, 0x00, 0x00, 0x00, 0x98, 0x2b, - 0x28, 0x42, 0x04, 0x00, 0x00, 0x00, 0xf0, 0x37, 0x48, 0x3e, 0x04, 0x00, - 0x00, 0x00, 0xe0, 0x1c, 0x88, 0x0f, 0x02, 0x00, 0x00, 0x00, 0xc0, 0x91, - 0x17, 0x80, 0x19, 0x00, 0x00, 0x00, 0x40, 0x91, 0x6f, 0x80, 0x2f, 0x00, - 0x00, 0x00, 0xc0, 0x08, 0x56, 0x00, 0x20, 0x00, 0x00, 0x00, 0x80, 0x07, - 0x8a, 0x01, 0x10, 0x00, 0x00, 0x00, 0x80, 0x00, 0x85, 0x81, 0x0f, 0x00, - 0x00, 0x00, 0x80, 0xe0, 0x7e, 0x3e, 0x03, 0x00, 0x00, 0x00, 0x80, 0x90, - 0x42, 0x60, 0x04, 0x00, 0x00, 0x00, 0x80, 0xab, 0x81, 0xc0, 0x0c, 0x00, - 0x00, 0x00, 0x80, 0x5e, 0x81, 0x01, 0x07, 0x00, 0x00, 0x00, 0x80, 0x37, - 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xd9, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, 0x37, - 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x6f, 0x04, 0x04, 0x00, 0x00, - 0x00, 0x00, 0xa0, 0xdf, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x3f, - 0x03, 0x18, 0x00, 0x00, 0x00, 0x00, 0x90, 0x0f, 0x0c, 0xe0, 0x00, 0x00, - 0x00, 0x00, 0x28, 0xff, 0xf0, 0x0f, 0x83, 0x1f, 0x00, 0x00, 0x68, 0xb9, - 0x80, 0x66, 0x44, 0x20, 0x00, 0x00, 0x70, 0xa6, 0x81, 0xf1, 0x39, 0x20, - 0x00, 0x00, 0x08, 0x80, 0x02, 0x80, 0xe7, 0x31, 0x00, 0x00, 0xf8, 0x7f, - 0x02, 0x03, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x02, 0x04, 0xf7, 0x07, - 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, - 0xf8, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/network.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define network_width 64 -#define network_height 54 -static char network_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, 0x07, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xf8, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0f, - 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0xda, 0xbf, 0x40, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xc1, 0xff, 0x83, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0xff, - 0x07, 0x01, 0x00, 0x00, 0x00, 0x40, 0x80, 0xff, 0x07, 0x02, 0x00, 0x00, - 0x00, 0x40, 0x80, 0xff, 0x03, 0x02, 0x00, 0x00, 0x00, 0x20, 0xc0, 0xff, - 0x03, 0x04, 0x00, 0x00, 0x00, 0x20, 0xc0, 0xff, 0x03, 0x04, 0x00, 0x00, - 0x00, 0x20, 0x80, 0xff, 0x0b, 0x08, 0x00, 0x00, 0x00, 0x10, 0x80, 0x7f, - 0x02, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x7d, 0x00, 0x08, 0x00, 0x00, - 0x00, 0x10, 0x00, 0xfb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0xc6, - 0x0f, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0xc0, 0x03, 0x08, 0x00, 0x00, - 0x00, 0x10, 0x00, 0xc0, 0xf7, 0x08, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x80, - 0xff, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0xfc, 0x0e, 0x00, 0x00, - 0x00, 0x20, 0x00, 0x00, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, - 0xff, 0x07, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0xff, 0x07, 0x00, 0x00, - 0x00, 0x40, 0x00, 0x00, 0xfe, 0x03, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, - 0x38, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0f, 0x00, 0xdc, 0xff, 0xff, 0x01, - 0x00, 0x60, 0x30, 0x00, 0x2c, 0x00, 0x00, 0x02, 0x00, 0x10, 0x40, 0x00, - 0xac, 0xff, 0x7f, 0x02, 0x00, 0x08, 0x80, 0x00, 0xae, 0x55, 0xd5, 0x02, - 0x80, 0x0f, 0xc0, 0x07, 0xaf, 0xaa, 0xaa, 0x02, 0x60, 0x10, 0x20, 0x18, - 0xa7, 0x55, 0xc1, 0x02, 0x10, 0x00, 0x00, 0xe0, 0xa0, 0xaa, 0xa2, 0x02, - 0x08, 0x00, 0x00, 0x40, 0xa0, 0x55, 0xc1, 0x02, 0x04, 0x00, 0x00, 0x40, - 0xa0, 0xaa, 0xaa, 0x02, 0x04, 0x00, 0x00, 0x80, 0xa0, 0x55, 0xd5, 0x02, - 0x02, 0x00, 0x00, 0x80, 0xa0, 0xaa, 0xaa, 0x02, 0x02, 0x00, 0x00, 0x00, - 0xa1, 0x55, 0xd5, 0x02, 0x02, 0x00, 0x10, 0x20, 0xa1, 0xaa, 0xaa, 0x02, - 0x02, 0x00, 0x10, 0x20, 0x21, 0xff, 0x7f, 0x02, 0x82, 0x00, 0x30, 0x20, - 0x21, 0x00, 0x00, 0x02, 0x84, 0x00, 0x60, 0x18, 0xe1, 0xff, 0xff, 0x03, - 0x84, 0x01, 0x90, 0x07, 0xc1, 0xff, 0xff, 0x01, 0x08, 0x03, 0x08, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0x0c, 0xc0, 0xf8, 0xff, 0xff, 0x0f, - 0x68, 0x18, 0x03, 0xb0, 0x04, 0x00, 0x00, 0x10, 0x98, 0xf7, 0x01, 0x40, - 0x52, 0x55, 0x55, 0x25, 0x10, 0x00, 0x00, 0x60, 0xa9, 0xaa, 0xaa, 0x4a, - 0x30, 0x10, 0x30, 0x18, 0x01, 0x00, 0x00, 0x40, 0x40, 0x18, 0xe0, 0x0f, - 0xff, 0xff, 0xff, 0x7f, 0x80, 0x3f, 0xc0, 0x00, 0xfe, 0xff, 0xff, 0x3f, - 0x00, 0x60, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x1f, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/news.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define news_width 64 -#define news_height 54 -static char news_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xf0, 0xff, 0x0f, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0x01, 0x1c, 0x00, - 0x00, 0xff, 0xff, 0x01, 0x00, 0xf0, 0x18, 0x00, 0x00, 0x3f, 0x00, 0xcc, - 0xdb, 0x36, 0x10, 0x00, 0x00, 0x03, 0xc0, 0xcc, 0xb0, 0xe4, 0x33, 0x00, - 0xf0, 0x87, 0xc2, 0x9b, 0xb3, 0x0d, 0x23, 0x00, 0xe0, 0xc7, 0x8f, 0x9f, - 0xe1, 0xef, 0x63, 0x00, 0xe0, 0x8f, 0x87, 0x39, 0xcf, 0xcc, 0x41, 0x00, - 0xc0, 0x8f, 0x05, 0x33, 0x00, 0x00, 0x40, 0x00, 0x80, 0x0f, 0x00, 0x03, - 0x00, 0xff, 0xc3, 0x00, 0xff, 0x1f, 0x00, 0xfc, 0xff, 0x00, 0x80, 0x00, - 0x9f, 0x1f, 0xfe, 0x01, 0x00, 0xff, 0x83, 0x01, 0x3f, 0x1f, 0x00, 0xfe, - 0xff, 0x00, 0x00, 0x01, 0x3f, 0x3f, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x01, - 0x3e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x38, 0x03, 0x7e, 0x3e, 0x00, 0x00, - 0x00, 0xe0, 0x7f, 0x02, 0x7e, 0x7e, 0x00, 0x00, 0xf0, 0xf7, 0x77, 0x02, - 0x7c, 0x7e, 0x00, 0x9e, 0x1f, 0x64, 0xff, 0x06, 0xfc, 0x7c, 0xfc, 0xbf, - 0x01, 0xc8, 0xff, 0x04, 0xfc, 0xfc, 0x78, 0x2b, 0x01, 0xc8, 0xdb, 0x0d, - 0xf8, 0xfd, 0xb8, 0x5f, 0x03, 0x90, 0xff, 0x09, 0xf8, 0xf9, 0xd1, 0x7f, - 0x06, 0x90, 0xef, 0x09, 0xf8, 0xf9, 0x71, 0x7f, 0x04, 0x3f, 0x7c, 0x1a, - 0xf0, 0xf3, 0xe1, 0xf5, 0xfd, 0x01, 0xff, 0x13, 0xf0, 0xf3, 0xc3, 0x7f, - 0x01, 0x00, 0xff, 0x33, 0xe0, 0xf3, 0xc3, 0xdb, 0xf1, 0x3f, 0x46, 0x37, - 0xe0, 0xe7, 0xc3, 0xfb, 0xb2, 0x2b, 0xfe, 0x27, 0xe0, 0xe7, 0x87, 0xf7, - 0xf3, 0x7e, 0x7c, 0x6f, 0xc0, 0xe7, 0x87, 0xaf, 0x67, 0x5f, 0xfc, 0x67, - 0xc0, 0xcf, 0x0f, 0x5d, 0xe7, 0xef, 0x3c, 0x40, 0xc0, 0xcf, 0x0f, 0xf5, - 0xcb, 0xbf, 0x80, 0x4f, 0x80, 0xcf, 0x0f, 0xbf, 0xcf, 0xf7, 0xf8, 0x68, - 0x80, 0x9f, 0x1f, 0xee, 0xcf, 0xfe, 0x08, 0x68, 0x80, 0x9f, 0x1f, 0xbe, - 0xc9, 0xef, 0x08, 0x38, 0x00, 0xbf, 0x1f, 0xde, 0xcf, 0xff, 0x08, 0x1c, - 0x00, 0xff, 0x1f, 0xa6, 0xc7, 0xf9, 0x0c, 0x0e, 0x00, 0xff, 0x0f, 0xff, - 0xc7, 0x7f, 0xfe, 0x07, 0x00, 0xfe, 0x0f, 0xed, 0xe7, 0xff, 0x7f, 0x00, - 0x00, 0xfe, 0x07, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, - 0x07, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/news2.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define noname_width 64 -#define noname_height 64 -static char noname_bits[] = { - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x80,0x01,0x00,0x88,0x00,0x00,0x00,0x00,0x80,0x21,0x20,0x98,0x00,0x00,0x00, - 0x04,0x84,0x21,0x20,0x98,0x38,0x22,0x0e,0x04,0x84,0x75,0x75,0xa9,0x44,0x22, - 0x91,0xae,0xae,0xf9,0xf8,0xa8,0x44,0x2a,0x01,0x1f,0x9f,0x71,0x70,0xc8,0x7c, - 0x2a,0x0e,0x0e,0x8e,0x51,0x50,0xc8,0x04,0x2a,0x10,0x0a,0x8a,0x89,0x88,0x88, - 0x44,0x2a,0x11,0x11,0x91,0x01,0x00,0x88,0x38,0x14,0x0e,0x00,0x80,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x71,0x57,0x77,0x55,0x00,0xee,0x62,0x8e, - 0x11,0x75,0x55,0x57,0x00,0xa2,0xa2,0x82,0x11,0x55,0x77,0x27,0x00,0xa6,0xa2, - 0x8e,0x11,0x55,0x51,0x25,0x00,0xa2,0xa2,0x88,0x71,0x57,0x51,0x25,0x00,0xe2, - 0x6e,0x8e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x71,0x75,0x77,0x77,0x75, - 0xa0,0xae,0x8e,0x11,0x12,0x11,0x21,0x15,0xe0,0xa2,0x82,0x31,0x12,0x73,0x27, - 0x32,0xe0,0xe6,0x8e,0x11,0x15,0x41,0x24,0x12,0xa0,0xe2,0x88,0x71,0x75,0x77, - 0x77,0x72,0xa0,0xae,0x8e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x71,0x27, - 0x73,0x75,0xe0,0x42,0xea,0x86,0x51,0x51,0x25,0x17,0xa0,0xa2,0x2e,0x8a,0x71, - 0x73,0x25,0x57,0xe0,0xe2,0x6e,0x8a,0x31,0x51,0x25,0x55,0xa0,0xa2,0x2a,0x8a, - 0x51,0x57,0x73,0x75,0xe0,0xae,0xea,0x86,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfd,0xdf,0xff,0xfd,0xdf,0xff, - 0xff,0x9f,0x01,0x40,0x55,0x01,0x40,0x00,0x00,0x90,0xfd,0xdf,0xaa,0xfd,0xdf, - 0x00,0x00,0x90,0x01,0x40,0x55,0x01,0x40,0x01,0x00,0x90,0xfd,0xdf,0xaa,0xfd, - 0x5f,0x02,0x00,0x90,0x01,0x40,0x55,0x01,0x40,0x04,0x00,0x90,0xfd,0xdf,0xaa, - 0xfd,0x5f,0x88,0x01,0x90,0x01,0x40,0x55,0x01,0x40,0x50,0x02,0x90,0xfd,0xdf, - 0xaa,0xfd,0x5f,0x20,0x04,0x90,0x01,0x40,0x55,0x01,0x40,0x00,0x08,0x90,0xfd, - 0xdf,0xaa,0xfd,0x5f,0x00,0x10,0x90,0x01,0x40,0x55,0x01,0x40,0x00,0xa0,0x91, - 0xfd,0xdf,0xaa,0xfd,0x5f,0x00,0x40,0x92,0x01,0x40,0x55,0x01,0x40,0x00,0x00, - 0x94,0xfd,0xdf,0xaa,0xfd,0x5f,0x00,0x00,0x98,0x01,0xc0,0xff,0x01,0x40,0x00, - 0x00,0x90,0xfd,0x1f,0x00,0xfc,0x5f,0x00,0x00,0x90,0x01,0x00,0x00,0x00,0x40, - 0x00,0x00,0x90,0xfd,0xdf,0xff,0xfd,0x5f,0x00,0x00,0x90,0x01,0x00,0x00,0x00, - 0x40,0x00,0x00,0x90,0xfd,0xdf,0xff,0xfd,0xdf,0xff,0xff,0x9f,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x80,0xfd,0xdf,0xff,0xfd,0xdf,0xff,0xff,0x9f,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x80,0xfd,0xdf,0xff,0xfd,0xdf,0xff,0xff,0x9f,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfd,0xdf,0xff,0xfd,0xdf,0xff,0xff,0x9f, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfd,0xdf,0xff,0xfd,0xdf,0xff,0xff, - 0x9f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff};
--- a/etc/frame-icon/nuke.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define Nuke.xbm_width 64 -#define Nuke.xbm_height 64 -static char Nuke.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x40, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, - 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x55, 0x55, 0x07, 0x00, 0x00, - 0x00, 0x00, 0xa6, 0xaa, 0xaa, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x57, - 0xd5, 0x1d, 0x00, 0x00, 0x00, 0x80, 0xa7, 0xae, 0xea, 0xaa, 0x00, 0x00, - 0x00, 0x00, 0x57, 0x5d, 0x75, 0x15, 0x00, 0x00, 0x00, 0x80, 0xa2, 0xaa, - 0xaa, 0xaa, 0x0b, 0x00, 0x00, 0x40, 0x55, 0x55, 0x55, 0x15, 0x1f, 0x00, - 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0x1a, 0x00, 0x00, 0x7c, 0x55, 0x55, - 0x55, 0xd5, 0x0f, 0x00, 0x00, 0xe4, 0xaa, 0xaa, 0xaf, 0xaa, 0x0a, 0x00, - 0x00, 0x74, 0x5f, 0xd5, 0x55, 0x55, 0x15, 0x00, 0x00, 0xaa, 0xba, 0xaa, - 0xaa, 0xff, 0x6a, 0x00, 0x00, 0x54, 0x75, 0x57, 0x55, 0x55, 0xd5, 0x01, - 0x00, 0xa8, 0xaa, 0xae, 0xea, 0xae, 0x0a, 0x02, 0x00, 0x5e, 0x75, 0x75, - 0x55, 0x5d, 0x15, 0x02, 0x00, 0xaa, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0x06, - 0x40, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x02, 0x40, 0xab, 0xaa, 0xaa, - 0xaa, 0xaa, 0xab, 0x03, 0xc0, 0xf5, 0x5f, 0x7f, 0x55, 0x7f, 0xf7, 0x01, - 0x80, 0xbb, 0xfe, 0xff, 0xff, 0xbf, 0xbe, 0x00, 0x00, 0xff, 0xff, 0xdf, - 0xff, 0xff, 0xff, 0x01, 0x00, 0xee, 0xfa, 0xfb, 0xff, 0xfe, 0xfe, 0x00, - 0x00, 0xc0, 0x18, 0x6f, 0xd5, 0x8b, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xbb, - 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x55, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xb4, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, - 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0xaa, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x40, 0x5e, 0x55, 0x02, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xef, - 0xbb, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xec, 0x7e, 0xbf, 0x37, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0xf7, 0xf7, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x12, 0x5f, - 0x55, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0xaa, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, - 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x15, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xb6, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, - 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0xaa, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x5e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, - 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x55, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xbb, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, - 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x2e, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x6f, 0x75, 0x01, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xba, - 0xab, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x98, 0xff, 0x7d, 0x1d, 0x00, 0x00, - 0x00, 0x00, 0xd8, 0xf7, 0xeb, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x68, 0xff, - 0x7d, 0xf3, 0x00, 0x00, 0x00, 0x00, 0xbc, 0xfb, 0xef, 0xff, 0x00, 0x00, - 0x00, 0x00, 0xf5, 0xde, 0x57, 0xef, 0x03, 0x00, 0x00, 0x00, 0xbb, 0xb7, - 0xab, 0x97, 0x07, 0x00, 0x00, 0x80, 0xb7, 0x6e, 0x55, 0xb8, 0x07, 0x00, - 0x00, 0xa0, 0xdb, 0xdb, 0x3e, 0x7f, 0x1f, 0x00, 0x00, 0xc0, 0x0f, 0xde, - 0xff, 0xc9, 0x11, 0x00, 0x00, 0xc0, 0xfa, 0xf6, 0xae, 0x3b, 0x16, 0x00, - 0x00, 0xe0, 0xe7, 0x6f, 0x7f, 0xc8, 0x09, 0x00, 0x00, 0xe0, 0x3a, 0xff, - 0xbb, 0xbb, 0x09, 0x00, 0x00, 0xa0, 0xeb, 0xde, 0xd5, 0x9d, 0x1f, 0x00, - 0x00, 0x60, 0x86, 0xf6, 0xae, 0x41, 0x13, 0x00};
--- a/etc/frame-icon/outline.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define outline.xbm_width 64 -#define outline.xbm_height 64 -static char outline.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xf0, - 0xff, 0x71, 0x00, 0x00, 0x80, 0xff, 0xff, 0xf0, 0xff, 0x71, 0x00, 0x00, - 0x80, 0xff, 0xff, 0xf0, 0xff, 0x71, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, - 0x0e, 0x70, 0x00, 0x00, 0x80, 0x03, 0xe0, 0x00, 0x0e, 0x70, 0x00, 0x00, - 0x80, 0xff, 0xff, 0x00, 0x0e, 0xf0, 0xff, 0x0f, 0x80, 0xff, 0xff, 0x00, - 0x0e, 0xf0, 0xff, 0x0f, 0x80, 0xff, 0xff, 0x00, 0x0e, 0xf0, 0xff, 0x0f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/page.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define unknown_width 64 -#define unknown_height 54 -static char unknown_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x07, 0x00, 0x00, - 0x00, 0x80, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x14, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, - 0x00, 0x80, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x80, 0x38, 0xbf, - 0xf7, 0x84, 0x00, 0x00, 0x00, 0x80, 0x9c, 0xcf, 0xf3, 0x04, 0x01, 0x00, - 0x00, 0x80, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0xa8, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x50, 0x03, 0x00, - 0x00, 0x80, 0x7c, 0xfd, 0x8e, 0x7a, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xfc, 0xf6, 0xbe, 0x77, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xbc, 0xef, 0xb7, 0x6f, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xbc, 0xa5, 0xf7, 0x7f, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0x64, 0xff, 0xe6, 0x77, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0x74, 0xdf, 0xbf, 0x77, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0x6c, 0x8e, 0x3e, 0x7f, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0x7c, 0x3e, 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xa0, 0x8f, 0xcf, 0x7b, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xf4, 0xdb, 0x5c, 0x7b, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xe4, 0x5e, 0xcd, 0x7f, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0x6c, 0xa4, 0xbd, 0x79, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xe4, 0xdb, 0xcf, 0x7b, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, - 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/perl.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define perl.xbm_width 64 -#define perl.xbm_height 64 -static char perl.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0xe0, 0x03, 0x00, 0x00, - 0xf8, 0x03, 0xff, 0x1f, 0xf8, 0x0f, 0x07, 0x00, 0xf8, 0x07, 0xff, 0x9f, - 0xff, 0x1f, 0x07, 0x00, 0xb8, 0x0f, 0xff, 0x9f, 0xff, 0x1f, 0x07, 0x00, - 0x38, 0x0e, 0xff, 0x9f, 0x1f, 0x3e, 0x07, 0x00, 0x38, 0x1c, 0x07, 0x80, - 0x0f, 0x3c, 0x07, 0x00, 0x38, 0x1c, 0x07, 0x80, 0x0f, 0x38, 0x07, 0x00, - 0x38, 0x38, 0x07, 0x80, 0x0f, 0x3c, 0x07, 0x00, 0x38, 0x38, 0x07, 0x80, - 0x1f, 0x3c, 0x07, 0x00, 0x38, 0x38, 0x07, 0x80, 0x3f, 0x1f, 0x07, 0x00, - 0x38, 0x38, 0x07, 0x80, 0xff, 0x1f, 0x07, 0x00, 0x38, 0x38, 0x07, 0x80, - 0xfb, 0x0f, 0x07, 0x00, 0x38, 0x38, 0x07, 0x80, 0xe3, 0x03, 0x07, 0x00, - 0x38, 0x38, 0x07, 0x80, 0xe3, 0x01, 0x07, 0x00, 0x38, 0x3c, 0x07, 0x80, - 0xe3, 0x01, 0x07, 0x00, 0x38, 0x1e, 0x07, 0x80, 0xc3, 0x03, 0x07, 0x00, - 0xf8, 0x0f, 0x07, 0x80, 0xc3, 0x01, 0x07, 0x00, 0xf8, 0x07, 0xff, 0x9f, - 0xc3, 0x03, 0x07, 0x00, 0xf8, 0x00, 0xff, 0x9f, 0xc3, 0x03, 0x07, 0x00, - 0x38, 0x00, 0xff, 0x9f, 0xc3, 0x03, 0x07, 0x00, 0x38, 0x00, 0xff, 0x9f, - 0x83, 0x03, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, 0x83, 0x07, 0x07, 0x00, - 0x38, 0x00, 0x07, 0x80, 0x83, 0x07, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, - 0x83, 0x07, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, 0x83, 0x07, 0x07, 0x00, - 0x38, 0x00, 0x07, 0x80, 0x83, 0x07, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, - 0x03, 0x07, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, 0x03, 0x07, 0x07, 0x00, - 0x38, 0x00, 0x07, 0x80, 0x03, 0x0f, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, - 0x03, 0x0f, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, 0x03, 0x0e, 0x07, 0x00, - 0x38, 0x00, 0x07, 0x80, 0x03, 0x0e, 0x07, 0x00, 0x38, 0x00, 0x07, 0x80, - 0x03, 0x1e, 0x07, 0x00, 0x38, 0x00, 0xff, 0x9f, 0x03, 0x1e, 0x07, 0x00, - 0x38, 0x00, 0xff, 0x9f, 0x03, 0x1e, 0xff, 0x7f, 0x38, 0x00, 0xff, 0x9f, - 0x03, 0x3c, 0xff, 0x7f, 0x38, 0x00, 0xff, 0x9f, 0x03, 0x1c, 0xff, 0x7f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/phone.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define phone_width 64 -#define phone_height 54 -static char phone_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, - 0xff, 0xff, 0x3f, 0x00, 0x80, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x00, - 0xc0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x01, 0x70, 0x55, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x07, 0xb8, 0xaa, 0xba, 0xaa, 0xaa, 0xae, 0xaa, 0x0e, - 0x5c, 0x55, 0xfd, 0xff, 0xff, 0x5f, 0x55, 0x1d, 0xac, 0xaa, 0x6a, 0x55, - 0x55, 0xab, 0xaa, 0x1a, 0x54, 0x55, 0xbd, 0xaa, 0xaa, 0x5d, 0x55, 0x15, - 0xac, 0xaa, 0xee, 0xff, 0xff, 0xbb, 0xaa, 0x1a, 0x54, 0x55, 0x57, 0x55, - 0x55, 0x55, 0x55, 0x1d, 0xac, 0xaa, 0xab, 0xaa, 0xaa, 0xea, 0xaa, 0x1e, - 0x54, 0xd5, 0xfd, 0xff, 0xff, 0xdf, 0x55, 0x1f, 0xac, 0xea, 0x07, 0x00, - 0x00, 0xf0, 0xab, 0x3a, 0x58, 0x35, 0xf5, 0xff, 0xff, 0x57, 0x56, 0x3d, - 0xf0, 0x0f, 0x97, 0x00, 0x80, 0x74, 0xf8, 0x37, 0x00, 0x00, 0x15, 0xb1, - 0x0d, 0x55, 0x00, 0x30, 0x00, 0x00, 0x57, 0xb4, 0x4d, 0x74, 0x00, 0x30, - 0x00, 0x00, 0x35, 0x02, 0x20, 0x56, 0x00, 0x30, 0x00, 0x00, 0x97, 0xb0, - 0x8d, 0x74, 0x3c, 0x30, 0x00, 0x00, 0x15, 0xb1, 0x0d, 0x55, 0x7f, 0x30, - 0x00, 0x00, 0x57, 0x04, 0x40, 0x74, 0xc3, 0x30, 0x00, 0x00, 0x35, 0xb2, - 0x2d, 0xd6, 0x81, 0x31, 0x00, 0x00, 0x97, 0xb0, 0x8d, 0xf4, 0x80, 0x31, - 0x00, 0x00, 0x15, 0x01, 0x00, 0x55, 0x80, 0x31, 0x00, 0x00, 0x57, 0xb4, - 0x4d, 0x74, 0x80, 0x31, 0x00, 0x00, 0x35, 0xb2, 0x2d, 0x56, 0xc0, 0x30, - 0x00, 0x00, 0x97, 0x00, 0x80, 0x74, 0x60, 0x30, 0x00, 0x00, 0x15, 0xfd, - 0x3f, 0x55, 0x30, 0x30, 0x00, 0x00, 0x57, 0x04, 0x60, 0x74, 0x18, 0x30, - 0x00, 0x00, 0x35, 0xfe, 0x3f, 0x56, 0x0c, 0x18, 0x00, 0x00, 0xf7, 0xff, - 0xff, 0x77, 0x06, 0x18, 0x00, 0x00, 0x05, 0x00, 0x00, 0x50, 0x03, 0x0c, - 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f, 0x03, 0x06, 0x00, 0x00, 0x57, 0x55, - 0x55, 0x75, 0x03, 0x06, 0x00, 0x00, 0xab, 0xaa, 0xaa, 0x6a, 0x03, 0x03, - 0x00, 0x00, 0x57, 0x55, 0x55, 0x75, 0x83, 0x01, 0x00, 0x00, 0xab, 0xaa, - 0xaa, 0x6a, 0xc3, 0x00, 0x00, 0x00, 0x55, 0x55, 0x55, 0x55, 0xfe, 0x00, - 0x00, 0x00, 0xab, 0xaa, 0xaa, 0x6a, 0x7c, 0x00, 0x00, 0x00, 0x56, 0x55, - 0x55, 0x35, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0x1f, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/quality.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define ribbon_width 64 -#define ribbon_height 64 -static char ribbon_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, - 0xff, 0xcf, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xe7, 0xff, 0x00, - 0x00, 0x00, 0x00, 0x80, 0xff, 0xe7, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, - 0xff, 0xf3, 0x7f, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xf3, 0x7f, 0x00, - 0x00, 0x00, 0x00, 0xe0, 0xff, 0xf9, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0xff, 0xf9, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xfc, 0x1f, 0x00, - 0x00, 0x00, 0x00, 0xf0, 0xff, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xf8, - 0x7f, 0xfe, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x7f, 0xfe, 0x0f, 0x00, - 0x00, 0x00, 0x00, 0xfc, 0x3f, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xfc, - 0x3f, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x9b, 0xff, 0x03, 0x00, - 0x00, 0x00, 0x00, 0xfe, 0x9b, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0xff, - 0xc1, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc1, 0xff, 0x01, 0x00, - 0x00, 0x00, 0x80, 0xff, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x80, 0x07, - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x1f, 0x00, 0x7f, 0x00, 0x00, - 0x00, 0x00, 0xc0, 0x3f, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x7f, - 0xc0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x7f, 0xc0, 0x3f, 0x00, 0x00, - 0x00, 0x00, 0xf0, 0x3f, 0x80, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x3f, - 0x8c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x1f, 0x1e, 0x0f, 0x00, 0x00, - 0x00, 0x00, 0xf8, 0x5f, 0x7e, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x3f, - 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x3f, 0xff, 0x07, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0x9f, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x9f, - 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0x01, 0x00, 0x00, - 0x00, 0x00, 0xff, 0xcf, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x3f, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xbf, 0xff, 0xe7, 0xff, 0x00, 0x00, - 0x00, 0xc0, 0xdf, 0xff, 0xe7, 0x7f, 0x00, 0x00, 0x00, 0xc0, 0xdf, 0xff, - 0xf3, 0x7f, 0x00, 0x00, 0x00, 0xe0, 0xef, 0xff, 0xf3, 0x3f, 0x00, 0x00, - 0x00, 0xe0, 0xef, 0xff, 0xf9, 0x3f, 0x00, 0x00, 0x00, 0xf0, 0xf7, 0xff, - 0xf9, 0x1f, 0x00, 0x00, 0x00, 0xf0, 0xf7, 0xff, 0xfc, 0x1f, 0x00, 0x00, - 0x00, 0xf8, 0xfb, 0xff, 0xfc, 0x0f, 0x00, 0x00, 0x00, 0xf8, 0xfb, 0x7f, - 0xfe, 0x0f, 0x00, 0x00, 0x00, 0xfc, 0xfd, 0x7f, 0xfe, 0x07, 0x00, 0x00, - 0x00, 0xfc, 0xfd, 0x3f, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x3f, - 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x9f, 0xff, 0x03, 0x00, 0x00, - 0x00, 0x00, 0xff, 0x9f, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, - 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xcf, 0xff, 0x00, 0x00, 0x00, - 0x00, 0x80, 0xff, 0xc3, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x80, - 0x7f, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x3f, 0x00, 0x7f, 0x00, 0x00, 0x00, - 0x00, 0xe0, 0x0f, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x03, 0x00, - 0x3c, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, - 0x00, 0x30, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/question.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define qmark_width 64 -#define qmark_height 64 -static char qmark_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xfc,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0xff,0x03, - 0x00,0x00,0x00,0x00,0xf0,0xff,0xff,0x1f,0x00,0x00,0x00,0x00,0xfc,0x07,0xfc, - 0x7f,0x00,0x00,0x00,0x00,0xff,0x01,0xf0,0xff,0x00,0x00,0x00,0x80,0x7f,0x00, - 0xe0,0xff,0x01,0x00,0x00,0xc0,0x1f,0x00,0xc0,0xff,0x03,0x00,0x00,0xe0,0x0f, - 0x00,0x80,0xff,0x07,0x00,0x00,0xe0,0x0f,0x00,0x80,0xff,0x07,0x00,0x00,0xf0, - 0x07,0x00,0x00,0xff,0x0f,0x00,0x00,0xf0,0x0f,0x00,0x00,0xff,0x0f,0x00,0x00, - 0xf8,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xfe,0x1f,0x00, - 0x00,0xf8,0x1f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xf8,0x1f,0x00,0x00,0xfe,0x1f, - 0x00,0x00,0xf0,0x0f,0x00,0x00,0xfe,0x1f,0x00,0x00,0xc0,0x03,0x00,0x00,0xfe, - 0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x1f,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x1f,0x00,0x00,0x00,0x00,0x00, - 0x80,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x07,0x00,0x00,0x00,0x00, - 0x00,0xc0,0xff,0x07,0x00,0x00,0x00,0x00,0x00,0xe0,0xff,0x03,0x00,0x00,0x00, - 0x00,0x00,0xf0,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0xf8,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0xfc,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x3f,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x03,0x00, - 0x00,0x00,0x00,0x00,0xc0,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x3f,0x00, - 0x00,0x00,0x00,0x00,0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x07, - 0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xf8, - 0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0xfc,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,0x00,0x00,0x00,0x00, - 0x00,0x80,0xff,0x07,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x0f,0x00,0x00,0x00, - 0x00,0x00,0x80,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x0f,0x00,0x00, - 0x00,0x00,0x00,0x00,0xfe,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x03,0x00, - 0x00,0x00,0x00,0x00,0x00,0xf0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x03,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x07,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x0f,0x00,0x00,0x00,0x00,0x00, - 0x80,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x0f,0x00,0x00,0x00,0x00, - 0x00,0x80,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x07,0x00,0x00,0x00, - 0x00,0x00,0x00,0xfe,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00};
--- a/etc/frame-icon/radioactive.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define danger_width 64 -#define danger_height 64 -static char danger_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0xc0, 0x03, 0x00, - 0x00, 0x80, 0x07, 0x00, 0x00, 0xf0, 0x03, 0x00, 0x00, 0x80, 0x1f, 0x00, - 0x00, 0xf8, 0x07, 0x00, 0x00, 0xc0, 0x3f, 0x00, 0x00, 0xfc, 0x0f, 0x00, - 0x00, 0xe0, 0x7f, 0x00, 0x00, 0xfe, 0x0f, 0x00, 0x00, 0xe0, 0xff, 0x00, - 0x00, 0xfe, 0x1f, 0x00, 0x00, 0xf0, 0xff, 0x00, 0x00, 0xff, 0x1f, 0x00, - 0x00, 0xf0, 0xff, 0x01, 0x80, 0xff, 0x3f, 0x00, 0x00, 0xf8, 0xff, 0x03, - 0x80, 0xff, 0x7f, 0x00, 0x00, 0xfc, 0xff, 0x03, 0xc0, 0xff, 0x7f, 0x00, - 0x00, 0xfc, 0xff, 0x07, 0xe0, 0xff, 0xff, 0x00, 0x00, 0xfe, 0xff, 0x0f, - 0xe0, 0xff, 0xff, 0x01, 0x00, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x01, - 0x00, 0xff, 0xff, 0x1f, 0xf0, 0xff, 0xff, 0x03, 0x80, 0xff, 0xff, 0x1f, - 0xf0, 0xff, 0xff, 0x07, 0xc0, 0xff, 0xff, 0x1f, 0xf8, 0xff, 0xff, 0x07, - 0xc0, 0xff, 0xff, 0x3f, 0xf8, 0xff, 0xff, 0x0f, 0xe0, 0xff, 0xff, 0x3f, - 0xf8, 0xff, 0xff, 0x1f, 0xf0, 0xff, 0xff, 0x3f, 0xf8, 0xff, 0xff, 0x07, - 0xc0, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0x83, 0x83, 0xff, 0xff, 0x7f, - 0xfc, 0xff, 0xff, 0xe3, 0x8f, 0xff, 0xff, 0x7f, 0xfc, 0xff, 0xff, 0xf1, - 0x1f, 0xff, 0xff, 0x7f, 0xfc, 0xff, 0xff, 0xf1, 0x1f, 0xff, 0xff, 0x7f, - 0xfc, 0xff, 0xff, 0xf9, 0x3f, 0xff, 0xff, 0x7f, 0xfc, 0xff, 0xff, 0xf9, - 0x3f, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0xf8, 0x3f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x0f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xf8, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, - 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xfe, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x80, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, - 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x07, 0x00, 0x00, - 0x00, 0x00, 0xe0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, - 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x1f, 0x00, 0x00, - 0x00, 0x00, 0xf8, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, - 0xff, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0x7f, 0x00, 0x00, - 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, - 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, - 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x1f, 0x00, 0x00, - 0x00, 0x00, 0x80, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/recycle.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -#define recycle_width 64 -#define recycle_height 54 -static char recycle_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0xff,0x03, - 0x00,0x00,0x00,0x00,0x60,0x00,0x78,0x0d,0x00,0x00,0x00,0x00,0x10,0x00,0xbc, - 0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x5e,0x20,0x00,0x00,0x00,0x00,0x08,0x00, - 0x2f,0x20,0x00,0x00,0x00,0x00,0x04,0x00,0x17,0x40,0x1c,0x00,0x00,0x00,0x04, - 0x80,0x0a,0x40,0x1f,0x00,0x00,0x00,0x02,0x80,0x06,0x80,0x0d,0x00,0x00,0x00, - 0x02,0x40,0x04,0x00,0x04,0x00,0x00,0x00,0x01,0x40,0x04,0x00,0x02,0x00,0x00, - 0x00,0x01,0x20,0x08,0x00,0x03,0x00,0x00,0x80,0x00,0x20,0x08,0x00,0x01,0x00, - 0x00,0x00,0x03,0x10,0x10,0x80,0x00,0x00,0x00,0x00,0x0c,0x10,0x18,0xc0,0x00, - 0x00,0x00,0x00,0x30,0x08,0x07,0x40,0x00,0x00,0x00,0x00,0xc0,0x08,0xff,0x3f, - 0x0e,0x00,0x80,0xff,0x1f,0x07,0x00,0x80,0x09,0x00,0x80,0x00,0x30,0x04,0x00, - 0x60,0x10,0x00,0x00,0x03,0x20,0x00,0x00,0x18,0x10,0x00,0x00,0x0c,0x60,0x00, - 0x00,0x06,0x20,0x00,0x00,0x08,0x40,0x00,0x00,0x01,0x20,0x00,0x00,0x04,0x80, - 0x00,0x00,0x01,0x40,0x00,0x00,0x04,0x80,0x01,0x00,0x02,0x40,0x00,0x00,0x02, - 0x00,0x01,0x00,0x02,0x80,0x00,0x00,0x02,0x00,0x02,0x00,0x04,0x80,0x00,0x00, - 0x02,0x40,0x06,0x00,0x04,0x80,0x00,0x00,0x02,0xe0,0x05,0x00,0x08,0x80,0x00, - 0x00,0x02,0x20,0x06,0x60,0x08,0x80,0x00,0x00,0x04,0x10,0x00,0x60,0x10,0x40, - 0x00,0x00,0x04,0x10,0x00,0x50,0x10,0x40,0x00,0x00,0x08,0x08,0x00,0x50,0x20, - 0x20,0x00,0x00,0x08,0x08,0x00,0x48,0x20,0x3c,0x00,0x00,0x10,0xfc,0x7f,0xc8, - 0xff,0x1f,0x00,0x00,0x10,0xbc,0x40,0x04,0x00,0x18,0x00,0x00,0x20,0x5e,0x40, - 0x04,0x00,0x0c,0x00,0x00,0x20,0x2e,0x40,0x02,0x00,0x0c,0x00,0x00,0x40,0x17, - 0x40,0x02,0x00,0x06,0x00,0x00,0x40,0x0f,0x40,0x01,0x00,0x06,0x00,0x00,0x80, - 0x07,0x40,0x01,0x00,0x02,0x00,0x00,0x80,0x07,0x40,0x02,0x00,0x03,0x00,0x00, - 0x00,0x07,0x40,0x02,0x80,0x01,0x00,0x00,0x00,0x02,0x40,0x04,0xc0,0x00,0x00, - 0x00,0x00,0x0c,0x40,0x04,0x70,0x00,0x00,0x00,0x00,0xf0,0x7f,0xc8,0x1f,0x00, - 0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
--- a/etc/frame-icon/rlogin.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define external_width 64 -#define external_height 54 -static char external_bits[] = { - 0xc0, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x60, - 0x00, 0x00, 0x00, 0x00, 0x40, 0xff, 0xff, 0xaf, 0x01, 0x00, 0x00, 0x00, - 0x40, 0x01, 0x02, 0x29, 0x02, 0x00, 0x00, 0x00, 0x40, 0x6d, 0x5a, 0x29, - 0x02, 0x00, 0x00, 0x00, 0x40, 0x01, 0x02, 0x2f, 0x02, 0x00, 0x00, 0x00, - 0x40, 0xd5, 0x3a, 0x29, 0x02, 0x00, 0x00, 0x00, 0x40, 0x01, 0x02, 0x2f, - 0x02, 0x00, 0x00, 0x00, 0x40, 0xff, 0x5b, 0x29, 0x02, 0x00, 0x00, 0x00, - 0x40, 0x01, 0x02, 0x2f, 0x02, 0x00, 0x00, 0x00, 0x40, 0x55, 0x5a, 0x29, - 0x22, 0x00, 0x00, 0x00, 0x40, 0x01, 0x02, 0x2f, 0x32, 0x00, 0x00, 0x00, - 0x40, 0x05, 0x6a, 0x2f, 0xfa, 0x01, 0x00, 0x00, 0x40, 0x01, 0x02, 0x2f, - 0x32, 0x0e, 0x00, 0x00, 0x40, 0xff, 0xff, 0x2f, 0x22, 0x30, 0x00, 0x00, - 0x40, 0x01, 0x00, 0x2e, 0x02, 0x40, 0x00, 0x00, 0x40, 0xff, 0xff, 0x2f, - 0x02, 0x80, 0x00, 0x00, 0x40, 0x00, 0x00, 0xa0, 0x01, 0x00, 0x01, 0x00, - 0xc0, 0xff, 0xff, 0xff, 0x07, 0x00, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x1e, - 0x07, 0x00, 0x02, 0x00, 0x00, 0xf3, 0xff, 0xc7, 0x04, 0x00, 0x02, 0x00, - 0xc0, 0x00, 0x00, 0x30, 0x0c, 0x00, 0x02, 0x00, 0xe0, 0xff, 0xff, 0x0f, - 0x14, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x08, 0x13, 0x00, 0x04, 0x00, - 0xb0, 0x01, 0x00, 0xc8, 0x08, 0x00, 0x04, 0x00, 0x28, 0x00, 0x00, 0x38, - 0x08, 0x00, 0x1f, 0x00, 0xe4, 0xff, 0xff, 0x0f, 0x04, 0x00, 0x0e, 0x00, - 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0xf8, 0xff, 0xff, 0x0f, - 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x0f, - 0x52, 0x55, 0x55, 0x8e, 0x00, 0x01, 0x00, 0x08, 0xa9, 0xaa, 0x2a, 0xe7, - 0x01, 0xfd, 0xff, 0x08, 0x01, 0x00, 0x80, 0x93, 0x01, 0x55, 0xd5, 0x0a, - 0xff, 0xff, 0xff, 0xc9, 0x00, 0x2d, 0xaa, 0x08, 0xfe, 0xff, 0xff, 0x78, - 0x00, 0x15, 0xd4, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0xaa, 0x08, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xd5, 0x08, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xad, 0xaa, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xd5, 0x0a, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0f, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, - 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, - 0x10, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xd0, 0xa9, 0x2a, 0xbf, - 0x00, 0x00, 0x00, 0x00, 0xd0, 0xa9, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, - 0x10, 0xa8, 0x2a, 0x80, 0x00, 0x00, 0x00, 0x00, 0x10, 0xa8, 0x2a, 0xbf, - 0x00, 0x00, 0x00, 0x00, 0x10, 0xa8, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, - 0x10, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff};
--- a/etc/frame-icon/scroll.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define emacs2_width 64 -#define emacs2_height 64 -static char emacs2_bits[] = { - 0x55, 0x55, 0x55, 0x01, 0x00, 0x51, 0x55, 0x55, 0xaa, 0xaa, 0xaa, 0x00, - 0x00, 0xa1, 0xaa, 0xaa, 0x55, 0x55, 0x55, 0x0c, 0x80, 0x42, 0x55, 0x55, - 0xaa, 0xaa, 0x2a, 0x0f, 0xe0, 0x80, 0xaa, 0xaa, 0x55, 0x55, 0xd5, 0x31, - 0x64, 0x00, 0x55, 0x55, 0xaa, 0xaa, 0xca, 0xc1, 0x38, 0x00, 0xaa, 0xaa, - 0x55, 0x55, 0xa5, 0x40, 0x0d, 0x00, 0x54, 0x55, 0xaa, 0xaa, 0xb6, 0x40, - 0x07, 0x20, 0xa8, 0xaa, 0x55, 0x55, 0x99, 0x20, 0x02, 0x30, 0x50, 0x55, - 0xaa, 0xaa, 0xc8, 0x20, 0x42, 0x18, 0xa0, 0xaa, 0x55, 0x55, 0x41, 0x10, - 0x02, 0x08, 0x40, 0x55, 0xaa, 0x2a, 0x41, 0x08, 0x02, 0x07, 0x84, 0xaa, - 0x55, 0x95, 0x41, 0x00, 0x42, 0x01, 0x08, 0x55, 0xaa, 0xaa, 0x60, 0x00, - 0xc1, 0x01, 0x00, 0xaa, 0x55, 0x4d, 0x20, 0x80, 0x61, 0x02, 0x21, 0x54, - 0xaa, 0xb6, 0x20, 0x60, 0x39, 0x83, 0x06, 0xa8, 0x55, 0x05, 0x28, 0x18, - 0x11, 0x40, 0x01, 0x50, 0xaa, 0x06, 0x30, 0x00, 0x01, 0xa0, 0x00, 0xa0, - 0x55, 0x00, 0x1c, 0x00, 0x07, 0xa0, 0x00, 0x40, 0x2a, 0x00, 0x16, 0x80, - 0x02, 0x30, 0x00, 0x80, 0x75, 0x60, 0x14, 0x80, 0x01, 0x00, 0x00, 0x00, - 0x8a, 0x51, 0x1b, 0x40, 0x00, 0x00, 0x00, 0x00, 0x85, 0xe2, 0x09, 0x60, - 0x00, 0x06, 0x00, 0x00, 0x46, 0x46, 0x08, 0x1f, 0x00, 0x05, 0x00, 0x00, - 0x25, 0x85, 0x08, 0x10, 0xa0, 0x06, 0x00, 0x00, 0xc6, 0x1a, 0x0c, 0x08, - 0xc0, 0x02, 0x00, 0x00, 0x45, 0x35, 0x04, 0x08, 0x00, 0x06, 0x00, 0x00, - 0xba, 0x6a, 0x04, 0x04, 0x08, 0x00, 0x00, 0x00, 0x55, 0xd5, 0x04, 0x42, - 0x14, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xc5, 0x01, 0x0c, 0x00, 0x00, 0x00, - 0x55, 0x55, 0x07, 0x01, 0x03, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0x82, 0x94, - 0x02, 0x00, 0x06, 0x00, 0x55, 0x55, 0x43, 0xc8, 0x00, 0x00, 0x02, 0x00, - 0xaa, 0xaa, 0x42, 0x74, 0x00, 0x80, 0x05, 0x00, 0x55, 0x55, 0x3b, 0x20, - 0x00, 0x80, 0x33, 0x00, 0xaa, 0xaa, 0x63, 0x18, 0x00, 0x20, 0x49, 0x00, - 0x55, 0x55, 0xd1, 0x00, 0x00, 0x50, 0x40, 0x00, 0xaa, 0xaa, 0xb1, 0x01, - 0x02, 0x64, 0x20, 0x00, 0x55, 0xd5, 0x59, 0x03, 0x82, 0x08, 0x18, 0x00, - 0xaa, 0xaa, 0xad, 0x06, 0x02, 0x90, 0x06, 0x00, 0x55, 0xd5, 0x54, 0xcd, - 0x03, 0x42, 0x01, 0x00, 0xaa, 0xaa, 0xaa, 0xba, 0x41, 0x84, 0x02, 0x80, - 0x55, 0xd5, 0x56, 0x55, 0xa1, 0x61, 0x01, 0x40, 0xaa, 0xea, 0xab, 0xaa, - 0x60, 0x19, 0x00, 0xa0, 0x55, 0xfd, 0x57, 0xd5, 0x80, 0x04, 0x00, 0x50, - 0xaa, 0xc2, 0xad, 0xaa, 0x01, 0x02, 0x00, 0xa8, 0x55, 0xfd, 0x57, 0x55, - 0x03, 0x12, 0x00, 0x54, 0xaa, 0xe6, 0xaa, 0xaa, 0x06, 0x0c, 0x00, 0xaa, - 0x55, 0xe5, 0x56, 0x55, 0x0d, 0x00, 0x00, 0x55, 0xaa, 0xe6, 0xaa, 0xaa, - 0x1a, 0x00, 0x80, 0xaa, 0x55, 0x73, 0x54, 0x55, 0x35, 0x00, 0x40, 0x55, - 0xaa, 0x31, 0xa8, 0xaa, 0x6a, 0x00, 0xa0, 0xaa, 0xd5, 0x30, 0x50, 0x55, - 0xd5, 0x00, 0x50, 0x55, 0xea, 0xff, 0xbf, 0xaa, 0xaa, 0x01, 0xa8, 0xaa, - 0xf5, 0xff, 0x7f, 0x55, 0x55, 0x03, 0x54, 0x55, 0xea, 0xff, 0xbf, 0xaa, - 0xaa, 0x06, 0xaa, 0xaa, 0xf5, 0xff, 0x7f, 0x55, 0x55, 0x09, 0x55, 0x55, - 0xea, 0xff, 0xbf, 0xaa, 0xaa, 0x8c, 0xaa, 0xaa, 0xd5, 0xff, 0x5f, 0x55, - 0xd5, 0x52, 0x55, 0x55, 0xaa, 0xfe, 0xab, 0xaa, 0x2a, 0xb1, 0xaa, 0xaa, - 0x55, 0x55, 0x55, 0x55, 0x35, 0x50, 0x55, 0x55, 0xaa, 0xaa, 0xaa, 0xaa, - 0x2a, 0xa8, 0xaa, 0xaa, 0x55, 0x55, 0x55, 0x55, 0xd5, 0x57, 0x55, 0x55, - 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa};
--- a/etc/frame-icon/scroll2.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define scroll_width 64 -#define scroll_height 54 -static char scroll_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, - 0x07, 0x10, 0x00, 0x00, 0x00, 0x00, 0x80, 0x3f, 0x00, 0x20, 0x00, 0x00, - 0x00, 0xf0, 0x7f, 0x00, 0x00, 0x40, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0x00, - 0x00, 0x40, 0x00, 0x00, 0xf8, 0x03, 0x00, 0x00, 0x00, 0x40, 0xc0, 0x3f, - 0x06, 0x0c, 0x00, 0x00, 0x00, 0x40, 0x38, 0x20, 0xf2, 0x18, 0x00, 0x00, - 0x00, 0x20, 0x06, 0x20, 0x99, 0x31, 0x00, 0x00, 0x00, 0xa0, 0xe1, 0x13, - 0x09, 0x62, 0x40, 0x01, 0x00, 0x41, 0x1e, 0x1e, 0xc9, 0x64, 0xe8, 0x04, - 0x4a, 0x30, 0x00, 0x08, 0x92, 0x54, 0x10, 0x80, 0x22, 0x8c, 0x7f, 0x04, - 0x62, 0xce, 0x00, 0x30, 0x01, 0x73, 0xc0, 0x03, 0x0c, 0x83, 0x00, 0x20, - 0x80, 0x00, 0x00, 0x03, 0xf0, 0x80, 0x00, 0x00, 0x60, 0xf8, 0x87, 0x00, - 0x00, 0x80, 0x00, 0x00, 0x90, 0x07, 0x7c, 0x00, 0x00, 0x80, 0x00, 0x19, - 0x0c, 0x00, 0x30, 0x00, 0x00, 0x00, 0xb1, 0x04, 0x83, 0x7f, 0x08, 0x00, - 0x00, 0x00, 0x11, 0x83, 0x7c, 0xc0, 0x07, 0x00, 0x00, 0x00, 0x21, 0x40, - 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x30, 0xfc, 0xc1, 0x01, 0x00, - 0x00, 0x00, 0x02, 0xc8, 0x03, 0x3f, 0x01, 0x00, 0x00, 0x00, 0x02, 0x06, - 0x00, 0x8c, 0x01, 0x00, 0x00, 0x00, 0x82, 0xe1, 0x87, 0x43, 0x01, 0x00, - 0x00, 0x00, 0x64, 0x1e, 0x78, 0x80, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, - 0x38, 0x40, 0x03, 0x00, 0x00, 0x00, 0x8c, 0x0f, 0x07, 0x80, 0x02, 0x00, - 0x00, 0x00, 0x72, 0xf0, 0x01, 0x40, 0x05, 0x00, 0x00, 0x80, 0x01, 0x3e, - 0x00, 0x80, 0x06, 0x00, 0x00, 0xe0, 0xc0, 0x01, 0x00, 0x40, 0x05, 0x00, - 0x00, 0x30, 0x3f, 0x00, 0x00, 0x80, 0x8a, 0x01, 0x00, 0x18, 0x10, 0x00, - 0x00, 0x40, 0x5d, 0x06, 0x00, 0x0f, 0x10, 0x00, 0x00, 0xa0, 0x3a, 0x0c, - 0xc0, 0x07, 0x20, 0x00, 0x00, 0x50, 0x1d, 0x18, 0xe0, 0x07, 0x20, 0x00, - 0x00, 0xa8, 0x06, 0x30, 0xf8, 0x01, 0x20, 0x00, 0x00, 0xd4, 0x01, 0x28, - 0x3c, 0x3e, 0x60, 0x00, 0x00, 0x3f, 0x00, 0x34, 0x8e, 0xc1, 0x40, 0xe0, - 0xff, 0x00, 0x00, 0x2a, 0x41, 0x7f, 0x41, 0x78, 0x00, 0x00, 0x00, 0x35, - 0xc0, 0x00, 0x41, 0x86, 0x01, 0x00, 0xa0, 0x1a, 0x80, 0xdb, 0x40, 0x32, - 0x03, 0x00, 0x54, 0x0f, 0x80, 0x24, 0x81, 0x5a, 0x06, 0x00, 0xea, 0x00, - 0x40, 0x24, 0x81, 0x92, 0x06, 0x40, 0x3f, 0x00, 0x20, 0x42, 0x82, 0x44, - 0x06, 0xe0, 0x01, 0x00, 0x10, 0x81, 0x0c, 0x39, 0x03, 0x1f, 0x00, 0x00, - 0xcc, 0xff, 0x11, 0x82, 0xf1, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x1f, 0xcc, - 0x0c, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x1f, 0xf0, 0x03, 0x00, 0x00, 0x00, - 0xfc, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0x1f, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xc0, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/splat.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,44 +0,0 @@ -#define splat_width 65 -#define splat_height 54 -static char splat_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x04, 0xc0, 0x80, 0x03, 0x0e, 0x00, - 0x43, 0x00, 0x00, 0x08, 0xa0, 0x01, 0x01, 0x04, 0x82, 0x23, 0x00, 0x00, - 0x00, 0xe0, 0x01, 0x01, 0x00, 0x03, 0x11, 0x00, 0x00, 0x00, 0x83, 0x01, - 0x01, 0x04, 0x40, 0xc0, 0x01, 0x00, 0x80, 0x05, 0x00, 0x00, 0x04, 0x00, - 0x64, 0x03, 0x00, 0xc0, 0x0e, 0x04, 0x01, 0x04, 0x18, 0xa0, 0x03, 0x00, - 0xc0, 0x1e, 0x08, 0x03, 0x0e, 0x1f, 0xa1, 0xc3, 0x00, 0x86, 0x1f, 0x90, - 0xff, 0xff, 0x0f, 0xe0, 0x23, 0x00, 0x08, 0x3c, 0xf0, 0xff, 0xff, 0x0f, - 0xf0, 0x10, 0x00, 0x10, 0x20, 0xf0, 0x2b, 0xfd, 0x0f, 0x70, 0x00, 0x00, - 0x00, 0x80, 0x7f, 0xf5, 0xff, 0x0f, 0x10, 0x06, 0x00, 0x00, 0x00, 0xbf, - 0xfe, 0xff, 0x1f, 0x04, 0x00, 0x00, 0x7c, 0x00, 0x5f, 0xff, 0xff, 0x1f, - 0x04, 0x78, 0x00, 0xc6, 0x01, 0xae, 0xff, 0xff, 0x1f, 0x01, 0xfe, 0x00, - 0xfa, 0xe7, 0xdf, 0xff, 0xff, 0xbf, 0x01, 0xf5, 0x00, 0xfc, 0xff, 0xef, - 0xff, 0xff, 0xff, 0x80, 0x7f, 0x00, 0x00, 0xe0, 0xdf, 0xff, 0xff, 0x7f, - 0x40, 0x00, 0x00, 0x00, 0xc0, 0xef, 0xff, 0xff, 0x7f, 0x1e, 0x00, 0x00, - 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0xc0, 0xef, - 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x20, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, - 0x00, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x1b, 0x00, 0x00, 0xf6, 0xff, - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x80, 0x00, 0xff, 0xff, 0xff, 0xff, - 0x00, 0x00, 0x00, 0x3c, 0x00, 0xce, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, - 0x1e, 0x00, 0x84, 0x7f, 0xde, 0xff, 0x03, 0x00, 0x00, 0x0e, 0x04, 0xc4, - 0x1f, 0x88, 0xff, 0x07, 0x30, 0x00, 0x0c, 0x02, 0xc4, 0x1f, 0x00, 0x0f, - 0x1e, 0xc0, 0x00, 0x00, 0x00, 0xc0, 0x0c, 0x08, 0x0f, 0x38, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x0c, 0x08, 0x06, 0x40, 0x00, 0x00, 0x08, 0x00, 0x00, - 0x08, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x08, 0x08, 0x08, 0x06, - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x04, 0x02, 0x34, 0x00, - 0x00, 0x01, 0x02, 0x00, 0x1c, 0x04, 0x00, 0x68, 0x00, 0x80, 0x00, 0x01, - 0x00, 0x1c, 0x04, 0x00, 0xd0, 0x00, 0x00, 0x80, 0x40, 0x08, 0x08, 0x04, - 0x02, 0x60, 0x00, 0x20, 0x00, 0x00, 0x08, 0x00, 0x04, 0x04, 0x00, 0x00, - 0x00, 0x20, 0x00, 0x08, 0x02, 0x04, 0x08, 0x00, 0x00, 0x08, 0x30, 0x00, - 0x08, 0x02, 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, - 0xf0, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x02, 0x04, 0xe0, 0x01, 0x00, - 0x00, 0x0f, 0x00, 0x00, 0x02, 0x04, 0x20, 0x01, 0x00, 0x80, 0x07, 0x00, - 0x00, 0x02, 0x00, 0xc0, 0x01, 0x00, 0xc0, 0x07, 0x00, 0x08, 0x06, 0x04, - 0x00, 0x00, 0x00, 0xb0, 0x43, 0x00, 0x08, 0x05, 0x04, 0x00, 0x00, 0x00, - 0xd8, 0x01, 0x00, 0x1c, 0x07, 0x06, 0x04, 0x00, 0x00, 0xe8, 0x01, 0x20, - 0x88, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0x80, 0x0e, 0x0e, - 0x00, 0x02, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x00, - 0x70, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/stopsign.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define stopsign_width 64 -#define stopsign_height 64 -static char stopsign_bits[] = { - 0x00,0x00,0xfc,0xff,0xff,0x3f,0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0x7f,0x00, - 0x00,0x00,0x00,0x07,0x00,0x00,0xe0,0x00,0x00,0x00,0x80,0x03,0x00,0x00,0xc0, - 0x01,0x00,0x00,0xc0,0xf9,0xff,0xff,0x8f,0x03,0x00,0x00,0xe0,0xac,0xaa,0xaa, - 0x1a,0x07,0x00,0x00,0x70,0x56,0x55,0x55,0x35,0x0e,0x00,0x00,0x38,0xab,0xaa, - 0xaa,0x6a,0x1c,0x00,0x00,0x9c,0x55,0x55,0x55,0xd5,0x38,0x00,0x00,0xce,0xaa, - 0xaa,0xaa,0xaa,0x71,0x00,0x00,0x67,0x55,0x55,0x55,0x55,0xe3,0x00,0x80,0xb3, - 0xaa,0xaa,0xaa,0xaa,0xc6,0x01,0xc0,0x59,0x55,0x55,0x55,0x55,0x8d,0x03,0xe0, - 0xac,0xaa,0xaa,0xaa,0xaa,0x1a,0x07,0x70,0x56,0x55,0x55,0x55,0x55,0x35,0x0e, - 0x38,0xab,0xaa,0xaa,0xaa,0xaa,0x6a,0x1c,0x9c,0x55,0x55,0x55,0x55,0x55,0xd5, - 0x38,0xce,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x71,0x67,0x55,0x55,0x55,0x55,0x55, - 0x55,0xe3,0xb3,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xc6,0x53,0x55,0x55,0x55,0x55, - 0x55,0x55,0xcd,0xb3,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xca,0x53,0x55,0x55,0x55, - 0x55,0x55,0x55,0xcd,0xb3,0xfe,0xfb,0xff,0xfb,0xab,0xff,0xca,0x53,0x03,0x0d, - 0x00,0x0d,0x54,0x80,0xcd,0xb3,0x01,0x0a,0x00,0x07,0x68,0x00,0xcb,0xd3,0x78, - 0xf4,0xf9,0xe3,0x51,0x3e,0xce,0xb3,0xac,0xac,0xa9,0xb2,0x72,0x6a,0xca,0xd3, - 0xd4,0x54,0x59,0x53,0x53,0x56,0xce,0xb3,0xac,0xaf,0xa9,0xb2,0x72,0x6a,0xca, - 0xd3,0x54,0x55,0x59,0x53,0x53,0x56,0xce,0xb3,0xf8,0xaa,0xa9,0xb2,0x72,0x3e, - 0xca,0x53,0x01,0x55,0x59,0x53,0x53,0x00,0xcd,0xb3,0x02,0xaa,0xa9,0xb2,0x72, - 0x80,0xca,0x53,0x7d,0x54,0x59,0x53,0x53,0x7e,0xcd,0xb3,0xaa,0xac,0xa9,0xb2, - 0x72,0xaa,0xca,0x53,0xd7,0x54,0x59,0x53,0x53,0x56,0xcd,0xb3,0xac,0xac,0xa9, - 0xb2,0x72,0xaa,0xca,0xd3,0xd4,0x54,0x59,0x53,0x53,0x56,0xcd,0xb3,0x78,0xac, - 0xa9,0xe2,0x71,0xaa,0xca,0x53,0x01,0x56,0x59,0x05,0x58,0x56,0xcd,0xb3,0x02, - 0xab,0xa9,0x0a,0x6c,0xaa,0xca,0x53,0xfd,0x55,0x5f,0xf5,0xd7,0x55,0xcd,0xb3, - 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xca,0x63,0x55,0x55,0x55,0x55,0x55,0x55,0xcd, - 0xc7,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xe6,0x8e,0x55,0x55,0x55,0x55,0x55,0x55, - 0x73,0x1c,0xab,0xaa,0xaa,0xaa,0xaa,0xaa,0x39,0x38,0x56,0x55,0x55,0x55,0x55, - 0xd5,0x1c,0x70,0xac,0xaa,0xaa,0xaa,0xaa,0x6a,0x0e,0xe0,0x58,0x55,0x55,0x55, - 0x55,0x35,0x07,0xc0,0xb1,0xaa,0xaa,0xaa,0xaa,0x9a,0x03,0x80,0x63,0x55,0x55, - 0x55,0x55,0xcd,0x01,0x00,0xc7,0xaa,0xaa,0xaa,0xaa,0xe6,0x00,0x00,0x8e,0x55, - 0x55,0x55,0x55,0x73,0x00,0x00,0x1c,0xab,0xaa,0xaa,0xaa,0x39,0x00,0x00,0x38, - 0x56,0x55,0x55,0xd5,0x1c,0x00,0x00,0x70,0xac,0xaa,0xaa,0x6a,0x0e,0x00,0x00, - 0xe0,0x58,0x55,0x55,0x35,0x07,0x00,0x00,0xc0,0xf1,0xff,0xff,0x9f,0x03,0x00, - 0x00,0x80,0x03,0x00,0x00,0xc0,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0xe0,0x00, - 0x00,0x00,0x00,0xfe,0xff,0xff,0x7f,0x00,0x00,0x00,0x00,0xfc,0xff,0xff,0x3f, - 0x00,0x00};
--- a/etc/frame-icon/sundae.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define sundae_width 64 -#define sundae_height 64 -static char sundae_bits[] = { - 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, - 0x88, 0x88, 0x88, 0x88, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x88, 0x88, 0x88, 0x88, - 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, - 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x22, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, - 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x22, 0x22, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0xff, 0x23, 0x22, 0x22, 0x22, 0x22, - 0x88, 0x88, 0x88, 0xcf, 0x89, 0x88, 0x88, 0x88, 0x88, 0xc8, 0x88, 0xf8, - 0x8e, 0x88, 0x88, 0x88, 0x22, 0x22, 0x22, 0xf2, 0x25, 0x22, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x7a, 0x2f, 0x22, 0x22, 0x22, 0x88, 0x88, 0x88, 0xb8, - 0x9b, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0xe8, 0xee, 0x88, 0x88, 0x88, - 0x22, 0x22, 0x22, 0xde, 0x9d, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x76, - 0x8f, 0x22, 0x22, 0x22, 0x88, 0x88, 0x88, 0xf7, 0x0f, 0x89, 0x88, 0x88, - 0x88, 0x88, 0x88, 0xc1, 0x03, 0x89, 0x88, 0x88, 0x22, 0x22, 0xa2, 0x00, - 0x41, 0x23, 0x22, 0x22, 0x22, 0x22, 0xa2, 0x00, 0x30, 0x26, 0x22, 0x22, - 0x88, 0x88, 0x88, 0x00, 0x18, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0xfe, - 0x43, 0x98, 0x88, 0x88, 0x22, 0x22, 0xc2, 0x00, 0x20, 0x30, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x00, 0x18, 0x20, 0x22, 0x22, 0x88, 0x88, 0x18, 0x80, - 0x07, 0xf0, 0x88, 0x88, 0x88, 0x88, 0x18, 0xf9, 0x00, 0xfe, 0x88, 0x88, - 0x22, 0x22, 0xfc, 0x03, 0x80, 0xff, 0x23, 0x22, 0x22, 0x22, 0xfe, 0x03, - 0xf0, 0xff, 0x23, 0x22, 0x88, 0x88, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x88, - 0x88, 0x88, 0xff, 0xff, 0xff, 0xf7, 0x8f, 0x88, 0x22, 0x22, 0xff, 0xff, - 0xff, 0xf3, 0x2f, 0x22, 0x22, 0x22, 0xff, 0xff, 0xdf, 0xc3, 0x39, 0x22, - 0x88, 0x88, 0xe7, 0xff, 0x9f, 0xc3, 0x91, 0x88, 0x88, 0x88, 0xe3, 0xfd, - 0x8f, 0x03, 0xa0, 0x88, 0x22, 0xa2, 0xe3, 0xf9, 0x8f, 0x03, 0x20, 0x22, - 0x22, 0x62, 0xe3, 0x83, 0x8f, 0x01, 0x20, 0x22, 0x88, 0x28, 0xe2, 0x83, - 0x0f, 0x00, 0xf0, 0x88, 0x88, 0x18, 0xe2, 0x81, 0x0f, 0x80, 0xd1, 0x88, - 0x22, 0x32, 0x02, 0x00, 0x87, 0x63, 0x60, 0x22, 0x22, 0x32, 0x03, 0x00, - 0x07, 0x3c, 0x60, 0x22, 0x88, 0xf8, 0x00, 0x00, 0x06, 0x00, 0xf0, 0x88, - 0x88, 0xe8, 0x01, 0x00, 0x06, 0x00, 0xdc, 0x88, 0x22, 0xa2, 0x0e, 0x00, - 0x06, 0x80, 0x2b, 0x22, 0x22, 0x62, 0x75, 0x00, 0x06, 0x70, 0x35, 0x22, - 0x88, 0xc8, 0xaa, 0x07, 0x02, 0xaf, 0x9a, 0x88, 0x88, 0x88, 0x55, 0xfd, - 0xff, 0x55, 0x8d, 0x88, 0x22, 0x22, 0xab, 0xaa, 0xaa, 0xaa, 0x26, 0x22, - 0x22, 0x22, 0x56, 0x55, 0x55, 0x55, 0x27, 0x22, 0x88, 0x88, 0xac, 0xaa, - 0xaa, 0xaa, 0x8b, 0x88, 0x88, 0x88, 0x5c, 0x55, 0x55, 0xd5, 0x89, 0x88, - 0x22, 0x22, 0xba, 0xaa, 0xaa, 0x6a, 0x22, 0x22, 0x22, 0x22, 0x72, 0x55, - 0x55, 0x7d, 0x22, 0x22, 0x88, 0x88, 0xc8, 0xaa, 0xaa, 0x8e, 0x88, 0x88, - 0x88, 0x88, 0x88, 0x5f, 0xd5, 0x8b, 0x88, 0x88, 0x22, 0x22, 0x22, 0xf2, - 0x3f, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, - 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, - 0x88, 0x88, 0x88, 0x88, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, - 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22};
--- a/etc/frame-icon/swissknife.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#define swissknife_width 64 -#define swissknife_height 64 -static char swissknife_bits[] = { - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x07, - 0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xf8, - 0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x3f,0x00,0x00,0x00,0x00,0x00,0x00, - 0xfe,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0xf7,0x7f,0x00,0x00,0x00,0x00,0x00, - 0x80,0xeb,0x7f,0x00,0x00,0x40,0x00,0x00,0xc0,0xcd,0x7f,0x00,0x00,0x40,0x01, - 0x00,0xe0,0x96,0x3f,0x00,0x00,0xc0,0x02,0x00,0x70,0x69,0x6f,0x00,0x00,0x00, - 0x02,0x00,0x78,0x15,0xa7,0x00,0x00,0x00,0x09,0x00,0x7c,0xd1,0x43,0x03,0x00, - 0x00,0x17,0x00,0x7e,0xef,0x41,0x04,0x00,0x00,0x10,0x00,0x7f,0xf0,0x42,0x08, - 0x00,0x00,0x08,0x80,0xff,0x7f,0x42,0x30,0x00,0x00,0x68,0xc0,0xff,0x3f,0xc3, - 0x40,0x00,0x00,0x90,0xe1,0xff,0x9f,0x84,0x91,0x00,0x00,0x40,0xf6,0xff,0x4f, - 0x84,0x22,0x01,0x00,0x40,0xfc,0xff,0x27,0xa4,0x44,0x06,0x00,0x80,0xfc,0xff, - 0x03,0xa4,0x88,0x08,0x00,0x00,0xff,0xff,0x19,0xa4,0x10,0x11,0x00,0x00,0xff, - 0xff,0x06,0xa8,0x60,0x10,0x00,0x80,0xff,0x7f,0x02,0x48,0x81,0x20,0x00,0xc0, - 0xff,0xbf,0x01,0x48,0x01,0x21,0x00,0xe0,0xff,0xdf,0x00,0x48,0x01,0x22,0x00, - 0xf0,0xff,0x4f,0x00,0x08,0x01,0x24,0x00,0xf8,0xff,0x37,0x00,0x10,0x01,0x28, - 0x00,0xfc,0xff,0x0b,0x00,0x10,0x02,0x30,0x00,0xfe,0xff,0x09,0x00,0x10,0x02, - 0x00,0x00,0xff,0xff,0x0e,0x00,0x10,0x02,0x00,0x00,0xff,0x7f,0x03,0x00,0x10, - 0x02,0x00,0x80,0xff,0x3f,0x01,0x00,0x20,0x02,0x00,0x80,0xff,0x9f,0x00,0x00, - 0x20,0x01,0x00,0x80,0xff,0x6f,0x00,0x00,0x20,0x01,0x00,0x80,0xff,0x17,0x00, - 0x00,0xe0,0x00,0x00,0x80,0xff,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0xfb,0x07, - 0x00,0x00,0x00,0x00,0x00,0x80,0x77,0x04,0x07,0x00,0x00,0x00,0x00,0x40,0x5c, - 0x04,0x05,0x00,0x00,0x00,0x00,0x20,0xc8,0x07,0x05,0x00,0x00,0x00,0x00,0x20, - 0x88,0x02,0x05,0x00,0x00,0x00,0x00,0x20,0x08,0x05,0x09,0x00,0x00,0x00,0x00, - 0x40,0x04,0x0a,0x09,0x00,0x00,0x00,0x00,0x80,0x03,0x0a,0x09,0x00,0x00,0x00, - 0x00,0x00,0x00,0x14,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x09,0x00,0x00, - 0x00,0x00,0x00,0x00,0x50,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x09,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x0c, - 0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc1,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x0e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x04,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd2,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x00, - 0x00,0x00,0x00,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00, - 0x00,0x00};
--- a/etc/frame-icon/tardis.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define tardis_width 64 -#define tardis_height 64 -static char tardis_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0x3f, 0x00, 0x00, - 0x00, 0x00, 0xac, 0xaa, 0xaa, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x54, 0x55, - 0x55, 0x55, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, - 0x00, 0x80, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, 0x00, 0x00, 0x80, 0x55, 0x55, - 0x55, 0x55, 0x03, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, - 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, - 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x72, 0x77, 0xdd, 0x9d, 0x00, 0x00, - 0x00, 0x00, 0x76, 0x77, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x72, 0x77, - 0xdd, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x76, 0x77, 0xdc, 0xdd, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x76, 0x77, - 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x72, 0x77, 0xdd, 0x9d, 0x00, 0x00, - 0x00, 0x00, 0x76, 0x77, 0xdc, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x72, 0x77, - 0xdd, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xc0, 0x00, 0x00, - 0x00, 0x00, 0xaa, 0xaa, 0xab, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x56, 0x55, - 0x55, 0xd5, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0x0b, 0xa0, 0x00, 0x00, - 0x00, 0x00, 0x16, 0x50, 0xa5, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xa8, - 0x4b, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x16, 0x50, 0xa5, 0xd2, 0x00, 0x00, - 0x00, 0x00, 0x2a, 0xa8, 0x4b, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x16, 0x50, - 0xa5, 0xd2, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0x4b, 0xa5, 0x00, 0x00, - 0x00, 0x00, 0x56, 0x55, 0x05, 0xd0, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, - 0xab, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x56, 0x55, 0x55, 0xd5, 0x00, 0x00, - 0x00, 0x00, 0x0a, 0xa0, 0x0b, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x46, 0x45, - 0xa5, 0xd2, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0x4b, 0xa5, 0x00, 0x00, - 0x00, 0x00, 0x46, 0x45, 0xa5, 0xd2, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, - 0x4b, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x46, 0x45, 0xa5, 0xd2, 0x00, 0x00, - 0x00, 0x00, 0x0a, 0xa0, 0x0b, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x56, 0x55, - 0x55, 0xd5, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xab, 0xaa, 0x00, 0x00, - 0x00, 0x00, 0x06, 0x40, 0x05, 0xd0, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, - 0x4b, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x46, 0x45, 0xa5, 0xd2, 0x00, 0x00, - 0x00, 0x00, 0xaa, 0xaa, 0x4b, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x46, 0x45, - 0xa5, 0xd2, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0x4b, 0xa5, 0x00, 0x00, - 0x00, 0x00, 0x06, 0x40, 0x05, 0xd0, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, - 0xab, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x56, 0x55, 0x55, 0xd5, 0x00, 0x00, - 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x80, 0xaa, 0xaa, - 0xaa, 0xaa, 0x02, 0x00, 0x00, 0x80, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, 0x00, - 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/terminal.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define terminal_width 64 -#define terminal_height 54 -static char terminal_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x00, 0x80, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x00, - 0x80, 0x55, 0x55, 0x55, 0x55, 0x55, 0xd5, 0x00, 0x80, 0xfa, 0xff, 0xff, - 0xff, 0xff, 0xaf, 0x00, 0x80, 0x05, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, - 0x80, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x00, 0x80, 0xf5, 0xff, 0xff, - 0xff, 0xff, 0xd7, 0x00, 0x80, 0x36, 0x00, 0xf0, 0xff, 0xff, 0xb7, 0x00, - 0x80, 0xb5, 0xff, 0xf7, 0xff, 0xff, 0xd7, 0x00, 0x80, 0x36, 0x00, 0xf0, - 0xff, 0xff, 0xb7, 0x00, 0x80, 0xb5, 0xff, 0xf7, 0xff, 0xff, 0xd7, 0x00, - 0x80, 0xb6, 0xff, 0xf7, 0xff, 0xff, 0xb7, 0x00, 0x80, 0xb5, 0xff, 0xf7, - 0xff, 0xff, 0xd7, 0x00, 0x80, 0xb6, 0xff, 0x07, 0x00, 0x00, 0xb7, 0x00, - 0x80, 0xb5, 0xff, 0xf7, 0xff, 0x7f, 0xd7, 0x00, 0x80, 0xb6, 0xff, 0x07, - 0x00, 0x00, 0xb7, 0x00, 0x80, 0xb5, 0xff, 0x57, 0x55, 0x55, 0xd7, 0x00, - 0x80, 0xb6, 0xff, 0xa7, 0xaa, 0x2a, 0xb7, 0x00, 0x80, 0x35, 0x00, 0x50, - 0x55, 0x55, 0xd7, 0x00, 0x80, 0xf6, 0xff, 0xa9, 0xaa, 0x2a, 0xb7, 0x00, - 0x80, 0xf5, 0xff, 0x55, 0x55, 0x55, 0xd7, 0x00, 0x80, 0xf6, 0xff, 0xa9, - 0xaa, 0x2a, 0xb7, 0x00, 0x80, 0xf5, 0xff, 0x55, 0x55, 0x55, 0xd7, 0x00, - 0x80, 0xf6, 0xff, 0xa9, 0xaa, 0x2a, 0xb7, 0x00, 0x80, 0xf5, 0xff, 0x55, - 0x55, 0x55, 0xd7, 0x00, 0x80, 0x36, 0xe2, 0xa9, 0xaa, 0x2a, 0xb7, 0x00, - 0x80, 0xb5, 0xea, 0x01, 0x00, 0x00, 0xd7, 0x00, 0x80, 0x36, 0xe2, 0xff, - 0xff, 0xff, 0xb7, 0x00, 0x80, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x00, - 0x80, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x00, 0x80, 0x05, 0x00, 0x00, - 0x00, 0x00, 0xd0, 0x00, 0x80, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x00, - 0x80, 0x55, 0x55, 0x55, 0x55, 0x55, 0xd5, 0x00, 0x80, 0xaa, 0xaa, 0xaa, - 0xaa, 0xaa, 0xaa, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x7f, 0x75, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xff, 0x7a, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x75, 0x00, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, - 0xc0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x01, 0x40, 0xdf, 0x7b, 0x6f, - 0xef, 0xbd, 0x77, 0x01, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, - 0xe0, 0xf7, 0xde, 0xfb, 0x7b, 0xef, 0x7d, 0x03, 0xb0, 0xaa, 0xaa, 0xaa, - 0xaa, 0xaa, 0xaa, 0x06, 0xd0, 0x7f, 0xef, 0xbd, 0xbd, 0xf7, 0xde, 0x05, - 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x0a, 0x54, 0x55, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x15, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, - 0x56, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x35, 0xaa, 0xaa, 0xaa, 0xaa, - 0xaa, 0xaa, 0xaa, 0x2a, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f};
--- a/etc/frame-icon/termlock.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define termlock_width 64 -#define termlock_height 54 -static char termlock_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x00, 0x80, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x00, - 0x80, 0x55, 0x55, 0x55, 0x55, 0x55, 0xd5, 0x00, 0x80, 0xfa, 0xff, 0xff, - 0xff, 0xff, 0xaf, 0x00, 0x80, 0x05, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, - 0x80, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x00, 0x80, 0xf5, 0xff, 0xff, - 0xff, 0xff, 0xd7, 0x00, 0x80, 0x36, 0x00, 0xf0, 0xff, 0xff, 0xb7, 0x00, - 0x80, 0xb5, 0xff, 0xf7, 0xff, 0xff, 0xd7, 0x00, 0x80, 0x36, 0x00, 0xf0, - 0xff, 0xff, 0xb7, 0x00, 0x80, 0xb5, 0xff, 0xf7, 0xff, 0xff, 0xd7, 0x00, - 0x20, 0xb6, 0xff, 0xf7, 0xff, 0xff, 0x37, 0x02, 0x50, 0xb4, 0xff, 0xf7, - 0xff, 0xff, 0x17, 0x05, 0x90, 0xb6, 0xff, 0x07, 0x00, 0x00, 0xb7, 0x04, - 0x50, 0xb0, 0xff, 0xf7, 0xff, 0x7f, 0x07, 0x05, 0xa0, 0xb2, 0xff, 0x07, - 0x00, 0x00, 0xa7, 0x02, 0x00, 0xa5, 0xff, 0x57, 0x55, 0x55, 0x53, 0x00, - 0x80, 0xa8, 0xff, 0xa7, 0xaa, 0x2a, 0x8b, 0x00, 0x00, 0x05, 0x00, 0x50, - 0x55, 0x55, 0x50, 0x00, 0x00, 0x2a, 0xff, 0xa9, 0xaa, 0x2a, 0x2a, 0x00, - 0x80, 0x50, 0xfe, 0x55, 0x55, 0x15, 0x85, 0x00, 0x80, 0x8a, 0xfe, 0xa9, - 0xaa, 0xaa, 0xa8, 0x00, 0x80, 0x51, 0xf8, 0x55, 0x55, 0x05, 0xc5, 0x00, - 0x80, 0xa6, 0xf2, 0xa9, 0xaa, 0xa2, 0xb2, 0x00, 0x80, 0x05, 0xe5, 0x55, - 0x55, 0x51, 0xd0, 0x00, 0x80, 0xb6, 0xe8, 0xa9, 0xaa, 0x8a, 0xb6, 0x00, - 0x80, 0x35, 0x85, 0x01, 0x00, 0x50, 0xd6, 0x00, 0x80, 0x36, 0x2a, 0xff, - 0x7f, 0x2a, 0xb7, 0x00, 0x80, 0xf5, 0x51, 0xfe, 0x3f, 0x85, 0xd7, 0x00, - 0x80, 0xe6, 0x8b, 0xfe, 0xbf, 0xe8, 0xb3, 0x00, 0x80, 0x05, 0x50, 0x00, - 0x00, 0x05, 0xd0, 0x00, 0x80, 0xfa, 0xa7, 0xf2, 0xa7, 0xf2, 0xaf, 0x00, - 0x80, 0x55, 0x05, 0x45, 0x51, 0x50, 0xd5, 0x00, 0x80, 0xaa, 0xaa, 0x88, - 0x8a, 0xaa, 0xaa, 0x00, 0x80, 0xff, 0x3f, 0xe5, 0x53, 0xfe, 0xff, 0x00, - 0x00, 0x00, 0x7f, 0x0a, 0x28, 0x75, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, - 0x84, 0x7a, 0x00, 0x00, 0x00, 0x00, 0xff, 0xf7, 0x77, 0x75, 0x00, 0x00, - 0x00, 0x00, 0xff, 0xf7, 0xf7, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, - 0x87, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x37, 0xf6, 0xff, 0xff, 0x00, - 0xc0, 0xaa, 0xaa, 0x32, 0xa6, 0xaa, 0xaa, 0x01, 0x40, 0xdf, 0x7b, 0xfb, - 0xef, 0xbd, 0x77, 0x01, 0xa0, 0xaa, 0xaa, 0xfa, 0xaf, 0xaa, 0xaa, 0x02, - 0xe0, 0xf7, 0xde, 0xfb, 0x6f, 0xef, 0x7d, 0x03, 0xb0, 0xaa, 0xaa, 0xfa, - 0xaf, 0xaa, 0xaa, 0x06, 0xd0, 0x7f, 0xef, 0x79, 0xaf, 0xf7, 0xde, 0x05, - 0xa8, 0xaa, 0xaa, 0x7a, 0xaf, 0xaa, 0xaa, 0x0a, 0x54, 0x55, 0x55, 0x79, - 0x4f, 0x55, 0x55, 0x15, 0xfa, 0xff, 0xff, 0x3b, 0xee, 0xff, 0xff, 0x2f, - 0x56, 0x55, 0x55, 0xf9, 0x4f, 0x55, 0x55, 0x35, 0xaa, 0xaa, 0xaa, 0x02, - 0xa0, 0xaa, 0xaa, 0x2a, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f};
--- a/etc/frame-icon/tex-48.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -#define noname_width 48 -#define noname_height 48 -static char noname_bits[] = { - 0xfc,0xff,0xff,0xff,0xff,0x1f,0x04,0x00,0x00,0x00,0x00,0x10,0x04,0xa2,0xaa, - 0x00,0x00,0x10,0x04,0x10,0xf5,0x77,0x00,0x10,0x84,0xaa,0xbb,0xa0,0x02,0x10, - 0x04,0xf1,0x5f,0x20,0x08,0x10,0xa4,0xea,0xaa,0x2e,0x20,0x10,0x04,0xff,0xff, - 0xff,0x01,0x10,0xa4,0xaa,0xff,0xff,0x8b,0x10,0x54,0xff,0xff,0xfb,0x1f,0x11, - 0xa4,0xea,0xee,0xe2,0x2e,0x12,0x54,0x7f,0xff,0x01,0x30,0x10,0xa4,0xba,0xfe, - 0x83,0xa0,0x10,0xc4,0x1f,0xff,0xc3,0x80,0x13,0xa4,0x0e,0xee,0xee,0x00,0x12, - 0x04,0x07,0xf6,0x7f,0x00,0x10,0x84,0x0b,0xaa,0x2a,0x00,0x10,0x04,0x0f,0xdc, - 0x7f,0x00,0x10,0x04,0x0a,0xa8,0x2a,0x00,0x10,0x04,0x16,0xf0,0x1f,0x00,0x10, - 0x04,0xa9,0xa0,0x02,0x00,0x10,0x04,0x00,0x00,0x00,0x00,0x10,0x04,0x00,0x00, - 0x00,0x00,0x10,0xff,0x7f,0x00,0xe0,0xbf,0x7f,0xff,0x7f,0x00,0xe0,0xbf,0x7f, - 0xcf,0x79,0x00,0x80,0x1f,0x1e,0xc7,0x71,0x00,0x00,0x1f,0x0f,0xc3,0x61,0x00, - 0x00,0xbe,0x07,0xc3,0x61,0x00,0x00,0xfc,0x03,0xc3,0x61,0x00,0x00,0xf8,0x01, - 0xc0,0x01,0x00,0x00,0xf0,0x01,0xc0,0x01,0x00,0x00,0xf0,0x01,0xc0,0xf9,0xff, - 0x07,0xf8,0x03,0xc0,0xf9,0xff,0x07,0xfc,0x07,0xc0,0xe1,0x81,0x07,0x9e,0x0f, - 0xc0,0xc1,0x01,0x07,0x0f,0x1f,0xc0,0xc1,0x61,0x86,0x07,0x3e,0xf8,0xcf,0x61, - 0xe6,0x9f,0xff,0xf8,0xcf,0x71,0xe6,0x9f,0xff,0x00,0xc0,0x7f,0x00,0x00,0x00, - 0x00,0xc0,0x7f,0x00,0x00,0x00,0x00,0xc0,0x71,0x06,0x00,0x00,0x00,0xc0,0x61, - 0x06,0x00,0x00,0x00,0xc0,0x61,0x06,0x00,0x00,0x00,0xc0,0x01,0x07,0x00,0x00, - 0x00,0xe0,0x01,0x07,0x00,0x00,0x00,0xf8,0xff,0x07,0x00,0x00,0x00,0xf8,0xff, - 0x07,0x00,0x00};
--- a/etc/frame-icon/texinfo.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define texinfo.xbm_width 64 -#define texinfo.xbm_height 54 -static char texinfo.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00, - 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x55, 0x92, 0x24, - 0x49, 0x92, 0x3c, 0x00, 0x00, 0x19, 0x49, 0x92, 0x24, 0x49, 0x3c, 0x00, - 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x7d, 0x01, 0x00, 0x59, 0x92, 0x24, - 0x49, 0x92, 0xac, 0x02, 0x00, 0x15, 0x49, 0x92, 0x24, 0x49, 0x7c, 0x01, - 0x00, 0x99, 0x24, 0x49, 0x92, 0x24, 0xbd, 0x02, 0x00, 0x51, 0x92, 0x24, - 0x49, 0x92, 0x7c, 0x01, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x02, - 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0x99, 0x7f, 0xfe, - 0x9c, 0x63, 0xb4, 0x02, 0x00, 0x91, 0x7f, 0xfe, 0x9c, 0x63, 0x7c, 0x01, - 0x00, 0x19, 0x0c, 0x06, 0xfc, 0x63, 0xbc, 0x02, 0x00, 0x15, 0x0c, 0x3e, - 0xf0, 0x60, 0x74, 0x01, 0x00, 0x19, 0x0c, 0x3e, 0x60, 0x60, 0xb4, 0x02, - 0x00, 0x11, 0x0c, 0x06, 0xf0, 0x60, 0x74, 0x01, 0x00, 0x19, 0x0c, 0x06, - 0xfc, 0x63, 0xbc, 0x02, 0x00, 0x15, 0x0c, 0xfe, 0x9c, 0x63, 0x7c, 0x01, - 0x00, 0x19, 0x0c, 0xfe, 0x9c, 0x63, 0xbc, 0x02, 0x00, 0x11, 0x00, 0x00, - 0x00, 0x00, 0x7c, 0x01, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x02, - 0x00, 0x55, 0x92, 0x24, 0x49, 0x92, 0x74, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xb4, 0x02, 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x6d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xac, 0x02, 0x00, 0x15, 0x49, 0x92, - 0x24, 0x49, 0x6c, 0x01, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0xb5, 0x02, - 0x00, 0x51, 0x14, 0x63, 0x92, 0x89, 0x7c, 0x01, 0x00, 0x19, 0xaa, 0x94, - 0x52, 0x0a, 0xac, 0x02, 0x00, 0x95, 0xa2, 0x97, 0xd2, 0x0b, 0x75, 0x01, - 0x00, 0x59, 0xa2, 0x94, 0x52, 0x8a, 0xbc, 0x02, 0x00, 0x11, 0xa2, 0x94, - 0x4c, 0x3a, 0x7c, 0x01, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x02, - 0x00, 0x55, 0x92, 0x24, 0x49, 0x92, 0x7c, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xb4, 0x02, 0x00, 0x91, 0x24, 0x49, 0x92, 0x24, 0x6d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xb4, 0x02, 0x00, 0x15, 0x49, 0x92, - 0x24, 0x49, 0x74, 0x01, 0x00, 0x99, 0x24, 0x49, 0x92, 0x24, 0xb5, 0x02, - 0x00, 0x51, 0x92, 0x24, 0x49, 0x92, 0x74, 0x01, 0x00, 0x19, 0x49, 0x92, - 0x24, 0x49, 0xbc, 0x02, 0x00, 0x95, 0x24, 0x49, 0x92, 0x24, 0x7d, 0x01, - 0x00, 0x59, 0x92, 0x24, 0x49, 0x92, 0xac, 0x02, 0x00, 0x31, 0x00, 0x00, - 0x00, 0x00, 0x6e, 0x01, 0x00, 0xee, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x02, - 0x00, 0x51, 0x3f, 0x1e, 0xfb, 0x3f, 0x7d, 0x01, 0x00, 0xb1, 0xfa, 0xaf, - 0xef, 0xff, 0xbb, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x01, - 0x00, 0xa8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02, 0x00, 0x50, 0x55, 0x55, - 0x55, 0x55, 0x55, 0x01, 0x00, 0xa0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x02};
--- a/etc/frame-icon/tree-48.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -#define tree48_width 48 -#define tree48_height 48 -static char tree48_bits[] = { - 0x00, 0x00, 0x7f, 0x0b, 0x01, 0x00, 0x00, 0x00, 0xbf, 0x16, 0x01, 0x00, - 0x00, 0x00, 0x6f, 0x05, 0x01, 0x00, 0x00, 0x00, 0x7f, 0x1a, 0x01, 0x00, - 0x00, 0x00, 0x7f, 0x35, 0x01, 0x00, 0x00, 0x00, 0xbf, 0x1c, 0x01, 0x00, - 0x00, 0x00, 0x6f, 0x0b, 0x01, 0x00, 0x00, 0x00, 0xef, 0x09, 0x01, 0x00, - 0x00, 0x00, 0x7b, 0x05, 0x01, 0x00, 0x00, 0x00, 0xf1, 0x09, 0x01, 0x00, - 0x00, 0x00, 0x77, 0x1b, 0x01, 0x00, 0x00, 0x00, 0xbb, 0x0d, 0x01, 0x00, - 0x00, 0x00, 0xff, 0x0f, 0x01, 0x00, 0x00, 0x00, 0xff, 0x0b, 0x01, 0x00, - 0x00, 0x00, 0xef, 0x0f, 0x01, 0x00, 0x00, 0x00, 0xff, 0x0f, 0x01, 0x00, - 0x00, 0x00, 0xbb, 0x17, 0x01, 0x00, 0x00, 0x00, 0xe9, 0x1f, 0x01, 0x00, - 0x00, 0x00, 0xf3, 0x3f, 0x03, 0x00, 0x00, 0x80, 0xf9, 0x3f, 0x07, 0x00, - 0x00, 0x80, 0xe5, 0x2e, 0x07, 0x00, 0x00, 0xc0, 0x7b, 0xdf, 0x0e, 0x00, - 0x00, 0xf0, 0xff, 0xfc, 0x0f, 0x00, 0x00, 0xf8, 0x7f, 0xfd, 0xff, 0x00, - 0x00, 0xfc, 0xff, 0xff, 0xff, 0x03, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x07, - 0x80, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xe0, 0xff, 0xff, 0x7f, 0x79, 0x0e, - 0xf0, 0xe7, 0x3f, 0x7d, 0x79, 0x1d, 0xfc, 0x33, 0x1e, 0x39, 0x72, 0x3c, - 0xfc, 0x73, 0x3e, 0x39, 0xe4, 0x38, 0xde, 0x93, 0x5e, 0x39, 0xe2, 0x78, - 0xce, 0x15, 0x4f, 0x7a, 0xc4, 0x75, 0xcf, 0xa5, 0x1f, 0xbc, 0xa4, 0x45, - 0xcf, 0x95, 0x3b, 0x3a, 0x91, 0xc3, 0xcf, 0x89, 0x59, 0x3a, 0xca, 0x63, - 0xe3, 0x99, 0x59, 0xfa, 0xe0, 0x57, 0xe3, 0xab, 0x99, 0xd8, 0x71, 0xd6, - 0xe3, 0xcb, 0x91, 0xd8, 0x31, 0x56, 0xa3, 0xea, 0x12, 0x4c, 0x11, 0x55, - 0x92, 0x72, 0x12, 0x4a, 0x93, 0x8c, 0x92, 0x72, 0x11, 0x49, 0x57, 0x14, - 0x92, 0x32, 0x12, 0x4d, 0x94, 0x92, 0x11, 0x11, 0x22, 0x09, 0x82, 0x42, - 0x91, 0x12, 0xa1, 0x10, 0x61, 0x64, 0xca, 0x22, 0x10, 0x91, 0x50, 0x04, - 0x44, 0x22, 0x08, 0x09, 0x89, 0x08, 0x2a, 0x14, 0x10, 0x12, 0x89, 0x10};
--- a/etc/frame-icon/tree.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define tree_width 64 -#define tree_height 64 -static char tree_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x04, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x25, - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x15, 0x69, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x11, 0x26, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x26, - 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x42, 0x83, 0x01, 0x00, 0x00, - 0x00, 0x98, 0x2d, 0xc2, 0x4a, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x47, 0xe0, - 0x5c, 0x29, 0x00, 0x00, 0x00, 0x80, 0x45, 0xa2, 0x29, 0x19, 0x00, 0x00, - 0x00, 0x06, 0x4b, 0xc2, 0x10, 0xee, 0x00, 0x00, 0x00, 0x34, 0x0a, 0xa3, - 0x98, 0x03, 0x00, 0x00, 0x80, 0x00, 0x16, 0x61, 0xe0, 0x00, 0x00, 0x00, - 0x80, 0x40, 0x94, 0x51, 0x69, 0x04, 0x00, 0x00, 0x00, 0x01, 0x04, 0xb9, - 0x24, 0xeb, 0x02, 0x00, 0x00, 0x03, 0xd9, 0x14, 0x12, 0x04, 0x00, 0x00, - 0xe0, 0x17, 0x8c, 0xc0, 0x10, 0x00, 0x00, 0x00, 0x00, 0xe3, 0xda, 0x48, - 0x08, 0x00, 0x01, 0x00, 0x80, 0x01, 0x66, 0x28, 0x48, 0xaf, 0x01, 0x00, - 0x00, 0x00, 0x38, 0x38, 0x5e, 0x28, 0x00, 0x00, 0x00, 0x30, 0xb5, 0x10, - 0x06, 0x07, 0x00, 0x00, 0x00, 0x4d, 0x2c, 0x22, 0x02, 0x01, 0x01, 0x00, - 0xc0, 0xc1, 0x30, 0x66, 0xeb, 0x5d, 0x06, 0x00, 0x40, 0xa0, 0x21, 0x04, - 0x23, 0x00, 0x01, 0x00, 0x00, 0xc0, 0x23, 0x4c, 0x21, 0xe8, 0x06, 0x00, - 0xc0, 0x9b, 0x66, 0x0c, 0xa1, 0x50, 0x08, 0x00, 0x00, 0xb8, 0x65, 0x84, - 0x89, 0xa0, 0x03, 0x00, 0x00, 0x08, 0x6a, 0x98, 0x44, 0x10, 0x0c, 0x00, - 0x00, 0x96, 0x34, 0x80, 0x40, 0x08, 0x10, 0x00, 0x00, 0x00, 0x7a, 0x0c, - 0x40, 0x17, 0x0d, 0x00, 0x00, 0x00, 0x70, 0x98, 0xc0, 0x51, 0x1c, 0x00, - 0x00, 0x38, 0xc0, 0x18, 0x30, 0xc4, 0x03, 0x00, 0x00, 0x5c, 0xe1, 0x98, - 0x1c, 0x44, 0x01, 0x00, 0x00, 0x0c, 0x2c, 0x48, 0x07, 0x74, 0x00, 0x00, - 0x00, 0x76, 0x6a, 0x88, 0x07, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x40, 0x02, - 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0x04, 0xbd, 0x0a, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x84, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc9, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc8, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x60, 0x84, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x80, - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xd7, 0xff, 0x00, 0x00, 0x00, - 0x00, 0x80, 0x6b, 0x93, 0xf7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/wizard.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define wizard_width 64 -#define wizard_height 54 -static char wizard_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, - 0x03, 0x00, 0xc0, 0x3f, 0x00, 0x00, 0xf0, 0xff, 0x03, 0x00, 0x20, 0x40, - 0x00, 0x00, 0xf8, 0xfe, 0x07, 0x00, 0x50, 0x92, 0x00, 0x00, 0x3c, 0xfe, - 0x0f, 0x00, 0x68, 0xd9, 0x00, 0x00, 0x0c, 0xfc, 0x1f, 0x00, 0x64, 0x4d, - 0x00, 0x00, 0x04, 0xd7, 0x1f, 0x00, 0xb2, 0x7e, 0x00, 0x00, 0xc0, 0xff, - 0x1f, 0x00, 0xfc, 0x5f, 0x00, 0x00, 0xa0, 0xff, 0xcf, 0x0f, 0x10, 0x7f, - 0x00, 0xc0, 0x7f, 0x00, 0xf0, 0x33, 0x10, 0x4e, 0x00, 0x70, 0xf0, 0xff, - 0x7f, 0x40, 0x18, 0x26, 0x00, 0xe8, 0xc3, 0xff, 0x03, 0x9f, 0x1c, 0x22, - 0x00, 0xfc, 0x1f, 0x00, 0xc0, 0x7f, 0x9c, 0x11, 0x00, 0xfc, 0x7f, 0x00, - 0xf8, 0x7f, 0xce, 0x08, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x1f, 0x6e, 0x04, - 0x00, 0x00, 0x9e, 0x6d, 0x72, 0x07, 0x6f, 0x02, 0x00, 0x80, 0x3f, 0xc6, - 0x38, 0xff, 0x6f, 0x06, 0x00, 0xf8, 0xfb, 0xc3, 0xdf, 0x7e, 0x77, 0x06, - 0x00, 0xfc, 0xfd, 0xe7, 0x9f, 0x7d, 0x77, 0x07, 0x80, 0xff, 0xd7, 0xbd, - 0x03, 0x9f, 0xea, 0x0f, 0x70, 0xc0, 0xab, 0x7e, 0x0a, 0xd7, 0x73, 0x0f, - 0x88, 0x05, 0x1f, 0xba, 0x82, 0xce, 0xe6, 0x0f, 0x64, 0x00, 0x2e, 0x82, - 0xc0, 0x8f, 0x43, 0x0f, 0x36, 0x30, 0x0c, 0x00, 0x00, 0x37, 0xf8, 0x0f, - 0x3a, 0x18, 0xb9, 0x00, 0xc0, 0x5f, 0x76, 0x0f, 0x3a, 0x80, 0x19, 0x00, - 0x88, 0xff, 0xff, 0x0f, 0x7b, 0xc0, 0xd8, 0x02, 0xd0, 0xff, 0x7f, 0x0f, - 0x7b, 0xfc, 0x7c, 0x40, 0xf4, 0xff, 0xff, 0x07, 0xb3, 0xbb, 0xbe, 0x09, - 0xe5, 0xff, 0xbf, 0x07, 0xbf, 0x9b, 0xfd, 0x5d, 0xef, 0xff, 0xff, 0x07, - 0x3b, 0x99, 0xfe, 0xdf, 0xff, 0xff, 0xde, 0x03, 0x23, 0x49, 0xff, 0xff, - 0xff, 0xff, 0xdf, 0x03, 0x1f, 0xf2, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0x01, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0x01, 0xfe, 0xf7, 0xfd, 0xff, - 0xf7, 0xff, 0xfd, 0x01, 0xfe, 0xf7, 0xff, 0xff, 0xff, 0xbf, 0xdb, 0x00, - 0xfc, 0xb7, 0xff, 0xfe, 0x7f, 0xff, 0x0f, 0x00, 0xfc, 0xb7, 0xff, 0xff, - 0xf7, 0x7f, 0x01, 0x00, 0xfc, 0xdf, 0xff, 0xfe, 0xff, 0xfd, 0x03, 0x00, - 0xf8, 0xcb, 0xff, 0xff, 0xef, 0xf7, 0x0f, 0x00, 0xf0, 0xf1, 0x7b, 0xef, - 0xff, 0xff, 0x1f, 0x00, 0x00, 0xfc, 0xef, 0xff, 0xff, 0xef, 0x7f, 0x00, - 0x80, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0x01, 0xf0, 0x0f, 0xfc, 0xef, - 0xff, 0x3e, 0xe0, 0x03, 0xf8, 0x27, 0xfa, 0xf7, 0xfb, 0x4d, 0x48, 0x00, - 0x80, 0xc1, 0xf7, 0xff, 0xfe, 0xf7, 0x85, 0x00, 0x80, 0x6a, 0xc0, 0xff, - 0x7f, 0x00, 0xaf, 0x01, 0x40, 0x1c, 0x00, 0x3c, 0x00, 0x00, 0x38, 0x02, - 0x40, 0x04, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0xc0, 0x03, 0x00, 0x00, - 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/words.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define Words_width 64 -#define Words_height 54 -static char Words_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x09, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x24, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x92, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x24, - 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x92, 0x24, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x24, 0x48, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x04, - 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x92, 0x24, 0x01, 0x00, 0x00, - 0x00, 0x80, 0x24, 0x49, 0x12, 0x02, 0x00, 0x00, 0x00, 0x40, 0x12, 0x20, - 0x49, 0x04, 0x00, 0x00, 0x00, 0x20, 0x49, 0x92, 0x24, 0x09, 0x00, 0x00, - 0x00, 0x10, 0x20, 0x01, 0x82, 0x10, 0x00, 0x00, 0x00, 0x48, 0x92, 0x24, - 0x49, 0x22, 0x00, 0x00, 0x00, 0x24, 0x09, 0x92, 0x24, 0x41, 0x00, 0x00, - 0x00, 0x12, 0x20, 0x49, 0x92, 0x84, 0x00, 0x00, 0x00, 0x41, 0x92, 0x24, - 0x08, 0x02, 0x01, 0x00, 0x80, 0x24, 0x09, 0x82, 0x20, 0x01, 0x02, 0x00, - 0x40, 0x12, 0x20, 0x48, 0x12, 0x00, 0x04, 0x00, 0x20, 0x49, 0x92, 0x04, - 0x49, 0x00, 0x08, 0x00, 0x40, 0x24, 0x49, 0x92, 0x24, 0x00, 0x10, 0x00, - 0x80, 0x90, 0x04, 0x09, 0x12, 0x00, 0x20, 0x00, 0x00, 0x49, 0x10, 0x20, - 0x09, 0x00, 0x40, 0x00, 0x00, 0x22, 0x49, 0x92, 0x00, 0x00, 0x80, 0x00, - 0x00, 0x84, 0x24, 0x09, 0x02, 0x00, 0x40, 0x00, 0x00, 0x48, 0x92, 0x24, - 0x01, 0x00, 0x20, 0x00, 0x00, 0x10, 0x49, 0x12, 0x00, 0x00, 0x10, 0x00, - 0x00, 0x20, 0x24, 0x49, 0xf0, 0x03, 0x08, 0x00, 0x00, 0x40, 0x92, 0x20, - 0x08, 0x04, 0x04, 0x00, 0x00, 0x80, 0x48, 0x12, 0x04, 0x08, 0x02, 0x00, - 0x00, 0x00, 0x21, 0x01, 0x32, 0x10, 0x01, 0x00, 0x00, 0x00, 0x92, 0x04, - 0x4e, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x44, 0xf2, 0xfb, 0xc7, 0x03, 0x00, - 0x00, 0x00, 0x08, 0x09, 0x31, 0x80, 0x03, 0x00, 0x00, 0x00, 0x90, 0x04, - 0x02, 0x80, 0x03, 0x00, 0x00, 0x00, 0x20, 0x02, 0x04, 0x80, 0x03, 0x00, - 0x00, 0x00, 0x40, 0x00, 0x18, 0x80, 0x03, 0x00, 0x00, 0x00, 0x80, 0x00, - 0xe0, 0x9f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe1, 0x03, 0x00, - 0x00, 0x00, 0x00, 0x02, 0x80, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x04, - 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/world-inv.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define face_width 64 -#define face_height 64 -static char face_bits[] = { - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xfe, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x45, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xbe, - 0x57, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xd3, 0xfa, 0xfa, 0xff, 0xff, - 0xff, 0xff, 0x77, 0xbe, 0xee, 0xeb, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xfd, - 0xb1, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xed, 0xef, 0xcb, 0xab, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0x6e, 0xdd, 0xff, 0xff, 0xff, 0x7f, 0xdb, 0x7f, - 0xab, 0x77, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xfe, 0xff, - 0xff, 0xbf, 0xfe, 0x6e, 0xf5, 0xbb, 0xfd, 0xff, 0xff, 0xff, 0xdb, 0xff, - 0xff, 0x57, 0xfd, 0xff, 0xff, 0xef, 0xfe, 0x5f, 0xfd, 0xaf, 0xfa, 0xff, - 0xff, 0xbf, 0x7f, 0xfb, 0xba, 0xaf, 0xf6, 0xff, 0xff, 0xf7, 0xdb, 0x7f, - 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xbe, 0xd5, 0xfe, 0xef, 0xed, 0xff, - 0xff, 0xf7, 0x5b, 0xfd, 0xb7, 0x7f, 0xfd, 0xff, 0xff, 0xff, 0x5f, 0xea, - 0xff, 0xff, 0xfe, 0xff, 0xff, 0xbd, 0xb9, 0xbe, 0xde, 0xff, 0xfd, 0xff, - 0xff, 0xfb, 0xab, 0x76, 0xfb, 0xff, 0xdf, 0xff, 0xff, 0xfd, 0x7f, 0xff, - 0xa4, 0xff, 0xfb, 0xff, 0xff, 0xdb, 0x5b, 0xdd, 0xd5, 0xff, 0xff, 0xff, - 0xff, 0xfd, 0xfe, 0xbb, 0xa5, 0xef, 0xf6, 0xff, 0xff, 0xfb, 0x6f, 0xad, - 0x52, 0xdd, 0xbf, 0xff, 0xff, 0xf5, 0xdf, 0x55, 0x49, 0xfe, 0xff, 0xff, - 0xff, 0xbb, 0xef, 0x5e, 0x92, 0xae, 0xff, 0xff, 0xff, 0xf5, 0xfe, 0xad, - 0x22, 0xdb, 0xdf, 0xff, 0xff, 0xa5, 0xbb, 0x5f, 0x55, 0x74, 0xff, 0xff, - 0xff, 0xdb, 0xde, 0x3e, 0x89, 0xba, 0xd7, 0xff, 0xff, 0x55, 0xb5, 0x9f, - 0x64, 0xfc, 0xfd, 0xff, 0xff, 0xa3, 0xdf, 0x56, 0x4a, 0xb9, 0xef, 0xff, - 0xff, 0x27, 0xbf, 0x2f, 0xa9, 0xea, 0xfe, 0xff, 0xff, 0x47, 0xdf, 0x5f, - 0xa2, 0xac, 0xdb, 0xff, 0xff, 0x2f, 0x6d, 0x15, 0x50, 0x75, 0xfb, 0xff, - 0xff, 0x57, 0xba, 0x02, 0x2a, 0xa9, 0xee, 0xff, 0xff, 0xaf, 0xd6, 0x48, - 0x84, 0xaa, 0xfa, 0xff, 0xff, 0xbf, 0x2a, 0x02, 0x30, 0x55, 0xfa, 0xff, - 0xff, 0xbf, 0x8a, 0x00, 0x4a, 0x2b, 0xfd, 0xff, 0xff, 0xbf, 0x55, 0x11, - 0x51, 0x55, 0xff, 0xff, 0xff, 0x7f, 0xad, 0x04, 0x54, 0xd5, 0xfe, 0xff, - 0xff, 0xff, 0x95, 0x90, 0x28, 0xa9, 0xff, 0xff, 0xff, 0xff, 0x77, 0x05, - 0xaa, 0xea, 0xff, 0xff, 0xff, 0xff, 0xad, 0x50, 0x24, 0xb5, 0xff, 0xff, - 0xff, 0xff, 0x17, 0x05, 0x51, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x5f, 0x51, - 0x4a, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, 0xa4, 0xfe, 0xff, 0xff, - 0xff, 0xff, 0xff, 0x25, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
--- a/etc/frame-icon/world.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -#define world.xbm_width 64 -#define world.xbm_height 64 -static char world.xbm_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, - 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, - 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x83, 0x83, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x70, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, - 0x01, 0x70, 0x00, 0x00, 0x00, 0x80, 0x03, 0x40, 0x01, 0x80, 0x03, 0x00, - 0x00, 0x60, 0x00, 0xba, 0x5f, 0x00, 0x0c, 0x00, 0x00, 0x1c, 0x80, 0x41, - 0xa8, 0x02, 0x70, 0x00, 0x80, 0x03, 0x40, 0x2c, 0x05, 0x05, 0x80, 0x03, - 0x70, 0x00, 0x88, 0x41, 0x11, 0x14, 0x00, 0x04, 0x08, 0x00, 0x60, 0x02, - 0x4e, 0x09, 0x00, 0x0e, 0x1c, 0x00, 0x12, 0x10, 0x34, 0x54, 0x00, 0x1f, - 0x3e, 0x00, 0x00, 0x00, 0x91, 0x22, 0x00, 0x1f, 0x3e, 0x80, 0x24, 0x80, - 0x54, 0x88, 0x00, 0x1f, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x81, 0x0f, - 0xfc, 0x41, 0x01, 0x91, 0x0a, 0x44, 0x72, 0x04, 0x08, 0x1e, 0x24, 0x00, - 0x00, 0xa8, 0x0e, 0x04, 0x08, 0x10, 0x01, 0xa0, 0x02, 0x50, 0x05, 0x04, - 0x08, 0x40, 0x80, 0x04, 0x45, 0x50, 0x09, 0x04, 0x08, 0x08, 0x24, 0x80, - 0x00, 0x40, 0x00, 0x04, 0x08, 0x00, 0x41, 0x2a, 0x01, 0x10, 0x12, 0x04, - 0x08, 0x08, 0xa4, 0x02, 0x48, 0x80, 0x02, 0x04, 0x08, 0x00, 0xa0, 0x15, - 0x00, 0x00, 0x01, 0x04, 0x08, 0x42, 0x46, 0x41, 0x21, 0x00, 0x02, 0x04, - 0x08, 0x04, 0x54, 0x89, 0x04, 0x00, 0x20, 0x04, 0x08, 0x02, 0x80, 0x00, - 0x5b, 0x00, 0x04, 0x04, 0x08, 0x24, 0xa4, 0x22, 0x2a, 0x00, 0x00, 0x04, - 0x08, 0x02, 0x01, 0x44, 0x5a, 0x10, 0x09, 0x04, 0x08, 0x04, 0x90, 0x52, - 0xad, 0x22, 0x40, 0x04, 0x08, 0x0a, 0x20, 0xaa, 0xb6, 0x01, 0x00, 0x04, - 0x08, 0x44, 0x10, 0xa1, 0x6d, 0x51, 0x00, 0x04, 0x08, 0x0a, 0x01, 0x52, - 0xdd, 0x24, 0x20, 0x04, 0x08, 0x5a, 0x44, 0xa0, 0xaa, 0x8b, 0x00, 0x04, - 0x08, 0x24, 0x21, 0xc1, 0x76, 0x45, 0x28, 0x04, 0x08, 0xaa, 0x4a, 0x60, - 0x9b, 0x03, 0x02, 0x04, 0x08, 0x5c, 0x20, 0xa9, 0xb5, 0x46, 0x10, 0x04, - 0x08, 0xd8, 0x40, 0xd0, 0x56, 0x15, 0x01, 0x04, 0x08, 0xb8, 0x20, 0xa0, - 0x5d, 0x53, 0x24, 0x04, 0x08, 0xd0, 0x92, 0xea, 0xaf, 0x8a, 0x04, 0x04, - 0x08, 0xa8, 0x45, 0xfd, 0xd5, 0x56, 0x11, 0x04, 0x08, 0x50, 0x29, 0xb7, - 0x7b, 0x55, 0x05, 0x04, 0x08, 0x40, 0xd5, 0xfd, 0xcf, 0xaa, 0x05, 0x04, - 0x08, 0x40, 0x75, 0xff, 0xb5, 0xd4, 0x02, 0x04, 0x08, 0x40, 0xaa, 0xee, - 0xae, 0xaa, 0x01, 0x04, 0x08, 0xa0, 0x52, 0xfb, 0xab, 0x2a, 0x07, 0x04, - 0x08, 0x18, 0x6a, 0x6f, 0xd7, 0x56, 0x08, 0x04, 0x1c, 0x06, 0x88, 0xfa, - 0x55, 0x15, 0x10, 0x0e, 0xbe, 0x01, 0x52, 0xaf, 0xdb, 0x4a, 0x60, 0x1f, - 0x7e, 0x00, 0xe8, 0xfa, 0xae, 0x02, 0x80, 0x1f, 0x3e, 0x00, 0xa0, 0xae, - 0xb5, 0x0a, 0x00, 0x1f, 0x1c, 0x00, 0x00, 0x75, 0x5b, 0x01, 0x00, 0x0e, - 0x38, 0x00, 0x00, 0xda, 0x57, 0x00, 0x00, 0x07, 0xc0, 0x03, 0x00, 0x80, - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x3c, 0x00, 0x80, 0x00, 0x00, 0x0f, 0x00, - 0x00, 0xc0, 0x07, 0x80, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x78, 0xc0, - 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe7, 0xf3, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/xmosaic.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -#define xmosaic_width 64 -#define xmosaic_height 54 -static char xmosaic_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x1f, - 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0xfc, 0xff, - 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x0e, - 0x00, 0x80, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, - 0x00, 0x00, 0xc0, 0x01, 0x00, 0xe0, 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, - 0x00, 0x30, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x18, 0xfc, 0xff, - 0xff, 0xff, 0xff, 0x03, 0x00, 0x0c, 0x3e, 0x00, 0x00, 0x00, 0xc0, 0x01, - 0x00, 0x84, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc2, 0x03, 0x00, - 0x00, 0x00, 0x38, 0x00, 0x00, 0xe2, 0xc0, 0xff, 0xff, 0xff, 0x7f, 0x00, - 0x00, 0x61, 0xf0, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x31, 0xfc, 0xff, - 0xff, 0xff, 0x7f, 0x00, 0x00, 0x18, 0x1e, 0x00, 0x00, 0x00, 0x38, 0x00, - 0x00, 0x08, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0xe0, - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x84, 0x01, 0xf8, 0x3f, 0x00, 0x00, 0x00, - 0x00, 0xc2, 0x00, 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0xfe, - 0xff, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, - 0x00, 0x20, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x10, 0x80, 0xff, - 0xff, 0x03, 0x00, 0x00, 0x00, 0x10, 0x80, 0xff, 0xff, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x80, 0xff, 0xff, 0x03, 0x10, 0x00, 0x00, 0x00, 0x80, 0xff, - 0xff, 0x03, 0x10, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x08, 0x00, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x88, 0x00, 0x00, 0x00, 0x00, 0xfe, - 0xff, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0x00, 0x86, 0x00, - 0x00, 0x00, 0x00, 0xf8, 0x3f, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0xe0, - 0x0f, 0x80, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x21, 0x00, - 0x00, 0x38, 0x00, 0x00, 0x00, 0xf0, 0x30, 0x00, 0x00, 0xfc, 0xff, 0xff, - 0xff, 0x7f, 0x18, 0x01, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x1f, 0x0c, 0x01, - 0x00, 0xfc, 0xff, 0xff, 0xff, 0x07, 0x8e, 0x00, 0x00, 0x38, 0x00, 0x00, - 0x00, 0x80, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x43, 0x00, - 0x00, 0x07, 0x00, 0x00, 0x00, 0xf8, 0x60, 0x00, 0x80, 0xff, 0xff, 0xff, - 0xff, 0x7f, 0x30, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x18, 0x00, - 0x80, 0xff, 0xff, 0xff, 0xff, 0x03, 0x0e, 0x00, 0x00, 0x07, 0x00, 0x00, - 0x00, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x03, 0x00, - 0xe0, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0xf0, 0xff, 0xff, 0xff, - 0xff, 0x7f, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, - 0xf0, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/frame-icon/ying-yang-48.xbm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -#define yinyang_width 48 -#define yinyang_height 48 -static char yinyang_bits[] = { - 0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0x01, 0x00, - 0x00, 0xc0, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x30, 0x00, 0xc0, 0x1f, 0x00, - 0x00, 0x08, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x06, 0x00, 0x00, 0xfe, 0x00, - 0x00, 0x01, 0x00, 0x00, 0xfe, 0x01, 0x80, 0x00, 0x00, 0x00, 0xfc, 0x03, - 0x40, 0x00, 0x00, 0x00, 0xfc, 0x07, 0x40, 0x00, 0x00, 0x00, 0xf8, 0x07, - 0x20, 0x00, 0x80, 0x03, 0xf8, 0x0f, 0x10, 0x00, 0xc0, 0x07, 0xf8, 0x1f, - 0x10, 0x00, 0xc0, 0x07, 0xf8, 0x1f, 0x08, 0x00, 0xc0, 0x07, 0xf8, 0x3f, - 0x08, 0x00, 0x80, 0x03, 0xf8, 0x3f, 0x04, 0x00, 0x00, 0x00, 0xf8, 0x7f, - 0x04, 0x00, 0x00, 0x00, 0xfc, 0x7f, 0x04, 0x00, 0x00, 0x00, 0xfc, 0x7f, - 0x04, 0x00, 0x00, 0x00, 0xfe, 0x7f, 0x02, 0x00, 0x00, 0x00, 0xfe, 0xff, - 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0xc0, 0xff, 0xff, - 0x02, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x02, 0x00, 0xe0, 0xff, 0xff, 0xff, - 0x02, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, - 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x80, 0xff, 0xff, 0xff, 0xff, - 0x04, 0x80, 0xff, 0xff, 0xff, 0x7f, 0x04, 0xc0, 0xff, 0xff, 0xff, 0x7f, - 0x04, 0xc0, 0xff, 0xff, 0xff, 0x7f, 0x04, 0xe0, 0xff, 0xff, 0xff, 0x7f, - 0x08, 0xe0, 0x7f, 0xfc, 0xff, 0x3f, 0x08, 0xe0, 0x3f, 0xf8, 0xff, 0x3f, - 0x10, 0xe0, 0x3f, 0xf8, 0xff, 0x1f, 0x10, 0xe0, 0x3f, 0xf8, 0xff, 0x1f, - 0x20, 0xe0, 0x7f, 0xfc, 0xff, 0x0f, 0x40, 0xe0, 0xff, 0xff, 0xff, 0x07, - 0x40, 0xc0, 0xff, 0xff, 0xff, 0x07, 0x80, 0xc0, 0xff, 0xff, 0xff, 0x03, - 0x00, 0x81, 0xff, 0xff, 0xff, 0x01, 0x00, 0x86, 0xff, 0xff, 0xff, 0x00, - 0x00, 0x08, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x30, 0xfe, 0xff, 0x1f, 0x00, - 0x00, 0xc0, 0xf8, 0xff, 0x0f, 0x00, 0x00, 0x00, 0xef, 0xff, 0x01, 0x00, - 0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
--- a/etc/time/0.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"```a````a", -"```a````a", -"``a````a`", -"``a````a`", -"`````````", -"`a````a``", -"`a````a``", -"a````a```", -"a````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/1.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` s ledbg c None", -"a s ledfg c #CA1E1C", -/* pixels */ -"`````````", -"`````````", -"````````a", -"````````a", -"```````a`", -"```````a`", -"`````````", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"`````````", -"`````````" -};
--- a/etc/time/2.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"````````a", -"````````a", -"```````a`", -"```````a`", -"``aaaaa``", -"`a```````", -"`a```````", -"a````````", -"a````````", -"aaaaa````", -"`````````" -};
--- a/etc/time/3.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"````````a", -"````````a", -"```````a`", -"```````a`", -"``aaaaa``", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/4.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"`````````", -"```a````a", -"```a````a", -"``a````a`", -"``a````a`", -"``aaaaa``", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"`````````", -"`````````" -};
--- a/etc/time/5.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"```a`````", -"```a`````", -"``a``````", -"``a``````", -"``aaaaa``", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/6.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"```a`````", -"```a`````", -"``a``````", -"``a``````", -"``aaaaa``", -"`a````a``", -"`a````a``", -"a````a```", -"a````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/7.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"````````a", -"````````a", -"```````a`", -"```````a`", -"`````````", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"`````````", -"`````````" -};
--- a/etc/time/8.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"```a````a", -"```a````a", -"``a````a`", -"``a````a`", -"``aaaaa``", -"`a````a``", -"`a````a``", -"a````a```", -"a````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/9.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"````aaaaa", -"```a````a", -"```a````a", -"``a````a`", -"``a````a`", -"``aaaaa``", -"``````a``", -"``````a``", -"`````a```", -"`````a```", -"aaaaa````", -"`````````" -};
--- a/etc/time/am.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"4 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"````", -"``aa", -"``aa", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````" -};
--- a/etc/time/dp.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"9 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"`````````", -"`````````", -"`````````", -"`````````", -"````a````", -"````a````", -"`````````", -"```a`````", -"```a`````", -"`````````", -"`````````", -"`````````", -"`````````" -};
--- a/etc/time/l-0.0.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 2 1", -/* colors */ -"` s None c None", -". s pad-color c #606060", -/* pixels */ -"``````....", -"``````....", -"`````.....", -"`````.....", -"````......", -"````......", -"```.......", -"```.......", -"``........", -"``........", -"`.........", -"`.........", -".........." -};
--- a/etc/time/l-0.5.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 3 1", -/* colors */ -"` s None c None", -"a c #0AB224", -". s pad-color c #606060", -/* pixels */ -"``````....", -"``````....", -"`````.....", -"`````.....", -"````......", -"````......", -"```.......", -"```.......", -"``........", -"``........", -"`.........", -"`aaaaaaaaa", -".........." -};
--- a/etc/time/l-1.0.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 3 1", -/* colors */ -"` s None c None", -"a c #0AB224", -". s pad-color c #606060", -/* pixels */ -"``````....", -"``````....", -"`````.....", -"`````.....", -"````......", -"````......", -"```.......", -"```.......", -"``........", -"``aaaaaaaa", -"`.........", -"`aaaaaaaaa", -".........." -};
--- a/etc/time/l-1.5.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 4 1", -/* colors */ -"` s None c None", -"a c #2AD244", -"b c #DEE614", -". s pad-color c #606060", -/* pixels */ -"``````....", -"``````....", -"`````.....", -"`````.....", -"````......", -"````......", -"```.......", -"```bbbbbbb", -"``........", -"``aaaaaaaa", -"`.........", -"`aaaaaaaaa", -".........." -};
--- a/etc/time/l-2.0.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 4 1", -/* colors */ -"` s None c None", -"a c #0AB224", -"b c #DEE614", -". s pad-color c #606060", -/* pixels */ -"``````....", -"``````....", -"`````.....", -"`````.....", -"````......", -"````bbbbbb", -"```.......", -"```bbbbbbb", -"``........", -"``aaaaaaaa", -"`.........", -"`aaaaaaaaa", -".........." -};
--- a/etc/time/l-2.5.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 5 1", -/* colors */ -"a s None c None", -"` c #FE0204", -"b c #0AB224", -"c c #DEE614", -". s pad-color c #606060", -/* pixels */ -"aaaaaa....", -"aaaaaa....", -"aaaaa.....", -"aaaaa`````", -"aaaa......", -"aaaacccccc", -"aaa.......", -"aaaccccccc", -"aa........", -"aabbbbbbbb", -"a.........", -"abbbbbbbbb", -".........." -};
--- a/etc/time/l-3.0.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"10 13 5 1", -/* colors */ -"a s None c None", -"` c #FE0204", -"b c #0AB224", -"c c #DEE614", -". s pad-color c #606060", -/* pixels */ -"aaaaaa....", -"aaaaaa````", -"aaaaa.....", -"aaaaa`````", -"aaaa......", -"aaaacccccc", -"aaa.......", -"aaaccccccc", -"aa........", -"aabbbbbbbb", -"a.........", -"abbbbbbbbb", -".........." -};
--- a/etc/time/letter.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -/* XPM */ -static char * jmail_xpm[] = { -"18 13 4 1", -" s None c None", -". c gray85", -"X c yellow", -"o c black", -" ", -" ", -" .XXXXXXXXXXX. ", -" XoXXXXXXXXXoXoo", -" XXoXXXXXXXoXXoo", -" XXXoXXXXXoXXXoo", -" XXX.oXXXo.XXXoo", -" XXXo.oXo.oXXXoo", -" XXoXXXoXXXoXXoo", -" XoXXXXXXXXXoXoo", -" .XXXXXXXXXXX.oo", -" ooooooooooooo", -" ooooooooooooo"};
--- a/etc/time/no-letter.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -/* XPM */ -static char * jmail_xpm[] = { -"18 13 4 1", -" s None c None", -". c gray55", -"o c black", -"x c gray95", -" ", -" ", -" ooooooooooooox ", -" o.xxxxxxxxx.ox ", -" oxox oxox ", -" ox ox ox ox ", -" ox ox ox ox ", -" ox oxoxoxox ox ", -" oxox ox oxox ", -" o.x .ox ", -" ooooooooooooox ", -" xxxxxxxxxxxxxx ", -" "};
--- a/etc/time/pm.xpm Mon Aug 13 10:12:39 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -/* XPM */ -static char *noname[] = { -/* width height ncolors chars_per_pixel */ -"4 13 2 1", -/* colors */ -"` c None s ledbg", -"a c #CA1E1C s ledfg", -/* pixels */ -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"````", -"aa``", -"aa``", -"````" -};
--- a/lisp/ChangeLog Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/ChangeLog Mon Aug 13 10:13:02 2007 +0200 @@ -1,3 +1,29 @@ +1997-12-25 SL Baur <steve@altair.xemacs.org> + + * x-init.el (x-initialize-keyboard): Don't load x-win*.el files, + call a dumped routine instead. + + * x-win-xfree86.el: Wrap file in defun. + * x-win-sun.el: Ditto. + +1997-12-23 SL Baur <steve@altair.xemacs.org> + + * help.el (view-emacs-news): Remove usage of outl-mouse which + advises functions and does other evil things. + +1997-12-22 SL Baur <steve@altair.xemacs.org> + + * format.el (format-alist): Add `image/tiff'. + From P. E. Jareth Hein <jareth@camelot-soft.com> + +1997-12-21 SL Baur <steve@altair.xemacs.org> + + * about.el (about-hackers): More names added. + + * make-docfile.el: Remove superfluous package path search. + + * loaddefs.el: Commentary changes. Removal of VM autoloads. + 1997-12-20 SL Baur <steve@altair.xemacs.org> * shadow.el (find-emacs-lisp-shadows): Add _pkg to the list of
--- a/lisp/about.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/about.el Mon Aug 13 10:13:02 2007 +0200 @@ -1291,6 +1291,7 @@ (print-short "Karl M. Hegbloom" "karlheg@inetarena.com") (print-short "Benedikt Heinen" "beh@icemark.thenet.ch") (print-short "Stephan Herrmann" "sh@first.gmd.de") + (print-short "August Hill" "awhill@inlink.com") (print-short "Charles Hines" "chuck_hines@VNET.IBM.COM") (print-short "Shane Holder" "holder@rsn.hp.com") (print-short "David Hughes" "djh@harston.cv.com") @@ -1303,6 +1304,7 @@ (print-short "J. Kean Johnston" "jkj@paradigm-sa.com") (print-short "Andreas Kaempf" "andreas@sccon.com") (print-short "Yoshiaki Kasahara" "kasahara@nc.kyushu-u.ac.jp") + (print-short "Kirill M. Katsnelson" "kkm@kis.ru") (print-short "Amir Katz" "amir@ndsoft.com") (print-short "Doug Keller" "dkeller@vnet.ibm.com") (print-short "Hunter Kelly" "retnuh@corona")
--- a/lisp/dumped-lisp.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/dumped-lisp.el Mon Aug 13 10:13:02 2007 +0200 @@ -160,6 +160,8 @@ #+x "x-misc" #+x "x-init" #+(and x toolbar) "x-toolbar" + #+x "x-win-xfree86" + #+x "x-win-sun" ;; preload the mswindows code. #+mswindows "msw-faces" #+mswindows "msw-init"
--- a/lisp/format.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/format.el Mon Aug 13 10:13:02 2007 +0200 @@ -77,6 +77,13 @@ image-decode-png nil t image-mode) (image/x-xpm "XPM image" "/\\* XPM \\*/" image-decode-xpm nil t image-mode) + + ;; TIFF files have lousy magic + (image/tiff "TIFF image" "\111\111\052\000" + image-decode-tiff nil t image-mode) ;; TIFF 6.0 big-endian + (image/tiff "TIFF image" "\111\111\000\052" + image-decode-tiff nil t image-mode) ;; TIFF 6.0 little-endian + (text/enriched "Extended MIME text/enriched format." "Content-[Tt]ype:[ \t]*text/enriched" enriched-decode enriched-encode t enriched-mode)
--- a/lisp/help.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/help.el Mon Aug 13 10:13:02 2007 +0200 @@ -621,7 +621,6 @@ (defun view-emacs-news () "Display info on recent changes to XEmacs." (interactive) - #-infodock (require 'outl-mouse) (find-file (expand-file-name "NEWS" data-directory))) (defun xemacs-www-page ()
--- a/lisp/loaddefs.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/loaddefs.el Mon Aug 13 10:13:02 2007 +0200 @@ -1,8 +1,8 @@ ;;; loaddefs.el --- define standard autoloads of other files -;; Copyright (C) 1985, 1986, 1987, 1992-1995 Free Software Foundation, Inc. +;; Copyright (C) 1985-7, 1992-5, 1997 Free Software Foundation, Inc. -;; Maintainer: XEmacs +;; Maintainer: XEmacs Development Team ;; Keywords: internal ;; This file is part of XEmacs. @@ -26,48 +26,52 @@ ;;; Commentary: -;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -;;; Special formatting conventions are used in this file! -;;; -;;; a backslash-newline is used at the beginning of a documentation string -;;; when that string should be stored in the file lib-src/DOCnnn, not in core. -;;; -;;; Such strings read into Lisp as numbers (during the pure-loading phase). -;;; -;;; But you must obey certain rules to make sure the string is understood -;;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go -;;; anywhere! -;;; -;;; The doc string must appear in the standard place in a call to -;;; defun, autoload, defvar or defconst. No Lisp macros are recognized. -;;; The open-paren starting the definition must appear in column 0. -;;; -;;; In defvar and defconst, there is an additional rule: -;;; The double-quote that starts the string must be on the same -;;; line as the defvar or defconst. -;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +;; The following commentary is completely out of date. I would like to +;; delete it, but it serves as a useful reminder as to how things used to +;; work. + +;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +;; Special formatting conventions are used in this file! + +;; a backslash-newline is used at the beginning of a documentation string +;; when that string should be stored in the file lib-src/DOCnnn, not in core. + +;; Such strings read into Lisp as numbers (during the pure-loading phase). + +;; But you must obey certain rules to make sure the string is understood +;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go +;; anywhere! + +;; The doc string must appear in the standard place in a call to +;; defun, autoload, defvar or defconst. No Lisp macros are recognized. +;; The open-paren starting the definition must appear in column 0. -;;; ********************************************************************** -;;; You should never need to write autoloads by hand and put them here. -;;; -;;; It is no longer necessary. Instead use autoload.el to maintain them -;;; for you. Just insert ";;;###autoload" before defuns or defmacros you -;;; want to be autoloaded, or other forms you want copied into loaddefs.el -;;; (defvars, key definitions, etc.). For example, -;;; ;;;###autoload -;;; (defun foobar () ....) -;;; ;;;###autoload (define-key global-map "f" 'foobar) -;;; ;;;###autoload -;;; (defvar foobar-var nil "\ -;;; This is foobar-var's doc-string.") -;;; -;;; Then do M-x update-file-autoloads on the file to update loaddefs.el. -;;; -;;; You can also use M-x update-directory-autoloads to update the autoloads -;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x -;;; update-autoloads-here to update the autoloads for each file that -;;; already has an autoload section in this file. -;;; ********************************************************************** +;; In defvar and defconst, there is an additional rule: +;; The double-quote that starts the string must be on the same +;; line as the defvar or defconst. +;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +;; ********************************************************************** +;; You should never need to write autoloads by hand and put them here. + +;; It is no longer necessary. Instead use autoload.el to maintain them +;; for you. Just insert ";;;###autoload" before defuns or defmacros you +;; want to be autoloaded, or other forms you want copied into loaddefs.el +;; (defvars, key definitions, etc.). For example, +;; ;;;###autoload +;; (defun foobar () ....) +;; ;;;###autoload (define-key global-map "f" 'foobar) +;; ;;;###autoload +;; (defvar foobar-var nil "\ +;; This is foobar-var's doc-string.") + +;; Then do M-x update-file-autoloads on the file to update loaddefs.el. + +;; You can also use M-x update-directory-autoloads to update the autoloads +;; in loaddefs.el for all .el files in the lisp/ directory, or M-x +;; update-autoloads-here to update the autoloads for each file that +;; already has an autoload section in this file. +;; ********************************************************************** ;;; Code: @@ -163,218 +167,6 @@ ;;; This code also was not generated by autoload.el, because VM goes out ;;; of its way to be perverse. -(autoload 'vm "vm" - "\ -View Mail: an alternate mail reader for emacs. -Optional first arg FOLDER specifies the folder to visit. It defaults -to the value of vm-primary-inbox. The folder buffer is put into VM -mode, a major mode for reading mail. - -Prefix arg or optional second arg READ-ONLY non-nil indicates -that the folder should be considered read only. No attribute -changes, messages additions or deletions will be allowed in the -visited folder. - -Visiting the primary inbox causes any contents of the system mailbox to -be moved and appended to the resulting buffer. - -All the messages can be read by repeatedly pressing SPC. Use `n'ext and -`p'revious to move about in the folder. Messages are marked for -deletion with `d', and saved to another folder with `s'. Quitting VM -with `q' expunges deleted messages and saves the buffered folder to -disk. - -See the documentation for vm-mode for more information." - t) - -(autoload 'vm-mode "vm" - "\ -View Mail: an alternate mail reader for emacs. - -Commands: - h - summarize folder contents - j - discard cached information about the current message - - n - go to next message - p - go to previous message - N - like `n' but ignores skip-variable settings - P - like `p' but ignores skip-variable settings - M-n - go to next unread message - M-p - go to previous unread message - RET - go to numbered message (uses prefix arg or prompts in minibuffer) - TAB - go to last message seen - M-s - incremental search through the folder - - t - display hidden headers - SPC - scroll forward a page (if at end of message, then display next message) - b - scroll backward a page - < - go to beginning of current message - > - go to end of current message - - d - delete message, prefix arg deletes messages forward (flag as deleted) - C-d - delete message, prefix arg deletes messages backward (flag as deleted) - u - undelete - k - flag for deletion all messages with same subject as the current message - - r - reply (only to the sender of the message) - R - reply with included text for current message - M-r - extract and resend bounced message - f - followup (reply to all recipients of message) - F - followup with included text from the current message - z - forward the current message - m - send a message - B - resend the current message to another user. - c - continue composing the most recent message you were composing - - @ - digestify and mail entire folder contents (the folder is not modified) - * - burst a digest into individual messages, and append and assimilate these - message into the current folder. - - G - sort messages by various keys - - g - get any new mail that has arrived in the system mailbox - (new mail is appended to the disk and buffer copies of the - primary inbox.) - v - visit another mail folder - V - visit a virtual folder - - e - edit the current message - - s - save current message in a folder (appends if folder already exists) - w - write current message to a file without its headers (appends if exists) - S - save entire folder to disk, expunging deleted messages - A - save unfiled messages to their vm-auto-folder-alist specified folders - # - expunge deleted messages (without saving folder) - q - quit VM, deleted messages are expunged, folder saved to disk - x - exit VM with no change to the folder - - M N - use marks; the next vm command will affect only marked messages - if it makes sense for the command to do so - - M M - mark the current message - M U - unmark the current message - M m - mark all messages - M u - unmark all messages - M ? - help for the mark commands - - W S - save the current window configuration to a name - W D - delete a window configuration - W W - apply a configuration - W ? - help for the window configuration commands - - C-_ - undo, special undo that retracts the most recent - changes in message attributes. Expunges and saves - cannot be undone. C-x u is also bound to this - command. - - L - reload your VM init file, ~/.vm - - ? - help - - ! - run a shell command - | - run a shell command with the current message as input - - M-C - view conditions under which you may redistribute VM - M-W - view the details of VM's lack of a warranty - -Variables: - vm-auto-center-summary - vm-auto-folder-alist - vm-auto-folder-case-fold-search - vm-auto-get-new-mail - vm-auto-next-message - vm-berkeley-mail-compatibility - vm-check-folder-types - vm-convert-folder-types - vm-circular-folders - vm-confirm-new-folders - vm-confirm-quit - vm-crash-box - vm-delete-after-archiving - vm-delete-after-bursting - vm-delete-after-saving - vm-delete-empty-folders - vm-digest-burst-type - vm-digest-center-preamble - vm-digest-preamble-format - vm-digest-send-type - vm-folder-directory - vm-folder-read-only - vm-follow-summary-cursor - vm-forwarded-headers - vm-forwarding-digest-type - vm-forwarding-subject-format - vm-gargle-uucp - vm-highlighted-header-regexp - vm-honor-page-delimiters - vm-in-reply-to-format - vm-included-text-attribution-format - vm-included-text-prefix - vm-inhibit-startup-message - vm-invisible-header-regexp - vm-jump-to-new-messages - vm-jump-to-unread-messages - vm-keep-sent-messages - vm-mail-header-from - vm-mail-mode-hook - vm-mail-window-percentage - vm-mode-hook - vm-move-after-deleting - vm-move-after-undeleting - vm-mutable-windows - vm-preview-lines - vm-preview-read-messages - vm-primary-inbox - vm-recognize-pop-maildrops - vm-reply-ignored-addresses - vm-reply-subject-prefix - vm-resend-bounced-headers - vm-resend-bounced-discard-header-regexp - vm-resend-headers - vm-resend-discard-header-regexp - vm-retain-message-order - vm-rfc1153-digest-discard-header-regexp - vm-rfc1153-digest-headers - vm-rfc934-digest-discard-header-regexp - vm-rfc934-digest-headers - vm-search-using-regexps - vm-skip-deleted-messages - vm-skip-read-messages - vm-spool-files - vm-startup-with-summary - vm-strip-reply-headers - vm-summary-format - vm-unforwarded-header-regexp - vm-virtual-folder-alist - vm-virtual-mirror - vm-visible-headers - vm-visit-when-saving - vm-window-configuration-file -" - t) - -(autoload 'vm-visit-folder "vm" - "\ -Visit a mail file with View Mail, an alternate mail reader for emacs. -See the description of the `vm' and `vm-mode' functions. - -VM will parse and present its messages to you in the usual way. - -First arg FOLDER specifies the mail file to visit. When this -command is called interactively the file name is read from the -minibuffer. - -Prefix arg or optional second arg READ-ONLY non-nil indicates -that the folder should be considered read only. No attribute -changes, messages additions or deletions will be allowed in the -visited folder." - t) - -(autoload 'vm-mail "vm" - "\ -Send a mail message from within View Mail, or from without." - t) - ;;; Load in generated autoloads (made by autoload.el). ;; (condition-case nil
--- a/lisp/make-docfile.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/make-docfile.el Mon Aug 13 10:13:02 2007 +0200 @@ -126,8 +126,6 @@ (setq processed (cons arg processed))))) (setq site-load-packages (cdr site-load-packages))))) -(packages-find-packages package-path t) - (let ((autoloads (list-autoloads-path))) ;; (print (concat "Autoloads: " (prin1-to-string autoloads))) (while autoloads
--- a/lisp/x-init.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/x-init.el Mon Aug 13 10:13:02 2007 +0200 @@ -229,10 +229,12 @@ (string-equal "MIT X Consortium" vendor) (string-equal "X Consortium" vendor)) ;; Ok, we think this could be a Sun keyboard. Load the Sun code. - (load "x-win-sun")) + ;; (load "x-win-sun")) + (x-win-init-sun)) ((string-match "XFree86" vendor) ;; Those XFree86 people do some weird keysym stuff, too. - (load "x-win-xfree86"))))) + ;; (load "x-win-xfree86"))))) + (x-win-init-xfree86))))) (defvar pre-x-win-initted nil)
--- a/lisp/x-win-sun.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/x-win-sun.el Mon Aug 13 10:13:02 2007 +0200 @@ -64,6 +64,8 @@ ;;; Code: +(defun x-win-init-sun () + (defun x-remap-keysyms-using-function-key-map (from-key to-key) (dolist (prefix '(() (shift) (control) (meta) (alt) (shift control) (shift alt) (shift meta) @@ -251,4 +253,6 @@ (define-key global-map 'find 'ow-find) (define-key global-map '(shift find) 'ow-find-backward) +) + ;;; x-win-sun.el ends here
--- a/lisp/x-win-xfree86.el Mon Aug 13 10:12:39 2007 +0200 +++ b/lisp/x-win-xfree86.el Mon Aug 13 10:13:02 2007 +0200 @@ -39,6 +39,8 @@ ;; For no obvious reason, shift-F1 is called F13, although Meta-F1 and ;; Control-F1 have normal names. +(defun x-win-init-xfree86 () + (loop for (x-key key sane-key) in '(("F13" f13 f1) ("F14" f14 f2) @@ -86,3 +88,6 @@ ;; (define-key global-map k1 k2)) ;; (setq mods (cdr mods)))) ;; (setq mapping (cdr mapping))))) +) + +;;; x-win-xfree86.el ends here
--- a/man/Makefile Mon Aug 13 10:12:39 2007 +0200 +++ b/man/Makefile Mon Aug 13 10:13:02 2007 +0200 @@ -42,7 +42,7 @@ ../info/%.info : %.texi -$(MAKEINFO) -o $@ $< -srcs = cl custom external-widget forms \ +srcs = cl custom external-widget \ info \ standards term \ termcap texinfo widget xemacs-faq
--- a/src/ChangeLog Mon Aug 13 10:12:39 2007 +0200 +++ b/src/ChangeLog Mon Aug 13 10:13:02 2007 +0200 @@ -1,3 +1,11 @@ +1997-12-22 SL Baur <steve@altair.xemacs.org> + + * device.c (vars_of_device): Provide `devices' feature so W3's + devices.el emulation won't bloat XEmacs. + + * lread.c (Fload_internal): Strip path and extension when + considering a file as a candidate for running after-load functions. + 1997-12-20 Kirill M. Katsnelson <kkm@kis.ru> * s/windowsnt.h: SIZEOF_SHORT set to 16 bits instead of 32, to get
--- a/src/device.c Mon Aug 13 10:12:39 2007 +0200 +++ b/src/device.c Mon Aug 13 10:13:02 2007 +0200 @@ -1090,4 +1090,7 @@ Vdevice_class_list = list3 (Qcolor, Qgrayscale, Qmono); staticpro (&Vdevice_class_list); + + /* Death to devices.el !!! */ + Fprovide(intern("devices")); }
--- a/src/lread.c Mon Aug 13 10:12:39 2007 +0200 +++ b/src/lread.c Mon Aug 13 10:13:02 2007 +0200 @@ -777,7 +777,17 @@ Lisp_Object tem; /* #### Disgusting kludge */ /* Run any load-hooks for this file. */ - tem = Fassoc (file, Vafter_load_alist); + /* #### An even more disgusting kludge. There is horrible code */ + /* this is relying on the fact that dumped lisp files are found */ + /* via `load-path' search. */ + Lisp_Object name = file; + + if (!NILP(Ffile_name_absolute_p(file))) + { + name = Ffile_name_nondirectory(file); + } + + tem = Fassoc (name, Vafter_load_alist); if (!NILP (tem)) { struct gcpro ngcpro1;