1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/* $XConsortium: large.xbm /main/4 1995/07/17 18:26:05 drk $ */
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*
*/
/*
* HISTORY
*/
/* commetn */
#define bee_width 44
#define bee_height 39
#define bee_x_hot -6
#define bee_y_hot 0
/* commetn */
static char bee_bits[] = {
0x00, 0x00, 0x10, 0x82, 0x07, 0x00, 0x00, 0x00, 0x84, 0xcd, 0x1c, 0x00,
0x00, 0x00, 0xc0, 0x28, 0x60, 0x00, 0x00, 0x00, 0x62, 0x30, 0xc0, 0x00,
0x00, 0x00, 0x30, 0x19, 0x80, 0x01, 0x00, 0x00, 0x91, 0x08, 0x10, 0x09,
0x00, 0x00, 0x98, 0x04, 0x0c, 0x01, 0x00, 0x80, 0x88, 0x06, 0x02, 0x01,
0x00, 0x00, 0x48, 0x02, 0x01, 0x09, 0x00, 0x40, 0x48, 0x03, 0x01, 0x01,
0x04, 0x00, 0x24, 0xc1, 0x80, 0x01, 0x18, 0x40, 0xa4, 0x20, 0x80, 0x08,
0x20, 0x00, 0x94, 0x18, 0x80, 0x00, 0xc3, 0x40, 0x54, 0x04, 0x40, 0x00,
0x1c, 0x01, 0x44, 0x03, 0x30, 0x02, 0xe0, 0x03, 0x64, 0x00, 0x0e, 0x00,
0x80, 0x1d, 0x24, 0xe0, 0x83, 0x00, 0x20, 0x20, 0xf8, 0x1f, 0x20, 0x00,
0x10, 0xc0, 0xff, 0x3f, 0x08, 0x00, 0x48, 0x80, 0x1f, 0xcf, 0x00, 0x00,
0xe4, 0x80, 0x1e, 0x9f, 0x03, 0x00, 0xe2, 0x80, 0x3e, 0x9e, 0x0f, 0x00,
0x42, 0x80, 0x3e, 0x3e, 0x37, 0x00, 0x01, 0x84, 0x3e, 0x3e, 0x67, 0x00,
0x01, 0x82, 0x3e, 0x3e, 0xcf, 0x00, 0x02, 0x81, 0x3e, 0x3e, 0xcf, 0x01,
0xfc, 0x40, 0x3e, 0x3e, 0xcf, 0x03, 0x30, 0x20, 0x3f, 0x3e, 0xcf, 0x01,
0xc0, 0x9f, 0x3f, 0x9e, 0xcf, 0x00, 0x00, 0xf0, 0x3f, 0x9e, 0x67, 0x00,
0x00, 0xf0, 0x3f, 0x9e, 0x1f, 0x00, 0x00, 0xe0, 0x1f, 0xdf, 0x07, 0x00,
0x00, 0xc0, 0x1f, 0xcf, 0x07, 0x00, 0x00, 0x40, 0x8f, 0x7f, 0x00, 0x00,
0x00, 0x40, 0xfc, 0x47, 0x00, 0x00, 0x00, 0x80, 0x80, 0xc1, 0x00, 0x00,
0x00, 0x00, 0x01, 0x03, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x0c, 0x18, 0x00,
0x00, 0x00, 0x30, 0xf0, 0xf1, 0x00};
/* commetn */
|