dnl $Id$ dnl $URL$ dnl LCD4Linux Plugins conf part dnl dnl Copyright (C) 1999, 2000, 2001, 2002, 2003 Michael Reinelt dnl Copyright (C) 2004, 2005, 2006, 2007 The LCD4Linux Team dnl dnl This file is part of LCD4Linux. dnl dnl LCD4Linux is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2, or (at your option) dnl any later version. dnl dnl LCD4Linux is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. AC_MSG_CHECKING([which plugins to compile]) AC_ARG_WITH( plugins, [ --with-plugins= choose which plugins to compile.] [ type --with-plugins=list for a list] [ of avaible plugins], plugins=$withval, plugins=all ) plugins=`echo $plugins|sed 's/,/ /g'` for plugin in $plugins; do case $plugin in !*) val="no" plugin=`echo $plugin|cut -c 2-` ;; *) val="yes" ;; esac case "$plugin" in list) AC_MSG_RESULT([TO BE DONE...]) AC_MSG_ERROR([run ./configure --with-plugins=...]) ;; all) PLUGIN_APM="yes" PLUGIN_CPUINFO="yes" PLUGIN_DISKSTATS="yes" PLUGIN_DVB="yes" PLUGIN_EXEC="yes" PLUGIN_FILE="yes" PLUGIN_GPS="yes" PLUGIN_I2C_SENSORS="yes" PLUGIN_ICONV="yes" PLUGIN_IMON="yes" PLUGIN_ISDN="yes" PLUGIN_KVV="yes" PLUGIN_LOADAVG="yes" PLUGIN_MEMINFO="yes" PLUGIN_MPD="yes" PLUGIN_MYSQL="yes" PLUGIN_NETDEV="yes" PLUGIN_POP3="yes" PLUGIN_PPP="yes" PLUGIN_PROC_STAT="yes" PLUGIN_PYTHON=$with_python PLUGIN_SAMPLE="yes" PLUGIN_SETI="yes" PLUGIN_STATFS="yes" PLUGIN_UNAME="yes" PLUGIN_UPTIME="yes" PLUGIN_WIRELESS="yes" PLUGIN_XMMS="yes" ;; apm) PLUGIN_APM=$val ;; cpuinfo) PLUGIN_CPUINFO=$val ;; diskstats) PLUGIN_DISKSTATS=$val ;; dvb) PLUGIN_DVB=$val ;; exec) PLUGIN_EXEC=$val ;; file) PLUGIN_FILE=$val ;; gps) PLUGIN_GPS=$val ;; i2c_sensors) PLUGIN_I2C_SENSORS=$val ;; iconv) PLUGIN_ICONV=$val ;; imon) PLUGIN_IMON=$val ;; isdn) PLUGIN_ISDN=$val ;; kvv) PLUGIN_KVV=$val ;; loadavg) PLUGIN_LOADAVG=$val ;; meminfo) PLUGIN_MEMINFO=$val ;; mpd) PLUGIN_MPD=$val ;; mysql) PLUGIN_MYSQL=$val ;; netdev) PLUGIN_NETDEV=$val ;; pop3) PLUGIN_POP3=$val ;; ppp) PLUGIN_PPP=$val ;; proc_stat) PLUGIN_PROC_STAT=$val ;; python) PLUGIN_PYTHON=$val ;; sample) PLUGIN_SAMPLE=$val ;; seti) PLUGIN_SETI=$val ;; statfs) PLUGIN_STATFS=$val ;; uname) PLUGIN_UNAME=$val ;; uptime) PLUGIN_UPTIME=$val ;; wireless) PLUGIN_WIRELESS=$val ;; xmms) PLUGIN_XMMS=$val ;; *) AC_MSG_ERROR([Unknown plugin '$plugin']) ;; esac done AC_MSG_RESULT([done]) if test "$PLUGIN_APM" = "yes"; then PLUGINS="$PLUGINS plugin_apm.o" AC_DEFINE(PLUGIN_APM,1,[apm plugin]) fi if test "$PLUGIN_CPUINFO" = "yes"; then PLUGINS="$PLUGINS plugin_cpuinfo.o" AC_DEFINE(PLUGIN_CPUINFO,1,[cpuinfo plugin]) fi if test "$PLUGIN_DISKSTATS" = "yes"; then PLUGINS="$PLUGINS plugin_diskstats.o" AC_DEFINE(PLUGIN_DISKSTATS,1,[diskstats plugin]) fi if test "$PLUGIN_DVB" = "yes"; then AC_CHECK_HEADERS(linux/dvb/frontend.h, [has_dvb_header="true"], [has_dvb_header="false"]) if test "$has_dvb_header" = "true"; then PLUGINS="$PLUGINS plugin_dvb.o" AC_DEFINE(PLUGIN_DVB,1,[dvb plugin]) else PLUGINS="$PLUGINS plugin_dvb.o" AC_MSG_WARN(linux/dvb/frontend.h header not found: using ioctl) fi fi if test "$PLUGIN_EXEC" = "yes"; then PLUGINS="$PLUGINS plugin_exec.o" AC_DEFINE(PLUGIN_EXEC,1,[exec plugin]) fi if test "$PLUGIN_FILE" = "yes"; then PLUGINS="$PLUGINS plugin_file.o" AC_DEFINE(PLUGIN_FILE,1,[file plugin]) fi if test "$PLUGIN_GPS" = "yes"; then AC_CHECK_HEADERS(nmeap.h, [has_nmeap_header="true"], [has_nmeap_header="false"]) if test "$has_nmeap_header" = "true"; then AC_CHECK_LIB(nmeap, nmeap_init, [has_libnmeap_lib="true"], [has_libnmeap_lib="false"]) if test "$has_libnmeap_lib" = "true"; then PLUGINS="$PLUGINS plugin_gps.o" PLUGINLIBS="$PLUGINLIBS -lnmeap" AC_DEFINE(PLUGIN_GPS,1,[gps plugin]) else AC_MSG_WARN(libnmeap lib not found: gps plugin disabled) fi else AC_MSG_WARN(nmeap.h header not found: gps plugin disabled) fi fi if test "$PLUGIN_I2C_SENSORS" = "yes"; then PLUGINS="$PLUGINS plugin_i2c_sensors.o" AC_DEFINE(PLUGIN_I2C_SENSORS,1,[i2c sensors plugin]) fi if test "$PLUGIN_ICONV" = "yes"; then AM_ICONV if test "$am_cv_func_iconv" = "yes"; then PLUGINS="$PLUGINS plugin_iconv.o" PLUGINLIBS="$PLUGINLIBS $LIBICONV" AC_DEFINE(PLUGIN_ICONV,1,[iconv charset converter plugin]) else AC_MSG_WARN(iconv not found: iconv plugin disabled) fi fi if test "$PLUGIN_IMON" = "yes"; then PLUGINS="$PLUGINS plugin_imon.o" AC_DEFINE(PLUGIN_IMON,1,[imon plugin]) fi if test "$PLUGIN_ISDN" = "yes"; then AC_CHECK_HEADERS(linux/isdn.h, [has_isdn_header="true"], [has_isdn_header="false"]) if test "$has_dvb_header" = "false"; then AC_MSG_WARN(linux/isdn.h header not found: isdn plugin CPS disabled) fi PLUGINS="$PLUGINS plugin_isdn.o" AC_DEFINE(PLUGIN_ISDN,1,[ISDN plugin]) fi if test "$PLUGIN_KVV" = "yes"; then PLUGINS="$PLUGINS plugin_kvv.o" AC_DEFINE(PLUGIN_KVV,1,[kvv plugin]) fi if test "$PLUGIN_LOADAVG" = "yes"; then PLUGINS="$PLUGINS plugin_loadavg.o" AC_DEFINE(PLUGIN_LOADAVG,1,[loadavg plugin]) fi if test "$PLUGIN_MEMINFO" = "yes"; then PLUGINS="$PLUGINS plugin_meminfo.o" AC_DEFINE(PLUGIN_MEMINFO,1,[meminfo plugin]) fi if test "$PLUGIN_MPD" = "yes"; then AC_CHECK_HEADERS(libmpd/libmpd.h, [has_libmpd_header="true"], [has_libmpd_header="false"]) if test "$has_libmpd_header" = "true"; then AC_CHECK_LIB(mpd, mpd_connect, [has_libmpd_lib="true"], [has_libmpd_lib="false"]) if test "$has_libmpd_lib" = "true"; then PLUGINS="$PLUGINS plugin_mpd.o" PLUGINLIBS="$PLUGINLIBS -lmpd" AC_DEFINE(PLUGIN_MPD,1,[mpd plugin]) else AC_MSG_WARN(libmpd lib not found: mpd plugin disabled) fi else AC_MSG_WARN(libmpd/libmpd.h header not found: mpd plugin disabled) fi fi if test "$PLUGIN_MYSQL" = "yes"; then AC_CHECK_HEADERS(mysql/mysql.h, [has_mysql_header="true"], [has_mysql_header="false"]) if test "$has_mysql_header" = "true"; then AC_CHECK_LIB(mysqlclient, mysql_init, [has_mysql_lib="true"], [has_mysql_lib="false"]) if test "$has_mysql_lib" = "true"; then PLUGINS="$PLUGINS plugin_mysql.o" PLUGINLIBS="$PLUGINLIBS -lmysqlclient" AC_DEFINE(PLUGIN_MYSQL,1,[mysql plugin]) else AC_MSG_WARN(mysqlclient lib not found: mysql plugin disabled) fi else AC_MSG_WARN(mysql/mysql.h header not found: mysql plugin disabled) fi fi if test "$PLUGIN_NETDEV" = "yes"; then PLUGINS="$PLUGINS plugin_netdev.o" AC_DEFINE(PLUGIN_NETDEV,1,[netdev plugin]) fi if test "$PLUGIN_POP3" = "yes"; then PLUGINS="$PLUGINS plugin_pop3.o" AC_DEFINE(PLUGIN_POP3,1,[POP3 plugin]) fi if test "$PLUGIN_PPP" = "yes"; then AC_CHECK_HEADERS(net/if_ppp.h, [has_ppp_header="true"], [has_ppp_header="false"]) if test "$has_ppp_header" = "true"; then PLUGINS="$PLUGINS plugin_ppp.o" AC_DEFINE(PLUGIN_PPP,1,[ppp plugin]) else AC_MSG_WARN(net/if_ppp.h header not found: ppp plugin disabled) fi fi if test "$PLUGIN_PROC_STAT" = "yes"; then PLUGINS="$PLUGINS plugin_proc_stat.o" AC_DEFINE(PLUGIN_PROC_STAT,1,[proc_stat plugin]) fi if test "$PLUGIN_PYTHON" = "yes"; then if test "$with_python" != "yes"; then AC_MSG_WARN(python support not enabled: python plugin disabled (use --with-python to enable)) else if test -z "$python_path"; then AC_MSG_WARN(python headers not found: python plugin disabled) else PLUGINS="$PLUGINS plugin_python.o" CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS" PLUGINLIBS="$PLUGINLIBS $PYTHON_LDFLAGS $PYTHON_EXTRA_LIBS" AC_DEFINE(PLUGIN_PYTHON,1,[python plugin]) fi fi fi if test "$PLUGIN_SAMPLE" = "yes"; then PLUGINS="$PLUGINS plugin_sample.o" AC_DEFINE(PLUGIN_SAMPLE,1,[sample plugin]) fi if test "$PLUGIN_SETI" = "yes"; then PLUGINS="$PLUGINS plugin_seti.o" AC_DEFINE(PLUGIN_SETI,1,[seti plugin]) fi if test "$PLUGIN_STATFS" = "yes"; then PLUGINS="$PLUGINS plugin_statfs.o" AC_DEFINE(PLUGIN_STATFS,1,[statfs plugin]) fi if test "$PLUGIN_UNAME" = "yes"; then PLUGINS="$PLUGINS plugin_uname.o" AC_DEFINE(PLUGIN_UNAME,1,[uname plugin]) fi if test "$PLUGIN_UPTIME" = "yes"; then PLUGINS="$PLUGINS plugin_uptime.o" AC_DEFINE(PLUGIN_UPTIME,1,[uptime plugin]) fi if test "$PLUGIN_WIRELESS" = "yes"; then PLUGINS="$PLUGINS plugin_wireless.o" AC_DEFINE(PLUGIN_WIRELESS,1,[wireless plugin]) fi if test "$PLUGIN_XMMS" = "yes"; then PLUGINS="$PLUGINS plugin_xmms.o" AC_DEFINE(PLUGIN_XMMS,1,[xmms plugin]) fi #if test "$PLUGIN_" = "yes"; then # PLUGINS="$PLUGINS plugin_.o" # AC_DEFINE(PLUGIN_,1,[plugin]) #fi if test "$PLUGINS" = ""; then AC_MSG_ERROR([You should include at least one plugin...]) #else # AC_MSG_ERROR($PLUGINS) fi AC_SUBST(PLUGINS) AC_SUBST(PLUGINLIBS) d='n239' href='#n239'>239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
/* $Id: font_6x8_bold.h,v 1.2 2006/08/13 18:14:03 harbaum Exp $
 *
 * 6x8 bold font
 *
 * Copyright (C) 2006 Till Harbaum <till@harbaum.org>
 * Copyright (C) 2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux 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.
 *
 * LCD4Linux 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 this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: font_6x8_bold.h,v $
 * Revision 1.2  2006/08/13 18:14:03  harbaum
 * Added KVV plugin
 *
 * Revision 1.1  2006/08/09 17:25:34  harbaum
 * Better bar color support and new bold font
 *
 */

#define ______ 0x00
#define _____O 0x01
#define ____O_ 0x02
#define ____OO 0x03
#define ___O__ 0x04
#define ___O_O 0x05
#define ___OO_ 0x06
#define ___OOO 0x07
#define __O___ 0x08
#define __O__O 0x09
#define __O_O_ 0x0a
#define __O_OO 0x0b
#define __OO__ 0x0c
#define __OO_O 0x0d
#define __OOO_ 0x0e
#define __OOOO 0x0f
#define _O____ 0x10
#define _O___O 0x11
#define _O__O_ 0x12
#define _O__OO 0x13
#define _O_O__ 0x14
#define _O_O_O 0x15
#define _O_OO_ 0x16
#define _O_OOO 0x17
#define _OO___ 0x18
#define _OO__O 0x19
#define _OO_O_ 0x1a
#define _OO_OO 0x1b
#define _OOO__ 0x1c
#define _OOO_O 0x1d
#define _OOOO_ 0x1e
#define _OOOOO 0x1f
#define O_____ 0x20
#define O____O 0x21
#define O___O_ 0x22
#define O___OO 0x23
#define O__O__ 0x24
#define O__O_O 0x25
#define O__OO_ 0x26
#define O__OOO 0x27
#define O_O___ 0x28
#define O_O__O 0x29
#define O_O_O_ 0x2a
#define O_O_OO 0x2b
#define O_OO__ 0x2c
#define O_OO_O 0x2d
#define O_OOO_ 0x2e
#define O_OOOO 0x2f
#define OO____ 0x30
#define OO___O 0x31
#define OO__O_ 0x32
#define OO__OO 0x33
#define OO_O__ 0x34
#define OO_O_O 0x35
#define OO_OO_ 0x36
#define OO_OOO 0x37
#define OOO___ 0x38
#define OOO__O 0x39
#define OOO_O_ 0x3a
#define OOO_OO 0x3b
#define OOOO__ 0x3c
#define OOOO_O 0x3d
#define OOOOO_ 0x3e
#define OOOOOO 0x3f

unsigned char Font_6x8_bold[256][8] = {
    [0x20] {______,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x21] {__OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    ______,
	    ______,
	    __OO__,
	    ______},
    [0x22] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x23] {__O_O_,
	    __O_O_,
	    _OOOOO,
	    __O_O_,
	    _OOOOO,
	    __O_O_,
	    __O_O_,
	    ______},
    [0x24] {___O__,
	    __OOOO,
	    _O_O__,
	    __OOO_,
	    ___O_O,
	    _OOOO_,
	    ___O__,
	    ______},
    [0x25] {_OO___,
	    _OO_OO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    OO__OO,
	    ____OO,
	    ______},
    [0x26] {__OO__,
	    _OO_OO,
	    _OO_OO,
	    __OO__,
	    _OOO_O,
	    _OO_OO,
	    __OO_O,
	    ______},
    [0x27] {__OO__,
	    __OO__,
	    _OO___,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x28] {___OO_,
	    __OO__,
	    _OO___,
	    _OO___,
	    _OO___,
	    __OO__,
	    ___OO_,
	    ______},
    [0x29] {_OO___,
	    __OO__,
	    ___OO_,
	    ___OO_,
	    ___OO_,
	    __OO__,
	    _OO___,
	    ______},
    [0x2a] {______,
	    ___O__,
	    _O_O_O,
	    __OOO_,
	    _O_O_O,
	    ___O__,
	    ______,
	    ______},
    [0x2b] {______,
	    __OO__,
	    __OO__,
	    _OOOO_,
	    __OO__,
	    __OO__,
	    ______,
	    ______},
    [0x2c] {______,
	    ______,
	    ______,
	    ______,
	    ___OO_,
	    ___OO_,
	    __OO__,
	    ______},
    [0x2d] {______,
	    ______,
	    ______,
	    _OOOOO,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x2e] {______,
	    ______,
	    ______,
	    ______,
	    ______,
	    __OO__,
	    __OO__,
	    ______},
    [0x2f] {______,
	    ____OO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    OO____,
	    ______,
	    ______},
    [0x30] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x31] {___OO_,
	    __OOO_,
	    ___OO_,
	    ___OO_,
	    ___OO_,
	    ___OO_,
	    __OOOO,
	    ______},
    [0x32] {__OOO_,
	    _OO_OO,
	    ____OO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    _OOOOO,
	    ______},
    [0x33] {_OOOOO,
	    ____OO,
	    ___OO_,
	    ____OO,
	    ____OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x34] {____OO,
	    ___OO_,
	    __OO__,
	    _OO_OO,
	    _OOOOO,
	    ____OO,
	    ____OO,
	    ______},
    [0x35] {_OOOOO,
	    _OO___,
	    _OO___,
	    _OOOO_,
	    ____OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x36] {___OO_,
	    __OO__,
	    _OO___,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x37] {_OOOOO,
	    ____OO,
	    ___OO_,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    ______},
    [0x38] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x39] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ____OO,
	    ___OO_,
	    _OOO__,
	    ______},
    [0x3a] {______,
	    __OO__,
	    __OO__,
	    ______,
	    __OO__,
	    __OO__,
	    ______,
	    ______},
    [0x3b] {______,
	    __OO__,
	    __OO__,
	    ______,
	    __OO__,
	    __OO__,
	    _OO___,
	    ______},
    [0x3c] {____OO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    __OO__,
	    ___OO_,
	    ____OO,
	    ______},
    [0x3d] {______,
	    ______,
	    _OOOOO,
	    ______,
	    _OOOOO,
	    ______,
	    ______,
	    ______},
    [0x3e] {_OO___,
	    __OO__,
	    ___OO_,
	    ____OO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    ______},
    [0x3f] {__OOO_,
	    _OO_OO,
	    ____OO,
	    ___OO_,
	    __OO__,
	    ______,
	    __OO__,
	    ______},
    [0x40] {__OOO_,
	    _OO_OO,
	    ____OO,
	    __O_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x41] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OOOOO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x42] {_OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    ______},
    [0x43] {__OOO_,
	    _OO_OO,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x44] {_OOO__,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OOO__,
	    ______},
    [0x45] {_OOOOO,
	    _OO___,
	    _OO___,
	    _OOOO_,
	    _OO___,
	    _OO___,
	    _OOOOO,
	    ______},
    [0x46] {_OOOOO,
	    _OO___,
	    _OO___,
	    _OOOO_,
	    _OO___,
	    _OO___,
	    _OO___,
	    ______},
    [0x47] {__OOO_,
	    _OO_OO,
	    _OO___,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ______},
    [0x48] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OOOOO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x49] {_OOOO_,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    _OOOO_,
	    ______},
    [0x4a] {___OOO,
	    ____OO,
	    ____OO,
	    ____OO,
	    ____OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x4b] {_OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OOO__,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x4c] {_OO___,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OOOOO,
	    ______},
    [0x4d] {_O___O,
	    _OO_OO,
	    _OOOOO,
	    _OOOOO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x4e] {_O__OO,
	    _OO_OO,
	    _OO_OO,
	    _OOOOO,
	    _OO_OO,
	    _OO_OO,
	    _OO__O,
	    ______},
    [0x4f] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x50] {_OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OO___,
	    _OO___,
	    _OO___,
	    ______},
    [0x51] {__OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_O_,
	    _OO_OO,
	    __OO_O,
	    ______},
    [0x52] {_OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x53] {__OOOO,
	    _OO___,
	    _OO___,
	    __OOO_,
	    ____OO,
	    ____OO,
	    _OOOO_,
	    ______},
    [0x54] {OOOOOO,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    ______},
    [0x55] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x56] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ___O__,
	    ______},
    [0x57] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OOOOO,
	    _OOOOO,
	    _OO_OO,
	    _O___O,
	    ______},
    [0x58] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x59] {_OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __O_OO,
	    ___OOO,
	    ___OO_,
	    _OOO__,
	    ______},
    [0x5a] {_OOOOO,
	    ____OO,
	    ___OO_,
	    __OOO_,
	    __OO__,
	    _OO___,
	    _OOOOO,
	    ______},
    [0x5b] {_OOOO_,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OO___,
	    _OOOO_,
	    ______},
    [0x5c] {_O___O,
	    __O_O_,
	    _OOOOO,
	    ___O__,
	    _OOOOO,
	    ___O__,
	    ___O__,
	    ______},
    [0x5d] {__OOOO,
	    ____OO,
	    ____OO,
	    ____OO,
	    ____OO,
	    ____OO,
	    __OOOO,
	    ______},
    [0x5e] {___O__,
	    __OOO_,
	    _OO_OO,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x5f] {______,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______,
	    _OOOOO,
	    ______},
    [0x60] {_OO___,
	    __OO__,
	    ___OO_,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
    [0x61] {______,
	    ______,
	    __OOO_,
	    ____OO,
	    __OOOO,
	    _OO_OO,
	    __OOOO,
	    ______},
    [0x62] {_OO___,
	    _OO___,
	    _OO___,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    ______},
    [0x63] {______,
	    ______,
	    __OOO_,
	    _OO_OO,
	    _OO___,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x64] {____OO,
	    ____OO,
	    ____OO,
	    __OOOO,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ______},
    [0x65] {______,
	    ______,
	    __OOO_,
	    _OO_OO,
	    _OOOOO,
	    _OO___,
	    __OOO_,
	    ______},
    [0x66] {___OOO,
	    __OO__,
	    __OO__,
	    _OOOO_,
	    __OO__,
	    __OO__,
	    __OO__,
	    ______},
    [0x67] {______,
	    __OOOO,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ____OO,
	    __OOO_,
	    ______},
    [0x68] {_OO___,
	    _OO___,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x69] {__OO__,
	    ______,
	    _OOO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    _OOOO_,
	    ______},
    [0x6a] {____OO,
	    ______,
	    ___OOO,
	    ____OO,
	    ____OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x6b] {_OO___,
	    _OO___,
	    _OO_OO,
	    _OO_OO,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x6c] {_OOO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    _OOOO_,
	    ______},
    [0x6d] {______,
	    ______,
	    _OO_O_,
	    _OOOOO,
	    _OOOOO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x6e] {______,
	    ______,
	    _OOOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x6f] {______,
	    ______,
	    __OOO_,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ______},
    [0x70] {______,
	    ______,
	    _OOOO_,
	    _OO_OO,
	    _OOOO_,
	    _OO___,
	    _OO___,
	    ______},
    [0x71] {______,
	    ______,
	    __OOOO,
	    _OO_OO,
	    __OOOO,
	    ____OO,
	    ____OO,
	    ______},
    [0x72] {______,
	    ______,
	    _OO_OO,
	    _OOOO_,
	    _OO___,
	    _OO___,
	    _OO___,
	    ______},
    [0x73] {______,
	    ______,
	    __OOOO,
	    _OO___,
	    __OOO_,
	    ____OO,
	    _OOOO_,
	    ______},
    [0x74] {__OO__,
	    __OO__,
	    _OOOO_,
	    __OO__,
	    __OO__,
	    __OO__,
	    ___OO_,
	    ______},
    [0x75] {______,
	    ______,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ______},
    [0x76] {______,
	    ______,
	    _OO_OO,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    ___O__,
	    ______},
    [0x77] {______,
	    ______,
	    _OO_OO,
	    _OO_OO,
	    _OOOOO,
	    _OO_OO,
	    _O___O,
	    ______},
    [0x78] {______,
	    ______,
	    _OO_OO,
	    _OO_OO,
	    __OOO_,
	    _OO_OO,
	    _OO_OO,
	    ______},
    [0x79] {______,
	    ______,
	    _OO_OO,
	    _OO_OO,
	    __OOOO,
	    ____OO,
	    __OOO_,
	    ______},
    [0x7a] {______,
	    ______,
	    _OOOOO,
	    ___OO_,
	    __OO__,
	    _OO___,
	    _OOOOO,
	    ______},
    [0x7b] {___OO_,
	    __OO__,
	    __OO__,
	    _OO___,
	    __OO__,
	    __OO__,
	    ___OO_,
	    ______},
    [0x7c] {__OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    __OO__,
	    ______},
    [0x7d] {__OO__,
	    ___OO_,
	    ___OO_,
	    ____OO,
	    ___OO_,
	    ___OO_,
	    __OO__,
	    ______},
    [0x7e] {______,
	    __OO__,
	    ___OO_,
	    _OOOOO,
	    ___OO_,
	    __OO__,
	    ______,
	    ______},

    [0x7f] {______,
	    ___OO_,
	    __OO__,
	    _OOOOO,
	    __OO__,
	    ___OO_,
	    ______,
	    ______},
    [0xb0] {_OOOOO,
	    _OO_OO,
	    _OOOOO,
	    ______,
	    ______,
	    ______,
	    ______,
	    ______},
};