STM32Cube BSP FW for STM32F769I-Discovery

Dependents:   mbed-os-example-blinky-5 DISCO-F769NI_TOUCHSCREEN_demo_custom_1 Datarecorder2 DISCO-F769NI_TOUCHSCREEN_demo ... more

Committer:
Jerome Coutant
Date:
Thu Mar 23 10:42:33 2017 +0100
Revision:
2:39d2c2c79afa
Parent:
0:c0f3bbab73d2
Add IRQHandler functions for audio part

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jerome Coutant 0:c0f3bbab73d2 1 /**
Jerome Coutant 0:c0f3bbab73d2 2 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 3 * @file font24.c
Jerome Coutant 0:c0f3bbab73d2 4 * @author MCD Application Team
Jerome Coutant 0:c0f3bbab73d2 5 * @version V1.0.0
Jerome Coutant 0:c0f3bbab73d2 6 * @date 18-February-2014
Jerome Coutant 0:c0f3bbab73d2 7 * @brief This file provides text font24 for STM32xx-EVAL's LCD driver.
Jerome Coutant 0:c0f3bbab73d2 8 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 9 * @attention
Jerome Coutant 0:c0f3bbab73d2 10 *
Jerome Coutant 0:c0f3bbab73d2 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Jerome Coutant 0:c0f3bbab73d2 12 *
Jerome Coutant 0:c0f3bbab73d2 13 * Redistribution and use in source and binary forms, with or without modification,
Jerome Coutant 0:c0f3bbab73d2 14 * are permitted provided that the following conditions are met:
Jerome Coutant 0:c0f3bbab73d2 15 * 1. Redistributions of source code must retain the above copyright notice,
Jerome Coutant 0:c0f3bbab73d2 16 * this list of conditions and the following disclaimer.
Jerome Coutant 0:c0f3bbab73d2 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Jerome Coutant 0:c0f3bbab73d2 18 * this list of conditions and the following disclaimer in the documentation
Jerome Coutant 0:c0f3bbab73d2 19 * and/or other materials provided with the distribution.
Jerome Coutant 0:c0f3bbab73d2 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Jerome Coutant 0:c0f3bbab73d2 21 * may be used to endorse or promote products derived from this software
Jerome Coutant 0:c0f3bbab73d2 22 * without specific prior written permission.
Jerome Coutant 0:c0f3bbab73d2 23 *
Jerome Coutant 0:c0f3bbab73d2 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Jerome Coutant 0:c0f3bbab73d2 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Jerome Coutant 0:c0f3bbab73d2 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Jerome Coutant 0:c0f3bbab73d2 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Jerome Coutant 0:c0f3bbab73d2 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Jerome Coutant 0:c0f3bbab73d2 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Jerome Coutant 0:c0f3bbab73d2 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Jerome Coutant 0:c0f3bbab73d2 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Jerome Coutant 0:c0f3bbab73d2 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Jerome Coutant 0:c0f3bbab73d2 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Jerome Coutant 0:c0f3bbab73d2 34 *
Jerome Coutant 0:c0f3bbab73d2 35 ******************************************************************************
Jerome Coutant 0:c0f3bbab73d2 36 */
Jerome Coutant 0:c0f3bbab73d2 37
Jerome Coutant 0:c0f3bbab73d2 38 /* Includes ------------------------------------------------------------------*/
Jerome Coutant 0:c0f3bbab73d2 39 #include "fonts.h"
Jerome Coutant 0:c0f3bbab73d2 40
Jerome Coutant 0:c0f3bbab73d2 41 /** @addtogroup Utilities
Jerome Coutant 0:c0f3bbab73d2 42 * @{
Jerome Coutant 0:c0f3bbab73d2 43 */
Jerome Coutant 0:c0f3bbab73d2 44
Jerome Coutant 0:c0f3bbab73d2 45 /** @addtogroup STM32_EVAL
Jerome Coutant 0:c0f3bbab73d2 46 * @{
Jerome Coutant 0:c0f3bbab73d2 47 */
Jerome Coutant 0:c0f3bbab73d2 48
Jerome Coutant 0:c0f3bbab73d2 49 /** @addtogroup Common
Jerome Coutant 0:c0f3bbab73d2 50 * @{
Jerome Coutant 0:c0f3bbab73d2 51 */
Jerome Coutant 0:c0f3bbab73d2 52
Jerome Coutant 0:c0f3bbab73d2 53 /** @addtogroup FONTS
Jerome Coutant 0:c0f3bbab73d2 54 * @brief This file provides text font24 for STM32xx-EVAL's LCD driver.
Jerome Coutant 0:c0f3bbab73d2 55 * @{
Jerome Coutant 0:c0f3bbab73d2 56 */
Jerome Coutant 0:c0f3bbab73d2 57
Jerome Coutant 0:c0f3bbab73d2 58 /** @defgroup FONTS_Private_Types
Jerome Coutant 0:c0f3bbab73d2 59 * @{
Jerome Coutant 0:c0f3bbab73d2 60 */
Jerome Coutant 0:c0f3bbab73d2 61 /**
Jerome Coutant 0:c0f3bbab73d2 62 * @}
Jerome Coutant 0:c0f3bbab73d2 63 */
Jerome Coutant 0:c0f3bbab73d2 64
Jerome Coutant 0:c0f3bbab73d2 65
Jerome Coutant 0:c0f3bbab73d2 66 /** @defgroup FONTS_Private_Defines
Jerome Coutant 0:c0f3bbab73d2 67 * @{
Jerome Coutant 0:c0f3bbab73d2 68 */
Jerome Coutant 0:c0f3bbab73d2 69 /**
Jerome Coutant 0:c0f3bbab73d2 70 * @}
Jerome Coutant 0:c0f3bbab73d2 71 */
Jerome Coutant 0:c0f3bbab73d2 72
Jerome Coutant 0:c0f3bbab73d2 73
Jerome Coutant 0:c0f3bbab73d2 74 /** @defgroup FONTS_Private_Macros
Jerome Coutant 0:c0f3bbab73d2 75 * @{
Jerome Coutant 0:c0f3bbab73d2 76 */
Jerome Coutant 0:c0f3bbab73d2 77 /**
Jerome Coutant 0:c0f3bbab73d2 78 * @}
Jerome Coutant 0:c0f3bbab73d2 79 */
Jerome Coutant 0:c0f3bbab73d2 80
Jerome Coutant 0:c0f3bbab73d2 81
Jerome Coutant 0:c0f3bbab73d2 82 /** @defgroup FONTS_Private_Variables
Jerome Coutant 0:c0f3bbab73d2 83 * @{
Jerome Coutant 0:c0f3bbab73d2 84 */
Jerome Coutant 0:c0f3bbab73d2 85 const uint8_t Font24_Table [] =
Jerome Coutant 0:c0f3bbab73d2 86 {
Jerome Coutant 0:c0f3bbab73d2 87 // @0 ' ' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 88 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 89 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 90 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 91 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 92 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 93 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 94 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 95 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 96 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 97 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 98 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 99 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 100 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 101 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 102 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 103 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 104 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 105 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 106 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 107 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 108 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 109 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 110 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 111 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 112
Jerome Coutant 0:c0f3bbab73d2 113 // @72 '!' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 114 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 115 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 116 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 117 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 118 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 119 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 120 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 121 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 122 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 123 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 124 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 125 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 126 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 127 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 128 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 129 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 130 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 131 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 132 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 133 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 134 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 135 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 136 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 137 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 138
Jerome Coutant 0:c0f3bbab73d2 139 // @144 '"' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 140 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 141 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 142 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 143 0x0E, 0x70, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 144 0x0E, 0x70, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 145 0x0E, 0x70, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 146 0x04, 0x20, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 147 0x04, 0x20, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 148 0x04, 0x20, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 149 0x04, 0x20, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 150 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 151 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 152 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 153 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 154 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 155 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 156 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 157 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 158 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 159 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 160 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 161 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 162 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 163 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 164
Jerome Coutant 0:c0f3bbab73d2 165 // @216 '#' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 166 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 167 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 168 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 169 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 170 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 171 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 172 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 173 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 174 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 175 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 176 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 177 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 178 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 179 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 180 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 181 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 182 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 183 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 184 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 185 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 186 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 187 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 188 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 189 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 190
Jerome Coutant 0:c0f3bbab73d2 191 // @288 '$' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 192 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 193 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 194 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 195 0x07, 0xB0, 0x00, // #### ##
Jerome Coutant 0:c0f3bbab73d2 196 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 197 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 198 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 199 0x1C, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 200 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 201 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 202 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 203 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 204 0x1C, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 205 0x1C, 0x70, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 206 0x1F, 0xE0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 207 0x1B, 0xC0, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 208 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 209 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 210 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 211 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 212 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 213 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 214 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 215 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 216
Jerome Coutant 0:c0f3bbab73d2 217 // @360 '%' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 218 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 219 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 220 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 221 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 222 0x1C, 0xE0, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 223 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 224 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 225 0x1C, 0xE0, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 226 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 227 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 228 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 229 0x07, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 230 0x06, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 231 0x06, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 232 0x07, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 233 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 234 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 235 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 236 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 237 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 238 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 239 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 240 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 241 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 242
Jerome Coutant 0:c0f3bbab73d2 243 // @432 '&' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 244 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 245 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 246 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 247 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 248 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 249 0x07, 0xF0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 250 0x0C, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 251 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 252 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 253 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 254 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 255 0x0F, 0x9C, 0x00, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 256 0x1D, 0xFC, 0x00, // ### #######
Jerome Coutant 0:c0f3bbab73d2 257 0x18, 0xF0, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 258 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 259 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 260 0x07, 0xDC, 0x00, // ##### ###
Jerome Coutant 0:c0f3bbab73d2 261 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 262 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 263 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 264 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 265 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 266 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 267 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 268
Jerome Coutant 0:c0f3bbab73d2 269 // @504 ''' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 270 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 271 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 272 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 273 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 274 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 275 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 276 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 277 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 278 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 279 0x01, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 280 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 281 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 282 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 283 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 284 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 285 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 286 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 287 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 288 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 289 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 290 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 291 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 292 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 293 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 294
Jerome Coutant 0:c0f3bbab73d2 295 // @576 '(' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 296 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 297 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 298 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 299 0x00, 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 300 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 301 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 302 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 303 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 304 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 305 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 306 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 307 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 308 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 309 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 310 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 311 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 312 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 313 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 314 0x00, 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 315 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 316 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 317 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 318 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 319 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 320
Jerome Coutant 0:c0f3bbab73d2 321 // @648 ')' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 322 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 323 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 324 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 325 0x1C, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 326 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 327 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 328 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 329 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 330 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 331 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 332 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 333 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 334 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 335 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 336 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 337 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 338 0x0F, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 339 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 340 0x1C, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 341 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 342 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 343 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 344 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 345 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 346
Jerome Coutant 0:c0f3bbab73d2 347 // @720 '*' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 348 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 349 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 350 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 351 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 352 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 353 0x1D, 0xB8, 0x00, // ### ## ###
Jerome Coutant 0:c0f3bbab73d2 354 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 355 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 356 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 357 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 358 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 359 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 360 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 361 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 362 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 363 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 364 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 365 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 366 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 367 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 368 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 369 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 370 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 371 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 372
Jerome Coutant 0:c0f3bbab73d2 373 // @792 '+' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 374 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 375 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 376 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 377 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 378 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 379 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 380 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 381 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 382 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 383 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 384 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 385 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 386 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 387 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 388 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 389 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 390 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 391 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 392 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 393 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 394 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 395 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 396 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 397 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 398
Jerome Coutant 0:c0f3bbab73d2 399 // @864 ',' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 400 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 401 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 402 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 403 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 404 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 405 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 406 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 407 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 408 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 409 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 410 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 411 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 412 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 413 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 414 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 415 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 416 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 417 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 418 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 419 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 420 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 421 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 422 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 423 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 424
Jerome Coutant 0:c0f3bbab73d2 425 // @936 '-' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 426 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 427 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 428 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 429 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 430 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 431 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 432 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 433 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 434 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 435 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 436 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 437 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 438 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 439 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 440 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 441 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 442 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 443 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 444 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 445 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 446 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 447 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 448 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 449 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 450
Jerome Coutant 0:c0f3bbab73d2 451 // @1008 '.' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 452 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 453 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 454 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 455 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 456 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 457 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 458 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 459 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 460 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 461 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 462 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 463 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 464 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 465 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 466 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 467 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 468 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 469 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 470 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 471 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 472 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 473 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 474 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 475 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 476
Jerome Coutant 0:c0f3bbab73d2 477 // @1080 '/' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 478 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 479 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 480 0x00, 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 481 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 482 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 483 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 484 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 485 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 486 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 487 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 488 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 489 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 490 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 491 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 492 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 493 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 494 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 495 0x1C, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 496 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 497 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 498 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 499 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 500 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 501 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 502
Jerome Coutant 0:c0f3bbab73d2 503 // @1152 '0' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 504 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 505 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 506 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 507 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 508 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 509 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 510 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 511 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 512 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 513 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 514 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 515 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 516 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 517 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 518 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 519 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 520 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 521 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 522 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 523 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 524 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 525 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 526 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 527 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 528
Jerome Coutant 0:c0f3bbab73d2 529 // @1224 '1' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 530 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 531 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 532 0x00, 0x80, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 533 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 534 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 535 0x1D, 0x80, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 536 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 537 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 538 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 539 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 540 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 541 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 542 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 543 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 544 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 545 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 546 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 547 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 548 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 549 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 550 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 551 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 552 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 553 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 554
Jerome Coutant 0:c0f3bbab73d2 555 // @1296 '2' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 556 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 557 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 558 0x07, 0xC0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 559 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 560 0x38, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 561 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 562 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 563 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 564 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 565 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 566 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 567 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 568 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 569 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 570 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 571 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 572 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 573 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 574 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 575 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 576 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 577 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 578 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 579 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 580
Jerome Coutant 0:c0f3bbab73d2 581 // @1368 '3' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 582 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 583 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 584 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 585 0x0F, 0xE0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 586 0x0C, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 587 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 588 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 589 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 590 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 591 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 592 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 593 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 594 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 595 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 596 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 597 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 598 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 599 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 600 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 601 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 602 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 603 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 604 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 605 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 606
Jerome Coutant 0:c0f3bbab73d2 607 // @1440 '4' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 608 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 609 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 610 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 611 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 612 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 613 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 614 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 615 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 616 0x0C, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 617 0x0C, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 618 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 619 0x30, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 620 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 621 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 622 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 623 0x03, 0xF8, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 624 0x03, 0xF8, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 625 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 626 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 627 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 628 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 629 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 630 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 631 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 632
Jerome Coutant 0:c0f3bbab73d2 633 // @1512 '5' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 634 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 635 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 636 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 637 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 638 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 639 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 640 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 641 0x1B, 0xC0, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 642 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 643 0x1C, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 644 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 645 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 646 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 647 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 648 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 649 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 650 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 651 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 652 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 653 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 654 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 655 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 656 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 657 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 658
Jerome Coutant 0:c0f3bbab73d2 659 // @1584 '6' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 660 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 661 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 662 0x00, 0xF8, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 663 0x03, 0xF8, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 664 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 665 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 666 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 667 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 668 0x1B, 0xC0, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 669 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 670 0x1C, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 671 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 672 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 673 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 674 0x0C, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 675 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 676 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 677 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 678 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 679 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 680 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 681 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 682 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 683 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 684
Jerome Coutant 0:c0f3bbab73d2 685 // @1656 '7' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 686 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 687 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 688 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 689 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 690 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 691 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 692 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 693 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 694 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 695 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 696 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 697 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 698 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 699 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 700 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 701 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 702 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 703 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 704 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 705 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 706 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 707 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 708 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 709 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 710
Jerome Coutant 0:c0f3bbab73d2 711 // @1728 '8' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 712 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 713 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 714 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 715 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 716 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 717 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 718 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 719 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 720 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 721 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 722 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 723 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 724 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 725 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 726 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 727 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 728 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 729 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 730 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 731 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 732 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 733 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 734 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 735 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 736
Jerome Coutant 0:c0f3bbab73d2 737 // @1800 '9' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 738 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 739 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 740 0x07, 0xC0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 741 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 742 0x1C, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 743 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 744 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 745 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 746 0x0C, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 747 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 748 0x03, 0xD8, 0x00, // #### ##
Jerome Coutant 0:c0f3bbab73d2 749 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 750 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 751 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 752 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 753 0x1F, 0xC0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 754 0x1F, 0x00, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 755 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 756 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 757 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 758 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 759 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 760 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 761 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 762
Jerome Coutant 0:c0f3bbab73d2 763 // @1872 ':' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 764 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 765 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 766 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 767 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 768 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 769 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 770 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 771 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 772 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 773 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 774 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 775 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 776 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 777 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 778 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 779 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 780 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 781 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 782 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 783 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 784 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 785 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 786 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 787 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 788
Jerome Coutant 0:c0f3bbab73d2 789 // @1944 ';' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 790 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 791 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 792 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 793 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 794 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 795 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 796 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 797 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 798 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 799 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 800 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 801 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 802 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 803 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 804 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 805 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 806 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 807 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 808 0x02, 0x00, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 809 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 810 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 811 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 812 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 813 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 814
Jerome Coutant 0:c0f3bbab73d2 815 // @2016 '<' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 816 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 817 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 818 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 819 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 820 0x00, 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 821 0x00, 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 822 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 823 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 824 0x0F, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 825 0x3C, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 826 0xF0, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 827 0x3C, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 828 0x0F, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 829 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 830 0x00, 0xF0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 831 0x00, 0x3C, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 832 0x00, 0x1C, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 833 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 834 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 835 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 836 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 837 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 838 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 839 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 840
Jerome Coutant 0:c0f3bbab73d2 841 // @2088 '=' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 842 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 843 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 844 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 845 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 846 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 847 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 848 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 849 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 850 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 851 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 852 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 853 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 854 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 855 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 856 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 857 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 858 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 859 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 860 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 861 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 862 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 863 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 864 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 865 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 866
Jerome Coutant 0:c0f3bbab73d2 867 // @2160 '>' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 868 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 869 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 870 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 871 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 872 0x70, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 873 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 874 0x1E, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 875 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 876 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 877 0x00, 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 878 0x00, 0x1E, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 879 0x00, 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 880 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 881 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 882 0x1E, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 883 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 884 0x70, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 885 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 886 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 887 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 888 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 889 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 890 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 891 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 892
Jerome Coutant 0:c0f3bbab73d2 893 // @2232 '?' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 894 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 895 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 896 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 897 0x07, 0xC0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 898 0x0F, 0xE0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 899 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 900 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 901 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 902 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 903 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 904 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 905 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 906 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 907 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 908 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 909 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 910 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 911 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 912 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 913 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 914 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 915 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 916 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 917 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 918
Jerome Coutant 0:c0f3bbab73d2 919 // @2304 '@' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 920 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 921 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 922 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 923 0x07, 0xF0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 924 0x0E, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 925 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 926 0x18, 0x78, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 927 0x18, 0xF8, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 928 0x19, 0xD8, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 929 0x19, 0x98, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 930 0x19, 0x98, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 931 0x19, 0x98, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 932 0x18, 0xF8, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 933 0x18, 0x78, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 934 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 935 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 936 0x0E, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 937 0x07, 0xF8, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 938 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 939 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 940 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 941 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 942 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 943 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 944
Jerome Coutant 0:c0f3bbab73d2 945 // @2376 'A' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 946 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 947 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 948 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 949 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 950 0x1F, 0xC0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 951 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 952 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 953 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 954 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 955 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 956 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 957 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 958 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 959 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 960 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 961 0xFC, 0x7F, 0x00, // ###### #######
Jerome Coutant 0:c0f3bbab73d2 962 0xFC, 0x7F, 0x00, // ###### #######
Jerome Coutant 0:c0f3bbab73d2 963 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 964 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 965 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 966 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 967 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 968 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 969 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 970
Jerome Coutant 0:c0f3bbab73d2 971 // @2448 'B' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 972 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 973 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 974 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 975 0x7F, 0xE0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 976 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 977 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 978 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 979 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 980 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 981 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 982 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 983 0x18, 0x1C, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 984 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 985 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 986 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 987 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 988 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 989 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 990 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 991 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 992 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 993 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 994 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 995 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 996
Jerome Coutant 0:c0f3bbab73d2 997 // @2520 'C' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 998 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 999 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1000 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1001 0x03, 0xEC, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1002 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1003 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1004 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1005 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1006 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1007 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1008 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1009 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1010 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1011 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1012 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1013 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1014 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1015 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1016 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1017 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1018 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1019 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1020 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1021 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1022
Jerome Coutant 0:c0f3bbab73d2 1023 // @2592 'D' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1024 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1025 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1026 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1027 0x7F, 0xC0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1028 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1029 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1030 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1031 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1032 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1033 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1034 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1035 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1036 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1037 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1038 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1039 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1040 0x7F, 0xE0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1041 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1042 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1043 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1044 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1045 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1046 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1047 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1048
Jerome Coutant 0:c0f3bbab73d2 1049 // @2664 'E' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1050 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1051 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1052 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1053 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1054 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1055 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1056 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1057 0x19, 0x98, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1058 0x19, 0x80, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1059 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1060 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1061 0x19, 0x80, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1062 0x19, 0x98, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1063 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1064 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1065 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1066 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1067 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1068 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1069 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1070 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1071 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1072 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1073 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1074
Jerome Coutant 0:c0f3bbab73d2 1075 // @2736 'F' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1076 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1077 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1078 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1079 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1080 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1081 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1082 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1083 0x0C, 0xCC, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1084 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1085 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1086 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1087 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1088 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1089 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1090 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1091 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1092 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1093 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1094 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1095 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1096 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1097 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1098 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1099 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1100
Jerome Coutant 0:c0f3bbab73d2 1101 // @2808 'G' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1102 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1103 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1104 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1105 0x03, 0xEC, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1106 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1107 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1108 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1109 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1110 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1111 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1112 0x30, 0xFE, 0x00, // ## #######
Jerome Coutant 0:c0f3bbab73d2 1113 0x30, 0xFE, 0x00, // ## #######
Jerome Coutant 0:c0f3bbab73d2 1114 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1115 0x38, 0x0C, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1116 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1117 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1118 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1119 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1120 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1121 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1122 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1123 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1124 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1125 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1126
Jerome Coutant 0:c0f3bbab73d2 1127 // @2880 'H' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1128 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1129 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1130 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1131 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1132 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1133 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1134 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1135 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1136 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1137 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1138 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1139 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1140 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1141 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1142 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1143 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1144 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1145 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1146 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1147 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1148 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1149 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1150 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1151 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1152
Jerome Coutant 0:c0f3bbab73d2 1153 // @2952 'I' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1154 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1155 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1156 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1157 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1158 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1159 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1160 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1161 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1162 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1163 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1164 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1165 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1166 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1167 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1168 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1169 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1170 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1171 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1172 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1173 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1174 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1175 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1176 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1177 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1178
Jerome Coutant 0:c0f3bbab73d2 1179 // @3024 'J' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1180 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1181 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1182 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1183 0x07, 0xFE, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1184 0x07, 0xFE, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1185 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1186 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1187 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1188 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1189 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1190 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1191 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1192 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1193 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1194 0x30, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1195 0x3F, 0xE0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1196 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1197 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1198 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1199 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1200 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1201 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1202 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1203 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1204
Jerome Coutant 0:c0f3bbab73d2 1205 // @3096 'K' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1206 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1207 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1208 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1209 0x7F, 0x3E, 0x00, // ####### #####
Jerome Coutant 0:c0f3bbab73d2 1210 0x7F, 0x3E, 0x00, // ####### #####
Jerome Coutant 0:c0f3bbab73d2 1211 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1212 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1213 0x18, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1214 0x19, 0x80, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1215 0x1B, 0x80, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1216 0x1F, 0xC0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1217 0x1C, 0xE0, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1218 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1219 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1220 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1221 0x7F, 0x1F, 0x00, // ####### #####
Jerome Coutant 0:c0f3bbab73d2 1222 0x7F, 0x1F, 0x00, // ####### #####
Jerome Coutant 0:c0f3bbab73d2 1223 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1224 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1225 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1226 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1227 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1228 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1229 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1230
Jerome Coutant 0:c0f3bbab73d2 1231 // @3168 'L' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1232 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1233 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1234 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1235 0x7F, 0x80, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1236 0x7F, 0x80, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1237 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1238 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1239 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1240 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1241 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1242 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1243 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1244 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1245 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1246 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1247 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 1248 0x7F, 0xFC, 0x00, // #############
Jerome Coutant 0:c0f3bbab73d2 1249 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1250 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1251 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1252 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1253 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1254 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1255 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1256
Jerome Coutant 0:c0f3bbab73d2 1257 // @3240 'M' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1258 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1259 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1260 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1261 0xF0, 0x0F, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1262 0xF8, 0x1F, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 1263 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1264 0x3C, 0x3C, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1265 0x3C, 0x3C, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 1266 0x36, 0x6C, 0x00, // ## ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1267 0x36, 0x6C, 0x00, // ## ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1268 0x33, 0xCC, 0x00, // ## #### ##
Jerome Coutant 0:c0f3bbab73d2 1269 0x33, 0xCC, 0x00, // ## #### ##
Jerome Coutant 0:c0f3bbab73d2 1270 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1271 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1272 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1273 0xFE, 0x7F, 0x00, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1274 0xFE, 0x7F, 0x00, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1275 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1276 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1277 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1278 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1279 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1280 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1281 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1282
Jerome Coutant 0:c0f3bbab73d2 1283 // @3312 'N' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1284 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1285 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1286 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1287 0x78, 0xFE, 0x00, // #### #######
Jerome Coutant 0:c0f3bbab73d2 1288 0x78, 0xFE, 0x00, // #### #######
Jerome Coutant 0:c0f3bbab73d2 1289 0x1C, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1290 0x1E, 0x18, 0x00, // #### ##
Jerome Coutant 0:c0f3bbab73d2 1291 0x1F, 0x18, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1292 0x1B, 0x18, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1293 0x1B, 0x98, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1294 0x19, 0xD8, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1295 0x18, 0xD8, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1296 0x18, 0xF8, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1297 0x18, 0x78, 0x00, // ## ####
Jerome Coutant 0:c0f3bbab73d2 1298 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1299 0x7F, 0x18, 0x00, // ####### ##
Jerome Coutant 0:c0f3bbab73d2 1300 0x7F, 0x18, 0x00, // ####### ##
Jerome Coutant 0:c0f3bbab73d2 1301 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1302 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1303 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1304 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1305 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1306 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1307 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1308
Jerome Coutant 0:c0f3bbab73d2 1309 // @3384 'O' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1310 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1311 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1312 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1313 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1314 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1315 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1316 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1317 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1318 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1319 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1320 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1321 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1322 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1323 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1324 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1325 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1326 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1327 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1328 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1329 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1330 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1331 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1332 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1333 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1334
Jerome Coutant 0:c0f3bbab73d2 1335 // @3456 'P' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1336 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1337 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1338 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1339 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1340 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1341 0x0C, 0x1C, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1342 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1343 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1344 0x0C, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1345 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1346 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1347 0x0F, 0xE0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1348 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1349 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1350 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1351 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1352 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1353 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1354 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1355 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1356 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1357 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1358 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1359 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1360
Jerome Coutant 0:c0f3bbab73d2 1361 // @3528 'Q' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1362 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1363 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1364 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1365 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1366 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1367 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1368 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1369 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1370 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1371 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1372 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1373 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1374 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1375 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1376 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1377 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1378 0x07, 0xC0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1379 0x07, 0xCC, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1380 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1381 0x0C, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1382 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1383 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1384 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1385 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1386
Jerome Coutant 0:c0f3bbab73d2 1387 // @3600 'R' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1388 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1389 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1390 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1391 0x7F, 0xE0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1392 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1393 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1394 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1395 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1396 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1397 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1398 0x1F, 0xC0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1399 0x18, 0xE0, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1400 0x18, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1401 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1402 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1403 0x7F, 0x1E, 0x00, // ####### ####
Jerome Coutant 0:c0f3bbab73d2 1404 0x7F, 0x0E, 0x00, // ####### ###
Jerome Coutant 0:c0f3bbab73d2 1405 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1406 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1407 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1408 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1409 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1410 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1411 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1412
Jerome Coutant 0:c0f3bbab73d2 1413 // @3672 'S' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1414 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1415 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1416 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1417 0x07, 0xD8, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1418 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1419 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1420 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1421 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1422 0x1E, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1423 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1424 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1425 0x00, 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1426 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1427 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1428 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1429 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1430 0x1B, 0xE0, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1431 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1432 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1433 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1434 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1435 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1436 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1437 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1438
Jerome Coutant 0:c0f3bbab73d2 1439 // @3744 'T' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1440 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1441 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1442 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1443 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1444 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1445 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1446 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1447 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1448 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1449 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1450 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1451 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1452 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1453 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1454 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1455 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1456 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1457 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1458 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1459 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1460 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1461 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1462 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1463 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1464
Jerome Coutant 0:c0f3bbab73d2 1465 // @3816 'U' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1466 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1467 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1468 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1469 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1470 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1471 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1472 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1473 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1474 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1475 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1476 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1477 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1478 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1479 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1480 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1481 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1482 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1483 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1484 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1485 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1486 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1487 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1488 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1489 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1490
Jerome Coutant 0:c0f3bbab73d2 1491 // @3888 'V' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1492 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1493 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1494 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1495 0x7F, 0x7F, 0x00, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1496 0x7F, 0x7F, 0x00, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1497 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1498 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1499 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1500 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1501 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1502 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1503 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1504 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1505 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1506 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1507 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1508 0x00, 0x80, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1509 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1510 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1511 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1512 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1513 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1514 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1515 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1516
Jerome Coutant 0:c0f3bbab73d2 1517 // @3960 'W' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1518 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1519 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1520 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1521 0xFE, 0x3F, 0x80, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1522 0xFE, 0x3F, 0x80, // ####### #######
Jerome Coutant 0:c0f3bbab73d2 1523 0x30, 0x06, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1524 0x30, 0x06, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1525 0x30, 0x86, 0x00, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 1526 0x19, 0xCC, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1527 0x19, 0xCC, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 1528 0x1B, 0x6C, 0x00, // ## ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1529 0x1B, 0x6C, 0x00, // ## ## ## ##
Jerome Coutant 0:c0f3bbab73d2 1530 0x1E, 0x7C, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 1531 0x0E, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1532 0x0E, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1533 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1534 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1535 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1536 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1537 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1538 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1539 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1540 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1541 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1542
Jerome Coutant 0:c0f3bbab73d2 1543 // @4032 'X' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1544 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1545 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1546 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1547 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1548 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1549 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1550 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1551 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1552 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1553 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1554 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1555 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1556 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1557 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1558 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1559 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1560 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1561 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1562 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1563 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1564 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1565 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1566 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1567 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1568
Jerome Coutant 0:c0f3bbab73d2 1569 // @4104 'Y' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1570 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1571 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1572 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1573 0x7C, 0x7E, 0x00, // ##### ######
Jerome Coutant 0:c0f3bbab73d2 1574 0x7C, 0x7E, 0x00, // ##### ######
Jerome Coutant 0:c0f3bbab73d2 1575 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1576 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1577 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1578 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1579 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1580 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1581 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1582 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1583 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1584 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1585 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1586 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1587 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1588 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1589 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1590 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1591 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1592 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1593 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1594
Jerome Coutant 0:c0f3bbab73d2 1595 // @4176 'Z' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1596 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1597 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1598 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1599 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1600 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1601 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1602 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1603 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1604 0x18, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1605 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1606 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1607 0x06, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1608 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1609 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1610 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1611 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1612 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1613 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1614 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1615 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1616 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1617 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1618 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1619 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1620
Jerome Coutant 0:c0f3bbab73d2 1621 // @4248 '[' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1622 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1623 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1624 0x01, 0xF0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1625 0x01, 0xF0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1626 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1627 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1628 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1629 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1630 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1631 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1632 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1633 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1634 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1635 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1636 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1637 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1638 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1639 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1640 0x01, 0xF0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1641 0x01, 0xF0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1642 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1643 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1644 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1645 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1646
Jerome Coutant 0:c0f3bbab73d2 1647 // @4320 '\' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1648 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1649 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1650 0x1C, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1651 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1652 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1653 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1654 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1655 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1656 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1657 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1658 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1659 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1660 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1661 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1662 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1663 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1664 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1665 0x00, 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1666 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1667 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1668 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1669 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1670 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1671 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1672
Jerome Coutant 0:c0f3bbab73d2 1673 // @4392 ']' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1674 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1675 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1676 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1677 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1678 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1679 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1680 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1681 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1682 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1683 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1684 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1685 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1686 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1687 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1688 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1689 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1690 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1691 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1692 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1693 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1694 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1695 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1696 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1697 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1698
Jerome Coutant 0:c0f3bbab73d2 1699 // @4464 '^' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1700 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1701 0x00, 0x80, 0x00, // #
Jerome Coutant 0:c0f3bbab73d2 1702 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1703 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 1704 0x07, 0x70, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1705 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1706 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1707 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1708 0x10, 0x04, 0x00, // # #
Jerome Coutant 0:c0f3bbab73d2 1709 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1710 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1711 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1712 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1713 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1714 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1715 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1716 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1717 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1718 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1719 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1720 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1721 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1722 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1723 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1724
Jerome Coutant 0:c0f3bbab73d2 1725 // @4536 '_' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1726 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1727 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1728 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1729 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1730 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1731 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1732 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1733 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1734 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1735 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1736 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1737 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1738 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1739 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1740 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1741 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1742 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1743 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1744 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1745 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1746 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1747 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1748 0xFF, 0xFF, 0x00, // ################
Jerome Coutant 0:c0f3bbab73d2 1749 0xFF, 0xFF, 0x00, // ################
Jerome Coutant 0:c0f3bbab73d2 1750
Jerome Coutant 0:c0f3bbab73d2 1751 // @4608 '`' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1752 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1753 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1754 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1755 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1756 0x00, 0x60, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1757 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1758 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1759 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1760 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1761 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1762 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1763 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1764 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1765 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1766 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1767 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1768 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1769 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1770 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1771 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1772 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1773 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1774 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1775 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1776
Jerome Coutant 0:c0f3bbab73d2 1777 // @4680 'a' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1778 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1779 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1780 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1781 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1782 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1783 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1784 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1785 0x1F, 0xE0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1786 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1787 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1788 0x07, 0xF0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1789 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1790 0x38, 0x30, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1791 0x30, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1792 0x30, 0x70, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1793 0x1F, 0xFC, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1794 0x0F, 0xBC, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 1795 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1796 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1797 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1798 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1799 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1800 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1801 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1802
Jerome Coutant 0:c0f3bbab73d2 1803 // @4752 'b' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1804 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1805 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1806 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1807 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1808 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1809 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1810 0x1B, 0xE0, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1811 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1812 0x1C, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1813 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1814 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1815 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1816 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1817 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1818 0x1C, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1819 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1820 0x7B, 0xE0, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 1821 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1822 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1823 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1824 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1825 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1826 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1827 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1828
Jerome Coutant 0:c0f3bbab73d2 1829 // @4824 'c' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1830 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1831 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1832 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1833 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1834 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1835 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1836 0x03, 0xEC, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1837 0x0F, 0xFC, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1838 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1839 0x38, 0x0C, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1840 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1841 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1842 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1843 0x38, 0x0C, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 1844 0x1C, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1845 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1846 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1847 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1848 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1849 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1850 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1851 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1852 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1853 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1854
Jerome Coutant 0:c0f3bbab73d2 1855 // @4896 'd' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1856 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1857 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1858 0x00, 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1859 0x00, 0x78, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1860 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1861 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1862 0x07, 0xD8, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1863 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1864 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1865 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1866 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1867 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1868 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1869 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1870 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1871 0x1F, 0xFE, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1872 0x07, 0xDE, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 1873 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1874 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1875 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1876 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1877 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1878 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1879 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1880
Jerome Coutant 0:c0f3bbab73d2 1881 // @4968 'e' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1882 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1883 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1884 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1885 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1886 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1887 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1888 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1889 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1890 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1891 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1892 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1893 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1894 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1895 0x30, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1896 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1897 0x1F, 0xFC, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1898 0x07, 0xF0, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1899 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1900 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1901 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1902 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1903 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1904 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1905 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1906
Jerome Coutant 0:c0f3bbab73d2 1907 // @5040 'f' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1908 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1909 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1910 0x01, 0xFC, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 1911 0x03, 0xFC, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1912 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1913 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1914 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1915 0x3F, 0xF8, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 1916 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1917 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1918 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1919 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1920 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1921 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1922 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1923 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1924 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1925 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1926 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1927 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1928 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1929 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1930 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1931 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1932
Jerome Coutant 0:c0f3bbab73d2 1933 // @5112 'g' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1934 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1935 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1936 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1937 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1938 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1939 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1940 0x07, 0xDE, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 1941 0x1F, 0xFE, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 1942 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1943 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1944 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1945 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1946 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1947 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1948 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 1949 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 1950 0x07, 0xD8, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 1951 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1952 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1953 0x00, 0x38, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 1954 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 1955 0x0F, 0xC0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1956 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1957 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1958
Jerome Coutant 0:c0f3bbab73d2 1959 // @5184 'h' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1960 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1961 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1962 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1963 0x78, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 1964 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1965 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1966 0x1B, 0xE0, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 1967 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 1968 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 1969 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1970 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1971 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1972 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1973 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1974 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 1975 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1976 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 1977 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1978 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1979 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1980 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1981 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1982 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1983 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1984
Jerome Coutant 0:c0f3bbab73d2 1985 // @5256 'i' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 1986 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1987 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1988 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1989 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1990 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1991 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 1992 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1993 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 1994 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1995 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1996 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1997 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1998 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 1999 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2000 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2001 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2002 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2003 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2004 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2005 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2006 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2007 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2008 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2009 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2010
Jerome Coutant 0:c0f3bbab73d2 2011 // @5328 'j' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2012 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2013 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2014 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2015 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2016 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2017 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2018 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 2019 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 2020 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2021 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2022 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2023 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2024 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2025 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2026 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2027 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2028 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2029 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2030 0x00, 0x30, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2031 0x00, 0x70, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2032 0x1F, 0xE0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2033 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2034 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2035 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2036
Jerome Coutant 0:c0f3bbab73d2 2037 // @5400 'k' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2038 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2039 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2040 0x3C, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2041 0x3C, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2042 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2043 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2044 0x0C, 0xF8, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 2045 0x0C, 0xF8, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 2046 0x0C, 0xC0, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2047 0x0D, 0x80, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2048 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 2049 0x0F, 0x00, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2050 0x0F, 0x80, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 2051 0x0D, 0xC0, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2052 0x0C, 0xE0, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2053 0x3C, 0x7C, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 2054 0x3C, 0x7C, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 2055 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2056 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2057 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2058 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2059 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2060 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2061 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2062
Jerome Coutant 0:c0f3bbab73d2 2063 // @5472 'l' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2064 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2065 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2066 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2067 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2068 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2069 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2070 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2071 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2072 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2073 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2074 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2075 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2076 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2077 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2078 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2079 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2080 0x3F, 0xFC, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2081 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2082 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2083 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2084 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2085 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2086 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2087 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2088
Jerome Coutant 0:c0f3bbab73d2 2089 // @5544 'm' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2090 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2091 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2092 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2093 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2094 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2095 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2096 0xF7, 0x78, 0x00, // #### ### ####
Jerome Coutant 0:c0f3bbab73d2 2097 0xFF, 0xFC, 0x00, // ##############
Jerome Coutant 0:c0f3bbab73d2 2098 0x39, 0xCC, 0x00, // ### ### ##
Jerome Coutant 0:c0f3bbab73d2 2099 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2100 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2101 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2102 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2103 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2104 0x31, 0x8C, 0x00, // ## ## ##
Jerome Coutant 0:c0f3bbab73d2 2105 0xFD, 0xEF, 0x00, // ###### #### ####
Jerome Coutant 0:c0f3bbab73d2 2106 0xFD, 0xEF, 0x00, // ###### #### ####
Jerome Coutant 0:c0f3bbab73d2 2107 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2108 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2109 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2110 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2111 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2112 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2113 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2114
Jerome Coutant 0:c0f3bbab73d2 2115 // @5616 'n' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2116 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2117 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2118 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2119 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2120 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2121 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2122 0x7B, 0xE0, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 2123 0x7F, 0xF0, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 2124 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2125 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2126 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2127 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2128 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2129 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2130 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2131 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 2132 0x7E, 0x7E, 0x00, // ###### ######
Jerome Coutant 0:c0f3bbab73d2 2133 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2134 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2135 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2136 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2137 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2138 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2139 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2140
Jerome Coutant 0:c0f3bbab73d2 2141 // @5688 'o' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2142 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2143 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2144 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2145 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2146 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2147 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2148 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2149 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2150 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2151 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2152 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2153 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2154 0x30, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2155 0x38, 0x1C, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2156 0x1C, 0x38, 0x00, // ### ###
Jerome Coutant 0:c0f3bbab73d2 2157 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2158 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2159 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2160 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2161 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2162 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2163 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2164 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2165 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2166
Jerome Coutant 0:c0f3bbab73d2 2167 // @5760 'p' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2168 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2169 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2170 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2171 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2172 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2173 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2174 0x7B, 0xE0, 0x00, // #### #####
Jerome Coutant 0:c0f3bbab73d2 2175 0x7F, 0xF8, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2176 0x1C, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 2177 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2178 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2179 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2180 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2181 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2182 0x1C, 0x18, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 2183 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2184 0x1B, 0xE0, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 2185 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2186 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2187 0x18, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2188 0x7F, 0x00, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2189 0x7F, 0x00, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2190 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2191 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2192
Jerome Coutant 0:c0f3bbab73d2 2193 // @5832 'q' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2194 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2195 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2196 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2197 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2198 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2199 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2200 0x07, 0xDE, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 2201 0x1F, 0xFE, 0x00, // ############
Jerome Coutant 0:c0f3bbab73d2 2202 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2203 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2204 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2205 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2206 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2207 0x30, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2208 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2209 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2210 0x07, 0xD8, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 2211 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2212 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2213 0x00, 0x18, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2214 0x00, 0xFE, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2215 0x00, 0xFE, 0x00, // #######
Jerome Coutant 0:c0f3bbab73d2 2216 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2217 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2218
Jerome Coutant 0:c0f3bbab73d2 2219 // @5904 'r' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2220 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2221 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2222 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2223 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2224 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2225 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2226 0x3E, 0x78, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 2227 0x3E, 0xFC, 0x00, // ##### ######
Jerome Coutant 0:c0f3bbab73d2 2228 0x07, 0xCC, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 2229 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2230 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2231 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2232 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2233 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2234 0x06, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2235 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2236 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2237 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2238 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2239 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2240 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2241 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2242 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2243 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2244
Jerome Coutant 0:c0f3bbab73d2 2245 // @5976 's' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2246 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2247 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2248 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2249 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2250 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2251 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2252 0x07, 0xF8, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2253 0x0F, 0xF8, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 2254 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2255 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2256 0x1F, 0x80, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2257 0x0F, 0xF0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2258 0x00, 0xF8, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 2259 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2260 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2261 0x1F, 0xF0, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 2262 0x1F, 0xE0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2263 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2264 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2265 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2266 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2267 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2268 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2269 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2270
Jerome Coutant 0:c0f3bbab73d2 2271 // @6048 't' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2272 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2273 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2274 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2275 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2276 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2277 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2278 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2279 0x3F, 0xF0, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2280 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2281 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2282 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2283 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2284 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2285 0x0C, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2286 0x0C, 0x1C, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2287 0x07, 0xFC, 0x00, // #########
Jerome Coutant 0:c0f3bbab73d2 2288 0x03, 0xF0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2289 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2290 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2291 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2292 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2293 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2294 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2295 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2296
Jerome Coutant 0:c0f3bbab73d2 2297 // @6120 'u' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2298 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2299 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2300 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2301 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2302 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2303 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2304 0x78, 0x78, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2305 0x78, 0x78, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2306 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2307 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2308 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2309 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2310 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2311 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2312 0x18, 0x38, 0x00, // ## ###
Jerome Coutant 0:c0f3bbab73d2 2313 0x0F, 0xFE, 0x00, // ###########
Jerome Coutant 0:c0f3bbab73d2 2314 0x07, 0xDE, 0x00, // ##### ####
Jerome Coutant 0:c0f3bbab73d2 2315 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2316 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2317 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2318 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2319 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2320 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2321 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2322
Jerome Coutant 0:c0f3bbab73d2 2323 // @6192 'v' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2324 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2325 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2326 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2327 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2328 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2329 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2330 0x7C, 0x3E, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2331 0x7C, 0x3E, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2332 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2333 0x18, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2334 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2335 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2336 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2337 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2338 0x07, 0xE0, 0x00, // ######
Jerome Coutant 0:c0f3bbab73d2 2339 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2340 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2341 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2342 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2343 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2344 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2345 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2346 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2347 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2348
Jerome Coutant 0:c0f3bbab73d2 2349 // @6264 'w' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2350 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2351 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2352 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2353 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2354 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2355 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2356 0x78, 0x3C, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2357 0x78, 0x3C, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2358 0x31, 0x18, 0x00, // ## # ##
Jerome Coutant 0:c0f3bbab73d2 2359 0x33, 0x98, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 2360 0x33, 0x98, 0x00, // ## ### ##
Jerome Coutant 0:c0f3bbab73d2 2361 0x1A, 0xB0, 0x00, // ## # # ##
Jerome Coutant 0:c0f3bbab73d2 2362 0x1E, 0xF0, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2363 0x1E, 0xF0, 0x00, // #### ####
Jerome Coutant 0:c0f3bbab73d2 2364 0x1C, 0x60, 0x00, // ### ##
Jerome Coutant 0:c0f3bbab73d2 2365 0x0C, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2366 0x0C, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2367 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2368 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2369 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2370 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2371 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2372 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2373 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2374
Jerome Coutant 0:c0f3bbab73d2 2375 // @6336 'x' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2376 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2377 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2378 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2379 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2380 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2381 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2382 0x3E, 0x7C, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2383 0x3E, 0x7C, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2384 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2385 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2386 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2387 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2388 0x03, 0xC0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2389 0x06, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2390 0x0C, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2391 0x3E, 0x7C, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2392 0x3E, 0x7C, 0x00, // ##### #####
Jerome Coutant 0:c0f3bbab73d2 2393 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2394 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2395 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2396 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2397 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2398 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2399 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2400
Jerome Coutant 0:c0f3bbab73d2 2401 // @6408 'y' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2402 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2403 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2404 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2405 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2406 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2407 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2408 0x7E, 0x1F, 0x00, // ###### #####
Jerome Coutant 0:c0f3bbab73d2 2409 0x7E, 0x1F, 0x00, // ###### #####
Jerome Coutant 0:c0f3bbab73d2 2410 0x18, 0x0C, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2411 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2412 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2413 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2414 0x06, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2415 0x03, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2416 0x03, 0xE0, 0x00, // #####
Jerome Coutant 0:c0f3bbab73d2 2417 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2418 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2419 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2420 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2421 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2422 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2423 0x3F, 0xC0, 0x00, // ########
Jerome Coutant 0:c0f3bbab73d2 2424 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2425 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2426
Jerome Coutant 0:c0f3bbab73d2 2427 // @6480 'z' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2428 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2429 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2430 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2431 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2432 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2433 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2434 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2435 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2436 0x18, 0x30, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2437 0x18, 0x60, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2438 0x00, 0xC0, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2439 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2440 0x03, 0x00, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2441 0x06, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2442 0x0C, 0x18, 0x00, // ## ##
Jerome Coutant 0:c0f3bbab73d2 2443 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2444 0x1F, 0xF8, 0x00, // ##########
Jerome Coutant 0:c0f3bbab73d2 2445 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2446 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2447 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2448 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2449 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2450 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2451 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2452
Jerome Coutant 0:c0f3bbab73d2 2453 // @6552 '{' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2454 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2455 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2456 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2457 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2458 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2459 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2460 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2461 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2462 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2463 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2464 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2465 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2466 0x03, 0x80, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2467 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2468 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2469 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2470 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2471 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2472 0x01, 0xE0, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2473 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2474 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2475 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2476 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2477 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2478
Jerome Coutant 0:c0f3bbab73d2 2479 // @6624 '|' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2480 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2481 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2482 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2483 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2484 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2485 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2486 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2487 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2488 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2489 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2490 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2491 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2492 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2493 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2494 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2495 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2496 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2497 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2498 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2499 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2500 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2501 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2502 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2503 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2504
Jerome Coutant 0:c0f3bbab73d2 2505 // @6696 '}' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2506 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2507 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2508 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2509 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2510 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2511 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2512 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2513 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2514 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2515 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2516 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2517 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2518 0x01, 0xC0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2519 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2520 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2521 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2522 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2523 0x01, 0x80, 0x00, // ##
Jerome Coutant 0:c0f3bbab73d2 2524 0x07, 0x80, 0x00, // ####
Jerome Coutant 0:c0f3bbab73d2 2525 0x07, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2526 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2527 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2528 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2529 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2530
Jerome Coutant 0:c0f3bbab73d2 2531 // @6768 '~' (17 pixels wide)
Jerome Coutant 0:c0f3bbab73d2 2532 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2533 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2534 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2535 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2536 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2537 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2538 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2539 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2540 0x0E, 0x00, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2541 0x1F, 0x18, 0x00, // ##### ##
Jerome Coutant 0:c0f3bbab73d2 2542 0x3B, 0xB8, 0x00, // ### ### ###
Jerome Coutant 0:c0f3bbab73d2 2543 0x31, 0xF0, 0x00, // ## #####
Jerome Coutant 0:c0f3bbab73d2 2544 0x00, 0xE0, 0x00, // ###
Jerome Coutant 0:c0f3bbab73d2 2545 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2546 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2547 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2548 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2549 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2550 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2551 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2552 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2553 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2554 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2555 0x00, 0x00, 0x00, //
Jerome Coutant 0:c0f3bbab73d2 2556 };
Jerome Coutant 0:c0f3bbab73d2 2557
Jerome Coutant 0:c0f3bbab73d2 2558 sFONT Font24 = {
Jerome Coutant 0:c0f3bbab73d2 2559 Font24_Table,
Jerome Coutant 0:c0f3bbab73d2 2560 17, /* Width */
Jerome Coutant 0:c0f3bbab73d2 2561 24, /* Height */
Jerome Coutant 0:c0f3bbab73d2 2562 };
Jerome Coutant 0:c0f3bbab73d2 2563
Jerome Coutant 0:c0f3bbab73d2 2564 /**
Jerome Coutant 0:c0f3bbab73d2 2565 * @}
Jerome Coutant 0:c0f3bbab73d2 2566 */
Jerome Coutant 0:c0f3bbab73d2 2567
Jerome Coutant 0:c0f3bbab73d2 2568
Jerome Coutant 0:c0f3bbab73d2 2569 /** @defgroup FONTS_Private_Function_Prototypes
Jerome Coutant 0:c0f3bbab73d2 2570 * @{
Jerome Coutant 0:c0f3bbab73d2 2571 */
Jerome Coutant 0:c0f3bbab73d2 2572 /**
Jerome Coutant 0:c0f3bbab73d2 2573 * @}
Jerome Coutant 0:c0f3bbab73d2 2574 */
Jerome Coutant 0:c0f3bbab73d2 2575
Jerome Coutant 0:c0f3bbab73d2 2576
Jerome Coutant 0:c0f3bbab73d2 2577 /** @defgroup FONTS_Private_Functions
Jerome Coutant 0:c0f3bbab73d2 2578 * @{
Jerome Coutant 0:c0f3bbab73d2 2579 */
Jerome Coutant 0:c0f3bbab73d2 2580
Jerome Coutant 0:c0f3bbab73d2 2581 /**
Jerome Coutant 0:c0f3bbab73d2 2582 * @}
Jerome Coutant 0:c0f3bbab73d2 2583 */
Jerome Coutant 0:c0f3bbab73d2 2584
Jerome Coutant 0:c0f3bbab73d2 2585 /**
Jerome Coutant 0:c0f3bbab73d2 2586 * @}
Jerome Coutant 0:c0f3bbab73d2 2587 */
Jerome Coutant 0:c0f3bbab73d2 2588
Jerome Coutant 0:c0f3bbab73d2 2589 /**
Jerome Coutant 0:c0f3bbab73d2 2590 * @}
Jerome Coutant 0:c0f3bbab73d2 2591 */
Jerome Coutant 0:c0f3bbab73d2 2592
Jerome Coutant 0:c0f3bbab73d2 2593 /**
Jerome Coutant 0:c0f3bbab73d2 2594 * @}
Jerome Coutant 0:c0f3bbab73d2 2595 */
Jerome Coutant 0:c0f3bbab73d2 2596
Jerome Coutant 0:c0f3bbab73d2 2597 /**
Jerome Coutant 0:c0f3bbab73d2 2598 * @}
Jerome Coutant 0:c0f3bbab73d2 2599 */
Jerome Coutant 0:c0f3bbab73d2 2600 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/