content
stringlengths
7
1.05M
_base_ = './solo_r50_fpn_3x_coco.py' # model settings model = dict( backbone=dict( depth=101, init_cfg=dict(type='Pretrained', checkpoint='torchvision://resnet101')))
class Foo: def __init__(self, init_val=1): self.init_val = init_val class Boo: def __init__(self, init_val=1): print('__init__ 호출') self.init_val = init_val def __call__(self, n): print('__call__ 호출') self.init_val *= n return self.init_val if __name__ == '__main__': # Foo 클래스의 인스턴스를 생성 - 생성자 호출 foo = Foo() print('init_val:', foo.init_val) # foo(100) # 호출이 불가능한 객체 # Boo 클래스의 인스턴스를 생성 boo = Boo() print('boo.init_val:', boo.init_val) print(boo(100)) # 인스턴스 호출: 인스턴스 이름을 마치 함수 이름처럼 사용하는 것 # 클래스에 정의된 __call__ 메소드를 호출하게 됨. # 클래스에서 __call__을 작성하지 않은 경우에는 인스턴스 호출을 사용할 수 없다. print('boo.init_val:', boo.init_val) # callable: __call__ 메소드를 구현한 객체 print('foo 호출가능?:', callable(foo)) print('boo 호출가능?:', callable(boo)) print() boo = Boo(2) x = boo(2) print('x:', x) x = boo(x) print('x:', x) print() boo = Boo(1) input = Boo(1)(5) print('boo.init_val:', boo.init_val) print('input:', input) print() x = Boo(5)(input) print('x =', x) x = Boo(5)(x) print('x:', x)
letters = {"a", "b", "c", "d"} if "e" not in letters: print(1) else: print(2) # você pode adicionar elementos usando a função "add" dos sets letters.add("e") if "e" not in letters: print(1) else: print(2) # da mesma forma, pode remover elementos usando a função "remove" letters.remove("e") if "e" not in letters: print(1) else: print(2)
# Time: O(n) # Space: O(1) # array class Solution(object): def findClosestNumber(self, nums): """ :type nums: List[int] :rtype: int """ return max(nums, key=lambda x:(-abs(x), x))
{ "targets": [ { "target_name": "compressor", "sources": [ "./dev/compressor/bit_reader.cpp", "./dev/compressor/bit_writer.cpp", "./dev/compressor/encoding.cpp", "./dev/compressor/tree_node.cpp", "./dev/compressor/huffman.cpp", "./dev/compressor/node_wrapper.cpp" ], "include_dirs": [ "<!(node -e \"require('nan')\")" ] } ] }
# coding: utf-8 """Module that contains all personalized exceptions used in this library.""" class BaseError(Exception): """Base Exception to be inherited by all Githon exceptions. Args: kwargs: Dict with attributes that will be logged in message error. """ def __init__(self, kwargs): """Initialize with keyword arguments.""" self.kwargs = kwargs class ApiError(Exception): """Exception raised when GitHub Server returns status code equals to 500.""" def __str__(self): return "An unexpected error occurred on the Github API server" class InvalidQueryError(Exception): """Exception raised by searches without query string.""" def __str__(self): """Return error description.""" return "Github Query string not provided or is invalid." class ApiRateLimitError(BaseError): """Exception raised by GitHub API rate limit exceeded.""" def __str__(self): """Return error description.""" return "GitHub API rate limit for your token was reached. X-RateLimit-Limit: {0} - X-RateLimit-Remaining: {1}".format(self.kwargs.get('X-RateLimit-Limit', None), self.kwargs.get('X-RateLimit-Remaining', None)) class UserNotFoundError(BaseError): """Exception raised by searches with an unexistent username.""" def __str__(self): """Return error description.""" return "Github user '{}' not exists.".format( self.kwargs.get('user', None)) class RepositoryIdNotFoundError(BaseError): """Exception raised by searches with an unexistent repository ID.""" def __str__(self): """Return error description.""" return "Reposity with ID '{}' does not exists.".format( self.kwargs.get('repository_id', None)) class RepositoryNameNotFoundError(BaseError): """Exception raised by searches with an unexistent repository name.""" def __str__(self): """Return error description.""" return "Reposity with name '{0}' not exists for user '{1}'".format( self.kwargs.get('repository_id', None), self.kwargs.get('username', None)) class InvalidTokenError(BaseError): """Exception raised by unexistents or expired access token.""" def __str__(self): """Return error description.""" return "The access token '{}' doesn't have permission to access the requested resource or has been expired.".format( self.kwargs.get('access_token', None)) class InvalidDateTimeFormat(BaseError): """Exception raised by invalid datetime converts.""" def __str__(self): """Return error description.""" return "The datetime '{}' doesn't have a valid format to convertion.".format( self.kwargs.get('datetime', None))
cur.sendQuery("exec exampleproc"); field00=cur.getFieldByIndex(0,0); field01=cur.getFieldByIndex(0,1); field02=cur.getFieldByIndex(0,2); field10=cur.getFieldByIndex(1,0); field11=cur.getFieldByIndex(1,1); field12=cur.getFieldByIndex(1,2);
# Worker Processes worker_class = 'sync' socket_path = 'unix:/tmp/web-info.sock' bind = socket_path
word="banana" def bananas(s): return helper(s, [], "", len(word)) def helper(s, arr, remain, length): if length==0: arr.append(remain+len(s)*"-") return for i,j in enumerate(s): if j==word[len(word)-length]: helper(s[i+1:], arr, remain+"-"*i+j, length-1) return arr
#__backpack__.py """ """ class Backpack: def __init__(self, Player): self.player = Player class View: def __init__(self, Player): self.player = Player
'''Crie um programa que leia o nome completo de uma pessoa e mostre: > O nome com todas as letras maiúsculas. > O nome com todas minúsculas. > Quantas letras ao todo (sem considerar espaços). > Quantas letras tem o primeiro nome.''' nome = str(input('\033[35mDigite seu nome:\033[m ')).strip() nome2 = nome.split() print('\033[32m', nome.upper(), '\033[m') print('\033[33m', nome.lower(), '\033[m') print('\033[31m', len(nome) - nome.count(' '), '\033[m') print('\033[34m', len(nome2[0]), '\033[m')
""" @Author: huuuuusy @GitHub: https://github.com/huuuuusy 系统: Ubuntu 18.04 IDE: VS Code 1.37.1 工具: python == 3.7.3 """ """ 思路: 直接统计 结果: 执行用时 : 308 ms, 在所有 Python3 提交中击败了76.94%的用户 内存消耗 : 15.2 MB, 在所有 Python3 提交中击败了5.54%的用户 """ class Solution: def repeatedNTimes(self, A): for num in A: if A.count(num) == len(A)/2: return num if __name__ == "__main__": A = [1,2,3,3] answer = Solution().repeatedNTimes(A) print(answer)
lst = open("p26.txt", 'r') biggest = [0, 0] for z, line in enumerate(lst): x = line.split() if int(x[1]) > int(biggest[1]): print("Old: ", biggest) biggest[0] = x[0] biggest[1] = x[1] print("New: ", biggest) if z == 999: break print(biggest)
# Name of the Project : cal-cli.py # Written by NoobScience : https://github.com/newtoallofthis123 # Modules Used : None ''' The following is registered under the MIT License, NoobScience 2021. You are free to use it as you like as long as you know what you are doing. Enjoy using and check some of my other projects at https://github.com/newtoallofthis123''' # Don't Change the code after this line unless you know what you are doing. #! /usr/bin/env python3 ''' A simple cli tool written in python to be used as a calculator. By NoobScience. To use it, just switch to the directory you stored it in and open the terminal there and type python alarm.py Available for Windows, Mac, Linux and written in python''' # Getting the user imput about the two numbers and operation print("Cal-cli by NoobScience") num1 = float(input("Enter the first number ")) num2 = float(input("Enter the second Number ")) operator= input("Enter the operator ") # Defining operators and printing the operated numbers if operator == "+": print(num1 + num2) elif operator == "-": print(num1 - num2) elif operator == "*": print(num1 * num2) elif operator == "/": print(num1 / num2) else: print("Unknown, please try again") # Enjoy
{ "variables": { "module_name": "core", "module_path": "./dist" }, 'targets': [ { 'target_name': '<(module_name)', 'sources': [ 'src/index.cpp', 'src/LameAsyncWorker.cpp', 'src/EncodeWorker.cpp', 'src/lz4dec.c', ], 'includes': [ './common.gypi' ], 'dependencies': [ 'deps/lame/libmp3lame.gyp:mp3lame', 'deps/lz4/lz4.gyp:lz4', 'deps/fdk-aac/fdk-aac.gyp:fdk-aac' ], }, { "target_name": "action_after_build", "type": "none", "dependencies": [ "<(module_name)" ], "copies": [ { "files": [ "<(PRODUCT_DIR)/<(module_name).node" ], "destination": "<(module_path)" } ] } ] }
class MetaPackage: instances = [] def __init__(self, pkgname, pkgtype=None, pkgorg=None): self.instances.append(self) # adding the instance to colllective if len(pkgname.split(':')) == 2: if pkgtype == "maven": if pkgorg == None: self._pkg_name = pkgname.split(':')[1] self._orgId = pkgname.split(':')[0] else: self._pkg_name = pkgname self._orgId = pkgorg self._exists = None self._pkg_type = pkgtype self._score = None self._timestamp = None self._verCount = None #self._pkg_ver = pkgver TBA def __repr__(self): return self._pkg_name def __str__(self): return str(self._pkg_name) def listall(self): lister = [] lister.append(self._pkg_name) lister.append(self._pkg_type) lister.append(self._exists) lister.append(self._orgId) lister.append(self._score) lister.append(self._verCount) lister.append(self._timestamp) return lister def get_instances(): return MetaPackage.instances @property def pkg_name(self): return self._pkg_name @property def author(self): return self._author @author.setter def author(self, a): self._author = a @property def author_email(self): return self._author_email @author_email.setter def author_email(self, a): self._author_email = a @property def exists(self): return self._exists @exists.setter def exists(self, a): self._exists = a @property def publisher(self): return self._publisher @publisher.setter def publisher(self, a): self._publisher = a @property def publisher_email(self): return self._publisher_email @publisher.setter def publisher(self, a): self._publisher_email = a @property def maintainer(self): return self._maintainer @maintainer.setter def maintainer(self, a): self._maintainer = a @property def maintainer_email(self): return self._maintainer_email @maintainer_email.setter def maintainer_email(self, a): self._maintainer_email = a @property def forkCount(self): return self._forkCount @forkCount.setter def forkCount(self, a): self._forkCount = a @property def subsCount(self): return self._subsCount @subsCount.setter def subsCount(self, a): self._subsCount = a @property def starCount(self): return self._starCount @starCount.setter def starCount(self, a): self._starCount = a @property def downloadCount(self): return self._downloadCount @downloadCount.setter def downloadCount(self, a): self._downloadCount = a @property def score(self): return self._score @score.setter def score(self, a): self._score = a @property def dependencies(self): return self._dependencies @dependencies.setter def dependencies(self, a): self._dependencies = a @property def issueCount(self): return self._issueCount @issueCount.setter def issueCount(self, a): self._issueCount = a @property def contributorCount(self): return self._contributorCount @contributorCount.setter def contributorCount(self, a): self._contributorCount = a @property def orgId(self): return self._orgId @orgId.setter def orgId(self, a): self._orgId = a @property def verCount(self): return self._verCount @verCount.setter def verCount(self, a): self._verCount = a @property def timestamp(self): return self._timestamp @timestamp.setter def timestamp(self, a): #unix timestamp self._timestamp = a # not-supported for now: hasTests, testsSize, privateRepo
""" SUV type with 2 sub-types: -Super luxury suv -Electric SUV """ class SuvCar: w_type = 'car' w_meaning = 'Sport Utility Vehicle' w_traction = '4x4 drive' def __init__(self, car_body, gen, color, custom): self._car_body = car_body self._gen = gen self._color = color self._custom = custom def body_type(self): if self._car_body == 'Family body': print('Your car will have 7 seats and 3500$ extra-charge!') if self._color == 'Custom': print('Option not available for Family pack!') else: print('Option is available!') elif self._car_body == 'Sport package': print('Your engine will be upgraded to 600 HP!') if self._color == 'Custom': print('Option is available and it will cost 1500$ extra-charge!') else: print('Option is available!') else: print('You didn\'t chose a car body!') def generation(self): if self._gen == '2021' and self._custom == 'Custom body-kit': print('Your option is available and you have to chose your custom kit!') elif self._gen == '2020' and self._custom == 'Custom body-kit': print('You have to wait extra months for the car to be made!') else: print('Older generation are not available at this moment!') self.body_type() print(f'Your {SuvCar.w_type} is a {SuvCar.w_meaning} with {SuvCar.w_traction}!') class SuperLuxury(SuvCar): def auto_park(self): if self._gen == '2021': print('You have the free option to upgrade to Auto-Parking!') pass def vip_package(self): if self._car_body == 'Sport': print('The VIP-Package will grant an extra-isolation for the back seats!') else: print('Your car has massage seats!') class ElecSUV(SuvCar): def self_driving(self): if self._gen == '2021': print('Your car will be upgraded to Self Autonomus driving!') pass def tri_motors(self): if self._car_body == 'Sport package': print('Your car will have 3 electric engines!') else: print('Your car will have 2 electric engines!') suv_car = SuvCar('Sport package', '2021', 'Custom', 'Custom body-kit') suv_car.generation() super_lux = SuperLuxury('Sport package', '2020', 'Custom', 'Custom body-kit') super_lux.auto_park() elec_suv = ElecSUV('Sport package', '2021', 'Custom', 'Custom body-kit') elec_suv.generation() elec_suv.tri_motors()
LARGURA = 500 ALTURA = 500 CANVAS_L = 400 CANVAS_A = 400
class Constants: # Version data VERSION_NUMBERS = (0, 1, 3, 0) VERSION_STR = ".".join([str(num) for num in VERSION_NUMBERS[0:3]]) VERSION_SUFFIX = "b" VERSION_VSTR = "v" + VERSION_STR + VERSION_SUFFIX VERSION_FILENAME = "version.py" WHOAMI = "Brian Yao" # Process info PROGRAM_NAME = "VALORANT-ystr" PROGRAM_EXE = PROGRAM_NAME + ".exe" PROGRAM_PROC_COUNT = 2 # Number of active processes per instance of this program GAME_EXES = ["VALORANT-Win64-Shipping.exe", "RiotClientServices.exe"] GAME_CLIENT_UX_EXES = ["RiotClientUx.exe", "RiotClientUxRender.exe"] # Resources ICON_URI = "https://raw.githubusercontent.com/theyaoster/valorant-ystr/master/favicon.ico" LATEST_RELEASE_API_URL = "https://api.github.com/repos/theyaoster/valorant-ystr/releases/latest" REPO_URL = "https://github.com/theyaoster/valorant-ystr" # Filenames CONFIG_FILENAME = "config.json" ICON_FILENAME = "favicon.ico" LOG_FILENAME = "debug.log" # Field names NAME = "name" SECRET = "secret" ENDPOINT = "endpoint" STATUS = "status" CONTRACT = "contract_agent" IGN = "ign" # Values LOADING_STATUS = "Loading" OFFLINE_STATUS = "Offline" UPDATING_STATUS = "Updating" # API paths LIVE_STATUS_PATH = "live_status" CONTRACT_PATH = "contract" GAME_DATA_PATH = "game_data"
# https://leetcode.com/problems/flipping-an-image class Solution: def flipAndInvertImage(self, A: List[List[int]]) -> List[List[int]]: R, C = len(A), len(A[0]) for r in range(R): for c in range(int(C / 2)): A[r][c], A[r][C - 1 - c] = A[r][C - 1 - c], A[r][c] for r in range(R): for c in range(C): if A[r][c] == 0: A[r][c] = 1 else: A[r][c] = 0 return A
# Exercício 8.2 - Escreva uma função que receba dois números e retorne True se o # primeiro número for múltiplo do segundo. # Valores esperados: # múltiplo(8,4) == True # múltiplo(7,3) == False # múltiplo(5,5) == True def multiplo(x, y): if x % y == 0: print('\nMúltiplo(%d, %d) == True\n' % (x, y)) else: print('\nMúltiplo(%d, %d) == False\n' % (x, y)) multiplo(8, 4) multiplo(7, 3) multiplo(5, 5)
#!/usr/bin/env python3 filename = 'p022_names.txt' with open(filename, 'r') as tfile: all_names = tfile.read().replace("\"", '') all_names = all_names.split(',') all_names.sort() total_score = 0 print('name, index, name_score, total_score') for ind, name in enumerate(all_names): index = ind + 1 name_score = 0 for char in name: # ord('A') = 65 so if we - 64 we get 1 name_score += ord(char) - 64 name_score *= index total_score += name_score print('%s %s %s %s' % (name, index, name_score, total_score)) print('total_score=%s' % total_score)
#!/usr/bin/env python # -*- coding: UTF-8 -*- """ @Project: Deep-Learning-in-Action @File: train.py @Author: 轩名 @Date: 2021/8/17 5:14 下午 """
# # main.py # Mich, 2016-01-15 # This file is part of MLDB. Copyright 2016 mldb.ai inc. All rights reserved. # if False: mldb = None mldb.log("mldb_py_argv_test_plugin loaded")
def mascotas (mascota): mascotas = { 'firulais': 1, 'venus': 2, 'lira': 3, 'pinto': 4 } if mascota in mascotas: return 1 else: return 0
## # EXCEPTIONS ## ## # Exchange ## EXCHANGECONNECTIONERROR = ( "Problem connecting to the Exchange, please check your Exchange credentials" ) EXCHANGEPRIVILEGESERROR = ( "Problem executing the action on the Exchange, " "please check the permissions assign to the API key provided" ) EXCHANGEINVALIDSYMBOLERROR = "Problem trying to fetch symbol on the Exchange, probably the symbol is NOT supported" EXCHANGEINVALIDQUANTITYERROR = ( "The quantity introduced is not within the Exchange allowed parameters" ) EXCHANGEEXTENDEDFUNCTIONALITYERROR = ( "Please to use enchance functionalities add a supported exchange" ) ## # Account ## ACCOUNTREQUIREDERROR = "You need to have at least one account configured" ## # Utilities ## PAIRNOTSUPPORTEDERROR = ( "Please select another pair, this is not supported for the operation requested" )
class Config: """ Config Storage. """ def __init__(self): self.MAIN_TABLE_ID = 'WD0176-contentTBody'
def gobad(x, y): return x / y def gosouth(x): print(gobad(x, 0)) gosouth(1)
''' -- Nome: Gianluca Capezzuto Sardinha -- NUSP: 11876933 -- Exercício 4 ''' def main(): x = leu() spaceL = 0 while x > 0: i = 0 for _ in range(0, spaceL): print(" ", end = "") while i < x: print("*", end = "") i += 1 print("\n") x -= 1 spaceL += 1 def leu(): while(True): try: k = int(input('Digite um inteiro: ')) if(k < 0): print('O número deve ser positivo!') continue break except ValueError: print('O valor digitado deve ser um número inteiro!') return k if __name__ == '__main__': main()
class OptBase: def __init__(self): pass def set_func(self, func): self.func = func def set_grad(self, func): self.grad = func
def challenge4(): f = open('challenge4.txt','r') maxscore = 0 scoredstr = '' for line in f: inp = bytearray.fromhex(line.rstrip()) for i in range(ord('0'),ord('Z')): try: string = bytearray(x ^ i for x in inp).decode("utf-8") except UnicodeDecodeError: break curscore = score(string) if curscore > maxscore: maxscore = curscore scoredstr = string return scoredstr def score(string): score = 0 mostfreq = "etaoin" leastfreq = "vkjxqz" for s in string: if s in mostfreq: score += 1 elif s in leastfreq: score -= 1 return score if __name__ == '__main__': print(challenge4())
# -*- coding: utf-8 -*- """ Created on Fri Nov 27 17:25:22 2020 @author: abhi0 """ class Solution: def findJudge(self, N: int, trust: List[List[int]]) -> int: if trust==[]: if N==1: return N else: return -1 trustDict=dict() for i in trust: if i[0] not in trustDict.keys(): trustDict.update({i[0]:[i[1]]}) else: trustDict[i[0]].append(i[1]) totRange=list(range(1,N+1)) tempLst=list(set(list(trustDict.keys()))) tempVal=list(trustDict.values()) temp=[] for i in totRange: if i not in tempLst: temp.append(i) count=0 for j in temp: if j not in trustDict.keys(): for k in tempVal: if j in k: count+=1 if count==len(trustDict.keys()): return j else: return -1
__all__ = [] class relationship(object): """Stub for SQLalchemy-like relationship""" def __init__(self, *args, **kwargs): pass class backref(object): """Stub for SQLalchemy-like backref""" def __init__(self, *args, **kwargs): pass
class Trade: def __init__(self, buyer, seller, assetno, assetname, volume, price, time): self.buyer = buyer self.seller = seller self.assetno = assetno self.assetname = assetname self.volume = volume self.price = price self.time = time #fulfill the trade buyer.inventory[assetno] += volume buyer.add_cash(-1 * volume * price) seller.inventory[assetno] -= volume seller.add_cash(volume*price) #trades are ordered by time def __lt__(self, other): return self.time < other.time def __eq__(self, other): return self.time == other.time def __gt__(self, other): return self.time > other.time def __str__(self): return str(self.buyer.name) + " bought " + str(self.volume) + " of " + str(self.assetname) + " at " + str(self.price) + " from " + str(self.seller.name)
passports, lines = [], [] while True: try: line = input().strip() if line == "": passports.append(' '.join(lines)) lines = [] else: lines.append(line) except Exception: if lines: passports.append(' '.join(lines)) break ''' byr (Birth Year) - four digits; at least 1920 and at most 2002. iyr (Issue Year) - four digits; at least 2010 and at most 2020. eyr (Expiration Year) - four digits; at least 2020 and at most 2030. hgt (Height) - a number followed by either cm or in: If cm, the number must be at least 150 and at most 193. If in, the number must be at least 59 and at most 76. hcl (Hair Color) - a # followed by exactly six characters 0-9 or a-f. ecl (Eye Color) - exactly one of: amb blu brn gry grn hzl oth. pid (Passport ID) - a nine-digit number, including leading zeroes. cid (Country ID) - ignored, missing or not. ''' def ok(kv): req = {'iyr', 'byr', 'pid', 'hcl', 'ecl', 'hgt', 'eyr'} for k, _ in kv.items(): if k != 'cid': if k not in req: return False req.remove(k) if req: return False def chk(k, l, mini, maxi, val=None): digs = val or kv[k] if not digs.isdigit() or len(digs) != l: return False val = int(digs) return mini <= val <= maxi if not chk('byr', 4, 1920, 2002): return False if not chk('iyr', 4, 2010, 2020): return False if not chk('eyr', 4, 2020, 2030): return False hgt, unit = kv['hgt'][:-2], kv['hgt'][-2:] if unit not in {'cm', 'in'}: return False if unit == 'cm' and not chk(None, 3, 150, 193, hgt): return False if unit == 'in' and not chk(None, 2, 59, 76, hgt): return False pid = kv['pid'] if not pid.isdigit() or len(pid) != 9: return False ecl = kv['ecl'] if ecl not in set('amb blu brn gry grn hzl oth'.split()): return False hcl = kv['hcl'] if len(hcl) != 7 or hcl[0] != '#' or not hcl[1:].isalnum(): return False return True valid = 0 for p in passports: kvs = dict() for kv in p.split(): k, v = kv.split(':') kvs[k] = v if ok(kvs): valid += 1 print(valid)
# solution thanks to Nikola Aleksandrov people = int(input()) capacity = int(input()) trips = people // capacity people -= trips * capacity if 0 < people <= capacity: trips += 1 print(trips)
class TestEvengApi: """Test cases""" def test_api_get_server_status(self, authenticated_client): """ Verify server status using the API """ r = authenticated_client.api.get_server_status() assert r["data"].get("cpu") is not None def test_list_node_templates(self, authenticated_client): """ Verify we can list node templates from API """ r = authenticated_client.api.list_node_templates() assert r["data"] is not None def test_node_template_detail(self, authenticated_client): """ Verify that we get retrieve the details of a node template """ node_types = ["a10"] for n_type in node_types: detail = authenticated_client.api.node_template_detail(n_type) assert isinstance(detail, dict) def test_list_network_types(self, authenticated_client): """ Verify that we can retrieve EVE-NG networks. The data returned is a dictionary that includes network types and instances. """ r = authenticated_client.api.list_networks() assert r["data"]["bridge"] is not None
''' from dal import autocomplete class AutocompleteSingleWidget(autocomplete.ListSelect2): autocomplete_function = "single_autocomplete_init" class AutocompleteMultiWidget(autocomplete.ModelSelect2Multiple): autocomplete_function = "multi_autocomplete_init" '''
class NotYetSupported(Exception): def __init__(self, kind, thing=None): self.msg = 'Support for {}'.format(kind) if thing is not None: self.msg += ' "{}"'.format(type(thing).__name__) self.msg += ' is not yet implemented' class CheckError(Exception): pass class NoSuchName(CheckError): def __init__(self, name, namespace): template = '{} not found in namespace {}' self.msg = template.format(name, namespace.fqn()) class NoSuchAttribute(CheckError): def __init__(self, type_, attribute): template = '{} has no attribute {}' self.msg = template.format(type_, attribute) class WrongBuiltinArgument(CheckError): def __init__(self, name, param, arg): template = 'Builtin function {} expected {} but got {}.' self.msg = template.format(name, param, arg) class WrongArgumentsLength(CheckError): def __init__(self, name, params_length, args_length): template = '{} expected {} parameters, but received {}' self.msg = template.format(name, params_length, args_length) class NotCallable(CheckError): def __init__(self, value): template = '{} is not callable' self.msg = template.format(value) class InvalidAssignmentTarget(CheckError): def __init__(self, target): template = "can't assign to {}" self.msg = template.format(target) class NotIterable(CheckError): def __init__(self, non_iterable): template = 'object {} is not iterable' self.msg = template.format(non_iterable) class CantSetBuiltinAttribute(CheckError): def __init__(self, builtin_type): template = "can't set attributes of built-in/extension type {}" self.msg = template.format(builtin_type)
input = """ a(1) | a(2). b(1). :- b(N), not #count{ V : a(V) } = N. """ output = """ a(1) | a(2). b(1). :- b(N), not #count{ V : a(V) } = N. """
MARKS = { 1: {"label": "5y"}, 2: {"label": "3y"}, 3: {"label": "1y"}, 4: {"label": "6m"}, 5: {"label": "3m"}, 6: {"label": "1m"}, 7: {"label": "7d"}, } TIME_FRAMES = {1: "5Y", 2: "3Y", 3: "6M", 4: "3M", 5: "1M", 6: "7D"} FIELD_MAP = { "fiftyTwoWeekHigh": "52 Week High", "fiftyTwoWeekLow": "52 Week Low", "fiftyDayAverage": "50 Day Average", "regularMarketVolume": "Regular Market Volume", "averageDailyVolume10Day": "Average Daily Volumne in 10 days", "longName": "Name", "country": "Country", "exchange": "Exchange", "sector": "Sector", "industry": "Industry", "fullTimeEmployees": "Full Time Employees", "marketCap": "Market Capitalization", } TRADING_DATA = [ "fiftyTwoWeekHigh", "fiftyTwoWeekLow", "fiftyDayAverage", "regularMarketVolume", "averageDailyVolume10Day", ] GENERAL_INFO = [ "longName", "country", "exchange", "sector", "industry", "fullTimeEmployees", "marketCap", ] FORMAT_MAP = { "fiftyTwoWeekHigh": "Currency", "fiftyTwoWeekLow": "Currency", "fiftyDayAverage": "Currency", "regularMarketVolume": "Number", "averageDailyVolume10Day": "Number", "longName": "String", "country": "String", "exchange": "String", "sector": "String", "industry": "String", "fullTimeEmployees": "Number", "marketCap": "Currency", } EXPECTED_RESULTS = {'7d': '0.00%', '1m': '0.00%', '3m': '0.00%', '6m': '0.00%', '1y': '0.00%', '3y': '0.00%', '5y': '0.00%'}
class Foo: def __init__(self, a, b): self.a = a self.b = b def foo(): return "cs107_package.subpkg_1.module_1.foo()"
# This program is a rock-paper-scissors game that helps to practice nested "if" statements. print("Rock...") print("Paper...") print("Scissors...") player1 = input("Player 1, make your move: ") print("*** NO CHEATING ***! \n\n" * 20) player2 = input("Player 2, make your move: ") # paper beats rock # rock beats scissors # scissors beats paper if player1 == player2: print("It's a tie!") elif player1 == "rock": if player2 == "scissors": print("Player 1 wins!") elif player2 == "paper": print("Player 2 wins!") elif player1 == "paper": if player2 == "rock": print("Player 1 wins!") elif player2 == "scissors": print("Player 2 wins!") elif player1 == "scissors": if player2 == "paper": print("Player 1 wins!") elif player2 == "rock": print("Player 2 wins!") else: print("Something went wrong!")
# [Shaolin Temple] But Everyone Else Has Nice Shoes TOWN_MISCREANT = 9310580 KID_SHOES = 4034657 sm.removeEscapeButton() sm.setSpeakerID(TOWN_MISCREANT) sm.setBoxChat() sm.sendNext("Hey! My shoes! Thanks for giving them back, demon!") sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.sendNext("I'm not a demon!") sm.setSpeakerID(TOWN_MISCREANT) sm.setBoxChat() sm.sendNext("But only demons steal shoes from little kids who don't eat their orange mushrooms!") sm.sendNext("Ma told me so!") sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.sendNext("It's not nice to stereotype against demons. The demon who BORROWED your shoes asked me to return them. He just wanted to try them on") sm.setSpeakerID(TOWN_MISCREANT) sm.setBoxChat() sm.sendNext("Really? Did he dance in them? Because I loooove dancing in these shoes. Maybe he and I can be friends!") sm.consumeItem(KID_SHOES) sm.giveExp(2020453) sm.completeQuestNoRewards(parentID) # completeQuest didn't work for w/e reason. sm.warp(701220350)
s = list(input()) for i in range(len(s)): if(s[i] == s[i].upper()): s[i] = s[i].lower() elif(s[i] == s[i].lower()): s[i] = s[i].upper() for j in range(len(s)): print(s[j] ,end="")
config = { # # Save trained model named with 'model_name'.h5. # The best model at each epoch is saved to the folder ./checkpoint/'model_name'. # 'model_name': 'MobileNetV3_face_spoof_gavg', # # Restore trained weights. # The architecture must be same with 'model' option. # checkpoint folder or keras saved file including extension. # 'saved_model': '', 'batch_size' : 128, 'shape' : [128, 128, 3], 'embedding_dim' : 512, # # If 'saved_model' not exsits, then it will be built with this architecture. # Choose one of below: # 1. MobileNetV2 # 2. MobileNetV3 # 3. EfficientNetB3 # 'model' : 'MobileNetV3', # # There are two options. # 1. adam # 2. sgd with momentum=0.9 and nesterov=True # 'optimizer' : 'sgd', 'epoch' : 15, # # initial learning rate. # 'lr' : 1e-4, # # lr * decay_rate ^ (steps / decay_steps) # 'lr_decay': False, 'lr_decay_steps' : 10000, 'lr_decay_rate' : 0.9, # # It should be absolute path that indicates face image file location in 'train_file' contents. # 'img_root_path': 'path/CelebA_Spoof', # # See README.md file how to save this file. # 'train_file': 'celeba_spoof_train.json', 'test_file': 'celeba_spoof_test.json', }
#!/usr/bin/python3 # https://practice.geeksforgeeks.org/problems/number-of-paths/0 def sol(m, n): dp = [[0 for i in range(n)] for i in range(m)] for i in range(m): dp[i][0] = 1 for i in range(n): dp[0][i] = 1 for i in range(1, m): for j in range(1, n): dp[i][j] = dp[i-1][j] + dp[i][j-1] return dp[m-1][n-1]
"""Modules for demonstrating generator execution""" def take(count, iterable): """ This method takes items from iterable :param count: :param iterable: :return: generator Yields: At most 'count' items from 'iterable' """ counter = 0 for item in iterable: if counter == count: return counter += 1 yield item def run_take(): items = [2, 4, 6, 8, 10] for item in take(3, items): print(item) if __name__=='__main__': run_take()
""" Problem: 1573 - Number of Ways to Split a String Difficulty: Medium URL: https://leetcode.com/problems/number-of-ways-to-split-a-string/ """ class Solution: def numWays(self, s: str) -> int: loc = [] count = 0 for i in range(len(s)): if s[i] == "1": count += 1 loc.append(i) if count == 0: return factorial(len(s)-1) // (factorial(2) * factorial(len(s)-3)) % (10**9 + 7) if count % 3 != 0: return 0 split = count // 3 subs = [] for i in range(3): subs.append(loc[i*split:(i+1)*split]) print(subs) return (subs[2][0] - subs[1][-1]) * (subs[1][0] - subs[0][-1]) % (10**9 + 7)
#!/usr/bin/env python3 ''' Internal exceptions ''' class PluginVerifyError(Exception): ''' Exception raised when a plugin's verify_settingsui needs to fail ''' def __init__(self, message): self.message = message super().__init__(self.message)
class BaseTrainer(object): def __init__(self, model, data, config): self.model = model self.data = data # DataLoader self.config = config def train(self): raise NotImplementedError def test(self): raise NotImplementedError def evaluate(self): raise NotImplementedError class BaseModelValidator(object): @staticmethod def validate_model(model, data, metrics): raise NotImplementedError class BaseScoreDecision(object): def __init__(self, decision, threshold=0.5): self.decision = decision self.threshold = threshold def decide(self, y_pred, y_true=None): raise NotImplementedError
n1 = int(input("Enter a numbers of rows for matrix1 : ")) m1 = int(input("Enter a numbers of cols for matrix1 : ")) arr1 = [] arr2 = [] for i in range(n1): arr3 = [] for j in range(m1): o1 = int(input("Enter an element for 1st matrix : ")) arr3.append(o1) arr1.append(arr3) print("first matrix is : ",arr1) n2 = int(input("Enter a same numbers rows which must be same as number of cols of matrix 1 : ")) m2 = int(input("Enter a numbers of cols for matrix2 : ")) for i in range(n2): arr4 = [] for j in range(m2): o2 = int(input("Enter an element for 2nd matrix : ")) arr4.append(o2) arr2.append(arr4) print("second matrix is : ", arr2) arr6 = [] for i in range(n1): arr5 = [] for j in range(m2): arr5.append(0) arr6.append(arr5) # rows of arr1 for i in range(len(arr1)): # cols of arr2 for j in range(len(arr2[0])): # rows of arr2 for k in range(len(arr2)): arr6[i][j] += arr1[i][k] * arr2[k][j] for i in arr6: print(i)
class Something(object): def __init__(self, value): self._value = value def map(self, function): return Something(function(self._value)) def is_present(self): return True def get(self): return self._value def get_or_else(self, value): return self.get() def fallback(self, callback): return self def __eq__(self, other): if isinstance(other, Something): return self._value == other._value else: return False
LOOP_COUNT = 100000 FIRST = "first" SECOND = "second" FIRST_SECOND = "first_second" def run_multi_time(func): def wrapper(): for _ in range(LOOP_COUNT): func() return wrapper @run_multi_time def concat_test(): FIRST + SECOND @run_multi_time def contains_test(): SECOND in FIRST FIRST in FIRST_SECOND @run_multi_time def eq_test(): FIRST_SECOND == FIRST + "_" + SECOND @run_multi_time def compare_test(): FIRST > SECOND FIRST_SECOND < SECOND @run_multi_time def take_char_test(): FIRST[3] SECOND[2] @run_multi_time def take_slice_test(): FIRST_SECOND[3:8] @run_multi_time def repeat_test(): FIRST_SECOND * 3 @run_multi_time def capitalize_test(): FIRST_SECOND.capitalize() @run_multi_time def count_test(): (FIRST_SECOND * 3).count("i") if __name__ == "__main__": global_var = {} global_var.update(globals()) for name in global_var: if name.endswith("_test"): global_var[name]()
recorrido = 0 while recorrido < 5: chance = float(input("total: ")) recorrido += 1 if chance >= 500: descuento = chance * 0.30 subtotal = chance - descuento total = subtotal print("Su total es:{0} " .format(total)) elif chance < 500 and chance >= 200: descuento = chance * 0.20 subtotal = chance - descuento total = subtotal print("Su total es:{0} " .format(total)) elif chance < 200 and chance >= 100: descuento = chance * 0.10 subtotal = chance - descuento total = subtotal print("Su total es:{0} " .format(total)) else: print("Su monto no tiene margen de descuento, Gracias") else: print("Gracias por su compra")
# # PySNMP MIB module HTTPEXT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HTTPEXT-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:30:33 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # httpExt, = mibBuilder.importSymbols("APENT-MIB", "httpExt") ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") MibIdentifier, ObjectIdentity, Bits, Counter64, Counter32, Unsigned32, Gauge32, iso, ModuleIdentity, IpAddress, NotificationType, TimeTicks, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "ObjectIdentity", "Bits", "Counter64", "Counter32", "Unsigned32", "Gauge32", "iso", "ModuleIdentity", "IpAddress", "NotificationType", "TimeTicks", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn") TextualConvention, DisplayString, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "RowStatus") httpExtMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 2467, 1, 47, 1)) if mibBuilder.loadTexts: httpExtMib.setLastUpdated('9801282000Z') if mibBuilder.loadTexts: httpExtMib.setOrganization('ArrowPoint Communications Inc.') apHttpTable = MibTable((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2), ) if mibBuilder.loadTexts: apHttpTable.setStatus('current') apHttpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1), ).setIndexNames((0, "HTTPEXT-MIB", "apHttpRecordName")) if mibBuilder.loadTexts: apHttpEntry.setStatus('current') apHttpRecordName = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpRecordName.setStatus('current') apHttpIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 2), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpIpAddress.setStatus('current') apHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 3), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpPort.setStatus('current') apHttpUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpUserName.setStatus('current') apHttpPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpPassword.setStatus('current') apHttpEncryptedPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpEncryptedPassword.setStatus('current') apHttpBaseDirectory = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpBaseDirectory.setStatus('current') apHttpStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 2467, 1, 47, 2, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: apHttpStatus.setStatus('current') mibBuilder.exportSymbols("HTTPEXT-MIB", apHttpRecordName=apHttpRecordName, httpExtMib=httpExtMib, apHttpEntry=apHttpEntry, apHttpIpAddress=apHttpIpAddress, apHttpPassword=apHttpPassword, apHttpPort=apHttpPort, apHttpBaseDirectory=apHttpBaseDirectory, PYSNMP_MODULE_ID=httpExtMib, apHttpStatus=apHttpStatus, apHttpUserName=apHttpUserName, apHttpTable=apHttpTable, apHttpEncryptedPassword=apHttpEncryptedPassword)
""" find minimim cout module """ def find_minimum_count( maze: list, issued: list, minimum_counts: list, zeros: list, x: int, y: int ) -> None: """ maze: 2 by 2 list issued: 2 by 2 list with True or False minimum_counts: list with results zeros: list for counting zeros x: row of startpoint y: col of startpoint """ if maze[x][y] == 3: if minimum_counts[0] == 0 or minimum_counts[0] >= len(zeros): minimum_counts[0] = len(zeros) return if not issued[x][y]: issued[x][y] = True if maze[x][y] == 0: zeros.append(maze[x][y]) if y - 1 >= 0 and maze[x][y - 1] != 1: find_minimum_count(maze, issued, minimum_counts, zeros, x, y - 1) if x - 1 >= 0 and maze[x - 1][y] != 1: find_minimum_count(maze, issued, minimum_counts, zeros, x - 1, y) if y + 1 < len(maze) and maze[x][y + 1] != 1: find_minimum_count(maze, issued, minimum_counts, zeros, x, y + 1) # x + 1이 5보다 크면 if문 자체가 에러가 난다. if x + 1 < len(maze) and maze[x + 1][y] != 1: find_minimum_count(maze, issued, minimum_counts, zeros, x + 1, y) if maze[x][y] == 0: zeros.pop() issued[x][y] = False # maze = [ # [1, 3, 1, 0, 1], # [1, 0, 1, 0, 1], # [1, 0, 1, 0, 1], # [1, 0, 1, 0, 1], # [1, 0, 0, 2, 1] # ] # zeros = [] # issued = [] # for y in range(len(maze)): # temp = [] # for x in range(len(maze[0])): # temp.append(True) if maze[y][x] == 1 else temp.append(False) # issued.append(temp) # # print(issued) # minimum_counts = [0] # x = 4 # y = 3 # find_minimum_count(maze, issued, minimum_counts, zeros, x, y) # print(minimum_counts[0]) t = int(input()) for i in range(t): n = int(input()) maze = [] issued = [] zeros = [] minimum_counts = [0] for _ in range(n): temp_arr = [] string = input() for c in string: temp_arr.append(int(c)) maze.append(temp_arr) for j in range(len(maze)): if 2 in maze[j]: x = j for k in range(len(maze[x])): if maze[x][k] == 2: y = k for j in range(len(maze)): temp = [] for k in range(len(maze[0])): if maze[j][k] == 1: temp.append(True) else: temp.append(False) issued.append(temp) find_minimum_count(maze, issued, minimum_counts, zeros, x, y) print(f"#{i + 1} {minimum_counts[0]}")
__title__ = 'glance-times' __description__ = 'Who will watch the watchman? Glance can.' __url__ = 'https://github.com/mrice88/glance' __download_url__ = 'https://github.com/mrice88/glance/archive/master.zip' __version__ = '0.3.6' __author__ = 'Mark Rice' __author_email__ = 'markricejr@gmail.com' __license__ = 'MIT' __copyright__ = 'Copyright 2019 Mark Rice'
class Solution: def minSubArrayLen(self, s, nums): n = len(nums) ans = 9999999999 left = 0 sum = 0 for i in range(n): sum += nums[i] while sum >= s: ans = min(ans, i + 1 - left) sum -= nums[left] left += 1 return ans if ans != 9999999999 else 0 if __name__ == "__main__": solution = Solution() print(solution.minSubArrayLen(7, [2,3,1,2,4,3]))
class Solution: def surfaceArea(self, grid: List[List[int]]) -> int: result = 0 n = len(grid) for i in range(n): for j in range(n): if grid[i][j]: result += grid[i][j] * 4 + 2 if i != 0: result -= min(grid[i][j], grid[i-1][j]) * 2 if j != 0: result -= min(grid[i][j], grid[i][j-1]) * 2 return result
''' The following iterative sequence is defined for the set of positive integers: n -> n/2 (n is even) n -> 3n + 1 (n is odd) Using the rule above and starting with 13, we generate the following sequence: 13 -> 40 -> 20 -> 10 -> 5 -> 16 -> 8 -> 4 -> 2 -> 1 It can be seen that this sequence (starting at 13 and finishing at 1) contains 10 terms. Although it has not been proved yet (Collatz Problem), it is thought that all starting numbers finish at 1. Which starting number, under one million, produces the longest chain? NOTE: Once the chain starts the terms are allowed to go above one million. ''' numbers = range(1, 1000000) max_length = 0 max_target_number = 1 for x in numbers: temp_target_number = x temp_length = 0 while temp_target_number != 1: if temp_target_number % 2 == 0: temp_target_number = temp_target_number / 2 else: temp_target_number = temp_target_number * 3 + 1 temp_length = temp_length + 1 if temp_length > max_length: max_length = temp_length max_target_number = x print(max_target_number, max_length)
define = { "swf": "mujaffa.swf", "model": "model.h5", "dataset": "dataset.p", "action_space": 4, "action_names": ["terminal", "menu", "score", "lll", "terminal_1", "stage", "score", "stage", "transition"], "state_space": (84, 84, 3) }
#fibonacci from 0-100 list1=list(range(1,10)) x=1 y=0 z=0 for a in list1: z=x+y print(y) y=x x=z
#calculo aumento de salario salario = 1500 aumento = 5 print ( salario+ (salario * aumento / 100))
# automatically generated by the FlatBuffers compiler, do not modify # namespace: fbs class AttributeType(object): UNDEFINED = 0 FLOAT = 1 INT = 2 STRING = 3 TENSOR = 4 GRAPH = 5 FLOATS = 6 INTS = 7 STRINGS = 8 TENSORS = 9 GRAPHS = 10 SPARSE_TENSOR = 11 SPARSE_TENSORS = 12
##Patterns: E0711 ##Err: E0711 raise NotImplemented raise NotImplementedError
class Solution: def getRow(self, rowIndex: int) -> List[int]: row = [1] for _ in range(rowIndex): row = [x + y for x, y in zip([0]+row, row+[0])] return row
def notas(*n, sit=False): """ -> Função para analisar notas e situações de vários alunos. :param n: uma ou mais notas dos alunos (aceita várias) :param sit: valor opcional, indicando se deve ou não adicionar a situação :return: dicionário com várias informações sobre a situação da turma. """ r = dict() r['Total'] = len(n) r['Maior'] = max(n) r['Menor'] = min(n) r['Média'] = sum(n) / len(n) if sit: if r['Média'] >= 7: r['Situação'] = 'BOA' elif r['Média'] >= 5: r['Situação'] = 'MÉDIA' else: r['Situação'] = 'RUIM' return r resp = notas(5.5, 2.5, 10, 6.5) print(resp)
# https://leetcode.com/problems/binary-tree-inorder-traversal class Solution: def __init__(self): self.inorder_list = [] def inorder_traversal(self, root): if root: self.inorder_traversal(root.left) self.inorder_list.append(root.val) self.inorder_traversal(root.right) return self.inorder_list
''' For 35 points, answer the following questions. You may run any or all of the programs, but run them separately. Here's an example problem with answers included: x = 1 name = 'Dahlia' name = name + x #What is the error in your words? #Answer: Can't add str and int #What is the error in Python's words? #Answer: TypeError: must be str, not int #What is one way to fix it? #Answer: name = name + str(x) ''' ''' x = 0 y = 146 x = y/x #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' x = x+5 #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' william = 'student' wiliam += 'grade 10' #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' echo() #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' pirnt() #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' The previous 4 errors were all NameErrors. What is common among such errors? ''' ''' x = 4 print(x x = x+2 #What is the error in your words? #What is the error in Python's words? #What line of code does Python say the error is on? #What line of code is the error actually on? #What is one way to fix it? ''' ''' x = 2 if x > 1 print('ok') #What is the error in your words? #What is the error in Python's words? ''' ''' x = 2 if x > 1: print('ok') #What is the error in your words? #What is the error in Python's words? ''' ''' x = 2 if x > 1: print('ok') x = x+1 #What is the error in your words? #What is the error in Python's words? ''' ''' letters = ['A','B','C','D'] for i in range(5): print(letters[i]) #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' letters = ['A','B','C','D'] x = 1/2 print(letters[x]) #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? ''' ''' letters = ['A','B','C','D'] for i in range(2,8): x = i/2 print(letters[x]) #What is the error in your words? #What is the error in Python's words? #What is one way to fix it? '''
ano = int(input("informe um ano")) if ano % 4 == 0: print("o ano {} é um ano bissexto".format(ano)) else: print("o ano {} não é bissexto".format(ano))
# not equal != print("hot dogs" != "sandwiches") # Greater > print(6 > 3) # Smaller < print(6 < 3) # greater than equal to print(42 >= 42) # Strings does a alphabetical order check. print("sunshine" > "rain") # s comes before r
jogador = {'nome': str, 'gols': [], 'total': int} jogador['nome'] = input("\nNome do jogador: ") n = int(input(f'Quantas partidas {jogador["nome"]} jogou? ')) for i in range(n): jogador['gols'].append(int(input(f'\tQuantos gols na {i+1}ª partida? '))) print() jogador['total'] = sum(jogador['gols']) print('', '-=' * 30, '', sep='\n') print(jogador) print('', '-=' * 30, '', sep='\n') for k, v in jogador.items(): print(f'O campo {k} tem o valor {v}') print('', '-=' * 30, '', sep='\n') print(f'O jogador {jogador["nome"]} jogou {n} partidas') for i in range(n): print(f'\t=> Na partida {i+1}, fez {jogador["gols"][i]}') print(f'\nFoi um total de {jogador["total"]} gols\n')
# from itertools import product # # # 01 solution using itertools.product(*iterables, repeat=) # # # https://docs.python.org/3/library/itertools.html#itertools.product # num = int(input()) # result = [] # keywords = "" # for number in range(97, 97 + num): # result += chr(number) # keywords = ["".join(i) for i in product(result, repeat=3)] # for i in list(keywords): # print(i) # # 02 solution num = int(input()) for i in range(0, num): for j in range(0, num): for k in range(0, num): print(f"{chr(97+i)}{chr(97+j)}{chr(97+k)}")
n = int(input("Digite um número inteiro: ")) soma = 0 while ( n > 0 ): resto = n % 10 n = n // 10 soma = soma + resto print(soma)
alt = float(input('Informe a altura: ')) larg = float(input('Informe a largura: ')) area = larg * alt print('A parede de {}m x {}m tem de área {:.2f}m²'.format(larg, alt, area)) tinta = area/2 print('Será necessário {:.2f}l de tinta'.format(tinta))
# -*- coding: utf-8 -*- """ @version: 1.0 @author: James @license: Apache Licence @contact: euler52201044@sina.com @file: 11_rabbit_number.py @time: 2019/5/2 下午5:27 @description: """ f1 = 1 f2 = 1 for i in range(1, 22): print('%12ld %12ld' % (f1, f2), end='') if (i % 3) == 0: print('') f1 = f1 + f2 f2 = f1 + f2
class Solution: def canVisitAllRooms(self, rooms: List[List[int]]) -> bool: n = len(rooms) visited = [False] * n visited[0] = True stack = [0] cnt = 0 while stack: room = stack.pop() cnt += 1 for nei in rooms[room]: if not visited[nei]: stack.append(nei) visited[nei] = True return cnt == n
# # Berechnung des Maximums natuerlicher Zahlen # print("Bitte positive ganze Zahlen eingeben (negativ beendet): ") user_input = 0 # minimalste positive Zahl max_value = 0 # dito while user_input >= 0: # negative Zahl beendet user_input_text = input("Bitte Zahl eingeben: ") user_input = int(user_input_text) if max_value < user_input: # neues Maximum? max_value = user_input print("neues Maximum gefunden: " + user_input_text) print("Maximum: " + str(max_value))
reversed_words = {} while True: command = input() if command == "end": break reversed_words[command] = ''.join(reversed(command)) for key, value in reversed_words.items(): print(f"{key} = {value}")
def slug(text): '''In reality you may need to implement a better version of it''' text = text.lower() text = text.replace(" ", "-") return text
def multiply(x, y): return x * y def divide(x, y): return x / y def add(x, y): return x + y def subtract(x, y): return x - y def power(x, y): return x ** y
""" Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. """ class Option(object): def __init__(self, key, value): """Initialize the Option, used for passing options into requests Args: key (str): The key for the option value (str): The value for the option """ self._key = key self._value = value @property def key(self): """Gets and sets the key of the :class:`Option` Returns: str: The key""" return self._key @key.setter def key(self, value): self._key = value @property def value(self): """Gets and sets the value of the :class:`Option` Returns: str: The value""" return self._value @value.setter def value(self, value): self._value = value class QueryOption(Option): """Option used for the query string of a request""" pass class HeaderOption(Option): """Option used for the header of the request""" pass
dimensions = (200, 50) print(dimensions[0]) print(dimensions[1]) for dimension in dimensions: print(dimension) dimensions = [200, 50] print("Orignal dimensions") for dimension in dimensions: print(dimension) dimensions = [400, 100] print("\nModified dimensions") for dimension in dimensions: print(dimension)
class TreeNode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: """ 938.二叉搜索树的范围和 | 难度:简单 | 标签:树、深度优先搜索、递归 给定二叉搜索树的根结点 root,返回值位于范围 [low, high] 之间的所有结点的值的和。 <p> 示例 1: 输入:root = [10,5,15,3,7,null,18], low = 7, high = 15 输出:32 <p> 示例 2: 输入:root = [10,5,15,3,7,13,18,1,null,6], low = 6, high = 10 输出:23 <p> 提示: 树中节点数目在范围 [1, 2 * 10^4] 内 1 <= Node.val <= 10^5 1 <= low <= high <= 10^5 所有 Node.val 互不相同 <p> 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/range-sum-of-bst 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 """ def rangeSumBST(self, root: TreeNode, low: int, high: int) -> int: """ 执行用时: 284 ms , 在所有 Python3 提交中击败了 20.00% 的用户 内存消耗: 23.1 MB , 在所有 Python3 提交中击败了 24.76% 的用户 :param root: :param low: :param high: :return: """ if root is None: return 0 result = 0 if low <= root.val <= high: result += root.val result += self.rangeSumBST(root.left, low, high) result += self.rangeSumBST(root.right, low, high) elif root.val < low: result += self.rangeSumBST(root.right, low, high) else: result += self.rangeSumBST(root.left, low, high) return result
def evenDigitsOnly(n): return all( (True if digit in ("0", "2", "4", "6", "8") else False for digit in str(n)) )
__________________________________________________________________________________________________ class Solution: def largestUniqueNumber(self, A: List[int]) -> int: c = collections.Counter(A) l = sorted(list(c.items()), key=lambda x: (x[1], -x[0])) return -1 if l[0][1] > 1 else l[0][0] __________________________________________________________________________________________________ __________________________________________________________________________________________________
# coding=utf-8 # Module arial_32 # generated from Arial 24.75pt name = "Arial 32" start_char = '!' end_char = chr(127) char_height = 32 space_width = 16 gap_width = 4 bitmaps = ( # @0 '!' (3 pixels wide) 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x40, # O 0x40, # O 0x40, # O 0x40, # O 0x40, # O 0x40, # O 0x40, # O 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @32 '"' (9 pixels wide) 0x00, 0x00, # 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0xE3, 0x80, # OOO OOO 0x41, 0x00, # O O 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @96 '#' (17 pixels wide) 0x00, 0x00, 0x00, # 0x03, 0x87, 0x00, # OOO OOO 0x03, 0x87, 0x00, # OOO OOO 0x07, 0x0E, 0x00, # OOO OOO 0x07, 0x0E, 0x00, # OOO OOO 0x07, 0x0E, 0x00, # OOO OOO 0x07, 0x0E, 0x00, # OOO OOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0x0E, 0x1C, 0x00, # OOO OOO 0x0E, 0x1C, 0x00, # OOO OOO 0x0E, 0x1C, 0x00, # OOO OOO 0x1C, 0x38, 0x00, # OOO OOO 0x1C, 0x38, 0x00, # OOO OOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0x38, 0x70, 0x00, # OOO OOO 0x38, 0x70, 0x00, # OOO OOO 0x38, 0x70, 0x00, # OOO OOO 0x38, 0x70, 0x00, # OOO OOO 0x38, 0x70, 0x00, # OOO OOO 0x70, 0xE0, 0x00, # OOO OOO 0x70, 0xE0, 0x00, # OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @192 '$' (16 pixels wide) 0x01, 0x80, # OO 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x39, 0x9C, # OOO OO OOO 0x71, 0x8E, # OOO OO OOO 0x71, 0x8E, # OOO OO OOO 0x71, 0x80, # OOO OO 0x71, 0x80, # OOO OO 0x79, 0x80, # OOOO OO 0x3F, 0x80, # OOOOOOO 0x1F, 0xE0, # OOOOOOOO 0x07, 0xF8, # OOOOOOOO 0x01, 0xFC, # OOOOOOO 0x01, 0xBE, # OO OOOOO 0x01, 0x8F, # OO OOOO 0x01, 0x87, # OO OOO 0x01, 0x87, # OO OOO 0xE1, 0x87, # OOO OO OOO 0xE1, 0x87, # OOO OO OOO 0x71, 0x8F, # OOO OO OOOO 0x79, 0x9E, # OOOO OO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xF0, # OOOOOOO 0x01, 0x80, # OO 0x01, 0x80, # OO 0x01, 0x80, # OO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @256 '%' (25 pixels wide) 0x00, 0x00, 0x00, 0x00, # 0x1F, 0x00, 0x70, 0x00, # OOOOO OOO 0x3F, 0x80, 0xE0, 0x00, # OOOOOOO OOO 0x71, 0xC0, 0xE0, 0x00, # OOO OOO OOO 0xE0, 0xE1, 0xC0, 0x00, # OOO OOO OOO 0xE0, 0xE1, 0xC0, 0x00, # OOO OOO OOO 0xE0, 0xE1, 0xC0, 0x00, # OOO OOO OOO 0xE0, 0xE3, 0x80, 0x00, # OOO OOO OOO 0xE0, 0xE3, 0x80, 0x00, # OOO OOO OOO 0xE0, 0xE7, 0x00, 0x00, # OOO OOO OOO 0xE0, 0xE7, 0x00, 0x00, # OOO OOO OOO 0x71, 0xCE, 0x00, 0x00, # OOO OOO OOO 0x3F, 0x8E, 0x7C, 0x00, # OOOOOOO OOO OOOOO 0x1F, 0x1C, 0xFE, 0x00, # OOOOO OOO OOOOOOO 0x00, 0x1D, 0xC7, 0x00, # OOO OOO OOO 0x00, 0x3B, 0x83, 0x80, # OOO OOO OOO 0x00, 0x3B, 0x83, 0x80, # OOO OOO OOO 0x00, 0x73, 0x83, 0x80, # OOO OOO OOO 0x00, 0x73, 0x83, 0x80, # OOO OOO OOO 0x00, 0xE3, 0x83, 0x80, # OOO OOO OOO 0x00, 0xE3, 0x83, 0x80, # OOO OOO OOO 0x01, 0xC3, 0x83, 0x80, # OOO OOO OOO 0x01, 0xC1, 0xC7, 0x00, # OOO OOO OOO 0x03, 0x80, 0xFE, 0x00, # OOO OOOOOOO 0x03, 0x80, 0x7C, 0x00, # OOO OOOOO 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, # # @384 '&' (19 pixels wide) 0x00, 0x00, 0x00, # 0x03, 0xF0, 0x00, # OOOOOO 0x07, 0xF8, 0x00, # OOOOOOOO 0x0F, 0xFC, 0x00, # OOOOOOOOOO 0x1E, 0x1E, 0x00, # OOOO OOOO 0x1C, 0x0E, 0x00, # OOO OOO 0x1C, 0x0E, 0x00, # OOO OOO 0x1C, 0x0E, 0x00, # OOO OOO 0x0E, 0x1C, 0x00, # OOO OOO 0x0F, 0x3C, 0x00, # OOOO OOOO 0x07, 0xF8, 0x00, # OOOOOOOO 0x03, 0xE0, 0x00, # OOOOO 0x0F, 0xC0, 0x00, # OOOOOO 0x1E, 0xE0, 0x00, # OOOO OOO 0x78, 0x70, 0x80, # OOOO OOO O 0x70, 0x71, 0xE0, # OOO OOO OOOO 0xE0, 0x39, 0xC0, # OOO OOO OOO 0xE0, 0x1F, 0xC0, # OOO OOOOOOO 0xE0, 0x0F, 0x80, # OOO OOOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xF0, 0x0F, 0x80, # OOOO OOOOO 0x78, 0x3F, 0xC0, # OOOO OOOOOOOO 0x3F, 0xFD, 0xE0, # OOOOOOOOOOOO OOOO 0x1F, 0xF8, 0xE0, # OOOOOOOOOO OOO 0x07, 0xE0, 0x40, # OOOOOO O 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @480 ''' (3 pixels wide) 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x40, # O 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @512 '(' (8 pixels wide) 0x00, # 0x03, # OO 0x06, # OO 0x0E, # OOO 0x0C, # OO 0x18, # OO 0x38, # OOO 0x38, # OOO 0x30, # OO 0x70, # OOO 0x70, # OOO 0x60, # OO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x70, # OOO 0x70, # OOO 0x70, # OOO 0x30, # OO 0x38, # OOO 0x38, # OOO 0x1C, # OOO 0x0C, # OO 0x0E, # OOO 0x06, # OO 0x03, # OO # @544 ')' (8 pixels wide) 0x00, # 0xC0, # OO 0x60, # OO 0x70, # OOO 0x30, # OO 0x18, # OO 0x1C, # OOO 0x1C, # OOO 0x0C, # OO 0x0E, # OOO 0x0E, # OOO 0x06, # OO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x0E, # OOO 0x0E, # OOO 0x0E, # OOO 0x0C, # OO 0x1C, # OOO 0x1C, # OOO 0x38, # OOO 0x30, # OO 0x70, # OOO 0x60, # OO 0xC0, # OO # @576 '*' (10 pixels wide) 0x00, 0x00, # 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0xED, 0xC0, # OOO OO OOO 0xFF, 0xC0, # OOOOOOOOOO 0x3F, 0x00, # OOOOOO 0x1E, 0x00, # OOOO 0x3F, 0x00, # OOOOOO 0x73, 0x80, # OOO OOO 0x21, 0x00, # O O 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @640 '+' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @704 ',' (3 pixels wide) 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x60, # OO 0x60, # OO 0x60, # OO 0x40, # O 0xC0, # OO 0x00, # 0x00, # # @736 '-' (9 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xFF, 0x80, # OOOOOOOOO 0xFF, 0x80, # OOOOOOOOO 0xFF, 0x80, # OOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @800 '.' (3 pixels wide) 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @832 '/' (9 pixels wide) 0x00, 0x00, # 0x01, 0x80, # OO 0x01, 0x80, # OO 0x03, 0x00, # OO 0x03, 0x00, # OO 0x03, 0x00, # OO 0x06, 0x00, # OO 0x06, 0x00, # OO 0x06, 0x00, # OO 0x06, 0x00, # OO 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0x18, 0x00, # OO 0x18, 0x00, # OO 0x18, 0x00, # OO 0x38, 0x00, # OOO 0x30, 0x00, # OO 0x30, 0x00, # OO 0x30, 0x00, # OO 0x60, 0x00, # OO 0x60, 0x00, # OO 0x60, 0x00, # OO 0xE0, 0x00, # OOO 0xC0, 0x00, # OO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @896 '0' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x3C, 0x3C, # OOOO OOOO 0x70, 0x1E, # OOO OOOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x3C, 0x3C, # OOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @960 '1' (8 pixels wide) 0x00, # 0x03, # OO 0x07, # OOO 0x0F, # OOOO 0x1F, # OOOOO 0x3F, # OOOOOO 0x7F, # OOOOOOO 0xF7, # OOOO OOO 0xC7, # OO OOO 0x87, # O OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x07, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @992 '2' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x78, 0x1E, # OOOO OOOO 0x70, 0x0F, # OOO OOOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x1C, # OOO 0x00, 0x38, # OOO 0x00, 0x70, # OOO 0x00, 0xE0, # OOO 0x01, 0xC0, # OOO 0x03, 0x80, # OOO 0x0F, 0x00, # OOOO 0x1E, 0x00, # OOOO 0x38, 0x00, # OOO 0x70, 0x00, # OOO 0x7F, 0xFF, # OOOOOOOOOOOOOOO 0xFF, 0xFF, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, # OOOOOOOOOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1056 '3' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x78, 0x3C, # OOOO OOOO 0xF0, 0x0E, # OOOO OOO 0xE0, 0x0E, # OOO OOO 0x00, 0x0E, # OOO 0x00, 0x1E, # OOOO 0x00, 0x3C, # OOOO 0x03, 0xF8, # OOOOOOO 0x03, 0xF8, # OOOOOOO 0x03, 0xFC, # OOOOOOOO 0x00, 0x1E, # OOOO 0x00, 0x0F, # OOOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x70, 0x0E, # OOO OOO 0x78, 0x1E, # OOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1120 '4' (17 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0x0C, 0x00, # OO 0x00, 0x1C, 0x00, # OOO 0x00, 0x3C, 0x00, # OOOO 0x00, 0x7C, 0x00, # OOOOO 0x00, 0xFC, 0x00, # OOOOOO 0x00, 0xFC, 0x00, # OOOOOO 0x01, 0xDC, 0x00, # OOO OOO 0x03, 0x9C, 0x00, # OOO OOO 0x07, 0x1C, 0x00, # OOO OOO 0x0E, 0x1C, 0x00, # OOO OOO 0x0E, 0x1C, 0x00, # OOO OOO 0x1C, 0x1C, 0x00, # OOO OOO 0x38, 0x1C, 0x00, # OOO OOO 0x70, 0x1C, 0x00, # OOO OOO 0xE0, 0x1C, 0x00, # OOO OOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @1216 '5' (16 pixels wide) 0x00, 0x00, # 0x3F, 0xFE, # OOOOOOOOOOOOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x70, 0x00, # OOO 0x70, 0x00, # OOO 0x70, 0x00, # OOO 0x70, 0x00, # OOO 0x70, 0x00, # OOO 0x77, 0xE0, # OOO OOOOOO 0xEF, 0xF8, # OOO OOOOOOOOO 0xFF, 0xFC, # OOOOOOOOOOOOOO 0xF0, 0x1E, # OOOO OOOO 0x00, 0x0E, # OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x70, 0x0E, # OOO OOO 0x78, 0x1E, # OOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1280 '6' (16 pixels wide) 0x00, 0x00, # 0x03, 0xF0, # OOOOOO 0x0F, 0xFC, # OOOOOOOOOO 0x1F, 0xFE, # OOOOOOOOOOOO 0x3C, 0x1E, # OOOO OOOO 0x78, 0x0F, # OOOO OOOO 0x70, 0x07, # OOO OOO 0x70, 0x00, # OOO 0xE0, 0x00, # OOO 0xE3, 0xF0, # OOO OOOOOO 0xEF, 0xF8, # OOO OOOOOOOOO 0xFF, 0xFC, # OOOOOOOOOOOOOO 0xFC, 0x1E, # OOOOOO OOOO 0xF0, 0x0E, # OOOO OOO 0xF0, 0x07, # OOOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x60, 0x07, # OO OOO 0x70, 0x07, # OOO OOO 0x70, 0x0E, # OOO OOO 0x3C, 0x1E, # OOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x0F, 0xF8, # OOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1344 '7' (16 pixels wide) 0x00, 0x00, # 0xFF, 0xFF, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, # OOOOOOOOOOOOOOOO 0x00, 0x06, # OO 0x00, 0x0C, # OO 0x00, 0x1C, # OOO 0x00, 0x38, # OOO 0x00, 0x30, # OO 0x00, 0x70, # OOO 0x00, 0xE0, # OOO 0x00, 0xE0, # OOO 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x07, 0x00, # OOO 0x07, 0x00, # OOO 0x07, 0x00, # OOO 0x07, 0x00, # OOO 0x0E, 0x00, # OOO 0x0E, 0x00, # OOO 0x0E, 0x00, # OOO 0x0E, 0x00, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1408 '8' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x78, 0x1C, # OOOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x38, 0x1C, # OOO OOO 0x1F, 0xF8, # OOOOOOOOOO 0x0F, 0xF0, # OOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x78, 0x1E, # OOOO OOOO 0x70, 0x0E, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x70, 0x0E, # OOO OOO 0x78, 0x1E, # OOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1472 '9' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF0, # OOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x7C, 0x1C, # OOOOO OOO 0x70, 0x0E, # OOO OOO 0xF0, 0x06, # OOOO OO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0xE0, 0x0F, # OOO OOOO 0x70, 0x0F, # OOO OOOO 0x78, 0x3F, # OOOO OOOOOO 0x3F, 0xFF, # OOOOOOOOOOOOOO 0x1F, 0xF7, # OOOOOOOOO OOO 0x07, 0xC7, # OOOOO OOO 0x00, 0x07, # OOO 0x00, 0x0E, # OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0x78, 0x3C, # OOOO OOOO 0x7F, 0xF8, # OOOOOOOOOOOO 0x3F, 0xF0, # OOOOOOOOOO 0x0F, 0xC0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1536 ':' (3 pixels wide) 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @1568 ';' (3 pixels wide) 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x60, # OO 0x60, # OO 0x60, # OO 0x40, # O 0xC0, # OO 0x00, # 0x00, # # @1600 '<' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x02, # O 0x00, 0x1E, # OOOO 0x00, 0x7E, # OOOOOO 0x03, 0xFC, # OOOOOOOO 0x0F, 0xE0, # OOOOOOO 0x7F, 0x00, # OOOOOOO 0xFC, 0x00, # OOOOOO 0xE0, 0x00, # OOO 0xFC, 0x00, # OOOOOO 0x7F, 0x00, # OOOOOOO 0x0F, 0xE0, # OOOOOOO 0x03, 0xFC, # OOOOOOOO 0x00, 0x7E, # OOOOOO 0x00, 0x1E, # OOOO 0x00, 0x02, # O 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1664 '=' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1728 '>' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x80, 0x00, # O 0xF0, 0x00, # OOOO 0xFC, 0x00, # OOOOOO 0x7F, 0x80, # OOOOOOOO 0x0F, 0xE0, # OOOOOOO 0x01, 0xFC, # OOOOOOO 0x00, 0x7E, # OOOOOO 0x00, 0x0E, # OOO 0x00, 0x7E, # OOOOOO 0x01, 0xFC, # OOOOOOO 0x0F, 0xE0, # OOOOOOO 0x7F, 0x80, # OOOOOOOO 0xFC, 0x00, # OOOOOO 0xF0, 0x00, # OOOO 0x80, 0x00, # O 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1792 '?' (16 pixels wide) 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x7C, 0x1E, # OOOOO OOOO 0x70, 0x0F, # OOO OOOO 0xE0, 0x07, # OOO OOO 0xE0, 0x07, # OOO OOO 0x00, 0x07, # OOO 0x00, 0x07, # OOO 0x00, 0x0E, # OOO 0x00, 0x1E, # OOOO 0x00, 0x3C, # OOOO 0x00, 0x78, # OOOO 0x00, 0xF0, # OOOO 0x00, 0xE0, # OOO 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x01, 0xC0, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @1856 '@' (30 pixels wide) 0x00, 0x00, 0x00, 0x00, # 0x00, 0x1F, 0xF0, 0x00, # OOOOOOOOO 0x00, 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0x01, 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOOO 0x07, 0xF0, 0x1F, 0x80, # OOOOOOO OOOOOO 0x0F, 0x80, 0x07, 0xC0, # OOOOO OOOOO 0x0F, 0x00, 0x01, 0xE0, # OOOO OOOO 0x1E, 0x1E, 0x1C, 0xE0, # OOOO OOOO OOO OOO 0x3C, 0x7F, 0x9C, 0x70, # OOOO OOOOOOOO OOO OOO 0x38, 0xFF, 0xF8, 0x70, # OOO OOOOOOOOOOOOO OOO 0x79, 0xF1, 0xF8, 0x78, # OOOO OOOOO OOOOOO OOOO 0x71, 0xC0, 0xF8, 0x38, # OOO OOO OOOOO OOO 0x73, 0xC0, 0x78, 0x38, # OOO OOOO OOOO OOO 0xE3, 0x80, 0x78, 0x38, # OOO OOO OOOO OOO 0xE7, 0x80, 0x70, 0x38, # OOO OOOO OOO OOO 0xE7, 0x00, 0x70, 0x38, # OOO OOO OOO OOO 0xE7, 0x00, 0x70, 0x38, # OOO OOO OOO OOO 0xE7, 0x00, 0xF0, 0x70, # OOO OOO OOOO OOO 0xE7, 0x00, 0xE0, 0x70, # OOO OOO OOO OOO 0xE7, 0x01, 0xE0, 0xE0, # OOO OOO OOOO OOO 0xE7, 0x81, 0xE1, 0xE0, # OOO OOOO OOOO OOOO 0xF3, 0xC7, 0xE3, 0xC0, # OOOO OOOO OOOOOO OOOO 0x73, 0xFF, 0xFF, 0x80, # OOO OOOOOOOOOOOOOOOOOOO 0x79, 0xFE, 0xFF, 0x00, # OOOO OOOOOOOO OOOOOOOO 0x38, 0x78, 0x7C, 0x00, # OOO OOOO OOOOO 0x3C, 0x00, 0x00, 0x1C, # OOOO OOO 0x1E, 0x00, 0x00, 0x78, # OOOO OOOO 0x0F, 0x80, 0x00, 0xF0, # OOOOO OOOO 0x07, 0xF0, 0x07, 0xE0, # OOOOOOO OOOOOO 0x03, 0xFF, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOOOOO 0x00, 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0x00, 0x1F, 0xF8, 0x00, # OOOOOOOOOO # @1984 'A' (21 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0xF8, 0x00, # OOOOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0xF8, 0x00, # OOOOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x07, 0x07, 0x00, # OOO OOO 0x07, 0x07, 0x00, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x1F, 0xFF, 0xC0, # OOOOOOOOOOOOOOO 0x1F, 0xFF, 0xC0, # OOOOOOOOOOOOOOO 0x1F, 0xFF, 0xC0, # OOOOOOOOOOOOOOO 0x38, 0x00, 0xE0, # OOO OOO 0x38, 0x00, 0xE0, # OOO OOO 0x38, 0x00, 0xE0, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2080 'B' (17 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xF0, 0x00, # OOOOOOOOOOOO 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xE0, 0x1E, 0x00, # OOO OOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x07, 0x00, # OOO OOO 0xE0, 0x07, 0x00, # OOO OOO 0xE0, 0x07, 0x00, # OOO OOO 0xE0, 0x0E, 0x00, # OOO OOO 0xE0, 0x1E, 0x00, # OOO OOOO 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xF8, 0x00, # OOOOOOOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2176 'C' (20 pixels wide) 0x00, 0x00, 0x00, # 0x01, 0xFC, 0x00, # OOOOOOO 0x07, 0xFE, 0x00, # OOOOOOOOOO 0x0F, 0xFF, 0x80, # OOOOOOOOOOOOO 0x1E, 0x07, 0x80, # OOOO OOOO 0x3C, 0x03, 0xC0, # OOOO OOOO 0x78, 0x01, 0xE0, # OOOO OOOO 0x70, 0x00, 0xE0, # OOO OOO 0x70, 0x00, 0x80, # OOO O 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x40, # OOO O 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x00, 0xF0, # OOO OOOO 0x78, 0x00, 0xE0, # OOOO OOO 0x3C, 0x01, 0xE0, # OOOO OOOO 0x1F, 0x07, 0xC0, # OOOOO OOOOO 0x1F, 0xFF, 0x80, # OOOOOOOOOOOOOO 0x07, 0xFF, 0x00, # OOOOOOOOOOO 0x01, 0xFC, 0x00, # OOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2272 'D' (19 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xF8, 0x00, # OOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xE0, 0x0F, 0x80, # OOO OOOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xE0, # OOO OOOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x00, 0xE0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x0F, 0x80, # OOO OOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xF0, 0x00, # OOOOOOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2368 'E' (17 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2464 'F' (15 pixels wide) 0x00, 0x00, # 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @2528 'G' (22 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0xFF, 0x00, # OOOOOOOO 0x07, 0xFF, 0xC0, # OOOOOOOOOOOOO 0x0F, 0xFF, 0xE0, # OOOOOOOOOOOOOOO 0x1F, 0x01, 0xF0, # OOOOO OOOOO 0x3C, 0x00, 0x78, # OOOO OOOO 0x38, 0x00, 0x38, # OOO OOO 0x70, 0x00, 0x38, # OOO OOO 0x70, 0x00, 0x18, # OOO OO 0xF0, 0x00, 0x00, # OOOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x0F, 0xFC, # OOO OOOOOOOOOO 0xE0, 0x0F, 0xFC, # OOO OOOOOOOOOO 0xE0, 0x0F, 0xFC, # OOO OOOOOOOOOO 0xE0, 0x00, 0x1C, # OOO OOO 0x70, 0x00, 0x1C, # OOO OOO 0x70, 0x00, 0x1C, # OOO OOO 0x38, 0x00, 0x1C, # OOO OOO 0x3C, 0x00, 0x3C, # OOOO OOOO 0x1F, 0x81, 0xFC, # OOOOOO OOOOOOO 0x0F, 0xFF, 0xF0, # OOOOOOOOOOOOOOOO 0x03, 0xFF, 0xE0, # OOOOOOOOOOOOO 0x00, 0xFF, 0x00, # OOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2624 'H' (18 pixels wide) 0x00, 0x00, 0x00, # 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xFF, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2720 'I' (3 pixels wide) 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @2752 'J' (13 pixels wide) 0x00, 0x00, # 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0x00, 0x38, # OOO 0xE0, 0x38, # OOO OOO 0xE0, 0x38, # OOO OOO 0xF0, 0x78, # OOOO OOOO 0xF0, 0xF0, # OOOO OOOO 0x7F, 0xF0, # OOOOOOOOOOO 0x3F, 0xE0, # OOOOOOOOO 0x1F, 0x80, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @2816 'K' (20 pixels wide) 0x00, 0x00, 0x00, # 0xE0, 0x01, 0xE0, # OOO OOOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x1E, 0x00, # OOO OOOO 0xE0, 0x3C, 0x00, # OOO OOOO 0xE0, 0x78, 0x00, # OOO OOOO 0xE0, 0xF0, 0x00, # OOO OOOO 0xE1, 0xE0, 0x00, # OOO OOOO 0xE3, 0xC0, 0x00, # OOO OOOO 0xE7, 0x80, 0x00, # OOO OOOO 0xEF, 0xC0, 0x00, # OOO OOOOOO 0xFF, 0xE0, 0x00, # OOOOOOOOOOO 0xFC, 0xE0, 0x00, # OOOOOO OOO 0xF8, 0xF0, 0x00, # OOOOO OOOO 0xF0, 0x78, 0x00, # OOOO OOOO 0xE0, 0x3C, 0x00, # OOO OOOO 0xE0, 0x1E, 0x00, # OOO OOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x07, 0x00, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x01, 0xE0, # OOO OOOO 0xE0, 0x00, 0xF0, # OOO OOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @2912 'L' (14 pixels wide) 0x00, 0x00, # 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xFF, 0xFC, # OOOOOOOOOOOOOO 0xFF, 0xFC, # OOOOOOOOOOOOOO 0xFF, 0xFC, # OOOOOOOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @2976 'M' (23 pixels wide) 0x00, 0x00, 0x00, # 0xF8, 0x00, 0x3E, # OOOOO OOOOO 0xFC, 0x00, 0x3E, # OOOOOO OOOOO 0xFC, 0x00, 0x7E, # OOOOOO OOOOOO 0xFC, 0x00, 0x7E, # OOOOOO OOOOOO 0xFE, 0x00, 0x7E, # OOOOOOO OOOOOO 0xEE, 0x00, 0xEE, # OOO OOO OOO OOO 0xEE, 0x00, 0xEE, # OOO OOO OOO OOO 0xEE, 0x00, 0xEE, # OOO OOO OOO OOO 0xE7, 0x01, 0xCE, # OOO OOO OOO OOO 0xE7, 0x01, 0xCE, # OOO OOO OOO OOO 0xE7, 0x01, 0xCE, # OOO OOO OOO OOO 0xE3, 0x83, 0x8E, # OOO OOO OOO OOO 0xE3, 0x83, 0x8E, # OOO OOO OOO OOO 0xE3, 0x83, 0x8E, # OOO OOO OOO OOO 0xE1, 0xC7, 0x0E, # OOO OOO OOO OOO 0xE1, 0xC7, 0x0E, # OOO OOO OOO OOO 0xE1, 0xC7, 0x0E, # OOO OOO OOO OOO 0xE0, 0xEE, 0x0E, # OOO OOO OOO OOO 0xE0, 0xEE, 0x0E, # OOO OOO OOO OOO 0xE0, 0xEE, 0x0E, # OOO OOO OOO OOO 0xE0, 0x7C, 0x0E, # OOO OOOOO OOO 0xE0, 0x7C, 0x0E, # OOO OOOOO OOO 0xE0, 0x7C, 0x0E, # OOO OOOOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3072 'N' (18 pixels wide) 0x00, 0x00, 0x00, # 0xF0, 0x01, 0xC0, # OOOO OOO 0xF0, 0x01, 0xC0, # OOOO OOO 0xF8, 0x01, 0xC0, # OOOOO OOO 0xF8, 0x01, 0xC0, # OOOOO OOO 0xFC, 0x01, 0xC0, # OOOOOO OOO 0xEE, 0x01, 0xC0, # OOO OOO OOO 0xEE, 0x01, 0xC0, # OOO OOO OOO 0xE7, 0x01, 0xC0, # OOO OOO OOO 0xE7, 0x01, 0xC0, # OOO OOO OOO 0xE3, 0x81, 0xC0, # OOO OOO OOO 0xE1, 0xC1, 0xC0, # OOO OOO OOO 0xE1, 0xC1, 0xC0, # OOO OOO OOO 0xE0, 0xE1, 0xC0, # OOO OOO OOO 0xE0, 0xE1, 0xC0, # OOO OOO OOO 0xE0, 0x71, 0xC0, # OOO OOO OOO 0xE0, 0x39, 0xC0, # OOO OOO OOO 0xE0, 0x39, 0xC0, # OOO OOO OOO 0xE0, 0x1D, 0xC0, # OOO OOO OOO 0xE0, 0x1D, 0xC0, # OOO OOO OOO 0xE0, 0x0F, 0xC0, # OOO OOOOOO 0xE0, 0x07, 0xC0, # OOO OOOOO 0xE0, 0x07, 0xC0, # OOO OOOOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x03, 0xC0, # OOO OOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3168 'O' (22 pixels wide) 0x00, 0x00, 0x00, # 0x01, 0xFC, 0x00, # OOOOOOO 0x07, 0xFF, 0x80, # OOOOOOOOOOOO 0x0F, 0xFF, 0xC0, # OOOOOOOOOOOOOO 0x1F, 0x03, 0xE0, # OOOOO OOOOO 0x3C, 0x00, 0xF0, # OOOO OOOO 0x78, 0x00, 0x70, # OOOO OOO 0x70, 0x00, 0x38, # OOO OOO 0x70, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0xE0, 0x00, 0x1C, # OOO OOO 0x70, 0x00, 0x38, # OOO OOO 0x70, 0x00, 0x38, # OOO OOO 0x38, 0x00, 0x78, # OOO OOOO 0x3C, 0x00, 0xF0, # OOOO OOOO 0x1F, 0x03, 0xE0, # OOOOO OOOOO 0x0F, 0xFF, 0xC0, # OOOOOOOOOOOOOO 0x07, 0xFF, 0x80, # OOOOOOOOOOOO 0x00, 0xFC, 0x00, # OOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3264 'P' (17 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xF8, 0x00, # OOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFE, 0x00, # OOOOOOOOOOOOOOO 0xFF, 0xF8, 0x00, # OOOOOOOOOOOOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0xE0, 0x00, 0x00, # OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3360 'Q' (22 pixels wide) 0x00, 0x00, 0x00, # 0x01, 0xFC, 0x00, # OOOOOOO 0x07, 0xFF, 0x00, # OOOOOOOOOOO 0x0F, 0xFF, 0x80, # OOOOOOOOOOOOO 0x1F, 0x07, 0xC0, # OOOOO OOOOO 0x3C, 0x01, 0xE0, # OOOO OOOO 0x78, 0x00, 0xF0, # OOOO OOOO 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0xE0, 0x00, 0x38, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x18, 0x70, # OOO OO OOO 0x78, 0x1E, 0xE0, # OOOO OOOO OOO 0x3C, 0x0F, 0xE0, # OOOO OOOOOOO 0x1F, 0x07, 0xC0, # OOOOO OOOOO 0x0F, 0xFF, 0xE0, # OOOOOOOOOOOOOOO 0x07, 0xFF, 0xF0, # OOOOOOOOOOOOOOO 0x01, 0xFC, 0x7C, # OOOOOOO OOOOO 0x00, 0x00, 0x38, # OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3456 'R' (19 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xFF, 0xFF, 0x80, # OOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0x00, # OOOOOOOOOOOOOOOO 0xFF, 0xFC, 0x00, # OOOOOOOOOOOOOO 0xE0, 0x70, 0x00, # OOO OOO 0xE0, 0x38, 0x00, # OOO OOO 0xE0, 0x3C, 0x00, # OOO OOOO 0xE0, 0x1E, 0x00, # OOO OOOO 0xE0, 0x0E, 0x00, # OOO OOO 0xE0, 0x0F, 0x00, # OOO OOOO 0xE0, 0x07, 0x80, # OOO OOOO 0xE0, 0x03, 0x80, # OOO OOO 0xE0, 0x03, 0xC0, # OOO OOOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xE0, # OOO OOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3552 'S' (18 pixels wide) 0x00, 0x00, 0x00, # 0x07, 0xF0, 0x00, # OOOOOOO 0x1F, 0xFC, 0x00, # OOOOOOOOOOO 0x3F, 0xFE, 0x00, # OOOOOOOOOOOOO 0x3C, 0x0F, 0x00, # OOOO OOOO 0x78, 0x07, 0x80, # OOOO OOOO 0x70, 0x03, 0x80, # OOO OOO 0x70, 0x03, 0x80, # OOO OOO 0x70, 0x00, 0x00, # OOO 0x78, 0x00, 0x00, # OOOO 0x3E, 0x00, 0x00, # OOOOO 0x1F, 0xE0, 0x00, # OOOOOOOO 0x0F, 0xFC, 0x00, # OOOOOOOOOO 0x01, 0xFF, 0x00, # OOOOOOOOO 0x00, 0x1F, 0x80, # OOOOOO 0x00, 0x07, 0x80, # OOOO 0x00, 0x03, 0xC0, # OOOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xF0, 0x01, 0xC0, # OOOO OOO 0x78, 0x03, 0xC0, # OOOO OOOO 0x7C, 0x07, 0x80, # OOOOO OOOO 0x3F, 0xFF, 0x00, # OOOOOOOOOOOOOO 0x1F, 0xFE, 0x00, # OOOOOOOOOOOO 0x03, 0xF8, 0x00, # OOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3648 'T' (19 pixels wide) 0x00, 0x00, 0x00, # 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0xE0, 0x00, # OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3744 'U' (18 pixels wide) 0x00, 0x00, 0x00, # 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0xE0, 0x01, 0xC0, # OOO OOO 0x70, 0x03, 0x80, # OOO OOO 0x78, 0x03, 0x80, # OOOO OOO 0x7C, 0x0F, 0x80, # OOOOO OOOOO 0x3F, 0xFF, 0x00, # OOOOOOOOOOOOOO 0x1F, 0xFE, 0x00, # OOOOOOOOOOOO 0x07, 0xF8, 0x00, # OOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3840 'V' (21 pixels wide) 0x00, 0x00, 0x00, # 0xE0, 0x00, 0x38, # OOO OOO 0xF0, 0x00, 0x78, # OOOO OOOO 0x70, 0x00, 0x70, # OOO OOO 0x70, 0x00, 0x70, # OOO OOO 0x78, 0x00, 0xF0, # OOOO OOOO 0x38, 0x00, 0xE0, # OOO OOO 0x38, 0x00, 0xE0, # OOO OOO 0x1C, 0x01, 0xC0, # OOO OOO 0x1C, 0x01, 0xC0, # OOO OOO 0x1C, 0x01, 0xC0, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x07, 0x07, 0x00, # OOO OOO 0x07, 0x07, 0x00, # OOO OOO 0x07, 0x8F, 0x00, # OOOO OOOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0xDE, 0x00, # OOOO OOOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xFC, 0x00, # OOOOOOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @3936 'W' (33 pixels wide) 0x00, 0x00, 0x00, 0x00, 0x00, # 0xE0, 0x03, 0xE0, 0x03, 0x80, # OOO OOOOO OOO 0xE0, 0x03, 0xE0, 0x03, 0x80, # OOO OOOOO OOO 0x70, 0x03, 0xE0, 0x07, 0x00, # OOO OOOOO OOO 0x70, 0x07, 0x70, 0x07, 0x00, # OOO OOO OOO OOO 0x70, 0x07, 0x70, 0x07, 0x00, # OOO OOO OOO OOO 0x70, 0x07, 0x70, 0x07, 0x00, # OOO OOO OOO OOO 0x38, 0x0E, 0x30, 0x0E, 0x00, # OOO OOO OO OOO 0x38, 0x0E, 0x38, 0x0E, 0x00, # OOO OOO OOO OOO 0x38, 0x0E, 0x38, 0x0E, 0x00, # OOO OOO OOO OOO 0x1C, 0x0E, 0x38, 0x1C, 0x00, # OOO OOO OOO OOO 0x1C, 0x1C, 0x1C, 0x1C, 0x00, # OOO OOO OOO OOO 0x1C, 0x1C, 0x1C, 0x1C, 0x00, # OOO OOO OOO OOO 0x1C, 0x1C, 0x1C, 0x1C, 0x00, # OOO OOO OOO OOO 0x0E, 0x1C, 0x0C, 0x38, 0x00, # OOO OOO OO OOO 0x0E, 0x38, 0x0E, 0x38, 0x00, # OOO OOO OOO OOO 0x0E, 0x38, 0x0E, 0x38, 0x00, # OOO OOO OOO OOO 0x0E, 0x38, 0x0E, 0x38, 0x00, # OOO OOO OOO OOO 0x07, 0x70, 0x07, 0x70, 0x00, # OOO OOO OOO OOO 0x07, 0x70, 0x07, 0x70, 0x00, # OOO OOO OOO OOO 0x07, 0x70, 0x07, 0x70, 0x00, # OOO OOO OOO OOO 0x07, 0x70, 0x07, 0x70, 0x00, # OOO OOO OOO OOO 0x03, 0xE0, 0x03, 0xE0, 0x00, # OOOOO OOOOO 0x03, 0xE0, 0x03, 0xE0, 0x00, # OOOOO OOOOO 0x03, 0xE0, 0x03, 0xE0, 0x00, # OOOOO OOOOO 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, 0x00, 0x00, # # @4096 'X' (21 pixels wide) 0x00, 0x00, 0x00, # 0x78, 0x00, 0xF0, # OOOO OOOO 0x3C, 0x01, 0xE0, # OOOO OOOO 0x1C, 0x01, 0xC0, # OOO OOO 0x1E, 0x03, 0xC0, # OOOO OOOO 0x0F, 0x07, 0x80, # OOOO OOOO 0x07, 0x07, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0xCE, 0x00, # OOOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0x70, 0x00, # OOO 0x00, 0xF8, 0x00, # OOOOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x03, 0xCE, 0x00, # OOOO OOO 0x07, 0x8F, 0x00, # OOOO OOOO 0x07, 0x07, 0x00, # OOO OOO 0x0E, 0x03, 0x80, # OOO OOO 0x1E, 0x03, 0xC0, # OOOO OOOO 0x3C, 0x01, 0xE0, # OOOO OOOO 0x38, 0x00, 0xE0, # OOO OOO 0x78, 0x00, 0xF0, # OOOO OOOO 0xF0, 0x00, 0x78, # OOOO OOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @4192 'Y' (21 pixels wide) 0x00, 0x00, 0x00, # 0xE0, 0x00, 0x78, # OOO OOOO 0x70, 0x00, 0xF0, # OOO OOOO 0x38, 0x00, 0xE0, # OOO OOO 0x3C, 0x01, 0xE0, # OOOO OOOO 0x1C, 0x03, 0xC0, # OOO OOOO 0x0E, 0x03, 0x80, # OOO OOO 0x0F, 0x07, 0x80, # OOOO OOOO 0x07, 0x07, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x03, 0x8E, 0x00, # OOO OOO 0x01, 0xDC, 0x00, # OOO OOO 0x01, 0xFC, 0x00, # OOOOOOO 0x00, 0xF8, 0x00, # OOOOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x70, 0x00, # OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @4288 'Z' (19 pixels wide) 0x00, 0x00, 0x00, # 0x7F, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOO 0x7F, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOO 0x7F, 0xFF, 0xC0, # OOOOOOOOOOOOOOOOO 0x00, 0x03, 0xC0, # OOOO 0x00, 0x07, 0x80, # OOOO 0x00, 0x0F, 0x00, # OOOO 0x00, 0x0E, 0x00, # OOO 0x00, 0x1C, 0x00, # OOO 0x00, 0x3C, 0x00, # OOOO 0x00, 0x78, 0x00, # OOOO 0x00, 0xF0, 0x00, # OOOO 0x00, 0xE0, 0x00, # OOO 0x01, 0xC0, 0x00, # OOO 0x03, 0xC0, 0x00, # OOOO 0x07, 0x80, 0x00, # OOOO 0x0F, 0x00, 0x00, # OOOO 0x0E, 0x00, 0x00, # OOO 0x1C, 0x00, 0x00, # OOO 0x3C, 0x00, 0x00, # OOOO 0x78, 0x00, 0x00, # OOOO 0xF0, 0x00, 0x00, # OOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @4384 '[' (6 pixels wide) 0x00, # 0xFC, # OOOOOO 0xFC, # OOOOOO 0xFC, # OOOOOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xFC, # OOOOOO 0xFC, # OOOOOO 0xFC, # OOOOOO # @4416 '\' (9 pixels wide) 0x00, 0x00, # 0xC0, 0x00, # OO 0xC0, 0x00, # OO 0x60, 0x00, # OO 0x60, 0x00, # OO 0x60, 0x00, # OO 0x30, 0x00, # OO 0x30, 0x00, # OO 0x30, 0x00, # OO 0x30, 0x00, # OO 0x18, 0x00, # OO 0x18, 0x00, # OO 0x18, 0x00, # OO 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0x0C, 0x00, # OO 0x0E, 0x00, # OOO 0x06, 0x00, # OO 0x06, 0x00, # OO 0x06, 0x00, # OO 0x03, 0x00, # OO 0x03, 0x00, # OO 0x03, 0x00, # OO 0x03, 0x80, # OOO 0x01, 0x80, # OO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4480 ']' (6 pixels wide) 0x00, # 0xFC, # OOOOOO 0xFC, # OOOOOO 0xFC, # OOOOOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0xFC, # OOOOOO 0xFC, # OOOOOO 0xFC, # OOOOOO # @4512 '^' (12 pixels wide) 0x00, 0x00, # 0x06, 0x00, # OO 0x0F, 0x00, # OOOO 0x0F, 0x00, # OOOO 0x0F, 0x00, # OOOO 0x1F, 0x80, # OOOOOO 0x19, 0x80, # OO OO 0x39, 0xC0, # OOO OOO 0x39, 0xC0, # OOO OOO 0x30, 0xC0, # OO OO 0x70, 0xE0, # OOO OOO 0x70, 0xE0, # OOO OOO 0x60, 0x60, # OO OO 0xE0, 0x70, # OOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4576 '_' (19 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO 0xFF, 0xFF, 0xE0, # OOOOOOOOOOOOOOOOOOO # @4672 '`' (6 pixels wide) 0x00, # 0xF0, # OOOO 0x78, # OOOO 0x38, # OOO 0x18, # OO 0x0C, # OO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @4704 'a' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x0F, 0xE0, # OOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x7F, 0xF8, # OOOOOOOOOOOO 0xF0, 0x3C, # OOOO OOOO 0xE0, 0x1C, # OOO OOO 0x00, 0x1C, # OOO 0x00, 0x7C, # OOOOO 0x0F, 0xFC, # OOOOOOOOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x7F, 0xDC, # OOOOOOOOO OOO 0xF0, 0x1C, # OOOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x3C, # OOO OOOO 0xF0, 0xFC, # OOOO OOOOOO 0x7F, 0xFC, # OOOOOOOOOOOOO 0x7F, 0xDC, # OOOOOOOOO OOO 0x1F, 0x8E, # OOOOOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4768 'b' (15 pixels wide) 0x00, 0x00, # 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE3, 0xC0, # OOO OOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xFC, 0x3C, # OOOOOO OOOO 0xF0, 0x1C, # OOOO OOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0xF0, 0x1C, # OOOO OOO 0xF8, 0x7C, # OOOOO OOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xE3, 0xC0, # OOO OOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4832 'c' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x07, 0xE0, # OOOOOO 0x1F, 0xF0, # OOOOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x7C, 0x3C, # OOOOO OOOO 0x70, 0x1C, # OOO OOO 0xF0, 0x0E, # OOOO OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x0E, # OOOO OOO 0x70, 0x1C, # OOO OOO 0x7C, 0x3C, # OOOOO OOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x1F, 0xF0, # OOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4896 'd' (15 pixels wide) 0x00, 0x00, # 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x07, 0x8E, # OOOO OOO 0x1F, 0xEE, # OOOOOOOO OOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x78, 0x7E, # OOOO OOOOOO 0x70, 0x1E, # OOO OOOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0x70, 0x1E, # OOO OOOO 0x7C, 0x3E, # OOOOO OOOOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x1F, 0xEE, # OOOOOOOO OOO 0x07, 0x8E, # OOOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @4960 'e' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x07, 0xC0, # OOOOO 0x1F, 0xF0, # OOOOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x78, 0x3C, # OOOO OOOO 0x70, 0x1C, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xF0, 0x00, # OOOO 0x70, 0x0E, # OOO OOO 0x7C, 0x3C, # OOOOO OOOO 0x3F, 0xFC, # OOOOOOOOOOOO 0x1F, 0xF8, # OOOOOOOOOO 0x07, 0xE0, # OOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5024 'f' (10 pixels wide) 0x00, 0x00, # 0x0F, 0xC0, # OOOOOO 0x1F, 0x80, # OOOOOO 0x3F, 0x80, # OOOOOOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0xFF, 0x00, # OOOOOOOO 0xFF, 0x00, # OOOOOOOO 0xFF, 0x00, # OOOOOOOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x38, 0x00, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5088 'g' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x07, 0xCE, # OOOOO OOO 0x1F, 0xEE, # OOOOOOOO OOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x78, 0x7E, # OOOO OOOOOO 0x70, 0x1E, # OOO OOOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0x70, 0x1E, # OOO OOOO 0x78, 0x3E, # OOOO OOOOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x1F, 0xEE, # OOOOOOOO OOO 0x07, 0xCE, # OOOOO OOO 0x00, 0x0E, # OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xF8, 0x3C, # OOOOO OOOO 0x7F, 0xF8, # OOOOOOOOOOOO 0x3F, 0xF0, # OOOOOOOOOO 0x0F, 0xC0, # OOOOOO # @5152 'h' (14 pixels wide) 0x00, 0x00, # 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE3, 0xE0, # OOO OOOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xF8, 0x7C, # OOOOO OOOOO 0xF0, 0x3C, # OOOO OOOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5216 'i' (3 pixels wide) 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @5248 'j' (6 pixels wide) 0x00, # 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x00, # 0x00, # 0x00, # 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0x1C, # OOO 0xFC, # OOOOOO 0xF8, # OOOOO 0xF0, # OOOO # @5280 'k' (14 pixels wide) 0x00, 0x00, # 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x3C, # OOO OOOO 0xE0, 0x78, # OOO OOOO 0xE0, 0xF0, # OOO OOOO 0xE1, 0xE0, # OOO OOOO 0xE3, 0xC0, # OOO OOOO 0xE7, 0x80, # OOO OOOO 0xEF, 0x00, # OOO OOOO 0xFF, 0x00, # OOOOOOOO 0xFF, 0x80, # OOOOOOOOO 0xF7, 0x80, # OOOO OOOO 0xE3, 0xC0, # OOO OOOO 0xE1, 0xC0, # OOO OOO 0xE1, 0xE0, # OOO OOOO 0xE0, 0xE0, # OOO OOO 0xE0, 0x70, # OOO OOO 0xE0, 0x78, # OOO OOOO 0xE0, 0x38, # OOO OOO 0xE0, 0x3C, # OOO OOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5344 'l' (3 pixels wide) 0x00, # 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0xE0, # OOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @5376 'm' (23 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0xE3, 0xC1, 0xF0, # OOO OOOO OOOOO 0xEF, 0xF3, 0xFC, # OOO OOOOOOOO OOOOOOOO 0xFF, 0xF7, 0xFC, # OOOOOOOOOOOO OOOOOOOOO 0xF8, 0x7E, 0x1E, # OOOOO OOOOOO OOOO 0xF0, 0x3C, 0x0E, # OOOO OOOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @5472 'n' (14 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE7, 0xE0, # OOO OOOOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xF8, 0x7C, # OOOOO OOOOO 0xF0, 0x3C, # OOOO OOOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5536 'o' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x07, 0xC0, # OOOOO 0x1F, 0xF0, # OOOOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x78, 0x3C, # OOOO OOOO 0x70, 0x1C, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1E, # OOOO OOOO 0x70, 0x1C, # OOO OOO 0x78, 0x3C, # OOOO OOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x1F, 0xF0, # OOOOOOOOO 0x07, 0xC0, # OOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5600 'p' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE3, 0xE0, # OOO OOOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xEF, 0xF8, # OOO OOOOOOOOO 0xFC, 0x3C, # OOOOOO OOOO 0xF0, 0x1C, # OOOO OOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x1C, # OOOO OOO 0xF0, 0x1C, # OOOO OOO 0xF8, 0x7C, # OOOOO OOOOO 0xFF, 0xF8, # OOOOOOOOOOOOO 0xEF, 0xF0, # OOO OOOOOOOO 0xE7, 0xC0, # OOO OOOOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO # @5664 'q' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x07, 0x8E, # OOOO OOO 0x1F, 0xEE, # OOOOOOOO OOO 0x3F, 0xEE, # OOOOOOOOO OOO 0x78, 0x7E, # OOOO OOOOOO 0x70, 0x1E, # OOO OOOO 0xF0, 0x1E, # OOOO OOOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0xE0, 0x0E, # OOO OOO 0x70, 0x1E, # OOO OOOO 0x70, 0x1E, # OOO OOOO 0x7C, 0x3E, # OOOOO OOOOO 0x3F, 0xFE, # OOOOOOOOOOOOO 0x1F, 0xEE, # OOOOOOOO OOO 0x07, 0xCE, # OOOOO OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO 0x00, 0x0E, # OOO # @5728 'r' (9 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE7, 0x80, # OOO OOOO 0xEF, 0x80, # OOO OOOOO 0xFF, 0x00, # OOOOOOOO 0xF8, 0x00, # OOOOO 0xF0, 0x00, # OOOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0xE0, 0x00, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5792 's' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x0F, 0xC0, # OOOOOO 0x3F, 0xF0, # OOOOOOOOOO 0x7F, 0xF8, # OOOOOOOOOOOO 0xF0, 0x3C, # OOOO OOOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x00, # OOO 0xF8, 0x00, # OOOOO 0x7F, 0xC0, # OOOOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x0F, 0xFC, # OOOOOOOOOO 0x01, 0xFE, # OOOOOOOO 0x00, 0x1E, # OOOO 0xE0, 0x0E, # OOO OOO 0xF0, 0x0E, # OOOO OOO 0x78, 0x1E, # OOOO OOOO 0x7F, 0xFC, # OOOOOOOOOOOOO 0x3F, 0xF8, # OOOOOOOOOOO 0x0F, 0xE0, # OOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5856 't' (8 pixels wide) 0x00, # 0x08, # O 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0xFF, # OOOOOOOO 0xFF, # OOOOOOOO 0xFF, # OOOOOOOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x38, # OOO 0x3F, # OOOOOO 0x1F, # OOOOO 0x0F, # OOOO 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # 0x00, # # @5888 'u' (14 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xE0, 0x1C, # OOO OOO 0xF0, 0x3C, # OOOO OOOO 0xF8, 0x7C, # OOOOO OOOOO 0x7F, 0xDC, # OOOOOOOOO OOO 0x3F, 0xDC, # OOOOOOOO OOO 0x1F, 0x1C, # OOOOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @5952 'v' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE0, 0x0E, # OOO OOO 0x70, 0x0C, # OOO OO 0x70, 0x1C, # OOO OOO 0x70, 0x1C, # OOO OOO 0x30, 0x18, # OO OO 0x38, 0x38, # OOO OOO 0x38, 0x38, # OOO OOO 0x18, 0x30, # OO OO 0x1C, 0x70, # OOO OOO 0x1C, 0x70, # OOO OOO 0x0C, 0x60, # OO OO 0x0E, 0xE0, # OOO OOO 0x0E, 0xE0, # OOO OOO 0x06, 0xC0, # OO OO 0x07, 0xC0, # OOOOO 0x07, 0xC0, # OOOOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @6016 'w' (23 pixels wide) 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x38, 0x0E, # OOO OOO OOO 0xE0, 0x7C, 0x0E, # OOO OOOOO OOO 0x70, 0x7C, 0x1C, # OOO OOOOO OOO 0x70, 0x6C, 0x1C, # OOO OO OO OOO 0x70, 0x6C, 0x1C, # OOO OO OO OOO 0x30, 0xEE, 0x18, # OO OOO OOO OO 0x38, 0xC6, 0x38, # OOO OO OO OOO 0x38, 0xC6, 0x38, # OOO OO OO OOO 0x38, 0xC6, 0x30, # OOO OO OO OO 0x1D, 0xC7, 0x70, # OOO OOO OOO OOO 0x1D, 0x83, 0x70, # OOO OO OO OOO 0x1D, 0x83, 0x70, # OOO OO OO OOO 0x0D, 0x83, 0x60, # OO OO OO OO 0x0F, 0x83, 0xE0, # OOOOO OOOOO 0x0F, 0x83, 0xE0, # OOOOO OOOOO 0x07, 0x01, 0xC0, # OOO OOO 0x07, 0x01, 0xC0, # OOO OOO 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # 0x00, 0x00, 0x00, # # @6112 'x' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE0, 0x0E, # OOO OOO 0x70, 0x1C, # OOO OOO 0x78, 0x3C, # OOOO OOOO 0x38, 0x38, # OOO OOO 0x1C, 0x70, # OOO OOO 0x1E, 0xF0, # OOOO OOOO 0x0E, 0xE0, # OOO OOO 0x0F, 0xE0, # OOOOOOO 0x07, 0xC0, # OOOOO 0x07, 0xC0, # OOOOO 0x0F, 0xE0, # OOOOOOO 0x0E, 0xE0, # OOO OOO 0x1E, 0xF0, # OOOO OOOO 0x1C, 0x70, # OOO OOO 0x38, 0x38, # OOO OOO 0x78, 0x3C, # OOOO OOOO 0x70, 0x1C, # OOO OOO 0xE0, 0x0E, # OOO OOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @6176 'y' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0xE0, 0x0E, # OOO OOO 0x70, 0x0E, # OOO OOO 0x70, 0x1C, # OOO OOO 0x70, 0x1C, # OOO OOO 0x38, 0x1C, # OOO OOO 0x38, 0x38, # OOO OOO 0x38, 0x38, # OOO OOO 0x1C, 0x38, # OOO OOO 0x1C, 0x70, # OOO OOO 0x1C, 0x70, # OOO OOO 0x0E, 0x70, # OOO OOO 0x0E, 0xE0, # OOO OOO 0x0E, 0xE0, # OOO OOO 0x07, 0xE0, # OOOOOO 0x07, 0xC0, # OOOOO 0x07, 0xC0, # OOOOO 0x03, 0xC0, # OOOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x03, 0x80, # OOO 0x07, 0x00, # OOO 0x07, 0x00, # OOO 0x3E, 0x00, # OOOOO 0x3E, 0x00, # OOOOO 0x3C, 0x00, # OOOO # @6240 'z' (15 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x7F, 0xFE, # OOOOOOOOOOOOOO 0x7F, 0xFE, # OOOOOOOOOOOOOO 0x7F, 0xFE, # OOOOOOOOOOOOOO 0x00, 0x1E, # OOOO 0x00, 0x3C, # OOOO 0x00, 0x78, # OOOO 0x00, 0xF0, # OOOO 0x01, 0xE0, # OOOO 0x03, 0xC0, # OOOO 0x07, 0x80, # OOOO 0x0F, 0x00, # OOOO 0x1E, 0x00, # OOOO 0x3C, 0x00, # OOOO 0x78, 0x00, # OOOO 0xF0, 0x00, # OOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0xFF, 0xFE, # OOOOOOOOOOOOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @6304 '{' (9 pixels wide) 0x00, 0x00, # 0x07, 0x80, # OOOO 0x0F, 0x80, # OOOOO 0x1F, 0x80, # OOOOOO 0x1E, 0x00, # OOOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x3C, 0x00, # OOOO 0x38, 0x00, # OOO 0xF0, 0x00, # OOOO 0xC0, 0x00, # OO 0xF0, 0x00, # OOOO 0x38, 0x00, # OOO 0x3C, 0x00, # OOOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1E, 0x00, # OOOO 0x1F, 0x80, # OOOOOO 0x0F, 0x80, # OOOOO 0x07, 0x80, # OOOO # @6368 '|' (2 pixels wide) 0x00, # 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO 0xC0, # OO # @6400 '}' (9 pixels wide) 0x00, 0x00, # 0xF0, 0x00, # OOOO 0xF8, 0x00, # OOOOO 0xFC, 0x00, # OOOOOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1E, 0x00, # OOOO 0x0E, 0x00, # OOO 0x07, 0x80, # OOOO 0x01, 0x80, # OO 0x07, 0x80, # OOOO 0x0E, 0x00, # OOO 0x1E, 0x00, # OOOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x1C, 0x00, # OOO 0x3C, 0x00, # OOOO 0xFC, 0x00, # OOOOOO 0xF8, 0x00, # OOOOO 0xF0, 0x00, # OOOO # @6464 '~' (16 pixels wide) 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x3E, 0x00, # OOOOO 0x7F, 0x81, # OOOOOOOO O 0xFF, 0xC3, # OOOOOOOOOO OO 0xC3, 0xFF, # OO OOOOOOOOOO 0x80, 0xFE, # O OOOOOOO 0x00, 0x7C, # OOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # # @6528 '°' (9 pixels wide) 0x00, 0x00, # 0x3E, 0x00, # OOOOO 0x7F, 0x00, # OOOOOOO 0xE3, 0x80, # OOO OOO 0xC1, 0x80, # OO OO 0xC1, 0x80, # OO OO 0xC1, 0x80, # OO OO 0xE3, 0x80, # OOO OOO 0x7F, 0x00, # OOOOOOO 0x3E, 0x00, # OOOOO 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # 0x00, 0x00, # ) descriptors = ( (3,0),# ! (9,32),# " (17,96),# # (16,192),# $ (25,256),# % (19,384),# & (3,480),# ' (8,512),# ( (8,544),# ) (10,576),# * (15,640),# + (3,704),# , (9,736),# - (3,800),# . (9,832),# / (16,896),# 0 (8,960),# 1 (16,992),# 2 (16,1056),# 3 (17,1120),# 4 (16,1216),# 5 (16,1280),# 6 (16,1344),# 7 (16,1408),# 8 (16,1472),# 9 (3,1536),# : (3,1568),# ; (15,1600),# < (15,1664),# = (15,1728),# > (16,1792),# ? (30,1856),# @ (21,1984),# A (17,2080),# B (20,2176),# C (19,2272),# D (17,2368),# E (15,2464),# F (22,2528),# G (18,2624),# H (3,2720),# I (13,2752),# J (20,2816),# K (14,2912),# L (23,2976),# M (18,3072),# N (22,3168),# O (17,3264),# P (22,3360),# Q (19,3456),# R (18,3552),# S (19,3648),# T (18,3744),# U (21,3840),# V (33,3936),# W (21,4096),# X (21,4192),# Y (19,4288),# Z (6,4384),# [ (9,4416),# \ (6,4480),# ] (12,4512),# ^ (19,4576),# _ (6,4672),# ` (15,4704),# a (15,4768),# b (15,4832),# c (15,4896),# d (15,4960),# e (10,5024),# f (15,5088),# g (14,5152),# h (3,5216),# i (6,5248),# j (14,5280),# k (3,5344),# l (23,5376),# m (14,5472),# n (15,5536),# o (15,5600),# p (15,5664),# q (9,5728),# r (15,5792),# s (8,5856),# t (14,5888),# u (15,5952),# v (23,6016),# w (15,6112),# x (15,6176),# y (15,6240),# z (9,6304),# { (2,6368),# | (9,6400),# } (16,6464),# ~ (9,6528),# ° ) kerning = ( (3,3,3,2,3,2,3,3,3,3,3,3,2,3,3,3,3,3,3,2,3,3,3,2,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,2,0,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,3,), (9,9,9,8,9,6,9,7,9,9,3,6,0,6,4,8,9,9,9,2,8,8,9,8,9,9,9,0,8,9,9,6,3,9,8,9,9,9,8,9,9,0,9,9,9,9,8,9,8,9,8,9,9,9,9,8,9,8,9,9,9,7,0,9,6,9,5,5,5,9,5,9,9,6,9,9,9,9,5,9,5,9,6,9,9,9,9,9,9,8,6,9,9,0,9,), (17,17,17,16,17,17,17,17,16,16,14,14,17,14,15,17,17,17,15,17,16,17,16,17,17,17,17,16,17,17,17,17,14,17,17,17,17,17,17,17,17,12,17,17,17,17,17,17,17,17,17,16,17,16,16,15,16,15,17,16,16,15,0,16,17,17,17,17,17,17,17,17,17,14,17,17,17,17,17,17,17,17,16,17,17,17,17,17,17,16,17,17,16,17,17,), (15,15,16,16,15,16,15,16,13,15,15,14,16,14,15,16,14,15,16,16,16,16,14,16,16,14,14,15,16,16,15,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,14,16,14,14,13,12,15,16,14,14,14,0,12,16,16,16,16,16,14,16,16,16,13,16,16,16,16,16,16,16,16,16,14,16,13,14,13,13,15,16,16,14,16,15,), (24,20,25,25,20,25,22,25,21,18,24,24,25,24,24,25,20,24,25,25,25,25,21,25,25,24,24,24,25,25,18,25,24,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,20,25,20,21,23,20,25,25,21,22,23,6,20,25,25,25,25,25,23,25,25,25,22,25,25,25,25,25,25,25,25,25,23,25,22,23,23,22,25,25,25,22,25,19,), (19,15,19,17,15,18,16,19,15,15,17,19,19,19,19,19,15,19,17,19,17,19,15,19,18,19,19,18,19,17,15,19,18,19,19,19,19,19,19,19,19,18,19,19,19,19,19,19,19,19,18,14,19,14,15,18,13,19,19,15,16,13,0,13,18,19,19,19,19,17,19,19,19,16,19,19,19,19,19,19,19,19,18,17,19,16,17,18,16,19,19,19,16,19,15,), (3,3,3,2,3,0,3,1,3,3,0,0,0,0,0,2,3,3,3,0,2,2,3,2,3,3,3,0,2,3,3,0,0,3,2,3,3,3,2,3,3,0,3,3,3,3,2,3,2,3,2,3,3,3,3,2,3,2,3,3,3,1,0,3,0,3,0,0,0,3,0,3,3,0,3,3,3,3,0,3,0,3,0,3,3,3,3,3,3,2,0,3,3,0,3,), (8,8,5,5,6,3,8,3,8,6,3,7,3,5,4,5,5,5,5,3,6,4,8,5,5,5,7,3,4,5,5,4,4,8,4,8,8,8,4,8,8,4,8,8,8,8,4,8,4,8,5,8,8,8,8,7,8,7,8,8,8,3,8,8,4,8,3,3,3,5,6,8,8,8,8,8,5,5,3,8,3,5,4,5,5,5,5,5,6,4,4,8,8,3,7,), (8,6,8,8,7,8,6,8,3,6,8,7,8,7,7,8,7,7,8,8,8,8,4,8,8,7,7,8,8,8,6,8,6,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,8,4,5,6,2,7,8,5,5,8,4,2,8,8,8,8,8,7,8,8,8,5,8,8,8,8,8,8,8,8,8,7,8,6,7,6,6,7,8,8,5,8,6,), (10,10,9,9,10,7,10,8,8,10,3,7,1,7,4,9,9,9,10,4,9,9,6,9,9,9,9,4,9,8,9,7,3,10,9,10,10,10,9,10,10,0,10,10,10,10,9,10,9,10,9,6,10,9,9,7,8,5,10,9,7,7,0,7,8,10,7,7,7,9,7,10,9,6,10,10,9,9,7,9,7,9,8,9,9,8,9,8,8,8,7,10,7,0,10,), (15,9,12,10,13,14,12,15,10,8,15,12,9,12,12,15,10,9,9,14,15,15,9,14,14,12,12,15,9,9,9,15,11,15,15,15,15,15,15,15,15,9,15,15,15,15,15,15,15,15,11,7,15,11,12,8,8,9,15,12,12,15,0,9,11,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,8,13,15,12,15,9,), (3,0,2,1,0,1,0,2,1,0,0,3,0,3,3,1,0,3,1,0,1,1,0,1,2,3,3,0,0,0,0,2,3,3,0,3,3,3,0,3,3,2,3,3,3,3,0,3,0,3,1,0,1,0,0,3,0,3,3,0,2,0,2,0,2,3,1,1,1,1,3,3,3,2,3,3,3,3,1,3,1,3,2,1,2,0,0,3,0,3,0,3,2,0,0,), (8,0,9,2,0,9,6,9,4,0,3,6,9,6,7,9,4,3,0,9,0,9,4,9,6,6,6,8,9,8,2,9,6,9,9,9,9,9,9,9,9,0,9,9,9,9,9,9,9,9,9,1,9,4,5,4,0,5,9,5,6,0,0,3,9,9,9,9,9,7,9,9,9,6,9,9,9,9,9,9,9,9,7,7,9,6,7,5,6,5,9,9,4,9,0,), (3,0,2,1,0,1,0,2,0,0,0,3,0,3,3,1,0,3,1,0,1,1,0,1,2,3,3,0,0,0,0,2,3,3,0,3,3,3,0,3,3,2,3,3,3,3,0,3,0,3,1,0,1,0,0,3,0,3,3,0,0,0,0,0,2,3,1,1,1,1,1,3,3,0,3,3,3,3,1,3,1,3,2,1,2,0,0,3,0,3,0,3,0,0,0,), (9,9,7,7,8,5,9,6,9,8,6,6,5,6,3,7,7,7,8,5,7,7,9,7,7,7,7,6,7,7,7,5,2,9,7,9,9,9,7,9,9,4,9,9,9,9,7,9,7,9,7,9,9,9,9,8,9,8,9,9,9,5,0,9,6,9,6,6,6,7,6,9,9,6,9,9,7,7,6,7,6,7,6,7,7,7,7,7,7,6,5,9,9,5,8,), (16,15,16,15,16,16,15,16,13,15,16,14,16,14,14,16,16,15,15,16,16,16,14,16,16,16,16,16,16,16,15,16,13,16,16,16,16,16,16,16,16,15,16,16,16,16,16,16,16,16,16,14,16,14,14,12,12,14,16,14,14,16,0,12,16,16,16,16,16,16,16,16,16,13,16,16,16,16,16,16,16,16,16,16,16,15,16,15,15,15,16,16,14,16,15,), (8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,8,8,8,8,8,8,8,8,8,8,5,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,), (16,16,16,15,16,14,16,15,13,16,14,16,11,16,16,16,16,16,16,11,15,16,14,15,16,16,16,14,16,16,16,15,16,16,16,16,16,16,16,16,16,15,16,16,16,16,16,16,16,16,15,14,16,15,15,16,13,16,16,15,14,14,0,12,15,16,14,14,14,16,14,16,16,13,16,16,16,16,14,16,14,16,15,16,16,16,16,16,16,16,13,16,14,13,16,), (15,15,16,16,15,16,15,16,13,15,16,14,16,14,14,16,15,15,16,16,16,16,14,16,16,15,15,16,16,16,15,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,14,16,14,14,13,12,15,16,14,14,15,0,12,16,16,16,16,16,15,16,16,16,13,16,16,16,16,16,16,16,16,16,15,16,15,15,15,15,15,16,16,14,16,15,), (16,14,17,17,14,17,14,17,14,14,14,14,17,14,15,17,14,14,17,17,17,17,14,17,14,14,14,14,17,17,14,17,15,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,17,14,14,14,14,14,17,14,14,14,0,14,17,17,17,17,17,15,17,17,17,14,17,17,17,17,17,17,17,17,14,15,17,14,15,14,14,14,17,17,14,14,14,), (15,15,16,16,14,16,15,16,15,11,16,14,16,14,14,16,11,14,16,16,16,16,15,16,16,14,14,16,16,16,13,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,15,15,14,15,15,16,15,15,15,0,15,16,16,16,16,16,14,16,16,16,13,16,16,16,16,16,16,16,16,16,14,16,13,14,13,13,15,16,16,15,16,15,), (16,16,16,16,16,16,16,16,14,16,16,14,16,14,14,16,15,16,16,16,16,16,15,16,16,14,14,16,16,16,16,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,15,15,13,13,15,16,15,15,15,0,13,16,16,16,16,16,14,16,16,16,13,16,16,16,16,16,16,16,16,16,14,16,13,14,13,13,15,16,16,15,16,16,), (16,16,13,14,15,12,16,12,16,15,10,13,9,13,10,14,13,14,14,9,14,13,16,14,14,13,13,10,12,14,14,10,8,16,13,16,16,16,12,16,16,8,16,16,16,16,13,16,13,16,14,16,16,16,16,15,16,15,16,16,16,12,0,16,11,16,10,10,10,14,10,16,16,13,16,16,13,13,10,13,10,13,11,14,13,13,13,13,13,12,13,16,16,10,16,), (15,15,16,16,15,16,15,16,13,15,15,14,16,14,14,16,15,15,16,16,16,16,14,16,16,15,15,15,16,16,15,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,14,16,14,14,13,12,15,16,14,14,15,0,12,16,16,16,16,16,15,16,16,16,13,16,16,16,16,16,16,16,16,16,15,16,15,15,15,15,15,16,16,14,16,15,), (16,16,16,15,16,16,16,16,13,15,16,13,16,13,14,16,16,16,15,16,16,16,14,16,16,16,16,16,16,16,16,16,13,16,16,16,16,16,16,16,16,15,16,16,16,16,16,16,16,16,16,14,16,14,14,12,12,14,16,14,14,16,0,12,16,16,16,16,16,16,16,16,16,13,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,14,16,16,), (3,3,3,2,3,1,3,2,0,2,0,3,0,3,3,3,3,3,1,0,2,3,0,2,3,3,3,0,3,3,3,2,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,0,3,1,1,3,0,3,3,1,0,1,0,0,2,3,1,1,1,3,1,3,3,0,3,3,3,3,1,3,1,3,2,3,3,3,3,3,3,3,0,3,0,0,3,), (3,3,3,2,3,1,3,2,1,2,0,3,0,3,3,3,3,3,1,0,2,3,0,2,3,3,3,0,3,3,3,2,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,0,3,1,1,3,0,3,3,1,2,1,2,0,2,3,1,1,1,3,3,3,3,2,3,3,3,3,1,3,1,3,2,3,3,3,3,3,3,3,0,3,2,0,3,), (15,15,15,15,15,15,15,15,12,13,9,12,14,12,14,15,15,15,15,15,15,15,10,15,15,15,15,8,15,15,15,15,13,15,14,15,15,15,14,15,15,15,15,15,15,15,14,15,14,15,15,7,15,13,14,12,11,14,15,13,12,13,0,9,15,15,15,15,15,15,15,15,15,12,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,15,12,8,15,), (15,14,15,14,15,15,14,15,11,14,9,12,15,12,13,15,15,9,9,15,15,15,10,15,15,15,15,14,15,15,8,15,12,15,15,15,15,15,15,15,15,5,15,15,15,15,15,15,15,15,15,7,15,12,13,10,10,11,15,13,12,14,0,9,15,15,15,15,15,15,15,15,15,12,15,15,15,15,15,15,15,15,15,15,15,14,15,14,14,14,15,15,12,15,14,), (15,6,14,11,13,14,12,15,10,9,15,12,14,12,12,15,10,6,9,14,15,15,9,14,14,12,12,15,14,8,7,15,11,15,15,15,15,15,15,15,15,6,15,15,15,15,15,15,15,15,11,7,15,11,12,8,8,9,15,12,12,15,0,9,14,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,8,14,15,12,15,7,), (16,16,16,15,16,13,16,15,13,16,14,13,11,13,11,16,16,16,16,11,15,16,14,15,16,16,16,14,16,16,16,14,10,16,16,16,16,16,16,16,16,10,16,16,16,16,16,16,16,16,15,14,16,15,15,12,13,13,16,15,14,14,0,12,15,16,14,14,14,16,14,16,16,13,16,16,16,16,14,16,14,16,15,16,16,16,16,16,16,15,13,16,14,13,16,), (29,27,29,28,29,29,27,29,27,27,29,29,29,27,27,29,28,27,28,29,29,29,24,29,29,28,29,29,29,28,27,29,26,29,29,29,29,29,29,29,29,28,29,29,29,29,29,29,29,29,28,24,29,26,26,24,23,26,30,26,27,29,26,24,29,29,29,29,29,28,29,29,29,27,29,29,29,29,29,30,29,29,29,28,29,28,28,27,28,27,29,30,27,29,27,), (21,15,20,19,16,19,18,19,17,14,17,21,18,21,21,18,16,21,19,19,19,18,17,19,19,21,21,17,18,19,15,20,21,21,18,21,21,21,18,21,21,20,21,21,21,21,18,21,18,21,19,13,19,13,15,21,13,21,21,14,18,17,2,15,20,21,19,19,19,19,19,21,21,18,21,21,21,21,19,21,19,21,19,18,20,15,16,21,15,21,18,21,18,18,15,), (16,16,17,17,16,17,16,17,14,16,16,16,17,16,16,17,16,16,17,17,17,17,15,17,17,16,16,16,17,17,16,17,15,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,15,17,15,15,14,13,16,17,15,15,15,0,13,17,17,17,17,17,16,17,17,17,14,17,17,17,17,17,17,17,17,17,16,17,16,16,16,16,16,17,17,15,17,16,), (19,19,20,20,19,20,19,20,16,18,14,17,20,17,18,20,19,19,20,20,20,20,17,20,19,19,19,14,20,20,19,20,18,20,19,20,20,20,19,20,20,20,20,20,20,20,19,20,19,20,20,17,20,17,18,16,15,18,20,17,17,17,1,15,20,20,20,20,20,19,20,20,20,17,20,20,20,20,20,20,20,20,19,19,20,19,19,19,19,18,20,20,17,9,19,), (19,18,19,18,19,19,18,19,15,18,19,16,19,16,17,19,19,18,18,19,19,19,16,19,19,19,19,19,19,19,18,19,16,19,19,19,19,19,19,19,19,18,19,19,19,19,19,19,19,19,18,16,19,16,17,15,15,17,19,17,16,19,0,14,19,19,19,19,19,19,19,19,19,16,19,19,19,19,19,19,19,19,19,19,19,18,19,18,18,18,19,19,16,19,18,), (17,16,16,15,15,15,16,16,16,12,15,17,8,17,17,15,12,17,15,13,15,15,16,15,16,17,17,15,3,8,14,16,17,17,15,17,17,17,15,17,17,16,17,17,17,17,15,17,15,17,15,16,16,16,16,17,16,17,17,16,16,15,0,16,16,17,15,15,15,15,15,17,17,14,17,17,17,17,15,17,15,17,16,15,16,13,14,17,13,17,14,17,16,15,16,), (15,15,10,13,14,11,15,13,15,11,13,12,6,12,10,13,11,13,13,11,13,13,15,13,13,12,12,13,3,6,13,13,9,15,13,15,15,15,13,15,15,5,15,15,15,15,13,15,13,15,13,15,15,15,15,14,15,14,15,15,15,13,0,15,13,15,13,13,13,13,13,15,15,12,15,15,13,13,13,13,13,13,13,13,13,11,12,10,11,5,12,15,15,13,15,), (21,21,22,22,21,22,21,22,18,21,22,20,22,20,21,22,21,21,22,22,22,22,19,22,22,21,21,22,22,22,21,22,21,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,19,22,20,20,20,18,22,22,20,19,22,3,17,22,22,22,22,22,21,22,22,22,19,22,22,22,22,22,22,22,22,22,21,22,21,21,21,21,22,22,22,19,22,21,), (18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,18,18,18,18,18,18,18,18,18,18,15,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,), (3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,), (13,13,13,13,13,13,13,13,13,13,13,12,13,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,13,12,13,13,13,13,0,13,13,13,13,13,13,13,13,13,13,10,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,13,13,13,13,13,), (20,19,19,16,16,16,19,18,19,16,11,20,14,20,20,16,15,20,16,15,17,16,19,16,17,20,20,11,14,16,15,18,20,20,15,20,20,20,14,20,20,17,20,20,20,20,14,20,15,20,16,19,19,19,19,20,19,20,20,19,19,14,1,19,18,20,16,16,16,18,16,20,20,17,20,20,20,20,16,20,16,20,17,16,17,14,15,20,14,20,17,20,19,12,17,), (14,5,13,12,8,12,11,13,10,4,3,14,5,14,14,12,9,14,12,3,12,12,10,12,13,14,14,3,3,3,7,13,14,14,11,14,14,14,10,14,14,13,14,14,14,14,10,14,10,14,12,6,12,7,8,14,5,14,14,8,11,3,0,8,13,14,12,12,12,12,12,14,14,11,14,14,14,14,12,14,12,14,13,12,13,9,10,14,9,14,11,14,11,3,5,), (23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,4,23,23,23,23,23,23,23,23,23,23,20,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,), (18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,18,18,18,18,18,18,18,18,18,18,15,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,), (22,21,22,21,22,22,21,22,18,21,22,19,22,19,20,22,22,21,21,22,22,22,18,22,22,22,22,22,22,21,21,22,19,22,22,22,22,22,22,22,22,21,22,22,22,22,22,22,22,22,21,18,22,19,20,17,17,19,22,20,19,22,3,16,22,22,22,22,22,22,22,22,22,19,22,22,22,22,22,22,22,22,22,22,22,21,22,21,21,21,22,22,19,22,21,), (17,17,17,16,17,14,17,16,15,17,16,14,8,14,13,17,17,17,17,13,17,17,16,16,17,17,17,16,17,17,17,16,12,17,17,17,17,17,17,17,17,7,17,17,17,17,17,17,17,17,16,16,17,16,16,13,14,15,17,16,16,16,0,14,17,17,16,16,16,17,16,17,17,14,17,17,17,17,16,17,16,17,17,17,17,17,17,17,17,16,14,17,16,15,17,), (22,20,21,20,21,21,20,21,18,20,21,22,21,22,22,21,21,22,20,21,21,21,18,21,21,22,22,21,21,20,20,21,22,22,21,22,22,22,21,22,22,20,22,22,22,22,21,22,21,22,20,17,21,18,19,22,16,22,22,19,19,21,3,16,21,22,21,21,21,21,21,22,22,19,22,22,22,22,21,22,21,22,21,21,21,20,21,22,20,22,21,22,19,21,20,), (19,18,18,17,18,17,18,17,16,18,16,19,15,19,19,18,18,19,18,15,17,18,17,17,18,19,19,16,18,18,18,17,19,19,18,19,19,19,18,19,19,17,19,19,19,19,18,19,18,19,17,17,18,17,17,19,15,19,19,17,17,16,0,15,17,19,16,16,16,18,16,19,19,16,19,19,19,19,16,19,16,19,17,18,18,18,18,19,18,19,16,19,17,15,18,), (17,17,18,18,17,18,17,18,14,17,17,16,18,16,17,18,17,17,18,18,18,18,15,18,18,17,17,17,18,18,17,18,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,18,16,16,15,14,17,18,16,15,16,0,13,18,18,18,18,18,17,18,18,18,15,18,18,18,18,18,18,18,18,18,17,18,17,17,17,17,17,18,18,15,17,17,), (19,19,14,17,18,15,19,15,19,15,11,16,11,16,13,17,15,17,17,11,17,16,19,17,17,16,16,11,11,11,17,12,11,19,15,19,19,19,15,19,19,11,19,19,19,19,15,19,15,19,17,19,19,19,19,18,19,18,19,19,19,15,0,19,11,19,11,11,11,17,11,19,19,16,19,19,11,11,11,11,11,11,11,17,11,11,11,11,11,11,16,19,19,11,19,), (18,18,18,18,18,18,18,18,18,18,18,16,18,16,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,17,18,18,18,18,0,18,18,18,18,18,18,18,18,18,18,15,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,18,18,18,), (21,21,19,19,20,17,21,17,21,20,17,18,16,18,14,19,19,19,20,16,19,19,21,19,19,19,19,17,18,19,19,17,13,21,18,21,21,21,18,21,21,15,21,21,21,21,18,21,18,21,19,21,21,21,21,20,21,20,21,21,21,17,2,21,18,21,17,17,17,19,17,21,21,18,21,21,19,19,17,19,17,19,18,19,19,19,19,19,19,18,17,21,21,17,20,), (33,33,31,31,32,29,33,30,33,32,30,30,29,30,27,31,31,32,32,29,31,31,33,31,32,31,31,30,31,32,32,30,27,33,31,33,33,33,31,33,33,28,33,33,33,33,31,33,31,33,31,33,33,33,33,32,33,32,33,33,33,30,14,33,30,33,30,30,30,31,30,33,33,30,33,33,31,31,30,31,30,31,30,31,31,31,31,31,31,30,29,33,33,30,32,), (21,20,20,18,18,18,20,19,20,18,14,21,16,21,21,17,16,21,18,16,18,17,20,18,18,21,21,14,16,18,17,19,21,21,16,21,21,21,16,21,21,19,21,21,21,21,16,21,16,21,18,20,20,20,20,21,20,21,21,20,20,15,2,20,19,21,18,18,18,19,18,21,21,18,21,21,21,21,18,21,18,21,18,17,19,15,16,21,15,21,18,21,20,14,18,), (21,21,17,17,19,16,21,15,21,19,14,18,12,18,14,17,17,18,18,12,19,17,21,18,18,18,18,14,16,17,18,14,13,21,16,21,21,21,16,21,21,12,21,21,21,21,16,21,16,21,17,21,21,21,21,20,21,20,21,21,21,16,2,21,15,21,14,14,14,17,14,21,21,18,21,21,17,17,14,17,14,17,15,18,17,17,17,17,17,16,16,21,21,13,19,), (19,18,18,17,18,17,18,18,18,18,11,19,10,19,19,17,15,19,17,9,17,17,18,17,18,19,19,11,14,16,17,18,19,19,16,19,19,19,15,19,19,18,19,19,19,19,15,19,15,19,17,18,18,18,18,19,18,19,19,18,18,14,0,18,18,19,17,17,17,17,17,19,19,16,19,19,19,19,17,19,17,19,18,17,18,15,15,19,15,19,16,19,18,10,18,), (6,6,3,4,5,3,6,3,6,3,3,6,3,3,3,4,3,4,4,3,4,3,6,4,4,3,6,3,3,3,4,3,3,6,3,6,6,6,3,6,6,3,6,6,6,6,3,6,3,6,4,6,6,6,6,5,6,5,6,6,6,3,6,6,3,6,3,3,3,4,5,6,6,6,6,6,3,3,3,6,3,3,3,4,3,3,3,3,4,3,3,6,6,3,6,), (9,4,8,7,5,8,6,8,5,3,6,9,7,9,9,7,4,9,7,7,7,7,5,7,8,9,9,6,7,8,4,8,9,9,7,9,9,9,7,9,9,8,9,9,9,9,7,9,7,9,7,3,7,2,3,9,2,9,9,3,6,6,0,3,8,9,7,7,7,7,7,9,9,6,9,9,9,9,7,9,7,9,8,6,8,4,5,9,4,9,7,9,6,6,4,), (6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,), (11,10,10,9,11,9,10,12,7,9,12,9,3,9,9,12,10,10,9,10,11,12,8,11,11,10,10,12,11,10,10,12,8,12,12,12,12,12,12,12,12,2,12,12,12,12,12,12,12,12,9,8,12,8,9,6,7,7,12,8,9,12,0,7,11,12,12,12,12,10,12,12,12,9,12,12,12,12,12,12,12,12,12,10,12,10,10,10,10,9,10,12,9,12,10,), (16,10,2,3,0,0,16,15,19,9,4,19,10,16,10,3,11,3,3,2,3,3,3,3,3,16,19,4,4,4,3,13,0,2,0,0,2,4,0,1,16,6,0,5,0,1,0,2,0,0,1,0,1,0,0,0,0,0,19,10,19,7,19,13,4,4,4,4,4,9,18,5,16,19,5,16,0,5,4,19,7,10,4,11,5,4,0,4,17,4,16,19,19,3,10,), (6,6,1,5,6,3,6,3,4,6,0,3,0,3,0,5,4,5,6,0,5,5,5,5,5,3,3,0,0,0,5,2,0,6,4,6,6,6,4,6,6,0,6,6,6,6,4,6,4,6,5,5,6,5,5,3,4,4,6,5,5,3,0,4,0,6,0,0,0,4,0,6,5,2,6,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,6,5,0,6,), (15,12,14,14,14,14,12,14,11,12,14,15,14,15,15,14,13,15,14,14,14,14,11,14,14,15,15,14,14,14,11,14,15,15,14,15,15,15,14,15,15,14,15,15,15,15,14,15,14,15,14,7,14,11,11,15,8,15,15,11,12,14,0,9,14,15,14,14,14,13,14,15,15,12,15,15,15,15,14,15,14,15,14,13,14,13,13,15,13,15,14,15,12,14,12,), (15,11,15,15,14,15,12,15,10,12,15,13,15,13,13,15,13,13,15,15,15,15,10,15,15,13,13,15,15,15,10,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,11,12,12,8,14,15,12,12,15,0,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,14,15,15,12,15,11,), (15,11,13,15,14,15,12,15,10,12,15,13,6,13,13,15,13,13,15,15,15,15,10,15,15,13,13,15,14,15,11,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,11,12,12,8,14,15,12,12,14,0,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,14,13,15,12,14,11,), (15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,15,15,15,15,15,15,15,15,15,15,12,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,), (15,11,15,14,14,15,12,15,10,12,15,14,15,14,14,15,13,13,14,15,15,15,10,15,15,14,14,15,15,15,10,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,7,15,11,12,12,8,14,15,12,12,15,0,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,13,13,14,15,15,12,15,11,), (10,10,8,7,8,5,10,7,10,7,5,7,5,7,5,8,8,8,7,5,8,8,10,7,8,8,8,5,8,8,8,6,5,10,8,10,10,10,8,10,10,5,10,10,10,10,8,10,8,10,7,10,10,10,10,9,10,9,10,10,10,6,0,10,7,10,6,6,6,8,6,10,10,7,10,10,8,8,6,8,6,8,7,8,8,8,8,8,8,7,6,10,10,5,9,), (15,15,15,15,15,15,15,15,12,14,15,15,15,15,15,15,15,15,15,15,15,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,13,13,15,11,15,15,13,13,15,13,9,15,15,15,15,15,15,15,15,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,13,15,15,), (14,11,14,14,14,14,11,14,10,12,14,14,14,14,14,14,13,14,14,14,14,14,10,14,14,14,14,14,14,14,11,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,14,11,11,14,8,14,14,11,11,14,0,8,14,14,14,14,14,13,14,14,14,11,14,14,14,14,14,14,14,14,14,13,14,13,13,14,13,14,14,14,11,14,11,), (3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,), (6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,), (14,14,14,13,14,11,14,12,11,11,9,14,10,14,14,13,14,14,11,10,13,13,10,13,14,14,14,9,13,14,14,12,14,14,13,14,14,14,13,14,14,12,14,14,14,14,13,14,13,14,13,6,14,12,12,14,10,14,14,12,11,12,0,8,12,14,11,11,11,14,11,14,14,11,14,14,14,14,11,14,11,14,12,14,14,14,14,14,14,14,11,14,11,9,14,), (3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,), (23,21,23,23,23,23,21,23,19,21,23,23,23,23,23,23,22,23,23,23,23,23,19,23,23,23,23,23,23,23,20,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,15,23,20,20,23,17,23,23,20,20,23,4,17,23,23,23,23,23,22,23,23,23,20,23,23,23,23,23,23,23,23,23,22,23,22,22,23,22,23,23,23,20,23,21,), (14,11,14,14,14,14,11,14,10,12,14,14,14,14,14,14,13,14,14,14,14,14,10,14,14,14,14,14,14,14,11,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,14,11,11,14,8,14,14,11,11,14,0,8,14,14,14,14,14,13,14,14,14,11,14,14,14,14,14,14,14,14,14,13,14,13,13,14,13,14,14,14,11,14,11,), (15,11,15,15,14,15,12,15,10,12,15,13,15,13,13,15,13,13,15,15,15,15,10,15,15,13,13,15,15,15,10,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,11,12,12,8,14,15,12,12,15,0,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,14,15,15,12,15,11,), (15,11,15,15,14,15,12,15,10,12,15,13,15,13,13,15,13,13,15,15,15,15,10,15,14,13,13,15,15,15,11,15,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,11,12,12,8,14,15,12,12,15,3,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,14,12,13,14,15,15,12,15,11,), (15,15,15,15,15,15,15,15,15,14,15,15,15,15,15,15,15,15,15,15,15,15,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,15,13,13,15,11,15,15,13,15,15,15,9,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,), (9,9,9,8,9,6,9,7,6,7,3,6,3,6,4,9,9,9,3,3,8,9,0,8,9,9,9,3,9,9,9,7,3,9,8,9,9,9,8,9,9,3,9,9,9,9,8,9,8,9,8,1,9,7,7,3,5,3,9,7,6,7,0,3,7,9,6,6,6,9,6,9,9,6,9,9,9,9,6,9,6,9,7,9,9,9,9,9,9,8,6,9,6,3,9,), (14,11,15,15,14,15,12,15,11,12,10,14,15,14,14,15,13,14,15,15,15,15,11,15,15,14,14,13,15,15,10,15,14,15,14,15,15,15,14,15,15,15,15,15,15,15,14,15,14,15,15,7,15,11,11,13,8,15,15,11,12,13,0,9,15,15,15,15,15,13,15,15,15,12,15,15,15,15,15,15,15,15,15,13,15,13,13,13,13,15,15,15,12,13,11,), (8,8,8,7,8,6,8,7,5,7,5,8,5,8,8,8,8,8,6,5,7,8,5,7,8,8,8,5,8,8,8,7,8,8,8,8,8,8,8,8,8,7,8,8,8,8,8,8,8,8,7,5,8,6,6,8,5,8,8,6,5,6,0,5,7,8,6,6,6,8,6,8,8,5,8,8,8,8,6,8,6,8,7,8,8,8,8,8,8,8,5,8,5,5,8,), (14,14,14,14,14,14,14,14,11,13,14,14,14,14,14,14,14,14,14,14,14,14,10,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,14,12,12,14,10,14,14,12,11,14,0,8,14,14,14,14,14,14,14,14,14,11,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,11,14,14,), (15,15,15,14,15,12,15,13,12,13,13,12,12,12,10,14,15,15,11,12,14,14,6,14,15,15,15,13,14,15,15,13,9,15,14,15,15,15,14,15,15,11,15,15,15,15,14,15,14,15,14,7,15,13,13,9,11,10,15,13,12,13,0,9,14,15,13,13,13,15,13,15,15,12,15,15,15,15,13,15,13,15,14,15,15,15,15,15,15,14,12,15,12,13,15,), (23,23,23,22,23,20,23,22,20,22,22,20,21,20,18,23,23,23,20,21,22,23,15,22,23,23,23,22,23,23,23,21,18,23,23,23,23,23,23,23,23,20,23,23,23,23,23,23,23,23,22,15,23,21,21,18,19,19,23,21,20,21,4,17,22,23,22,22,22,23,22,23,23,20,23,23,23,23,22,23,22,23,22,23,23,23,23,23,23,22,21,23,20,21,23,), (15,15,15,14,15,12,15,13,12,13,12,15,11,15,15,14,15,15,12,11,14,14,11,14,15,15,15,12,14,15,15,13,15,15,14,15,15,15,14,15,15,13,15,15,15,15,14,15,14,15,14,7,15,13,13,15,11,15,15,13,12,13,0,9,13,15,12,12,12,15,12,15,15,12,15,15,15,15,12,15,12,15,13,15,15,15,15,15,15,15,12,15,12,11,15,), (15,15,15,14,15,12,15,13,12,13,13,12,12,12,10,15,15,15,11,12,14,15,7,14,15,15,15,13,15,15,15,13,9,15,14,15,15,15,14,15,15,11,15,15,15,15,14,15,14,15,14,7,15,13,13,9,11,10,15,13,12,13,7,9,14,15,13,13,13,15,13,15,15,12,15,15,15,15,13,15,13,15,14,15,15,15,15,15,15,14,12,15,12,13,15,), (15,15,15,14,15,13,15,14,12,14,13,15,10,15,15,15,15,15,13,11,15,15,11,14,15,15,15,13,15,15,15,14,15,15,15,15,15,15,15,15,15,14,15,15,15,15,15,15,15,15,14,7,15,13,13,15,11,15,15,13,12,14,0,9,15,15,14,14,14,15,14,15,15,12,15,15,15,15,14,15,14,15,15,15,15,15,15,15,15,15,12,15,12,12,15,), (9,9,6,7,8,6,9,6,9,7,6,9,4,6,6,7,6,7,7,5,7,6,9,7,7,6,9,6,6,6,7,6,6,9,6,9,9,9,6,9,9,6,9,9,9,9,6,9,6,9,7,9,9,9,9,8,9,8,9,9,9,6,9,9,6,9,6,6,6,7,8,9,9,9,9,9,6,6,6,9,6,6,6,7,6,6,6,6,7,6,6,9,9,6,9,), (2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,), (8,6,9,7,6,9,6,9,5,6,7,6,9,6,7,9,6,6,7,9,7,9,6,9,7,6,6,8,9,8,6,9,6,9,9,9,9,9,9,9,9,7,9,9,9,9,9,9,9,9,9,6,9,5,5,6,4,6,9,5,6,7,6,4,9,9,9,9,9,7,9,9,9,6,9,9,9,9,9,9,9,9,7,7,9,6,7,6,6,6,9,9,6,9,6,), (16,7,15,11,14,15,13,16,11,6,16,13,15,13,13,16,11,7,10,15,16,16,10,15,15,13,13,16,15,10,8,16,12,16,16,16,16,16,16,16,16,6,16,16,16,16,16,16,16,16,12,8,16,12,13,9,9,10,16,13,13,16,0,10,13,16,16,16,16,14,16,16,16,13,16,16,16,16,16,16,16,16,16,14,16,14,15,13,14,9,15,16,13,16,7,), (9,9,9,8,9,6,9,7,8,9,3,6,0,6,4,8,9,9,9,2,8,8,9,8,9,9,9,1,8,9,9,6,3,9,8,9,9,9,8,9,9,0,9,9,9,9,8,9,8,9,8,9,9,8,8,6,7,8,9,8,9,7,0,7,6,9,5,5,5,9,5,9,9,6,9,9,9,9,5,9,5,9,6,9,9,9,9,9,9,8,6,9,9,0,9,), ) # End of font
#O(n) class Solution: """ Do not return anything, modify nums in-place instead. """ def moveZeroes_long(self, nums): """ we assume the first zero is at index 0, if the first one is not zero, the list will not chnage after the first iteration. We move the first zero index to the next position. """ first0 = 0 for i in range(len(nums)): if nums[i] != 0: temp = nums[i] nums[i] = 0 nums[first0] = temp first0 += 1 return nums def moveZeroes_short(self, nums): first0 = 0 for i in range(len(nums)): if nums[i] != 0: nums[first0],nums[i] = nums[i],nums[first0] first0 +=1 def sort_method(self, nums): nums.sort(key=bool, reverse=True) #nums.sort(key=lambda x: 1 if x == 0 else 0)
i = 1 while i < 6: print(i) if i == 3: break i += 1
REQ_PKG_TYPE = 0x00 ACK_PKG_TYPE = 0x80 NO_ACK_TYPE = 0x00 NEED_ACK_TYPE = 0x40 NEED_ACK_NO_FINISH_TYPE = 0x20 NO_ENC_TYPE = 0x00 AES_128_ENC_TYPE = 0x01 CUSTOM_ENC_TYPE = 0x02 XOR_ENC_TYPE = 0x03 DES_56_ENC_TYPE = 0x04 DES_112_ENC_TYPE = 0x05 AES_192_ENC_TYPE = 0x06 AES_256_ENC_TYPE = 0x07 MSG_TIMEOUT_FOREVER = 0 MSG_DEFAULT_TIMEOUT = 0.25 TASK_ID_MIN = 1 TASK_ID_MAX = 255 TASK_FREQ_10Hz = 2 TASK_FREQ_5Hz = 1 TASK_FREQ_1Hz = 0 TASK_CTRL_START = 0 TASK_CTRL_STOP = 1 """ Command Set Code Definition """ DUSS_MB_CMDSET_COMMON = 0 DUSS_MB_CMDSET_SPECIAL = 1 DUSS_MB_CMDSET_CAMERA = 2 DUSS_MB_CMDSET_FC = 3 DUSS_MB_CMDSET_GIMBAL = 4 DUSS_MB_CMDSET_CENTER = 5 DUSS_MB_CMDSET_RC = 6 DUSS_MB_CMDSET_WIFI = 7 DUSS_MB_CMDSET_DM368 = 8 DUSS_MB_CMDSET_HDVT = 9 DUSS_MB_CMDSET_VISION = 10 DUSS_MB_CMDSET_SIM = 11 DUSS_MB_CMDSET_ESC = 12 DUSS_MB_CMDSET_SMART_BATTERY = 13 DUSS_MB_CMDSET_HDVT_1765_GND = 14 DUSS_MB_CMDSET_S_TO_P_AIR = 15 DUSS_MB_CMDSET_S_TO_P_GND = 16 DUSS_MB_CMDSET_ADSB = 17 DUSS_MB_CMDSET_BVISION = 18 DUSS_MB_CMDSET_FPGA_AIR = 19 DUSS_MB_CMDSET_FPGA_GND = 20 DUSS_MB_CMDSET_GLASS = 21 DUSS_MB_CMDSET_MAVLINK = 22 DUSS_MB_CMDSET_WATCH = 23 DUSS_MB_CMDSET_PERCEPTION = 36 DUSS_MB_CMDSET_ROBOTIC_ARM = 51 DUSS_MB_CMDSET_RM = 63 DUSS_MB_CMDSET_VIRTUAL_BUS = 72 DUSS_MB_CMDSET_MAX = 33 """RM_ID""" DUSS_MB_CMD_RM_HIT_EVENT = 0x02 DUSS_MB_CMD_RM_SPECIAL_CONTROL = 0x04 DUSS_MB_CMD_RM_WATER_GUN_PARM_SET = 0x05 DUSS_MB_CMD_RM_ARMOR_VOICE_PARAMS_SET = 0x07 DUSS_MB_CMD_RM_GAME_STATE_SYNC = 0x09 DUSS_MB_CMD_RM_GAMECTRL_CMD = 0x0a DUSS_MB_CMD_RM_GAME_GROUP_CONFIG = 0x0b DUSS_MB_CMD_RM_GAME_START_END_CONFIG = 0x0c DUSS_MB_CMD_RM_SKILL_SEND = 0x0f DUSS_MB_CMD_RM_IR_EVENT = 0x10 DUSS_MB_CMD_RM_BLOOD_LED_SET = 0x11 DUSS_MB_CMD_RM_MODULE_STATUS_PUSH = 0x12 DUSS_MB_CMD_RM_WORK_MODE_SET = 0x19 DUSS_MB_CMD_RM_PLAY_SOUND = 0x1a DUSS_MB_CMD_RM_SET_SPEAKER_VOLUME = 0x1b DUSS_MB_CMD_RM_GET_SPEAKER_VOLUME = 0x1c DUSS_MB_CMD_RM_AUDIO_TO_APP = 0x1d DUSS_MB_CMD_RM_SET_AUDIO_STATUS = 0x1e DUSS_MB_CMD_RM_WHEEL_SPEED_SET = 0x20 DUSS_MB_CMD_RM_SPEED_SET = 0x21 DUSS_MB_CMD_RM_FOLLOW_MODE_SET = 0x22 DUSS_MB_CMD_RM_FPV_MODE_SPEED_SET = 0x23 DUSS_MB_CMD_RM_GROUND_MODE_SET = 0x24 DUSS_MB_CMD_RM_POSITION_SET = 0X25 DUSS_MB_CMD_RM_WHEEL_STATUS_SET = 0x26 DUSS_MB_CMD_RM_WHEEL_STATUS_GET = 0x27 DUSS_MB_CMD_RM_SPEED_MODE_SET = 0x28 DUSS_MB_CMD_RM_CHASSIS_POSITION_TASK_PUSH = 0x2a DUSS_MB_CMD_RM_SET_CHASSIS_PWM_FREQ = 0x2b DUSS_MB_CMD_RM_GET_CHASSIS_PWM_FREQ = 0x2d DUSS_MB_CMD_RM_ARMOR_GET_STATE = 0x31 DUSS_MB_CMD_RM_ARMOR_LED_SET = 0x32 DUSS_MB_CMD_RM_LED_COLOR_SET = 0x33 DUSS_MB_CMD_RM_SET_CHASSIS_PWM_VALUE = 0x3c DUSS_MB_CMD_RM_GET_CHASSIS_PWM_VALUE = 0x3d DUSS_MB_CMD_RM_SET_TANK_WORK_MODE = 0x46 DUSS_MB_CMD_RM_GET_TANK_WORK_MODE = 0x47 DUSS_MB_CMD_RM_EXIT_LOW_POWER_MODE = 0x4c DUSS_MB_CMD_RM_SHOOT_EVENT = 0x50 DUSS_MB_CMD_RM_SHOOT_CMD = 0x51 DUSS_MB_CMD_RM_SHOOT_GET_STATE = 0x52 DUSS_MB_CMD_RM_SHOOT_MODE_SET = 0x53 DUSS_MB_CMD_RM_SHOOT_MODE_GET = 0x54 DUSS_MB_CMD_RM_GUN_LED_SET = 0x55 DUSS_MB_CMD_RM_FC_RMC = 0x60 DUSS_MB_CMD_RM_FC_GET_STATE = 0x61 DUSS_MB_CMD_RM_SCRIPT_DOWNLOAD_DATA = 0xA1 DUSS_MB_CMD_RM_SCRIPT_DOWNLOAD_FINSH = 0xA2 DUSS_MB_CMD_RM_SCRIPT_CTRL = 0xA3 DUSS_MB_CMD_RM_SCRIPT_CUSTOM_INFO_PUSH = 0xA4 DUSS_MB_CMD_RM_SCRIPT_BLOCK_STATUS_PUSH = 0xA5 DUSS_MB_CMD_RM_SCRIPT_PARAMS_INFO_PUSH = 0xA6 DUSS_MB_CMD_RM_SCRIPT_LOG_INFO = 0xA7 DUSS_MB_CMD_RM_CUSTOM_SKILL_CONFIG_QUERY = 0xA8 DUSS_MB_CMD_RM_SCRIPT_LOCAL_SUB_SERVICE = 0xA9 DUSS_MB_CMD_RM_SUB_MOBILE_INFO = 0xAB DUSS_MB_CMD_RM_MOBILE_INFO_PUSH = 0xAC DUSS_MB_CMD_RM_SCRATCH_AUTO_TEST = 0xAF DUSS_MB_CMD_RM_GIMBAL_DEGREE_SET = 0xB0 DUSS_MB_CMD_RM_GIMBAL_POSITION_TASK_PUSH = 0xB1 DUSS_MB_CMD_RM_GIMBAL_RESET_POSITION_SET = 0xB2 DUSS_MB_CMD_RM_PLAY_SOUND_TASK = 0xB3 DUSS_MB_CMD_RM_PLAY_SOUND_TASK_PUSH = 0xB4 DUSS_MB_CMD_RM_ROBOTIC_ARM_POSITION_TASK_SET = 0xB5 DUSS_MB_CMD_RM_ROBOTIC_ARM_POSITION_TASK_PUSH = 0xB6 DUSS_MB_CMD_RM_SERVO_ANGLE_TASK_SET = 0xB7 DUSS_MB_CMD_RM_SERVO_ANGLE_TASK_PUSH = 0xB8 DUSS_MB_CMD_RM_CUSTOM_UI_ATTRIBUTE_SET = 0xBA DUSS_MB_CMD_RM_CUSTOM_UI_ACTION_TRIGGER = 0xBB DUSS_MB_CMD_RM_CUSTOM_SOUND_CONVERT = 0xBC DUSS_MB_CMD_RM_LINK_STATE_PUSH = 0xD0 DUSS_MB_CMD_RM_SDK_MODE_SET = 0xD1 DUSS_MB_CMD_RM_STREAM_CTRL = 0xD2 DUSS_MB_CMD_RM_UART_CONFIG = 0xC0 DUSS_MB_CMD_RM_UART_MSG = 0xC1 DUSS_MB_CMD_RM_UART_STATUS_PUSH = 0xC2 DUSS_MB_CMD_RM_MEDIA_SOUND_RECOGNIZE_SET = 0xE3 DUSS_MB_CMD_RM_MEDIA_SOUND_RECOGNIZE_PUSH = 0xE4 DUSS_MB_CMD_RM_MEDIA_CAMERA_BRIGHTNESS_GET = 0xE5 DUSS_MB_CMD_RM_GET_SENSOR_ADAPTER_DATA = 0xF0 DUSS_MB_CMD_RM_SET_SENSOR_ADAPTER_PARAM = 0xF1 DUSS_MB_CMD_RM_GET_SENSOR_ADAPTER_PARAM = 0xF2 DUSS_MB_CMD_RM_PUSH_SENSOR_ADAPTER_IO_EVENT = 0xF3 DUSS_MB_CMD_RM_PUSH_SENSOR_ADAPTER_ADC_VALUE = 0xF4 DUSS_MB_CMD_RM_PRODUCT_ATTRIBUTE_GET = 0xFE """Command Completion code defintion""" DUSS_MB_RET_OK = 0x00 DUSS_MB_RET_ACK = 0x01 DUSS_MB_RET_FINSH = 0xD0 # download file error code in XW0607 DUSS_MB_RET_RESEND_REQUEST = 0xD1 DUSS_MB_RET_MD5_CHECK_FAILUE = 0xD2 DUSS_MB_RET_DOWNLOAD_FAILUE = 0xD3 DUSS_MB_RET_NO_EXIST_DSP = 0xD4 DUSS_MB_RET_NOT_IN_TRANSFER = 0xD5 DUSS_MB_RET_SIZE_NOT_MATCH = 0xD6 # other module error code in XW0607 DUSS_MB_RET_SERVO_IN_ROBOTICARM_MODE = 0xDA DUSS_MB_RET_INVALID_CMD = 0xE0 DUSS_MB_RET_TIMEOUT = 0xE1 DUSS_MB_RET_OUT_OF_MEMORY = 0xE2 DUSS_MB_RET_INVALID_PARAM = 0xE3 DUSS_MB_RET_INVALID_STATE = 0xE4 DUSS_MB_RET_TIME_NOT_SYNC = 0xE5 DUSS_MB_RET_SET_PARAM_FAILED = 0xE6 DUSS_MB_RET_GET_PARAM_FAILED = 0xE7 DUSS_MB_RET_SDCARD_NOT_INSERTED = 0xE8 DUSS_MB_RET_SDCARD_FULL = 0xE9 DUSS_MB_RET_SDCARD_ERR = 0xEA DUSS_MB_RET_SENSOR_ERR = 0xEB DUSS_MB_RET_CRITICAL_ERR = 0xEC DUSS_MB_RET_PRARM_LEN_TOO_LONG = 0xED DUSS_MB_RET_FW_SEQNUM_NOT_IN_ORDER = 0xF0 DUSS_MB_RET_FW_EXCEED_FLASH = 0xF1 DUSS_MB_RET_FW_CHECK_ERR = 0xF2 DUSS_MB_RET_FW_FLASH_ERASE_ERR = 0xF3 DUSS_MB_RET_FW_FLASH_PROGRAM_ERR = 0xF4 DUSS_MB_RET_FW_UPDATE_STATE_ERR = 0xF5 DUSS_MB_RET_FW_INVALID_TYPE = 0xF6 DUSS_MB_RET_FW_UPDATE_WAIT_FINISH = 0xF7 DUSS_MB_RET_FW_UPDATE_RC_DISCONNECT = 0xF8 DUSS_MB_RET_FW_UPGRADE_MOTOR_RUNNING = 0xF9 DUSS_MB_RET_HARDWARE_ERR = 0xFA DUSS_MB_RET_DEV_BAT_NOT_ENOUGH = 0xFB DUSS_MB_RET_DEV_UAV_DISCONNECT = 0xFC DUSS_MB_RET_FW_FLASH_ERASING = 0xFD DUSS_MB_RET_CHECK_CONNECTION_ERR = 0xFE DUSS_MB_RET_UNSPECIFIED = 0xFF """Command ID code defination""" DUSS_MB_CMD_INVALID = 0x00 """Common commands""" DUSS_MB_CMD_PING = 0x00 DUSS_MB_CMD_GET_DEVICE_VERSION = 0x01 DUSS_MB_CMD_SET_PUSH_PARAM = 0x02 DUSS_MB_CMD_GET_PUSH_PARAM = 0x03 DUSS_MB_CMD_START_PUSH_PARAM = 0x04 DUSS_MB_CMD_SET_MULTIPLE_PRARAM = 0x05 DUSS_MB_CMD_GET_MULTIPLE_PRARAM = 0x06 DUSS_MB_CMD_FW_ENTRY = 0x07 DUSS_MB_CMD_FW_START = 0x08 DUSS_MB_CMD_FW_TRAMSMIT = 0x09 DUSS_MB_CMD_FW_FINISH = 0x0A DUSS_MB_CMD_DEVICE_REBOOT = 0x0B DUSS_MB_CMD_SET_DEVICE_VERSION = 0x0D DUSS_MB_CMD_COM_HEARTBEAT = 0x0E DUSS_MB_CMD_COMPATIBILE_UPGRADE = 0x0F DUSS_MB_CMD_FILE_SEND_REQUEST = 0x22 DUSS_MB_CMD_FILE_RECV_REQUEST = 0x23 DUSS_MB_CMD_FILE_SENDING = 0x24 DUSS_MB_CMD_FILE_SEGMENT_ERROR = 0x25 DUSS_MB_CMD_TRANSSRV_APP2CAM = 0x26 DUSS_MB_CMD_TRANSSRV_CAM2APP = 0x27 DUSS_MB_CMD_FILE_DELETE = 0x28 DUSS_MB_CMD_FILE_GENERAL_TRANS = 0x2A DUSS_MB_CMD_ENCRYPT_CONFIG = 0x30 DUSS_MB_CMD_ATIVATE_CONFIG = 0x32 DUSS_MB_CMD_MFI_AUTH = 0x33 DUSS_MB_CMD_SECURITY_COMM = 0x34 DUSS_MB_CMD_UPDATE_DESC_PUSH = 0x40 DUSS_MB_CMD_UPDATE_CONTROL = 0x41 DUSS_MB_CMD_UPDATE_STATUS = 0x42 DUSS_MB_CMD_UPDATE_FINISH = 0x43 DUSS_MB_CMD_SLEEP_CONTROL = 0x45 DUSS_MB_CMD_SHUTDOWN_NOTIFICATION = 0x46 DUSS_MB_CMD_POWER_STATE = 0x47 DUSS_MB_CMD_LED_CONTROL = 0x48 DUSS_MB_CMD_SET_DATE = 0x4A DUSS_MB_CMD_GET_DATE = 0x4B DUSS_MB_CMD_GET_MODULE_SYS_STATUS = 0x4C DUSS_MB_CMD_SET_RT = 0x4D DUSS_MB_CMD_GET_RT = 0x4E DUSS_MB_CMD_GET_CFG_FILE = 0x4F DUSS_MB_CMD_SET_SERIAL_NUMBER = 0x50 DUSS_MB_CMD_GET_SERIAL_NUMBER = 0x51 DUSS_MB_CMD_SET_GPS_PUSH_CONFIG = 0x52 DUSS_MB_CMD_PUSH_GPS_INFO = 0x53 DUSS_MB_CMD_GET_TEMPERATURE_INFO = 0x54 DUSS_MB_CMD_GET_ALIVE_TIME = 0x55 DUSS_MB_CMD_PUSH_TEMPERATURE_WARNING = 0x56 DUSS_MB_CMD_SEND_NETWORK_INFO = 0x57 DUSS_MB_CMD_TIME_SYNC = 0x58 DUSS_MB_CMD_TEST_MODE = 0x59 DUSS_MB_CMD_PLAY_SOUND = 0x5A DUSS_MB_CMD_UAV_FLY_INFO = 0x5C DUSS_MB_CMD_AUTO_TEST_INFO = 0x60 DUSS_MB_CMD_SET_PRODUCT_NEWEST_VER = 0x61 DUSS_MB_CMD_GET_PRODUCT_NEWEST_VER = 0x62 DUSS_MB_CMD_SEND_RESERVED_KEY = 0xEF DUSS_MB_CMD_LOG_PUSH = 0xF0 DUSS_MB_CMD_SELF_TEST = 0xF1 DUSS_MB_CMD_LOG_CONTROL_GLOBAL = 0xF2 DUSS_MB_CMD_LOG_CONTROL_MODULE = 0xF3 DUSS_MB_CMD_TEST_START = 0xF4 DUSS_MB_CMD_TEST_STOP = 0xF5 DUSS_MB_CMD_TEST_QUERY_RESULT = 0xF6 DUSS_MB_CMD_PUSH_TEST_RESULT = 0xF7 DUSS_MB_CMD_GET_METADATA = 0xF8 DUSS_MB_CMD_LOG_CONTROL = 0xFA DUSS_MB_CMD_SELFTEST_STATE = 0xFB DUSS_MB_CMD_SELFTEST_STATE_COUNT = 0xFC DUSS_MB_CMD_DUMP_FRAME_BUFFER = 0xFD DUSS_MB_CMD_SELF_DEFINE = 0xFE DUSS_MB_CMD_QUERY_DEVICE_INFO = 0xFF """Special commands""" DUSS_MB_CMD_SPECIAL_APP_CONTROL = 0x01 DUSS_MB_CMD_SPECIAL_REMOTE_CONTROL = 0x02 DUSS_MB_CMD_SPECIAL_NEW_CONTROL = 0x03 DUSS_MB_CMD_SPECIAL_RM_CONTROL = 0x04 DUSS_MB_CMD_SPECIAL_UAV_LOOPBACK = 0x0ff """Camera commands""" DUSS_MB_CMD_CAPTURE = 0x01 DUSS_MB_CMD_RECORD = 0x02 DUSS_MB_CMD_HEARTBEAT = 0x03 DUSS_MB_CMD_USB_CONNECT = 0x04 DUSS_MB_CMD_VKEY = 0x05 DUSS_MB_CMD_SET_WORKMODE = 0x10 DUSS_MB_CMD_GET_WORKMODE = 0x11 DUSS_MB_CMD_SET_PHOTO_FORMAT = 0x12 DUSS_MB_CMD_GET_PHOTO_FORMAT = 0x13 DUSS_MB_CMD_SET_PHOTO_QUALITY = 0x14 DUSS_MB_CMD_GET_PHOTO_QUALITY = 0x15 DUSS_MB_CMD_SET_PHOTO_STORAGE_FMT = 0x16 DUSS_MB_CMD_GET_PHOTO_STORAGE_FMT = 0x17 DUSS_MB_CMD_SET_VIDEO_FORMAT = 0x18 DUSS_MB_CMD_GET_VIDEO_FORMAT = 0x19 DUSS_MB_CMD_SET_VIDEO_QUALITY = 0x1A DUSS_MB_CMD_GET_VIDEO_QUALITY = 0x1B DUSS_MB_CMD_SET_VIDEO_STORAGE_FMT = 0x1C DUSS_MB_CMD_GET_VIDEO_STORAGE_FMT = 0x1D DUSS_MB_CMD_SET_EXPO_MODE = 0x1E DUSS_MB_CMD_GET_EXPO_MODE = 0x1F DUSS_MB_CMD_SET_SCENE_MODE = 0x20 DUSS_MB_CMD_GET_SCENE_MODE = 0x21 DUSS_MB_CMD_SET_AE_METER = 0x22 DUSS_MB_CMD_GET_AE_METER = 0x23 DUSS_MB_CMD_SET_FOCUS_MODE = 0x24 DUSS_MB_CMD_GET_FOCUS_MODE = 0x25 DUSS_MB_CMD_SET_APERTURE_SIZE = 0x26 DUSS_MB_CMD_GET_APERTURE_SIZE = 0x27 DUSS_MB_CMD_SET_SHUTTER_SPEED = 0x28 DUSS_MB_CMD_GET_SHUTTER_SPEED = 0x29 DUSS_MB_CMD_SET_ISO = 0x2A DUSS_MB_CMD_GET_ISO = 0x2B DUSS_MB_CMD_SET_WB = 0x2C DUSS_MB_CMD_GET_WB = 0x2D DUSS_MB_CMD_SET_EV_BIAS = 0x2E DUSS_MB_CMD_GET_EV_BIAS = 0x2F DUSS_MB_CMD_SET_FOCUS_REGION = 0x30 DUSS_MB_CMD_GET_FOCUS_REGION = 0x31 DUSS_MB_CMD_SET_AE_METER_REGION = 0x32 DUSS_MB_CMD_GET_AE_METER_REGION = 0x33 DUSS_MB_CMD_SET_ZOOM_PARAM = 0x34 DUSS_MB_CMD_GET_ZOOM_PARAM = 0x35 DUSS_MB_CMD_SET_FLASH_MODE = 0x36 DUSS_MB_CMD_GET_FLASH_MODE = 0x37 DUSS_MB_CMD_SET_SHARPNESS = 0x38 DUSS_MB_CMD_GET_SHARPNESS = 0x39 DUSS_MB_CMD_SET_CONTRAST = 0x3A DUSS_MB_CMD_GET_CONTRAST = 0x3B DUSS_MB_CMD_SET_SATURATION = 0x3C DUSS_MB_CMD_GET_SATURATION = 0x3D DUSS_MB_CMD_SET_HUE = 0x3E DUSS_MB_CMD_GET_HUE = 0x3F DUSS_MB_CMD_SET_FACE_DETECT = 0x40 DUSS_MB_CMD_GET_FACE_DETECT = 0x41 DUSS_MB_CMD_SET_DIGITAL_EFFECT = 0x42 DUSS_MB_CMD_GET_DIGITAL_EFFECT = 0x43 DUSS_MB_CMD_SET_DIGITAL_DENOISE = 0x44 DUSS_MB_CMD_GET_DIGITAL_DENOISE = 0x45 DUSS_MB_CMD_SET_ANTI_FLICKER = 0x46 DUSS_MB_CMD_GET_ANTI_FLICKER = 0x47 DUSS_MB_CMD_SET_MULTICAP_PARAM = 0x48 DUSS_MB_CMD_GET_MULTICAP_PARAM = 0x49 DUSS_MB_CMD_SET_CONTICAP_PARAM = 0x4A DUSS_MB_CMD_GET_CONTICAP_PARAM = 0x4B """LCD/HDMI vout format set/get""" DUSS_MB_CMD_SET_HDMI_OUTPUT = 0x4C DUSS_MB_CMD_GET_HDMI_OUTPUT = 0x4D DUSS_MB_CMD_SET_QUICKVIEW_PARAM = 0x4E DUSS_MB_CMD_GET_QUICKVIEW_PARAM = 0x4F DUSS_MB_CMD_SET_OSD_PARAM = 0x50 DUSS_MB_CMD_GET_OSD_PARAM = 0x51 DUSS_MB_CMD_SET_PREVIEW_OSD_PARAM = 0x52 DUSS_MB_CMD_GET_PREVIEW_OSD_PARAM = 0x53 DUSS_MB_CMD_SET_CAMERA_TIME = 0x54 DUSS_MB_CMD_GET_CAMERA_TIME = 0x55 DUSS_MB_CMD_SET_LANGUAGE_PARAM = 0x56 DUSS_MB_CMD_GET_LANGUAGE_PARAM = 0x57 DUSS_MB_CMD_SET_CAMERA_GPS = 0x58 DUSS_MB_CMD_GET_CAMERA_GPS = 0x59 DUSS_MB_CMD_SET_DISCON_STATE = 0x5A DUSS_MB_CMD_GET_DISCON_STATE = 0x5B DUSS_MB_CMD_SET_FILE_INDEX_MODE = 0x5C DUSS_MB_CMD_GET_FILE_INDEX_MODE = 0x5D DUSS_MB_CMD_SET_AEB_PARAM = 0x5E DUSS_MB_CMD_GET_AEB_PARAM = 0x5F DUSS_MB_CMD_SET_HISTOGRAM = 0x60 DUSS_MB_CMD_GET_HISTOGRAM = 0x61 DUSS_MB_CMD_SET_V_SUBTITLES = 0x62 DUSS_MB_CMD_GET_V_SUBTITLES = 0x63 DUSS_MB_CMD_SET_V_SUBTITLES_LOG = 0x64 DUSS_MB_CMD_SET_MGEAR_SHUTTERSPEED_LIMIT = 0x65 DUSS_MB_CMD_SET_VIDEO_STANDARD = 0x66 DUSS_MB_CMD_GET_VIDEO_STANDARD = 0x67 DUSS_MB_CMD_SET_AE_LOCK_STATUS = 0x68 DUSS_MB_CMD_GET_AE_LOCK_STATUS = 0x69 DUSS_MB_CMD_SET_CAPTURE_MODE = 0x6A DUSS_MB_CMD_GET_CAPTURE_MODE = 0x6B DUSS_MB_CMD_SET_RECORD_MODE = 0x6C DUSS_MB_CMD_GET_RECORD_MODE = 0x6D DUSS_MB_CMD_SET_PANO_MODE = 0x6E DUSS_MB_CMD_GET_PANO_MODE = 0x6F DUSS_MB_CMD_GET_SYSTEM_STATE = 0x70 DUSS_MB_CMD_GET_SDCARD_INFO = 0x71 DUSS_MB_CMD_FORMAT_SDCARD = 0x72 DUSS_MB_CMD_GET_SDCARD_FORMAT_PROGRESS = 0x73 DUSS_MB_CMD_GET_FW_UPGRADE_PROGRESS = 0x74 DUSS_MB_CMD_GET_PHOTO_SYNC_PROGRESS = 0x75 DUSS_MB_CMD_GET_CAMERA_POWER_INFO = 0x76 DUSS_MB_CMD_SAVE_PREF = 0x77 DUSS_MB_CMD_LOAD_PREF = 0x78 DUSS_MB_CMD_PICTURE_DELETE = 0x79 DUSS_MB_CMD_VIDEO_CTRL = 0x7A DUSS_MB_CMD_SINGLE_PLAY_CTRL = 0x7B DUSS_MB_CMD_TELECTRL_ACTION = 0x7C DUSS_MB_CMD_PB_ZOOM_CTRL = 0x7D DUSS_MB_CMD_PB_PIC_DRAG_CTRL = 0x7E DUSS_MB_CMD_CAMERA_STATUS_PUSH = 0x80 DUSS_MB_CMD_CAP_PARA_PUSH = 0x81 DUSS_MB_CMD_PB_PARA_PUSH = 0x82 DUSS_MB_CMD_HISTOGRAM_PUSH = 0x83 DUSS_MB_CMD_VIDEO_NAME_PUSH = 0x84 DUSS_MB_CMD_RAW_CAMERA_STATUS_PUSH = 0x85 DUSS_MB_CMD_PANORAMA_STATUS_PUSH = 0x86 DUSS_MB_CMD_LENS_INFO_PUSH = 0x87 DUSS_MB_CMD_TIME_LAPSE_INFO_PUSH = 0x88 DUSS_MB_CMD_CAMERA_TRACKING_PARA_PUSH = 0x89 DUSS_MB_CMD_FOV_PARA_PUSH = 0x8a DUSS_MB_CMD_SET_RACING_LIVEVIEW_FORMAT = 0x8b DUSS_MB_CMD_GET_RACING_LIVEVIEW_FORMAT = 0x8c DUSS_MB_CMD_CALIBRATE = 0x90 DUSS_MB_CMD_CAL_COMPLETE = 0x91 DUSS_MB_CMD_GET_VCM_RANGE = 0x94 DUSS_MB_CMD_SET_VCM_POS = 0x95 DUSS_MB_CMD_GET_VCM_POS = 0x96 DUSS_MB_CMD_SET_V_ADT_GAMMA = 0x9B DUSS_MB_CMD_GET_V_ADT_GAMMA = 0x9C DUSS_MB_CMD_SET_FOREARM_LAMP_CONFIG = 0xB6 DUSS_MB_CMD_GET_FOREARM_LAMP_CONFIG = 0xB7 DUSS_MB_CMD_SET_IMAGE_ROTATION = 0xB9 DUSS_MB_CMD_GET_IMAGE_ROTATION = 0xBA DUSS_MB_CMD_SET_GIMBAL_LOCK_CONFIG = 0xBB DUSS_MB_CMD_GET_GIMBAL_LOCK_CONFIG = 0xBC """ below two will be removed later, use SET_HDMI_OUTPUT/GET_HDMI_OUTPUT insted""" DUSS_MB_CMD_SET_CAM_LCD_FORMAT = 0xBD DUSS_MB_CMD_GET_CAM_LCD_FORMAT = 0xBE DUSS_MB_CMD_SET_FILE_STAR_FLAG = 0xBF DUSS_MB_CMD_CAM_DCF_ABSTRACT_PUSH = 0xD1 """below 3 defines added by martin.wei 2017.10.23""" DUSS_MB_CMD_CAPTURE_SOUND = 0xE0 DUSS_MB_CMD_SET_CAPTURE_CONFIG = 0xE1 DUSS_MB_CMD_GET_CAPTURE_CONFIG = 0xE2 """Flight control command set""" DUSS_MB_CMD_FC_TEST = 0x00 DUSS_MB_CMD_FC_GET_STATUS = 0x01 DUSS_MB_CMD_FC_GET_FC_PARAM = 0x02 DUSS_MB_CMD_FC_SET_ORIGIN_GPS = 0x03 DUSS_MB_CMD_FC_GET_ORIGIN_GPS = 0x04 DUSS_MB_CMD_FC_GET_GPS_COORDINATE = 0x05 DUSS_MB_CMD_FC_SET_LIMITED_PARAM = 0x06 DUSS_MB_CMD_FC_GET_LIMITED_PARAM = 0x07 DUSS_MB_CMD_FC_SET_FORBIDDEN_AREA = 0x08 DUSS_MB_CMD_FC_GET_FORBIDDEN_STATUS = 0x09 DUSS_MB_CMD_FC_GET_NVT_BATTARY_STATUS = 0x0A DUSS_MB_CMD_FC_SET_MOTOR_WORK_STATUS = 0x0B DUSS_MB_CMD_FC_GET_MOTOR_WORK_STATUS = 0x0C DUSS_MB_CMD_FC_SET_GPS_FOLLOW_MODE = 0x10 DUSS_MB_CMD_FC_GET_GPS_FOLLOW_MODE = 0x11 DUSS_MB_CMD_FC_GET_GPS_FOLLOW_COORDINATE = 0x12 DUSS_MB_CMD_FC_SUB_SERVICE_REQ = 0x14 DUSS_MB_CMD_FC_SUB_RESET_SERVICE_REQ = 0x15 DUSS_MB_CMD_FC_SUB_REMOVE_SERVICE_REQ = 0x16 DUSS_MB_CMD_FC_SET_GROUNDSTATION_ON = 0x20 DUSS_MB_CMD_FC_GET_UAV_STATUS = 0x21 DUSS_MB_CMD_FC_UPLOAD_AIR_ROUTE = 0x22 DUSS_MB_CMD_FC_DOWNLOAD_AIR_ROUTE = 0x23 DUSS_MB_CMD_FC_UPLOAD_WAYPOINT = 0x24 DUSS_MB_CMD_FC_DOWNLOAD_WAYPOINT = 0x25 DUSS_MB_CMD_FC_ENABLE_WAYPOINT = 0x26 DUSS_MB_CMD_FC_SUSPEND_RESUME_WAYPOINT = 0x27 DUSS_MB_CMD_FC_ONE_KEY_BACK = 0x28 DUSS_MB_CMD_FC_JOYSTICK = 0x29 DUSS_MB_CMD_FC_FUNCTION_CONTROL = 0x2A DUSS_MB_CMD_FC_SET_IOC_MODE_TYPE = 0x2B DUSS_MB_CMD_FC_GET_IOC_MODE_TYPE = 0x2C DUSS_MB_CMD_FC_SET_LIMIT_PARAM = 0x2D DUSS_MB_CMD_FC_GET_LIMIT_PARAM = 0x2E DUSS_MB_CMD_FC_SET_VOLTAGE_ALARM_PARAM = 0x2F DUSS_MB_CMD_FC_GET_VOLTAGE_ALARM_PARAM = 0x30 DUSS_MB_CMD_FC_SET_UAV_HOME = 0x31 DUSS_MB_CMD_FC_PUSH_FOOT_STOOL_STATUS = 0x32 DUSS_MB_CMD_FC_GET_UAV_NAME = 0x33 DUSS_MB_CMD_FC_SET_UAV_NAME = 0x34 DUSS_MB_CMD_FC_CHANGE_PARAM_PING = 0x35 DUSS_MB_CMD_FC_REQUEST_SN = 0x36 DUSS_MB_CMD_FC_GET_DEVICE_INFO = 0x37 DUSS_MB_CMD_FC_SET_DEVICE_INFO = 0x38 DUSS_MB_CMD_FC_READ_SD_DATA = 0x39 DUSS_MB_CMD_FC_SET_TIME_ZONE = 0x3D DUSS_MB_CMD_FC_PUSH_UAV_POSTURE = 0x42 DUSS_MB_CMD_FC_PUSH_OSD = 0x43 DUSS_MB_CMD_FC_PUSH_OSD_HOME = 0x44 DUSS_MB_CMD_FC_PUSH_GPS_SNR = 0x45 DUSS_MB_CMD_FC_ENABLE_GPS_SNR = 0x46 DUSS_MB_CMD_FC_PUSH_ENCRYPTED_PACKAGE = 0x49 DUSS_MB_CMD_FC_PUSH_ATT_IMU_INFO = 0x4A DUSS_MB_CMD_FC_PUSH_RC_STICK_VALUE = 0x4B DUSS_MB_CMD_FC_PUSH_FUSSED_POS_SPEED_DATA = 0x4C DUSS_MB_CMD_FC_PUSH_NVT_BATTARY_STATUS = 0x51 DUSS_MB_CMD_FC_LOW_BAT_DEPARTURE_CNF_CANECL = 0x52 DUSS_MB_CMD_FC_PUSH_VISUAL_AVOIDANCE_INFO = 0x53 DUSS_MB_CMD_FC_PUSH_GPS_INFO = 0x57 DUSS_MB_CMD_FC_PUSH_ATT_STICK_SPEED_POS_DATA = 0x58 DUSS_MB_CMD_FC_PUSH_SDK_DATA = 0x59 DUSS_MB_CMD_FC_PUSH_FC_DATA = 0x5A DUSS_MB_CMD_FC_MOTIVE_POWER_INFO = 0x67 DUSS_MB_CMD_FC_SET_NAVIGATION = 0x80 DUSS_MB_CMD_FC_START_STOP_WAYPOINT = 0x86 DUSS_MB_CMD_FC_PAUSE_RESUME_WAYPOINT = 0x87 DUSS_MB_CMD_FC_PUSH_NVT_TASK_INFO = 0x88 DUSS_MB_CMD_FC_PUSH_NVT_EVENT_INFO = 0x89 DUSS_MB_CMD_FC_START_HOTPOINT = 0x8A DUSS_MB_CMD_FC_CANCEL_HOTPOINT = 0x8B DUSS_MB_CMD_FC_PAUSE_RESUME_HOTPOINT = 0x8C DUSS_MB_CMD_FC_PUSH_JOYSTICK = 0x8E DUSS_MB_CMD_FC_START_FOLLOWME = 0x90 DUSS_MB_CMD_FC_CANCEL_FOLLOWME = 0x91 DUSS_MB_CMD_FC_PAUSE_RESUME_FOLLOWME = 0x92 DUSS_MB_CMD_FC_SET_GPS_FOLLOW = 0x93 DUSS_MB_CMD_FC_START_NEO_MISSION = 0x94 DUSS_MB_CMD_FC_STOP_NEO_MISSION = 0x95 DUSS_MB_CMD_FC_START_IOC = 0x97 DUSS_MB_CMD_FC_CANCEL_IOC = 0x98 DUSS_MB_CMD_FC_SET_DEFAULT_SPEED_DIRECTION = 0x99 DUSS_MB_CMD_FC_RESUME_HEADER = 0x9B DUSS_MB_CMD_FC_RACE_DRONE_OSD_PUSH = 0xA2 DUSS_MB_CMD_FC_SBUS_PACKET = 0xAA DUSS_MB_CMD_FC_FDI_INPUT = 0xB5 DUSS_MB_CMD_FC_CHANGE_DEV_COLOUR = 0xB6 DUSS_MB_CMD_SET_FOREARM_LAMP = 0xBA DUSS_MB_CMD_FC_SUB_SERVICE_RSP = 0xC1 DUSS_MB_CMD_GET_MOTO_SPEED = 0xD4 DUSS_MB_CMD_RECORD_LOG = 0xD7 DUSS_MB_CMD_REGISTER_MOTOR_ERROR_ACTION = 0xEA DUSS_MB_CMD_LOGOUT_MOTOR_ERROR_ACTION = 0xEB DUSS_MB_CMD_SET_MOTOR_ERROR_ACTION_STATUS = 0xEC DUSS_MB_CMD_FC_UPDATE_PARAM = 0xF0 DUSS_MB_CMD_FC_QUERY_PARAM = 0xF1 DUSS_MB_CMD_FC_WRITE_PARAM = 0xF2 DUSS_MB_CMD_FC_RESTORE_DEFAULT_PARAM = 0xF3 DUSS_MB_CMD_FC_PUSH_PARAM = 0xF4 DUSS_MB_CMD_FC_PUSH_PARAM_PC_LOG = 0xF6 DUSS_MB_CMD_FC_GET_PARAM_INFO_PER_HASH = 0xF7 DUSS_MB_CMD_FC_READ_PARAM_PER_HASH = 0xF8 DUSS_MB_CMD_FC_WRITE_PARAM_PER_HASH = 0xF9 DUSS_MB_CMD_FC_RESET_PARAM_PER_HASH = 0xFA DUSS_MB_CMD_FC_PUSH_PARAM_PER_HASH = 0xFB DUSS_MB_CMD_FC_REQUEST_PUSH_DATA_BY_HASH_VALUE = 0xFC DUSS_MB_CMD_FC_REQUEST_DRONE_TYPE = 0xFD """Gimbal command set""" DUSS_MB_CMD_GIMBAL_RESERVED = 0x00 DUSS_MB_CMD_GIMBAL_CONTROL = 0x01 DUSS_MB_CMD_GIMBAL_GET_POSITION = 0x02 DUSS_MB_CMD_GIMBAL_SET_PARAM = 0x03 DUSS_MB_CMD_GIMBAL_GET_PARAM = 0x04 DUSS_MB_CMD_GIMBAL_PUSH_POSITION = 0x05 DUSS_MB_CMD_GIMBAL_PUSH_AETR = 0x06 DUSS_MB_CMD_GIMBAL_ADJUST_ROLL = 0x07 DUSS_MB_CMD_GIMBAL_CALIBRATION = 0x08 DUSS_MB_CMD_GIMBAL_RESERVED2 = 0x09 DUSS_MB_CMD_GIMBAL_EXT_CTRL_DEGREE = 0x0A DUSS_MB_CMD_GIMBAL_GET_EXT_CTRL_STATUS = 0x0B DUSS_MB_CMD_GIMBAL_EXT_CTRL_ACCEL = 0x0C DUSS_MB_CMD_GIMBAL_SUSPEND_RESUME = 0x0D DUSS_MB_CMD_GIMBAL_THIRDP_MAGN = 0x0E DUSS_MB_CMD_GIMBAL_SET_USER_PARAM = 0x0F DUSS_MB_CMD_GIMBAL_GET_USER_PARAM = 0x10 DUSS_MB_CMD_GIMBAL_SAVE_USER_PARAM = 0x11 DUSS_MB_CMD_GIMBAL_RESUME_DEFAULT_PARAM = 0x13 DUSS_MB_CMD_GIMBAL_PUSH_TYPE = 0x1C DUSS_MB_CMD_GIMBAL_DEGREE_INFO_SUBSCRIPTION = 0X1E DUSS_MB_CMD_GIMBAL_LOCK = 0x39 DUSS_MB_CMD_GIMBAL_ROTATE_CAMERA_X_AXIS = 0x3A DUSS_MB_CMD_GIMBAL_GET_TEMP = 0x45 DUSS_MB_CMD_GIMBAL_SET_MODE = 0x4C DUSS_MB_CMD_GIMBAL_ROTATE_EXP_CMD = 0x68 """Center control command set""" DUSS_MB_CMD_CENTER_RESERVED = 0x00 DUSS_MB_CMD_CENTER_REQ_BATT_INFO_CONFIRM = 0x01 DUSS_MB_CMD_CENTER_PUSH_BATT_DYNAMIC_INFO = 0x02 DUSS_MB_CMD_CENTER_CONTROL_UAV_STATUS_LED = 0x03 DUSS_MB_CMD_CENTER_TRANSFORM_CONTROL = 0x04 DUSS_MB_CMD_CENTER_REQ_PUSH_BAT_NORMAL_DATA = 0x05 DUSS_MB_CMD_CENTER_PUSH_BAT_NORMAL_DATA = 0x06 DUSS_MB_CMD_CENTER_QUERY_BAT_STATUS = 0x07 DUSS_MB_CMD_CENTER_QUERY_BAT_HISOTY_STATUS = 0x08 DUSS_MB_CMD_CENTER_BAT_SELFDISCHARGE_DAYS = 0x09 DUSS_MB_CMD_CENTER_BAT_STORAGE_INFO = 0x0A DUSS_MB_CMD_CENTER_REQ_BAT_STATIC_DATA = 0x21 DUSS_MB_CMD_CENTER_REQ_BAT_DYNAMIC_DATA = 0x22 DUSS_MB_CMD_CENTER_REQ_BAT_AUTH_DATA = 0x23 DUSS_MB_CMD_CENTER_REQ_BAT_AUTH_RESULT = 0x24 DUSS_MB_CMD_CENTER_REQ_BAT_SELFDISCHARGE_TIME = 0x31 DUSS_MB_CMD_CENTER_SET_BAT_SELFDISCHARGE_TIME = 0x32 DUSS_MB_CMD_CENTER_REQ_BAT_BARCODE = 0x33 """Remote contao command set""" DUSS_MB_CMD_RC_GET_LOGIC_CHANNEL_PARAMETER = 0x01 DUSS_MB_CMD_RC_SET_LOGIC_CHANNEL_MAPPING = 0x02 DUSS_MB_CMD_RC_SET_CALIBIRATION = 0x03 DUSS_MB_CMD_RC_GET_PHYSICAL_CHANNEL_PARAMETER = 0x04 DUSS_MB_CMD_RC_PUSH_RC_PARAMETER = 0x05 DUSS_MB_CMD_RC_SET_MASTER_SLAVE_MODE = 0x06 DUSS_MB_CMD_RC_GET_MASTER_SLAVE_MODE = 0x07 DUSS_MB_CMD_RC_SET_NAME = 0x08 DUSS_MB_CMD_RC_GET_NAME = 0x09 DUSS_MB_CMD_RC_SET_PASSWORD = 0x0A DUSS_MB_CMD_RC_GET_PASSWORD = 0x0B DUSS_MB_CMD_RC_SET_CONNECTED_MASTER_ID = 0x0C DUSS_MB_CMD_RC_GET_CONNECTED_MASTER_ID = 0x0D DUSS_MB_CMD_RC_GET_AVAILABLE_MASTER_ID = 0x0E DUSS_MB_CMD_RC_SET_SEARCH_MODE = 0x0F DUSS_MB_CMD_RC_GET_SEARCH_MODE = 0x10 DUSS_MB_CMD_RC_SET_MASTER_SLAVE_SWITCH = 0x11 DUSS_MB_CMD_RC_GET_MASTER_SLAVE_SWITCH_CONF = 0x12 DUSS_MB_CMD_RC_REQUEST_JOIN_BY_SLAVE = 0x13 DUSS_MB_CMD_RC_LIST_REQUEST_JOIN_SLAVE = 0x14 DUSS_MB_CMD_RC_DELETE_SLAVE = 0x15 DUSS_MB_CMD_RC_DELETE_MASTER = 0x16 DUSS_MB_CMD_RC_SET_SLAVE_CONTROL_RIGHT = 0x17 DUSS_MB_CMD_RC_GET_SLAVE_CONTROL_RIGHT = 0x18 DUSS_MB_CMD_RC_SET_CONTROL_MODE = 0x19 DUSS_MB_CMD_RC_GET_CONTROL_MODE = 0x1A DUSS_MB_CMD_RC_PUSH_GPS_INFO = 0x1B DUSS_MB_CMD_RC_PUSH_RTC_INFO = 0x1C DUSS_MB_CMD_RC_PUSH_TEMPERATURE_INFO = 0x1D DUSS_MB_CMD_RC_PUSH_BATTERY_INFO = 0x1E DUSS_MB_CMD_RC_PUSH_MASTER_SLAVE_CONN_INFO = 0x1F DUSS_MB_CMD_RC_SET_CE_FCC_MODE = 0x20 DUSS_MB_CMD_RC_GET_CE_FCC_MODE = 0x21 DUSS_MB_CMD_RC_GET_GIMBAL_CONTROL = 0x22 DUSS_MB_CMD_RC_REQUEST_GIMBAL_CONTROL = 0x23 DUSS_MB_CMD_RC_SET_SIMULATE_FLIGHT_MODE = 0x24 DUSS_MB_CMD_RC_GET_SIMULATE_FLIGHT_MODE = 0x25 DUSS_MB_CMD_RC_PUSH_AETR_VALUE = 0x26 DUSS_MB_CMD_RC_GET_DETECTION_INFO = 0x27 DUSS_MB_CMD_RC_GET_GIMBAL_CONTROL_ACCESS_RIGHT = 0x28 DUSS_MB_CMD_RC_SET_SLAVE_CONTROL_MODE = 0x29 DUSS_MB_CMD_RC_GET_SLAVE_CONTROL_MODE = 0x2A DUSS_MB_CMD_RC_SET_GIMBAL_CONTROL_SPEED = 0x2B DUSS_MB_CMD_RC_GET_GIMBAL_CONTROL_SPEED = 0x2C DUSS_MB_CMD_RC_SET_SELF_DEFINED_KEY_FUNC = 0x2D DUSS_MB_CMD_RC_GET_SELF_DEFINED_KEY_FUNC = 0x2E DUSS_MB_CMD_RC_PAIRING = 0x2F DUSS_MB_CMD_RC_TEST_GPS = 0x30 DUSS_MB_CMD_RC_SET_RTC_CLOCK = 0x31 DUSS_MB_CMD_RC_GET_RTC_CLOCK = 0x32 DUSS_MB_CMD_RC_SET_GIMBAL_CONTROL_SENSITIVITY = 0x33 DUSS_MB_CMD_RC_GET_GIMBAL_CONTROL_SENSITIVITY = 0x34 DUSS_MB_CMD_RC_SET_GIMBAL_CONTROL_MODE = 0x35 DUSS_MB_CMD_RC_GET_GIMBAL_CONTROL_MODE = 0x36 DUSS_MB_CMD_RC_REQUEST_ENTER_APP_MODE = 0x37 DUSS_MB_CMD_RC_GET_CALIBRATION_VALUE = 0x38 DUSS_MB_CMD_RC_PUSH_MASTER_SLAVE_CONNECT_STATUS = 0x39 DUSS_MB_CMD_RC_SET_2014_USB_MODE = 0x3a DUSS_MB_CMD_RC_SET_RC_ID = 0x3b DUSS_MB_CMD_RC_PUSH_RMC_KEY_INFO = 0x50 DUSS_MB_CMD_RC_PUSH_TO_GLASS = 0x51 DUSS_MB_CMD_RC_PUSH_LCD_TO_MCU = 0x52 DUSS_MB_CMD_RC_GET_UNIT_LANGUAGE = 0x53 DUSS_MB_CMD_RC_SET_UNIT_LANGUAGE = 0x54 DUSS_MB_CMD_RC_SET_TEST_MODE = 0x55 DUSS_MB_CMD_RC_QUIRY_ROLE = 0x56 DUSS_MB_CMD_RC_QUIRY_MS_LINK_STATUS = 0x57 DUSS_MB_CMD_RC_SET_WORK_FUNCTION = 0x58 DUSS_MB_CMD_RC_GET_WORK_FUNCTION = 0x59 DUSS_MB_CMD_RC_SET_RF_CERT_CONFIG = 0xF0 DUSS_MB_CMD_RC_TEST_STICK_VALUE = 0xF5 DUSS_MB_CMD_RC_FACTORY_GET_BOARD_ID = 0xF6 DUSS_MB_CMD_RC_PUSH_BUZZER_TO_MCU = 0xF7 DUSS_MB_CMD_RC_GET_STICK_VERIFICATION_DATA = 0xF8 DUSS_MB_CMD_RC_SET_POST_CALIBIRATION = 0xF9 DUSS_MB_CMD_RC_GET_STICK_MIDDLE_VALUE = 0xFA """WIFI command set""" DUSS_MB_CMD_WIFI_RESERVED = 0x00 DUSS_MB_CMD_WIFI_AP_PUSH_SCAN_RESULTS = 0x01 DUSS_MB_CMD_WIFI_AP_GET_CHAN_SNR = 0x02 DUSS_MB_CMD_WIFI_AP_SET_CHAN = 0x03 DUSS_MB_CMD_WIFI_AP_GET_CHAN = 0x04 DUSS_MB_CMD_WIFI_AP_SET_TX_PWR = 0x05 DUSS_MB_CMD_WIFI_AP_GET_TX_PWR = 0x06 DUSS_MB_CMD_WIFI_AP_GET_SSID = 0x07 DUSS_MB_CMD_WIFI_AP_SET_SSID = 0x08 DUSS_MB_CMD_WIFI_AP_PUSH_RSSI = 0x09 DUSS_MB_CMD_WIFI_AP_GET_ANT_RSSI = 0x0A DUSS_MB_CMD_WIFI_AP_SET_MAC_ADDR = 0x0B DUSS_MB_CMD_WIFI_AP_GET_MAC_ADDR = 0x0C DUSS_MB_CMD_WIFI_AP_SET_PASSPHRASE = 0x0D DUSS_MB_CMD_WIFI_AP_GET_PASSPHRASE = 0x0E DUSS_MB_CMD_WIFI_AP_FACTORY_RESET = 0x0F DUSS_MB_CMD_WIFI_AP_SET_BAND = 0x10 DUSS_MB_CMD_WIFI_AP_PUSH_STA_MAC = 0x11 DUSS_MB_CMD_WIFI_AP_GET_PHY_PARAM = 0x12 DUSS_MB_CMD_WIFI_AP_SET_PWR_MODE = 0x13 DUSS_MB_CMD_WIFI_AP_CALIBRATE = 0x14 DUSS_MB_CMD_WIFI_AP_RESTART = 0x15 DUSS_MB_CMD_WIFI_AP_UNDEFINED1 = 0x16 DUSS_MB_CMD_WIFI_AP_UNDEFINED2 = 0x17 DUSS_MB_CMD_WIFI_AP_UNDEFINED3 = 0x18 DUSS_MB_CMD_WIFI_AP_UNDEFINED4 = 0x19 DUSS_MB_CMD_WIFI_AP_UNDEFINED5 = 0x1A DUSS_MB_CMD_WIFI_AP_UNDEFINED6 = 0x1B DUSS_MB_CMD_WIFI_AP_UNDEFINED7 = 0x1C DUSS_MB_CMD_WIFI_AP_UNDEFINED8 = 0x1D DUSS_MB_CMD_WIFI_AP_UNDEFINED9 = 0x1E DUSS_MB_CMD_WIFI_AP_UNDEFINEDA = 0x1F DUSS_MB_CMD_WIFI_AP_GET_FREQ = 0x20 DUSS_MB_CMD_WIFI_AP_SET_BW = 0x21 DUSS_MB_CMD_WIFI_AP_UNDEFINEDC = 0x22 DUSS_MB_CMD_WIFI_AP_UNDEFINEDD = 0x23 DUSS_MB_CMD_WIFI_AP_UNDEFINEDE = 0x24 DUSS_MB_CMD_WIFI_AP_UNDEFINEDF = 0x25 DUSS_MB_CMD_WIFI_AP_REALTIME_ACS = 0x26 DUSS_MB_CMD_WIFI_AP_MANUAL_SWITCH_SDR = 0x27 DUSS_MB_CMD_WIFI_AP_PUSH_CHAN_LIST = 0x28 DUSS_MB_CMD_WIFI_AP_REQ_CHAN_NOISE = 0x29 DUSS_MB_CMD_WIFI_AP_PUSH_CHAN_NOISE = 0x2A DUSS_MB_CMD_WIFI_AP_SET_HW_MODE = 0x2B DUSS_MB_CMD_WIFI_AP_SET_USR_PREF = 0x2E DUSS_MB_CMD_WIFI_AP_GET_USR_PREF = 0x2F DUSS_MB_CMD_WIFI_AP_SET_COUNTRY_CODE = 0x30 DUSS_MB_CMD_WIFI_AP_RESET_FREQ = 0x31 DUSS_MB_CMD_WIFI_AP_DEL_COUNTRY_CODE = 0x32 DUSS_MB_CMD_WIFI_AP_VERIFY_CC = 0x33 DUSS_MB_CMD_WIFI_GET_WORK_MODE = 0x39 DUSS_MB_CMD_WIFI_SET_WORK_MODE = 0x3A DUSS_MB_CMD_WIFI_CONFIG_BY_QRCODE = 0x3B DUSS_MB_CMD_WIFI_PUSH_MAC_STAT = 0x80 DUSS_MB_CMD_WIFI_SET_RC_INFO = 0x91 DUSS_MB_CMD_WIFI_UPDATE_SW_STATE = 0x92 """DM368 command set""" DUSS_MB_CMD_DM368_RESERVED = 0x00 DUSS_MB_CMD_DM368_SEND_GND_CTRL_INFO = 0x01 DUSS_MB_CMD_DM368_RECV_GND_CTRL_INFO = 0x02 DUSS_MB_CMD_DM368_SEND_UAV_CTRL_INFO = 0x03 DUSS_MB_CMD_DM368_RECV_UAV_CTRL_INFO = 0x04 DUSS_MB_CMD_DM368_SEND_GND_STAT_INFO = 0x05 DUSS_MB_CMD_DM368_SEND_UAV_STAT_INFO = 0x06 DUSS_MB_CMD_DM368_GET_APP_CONNECT_STAT = 0x0E DUSS_MB_CMD_DM368_RECYCLE_VISION_FRAME_INFO = 0x0F DUSS_MB_CMD_DM368_SET_BITRATE = 0x20 DUSS_MB_CMD_DM368_GET_BITRATE = 0x21 DUSS_MB_CMD_DM368_PUSH_STATUS = 0x30 DUSS_MB_CMD_DM368_SEND_VMEM_FD_TO_VISION = 0x31 """A9""" DUSS_MB_CMD_SET_CAM_FORMAT_MODE = 0x40 """hdvt command set""" DUSS_MB_CMD_HDVT_RESERVED = 0x00 DUSS_MB_CMD_HDVT_PUSH_OSD_DATA = 0x01 DUSS_MB_CMD_HDVT_PUSH_HOME_POINT = 0x02 DUSS_MB_CMD_HDVT_PUSH_BB_STATUS = 0x03 DUSS_MB_CMD_HDVT_WRITE_FPGA = 0x04 DUSS_MB_CMD_HDVT_READ_FPGA = 0x05 DUSS_MB_CMD_HDVT_WRITE_9363 = 0x06 DUSS_MB_CMD_HDVT_READ_9363 = 0x07 DUSS_MB_CMD_HDVT_PUSH_VT_SIGNAL_QUALITY = 0x08 DUSS_MB_CMD_HDVT_REQ_FREQ_ENERGY = 0x09 DUSS_MB_CMD_HDVT_PUSH_FREQ_ENERGY = 0x0A DUSS_MB_CMD_HDVT_PUSH_DEVICE_STATUS = 0x0B DUSS_MB_CMD_HDVT_GET_VT_CONFIG_INFO = 0x0C DUSS_MB_CMD_HDVT_SET_VT_CONFIG_INFO = 0x0D DUSS_MB_CMD_HDVT_CHANGE_USB_IF = 0x0E DUSS_MB_CMD_HDVT_RESET_68013 = 0x0F DUSS_MB_CMD_HDVT_UPGRADE = 0x10 DUSS_MB_CMD_HDVT_PUSH_WL_ENV_QUALITY = 0x11 DUSS_MB_CMD_HDVT_SET_FACTORY_TEST = 0x12 DUSS_MB_CMD_HDVT_GET_FACTORY_TEST = 0x13 DUSS_MB_CMD_HDVT_SET_MAX_VIDEO_BANDWIDTH = 0x14 DUSS_MB_CMD_HDVT_PUSH_MAX_VIDEO_BANDWIDTH = 0x15 DUSS_MB_CMD_HDVT_PUSH_DEBUG_INFO = 0x16 DUSS_MB_CMD_HDVT_PUSH_SDR_DL_FREQ_ENERGY = 0x20 DUSS_MB_CMD_HDVT_GET_SDR_VT_CONFIG_INFO = 0x21 DUSS_MB_CMD_HDVT_PUSH_SDR_DL_AUTO_VT_INFO = 0x22 DUSS_MB_CMD_HDVT_REQ_SDR_RT_STATUS = 0x23 DUSS_MB_CMD_HDVT_PUSH_SDR_UAV_RT_STATUS = 0x24 DUSS_MB_CMD_HDVT_PUSH_SDR_GND_RT_STATUS = 0x25 DUSS_MB_CMD_HDVT_SDR_DEBUG_READ = 0x26 DUSS_MB_CMD_HDVT_SDR_DEBUG_WRITE = 0x27 DUSS_MB_CMD_HDVT_REQ_SDR_LOG = 0x28 DUSS_MB_CMD_HDVT_PUSH_SDR_UL_FREQ_ENERGY = 0x29 DUSS_MB_CMD_HDVT_PUSH_SDR_UL_AUTO_VT_INFO = 0x2A DUSS_MB_CMD_HDVT_SDR_REVERT_ROLE = 0x2B DUSS_MB_CMD_HDVT_SDR_AMT_PROCESS = 0x2C DUSS_MB_CMD_HDVT_SDR_GET_LBT_STATUS = 0x2D DUSS_MB_CMD_HDVT_SDR_SET_LBT_STATUS = 0x2E DUSS_MB_CMD_HDVT_SDR_LINK_TEST = 0x2F DUSS_MB_CMD_HDVT_SDR_WIRELESS_ENV = 0x30 DUSS_MB_CMD_HDVT_SDR_SCAN_FREQ_CFG = 0x31 DUSS_MB_CMD_HDVT_SDR_FACTORY_MODE_SET = 0x32 DUSS_MB_CMD_HDVT_TRACKING_STATE_IND = 0x33 DUSS_MB_CMD_HDVT_SDR_LIVEVIEW_MODE_SET = 0x34 DUSS_MB_CMD_HDVT_SDR_LIVEVIEW_MODE_GET = 0x35 DUSS_MB_CMD_HDVT_SDR_LIVEVIEW_RATE_IND = 0x36 DUSS_MB_CMD_HDVT_ABNORMAL_EVENT_IND = 0x37 DUSS_MB_CMD_HDVT_SDR_SET_RATE = 0x38 DUSS_MB_CMD_HDVT_SET_LIVEVIEW_CONFIG = 0x39 DUSS_MB_CMD_HDVT_PUSH_DL_FREQ_ENERGY = 0x3A DUSS_MB_CMD_HDVT_TIP_INTERFERENCE = 0x3B DUSS_MB_CMD_HDVT_SDR_UPGRADE_RF_POWER = 0x3C DUSS_MB_CMD_HDVT_PUSH_SLAVE_RT_STATUS = 0x3E DUSS_MB_CMD_HDVT_PUSH_RC_CONN_STATUS = 0x3F DUSS_MB_CMD_HDVT_SET_ROBOMASTER_CNFG = 0x51 DUSS_MB_CMD_HDVT_GET_ROBOMASTER_INFO = 0x52 DUSS_MB_CMD_HDVT_GET_SDR_CP_STATUS = 0x53 DUSS_MB_CMD_HDVT_RACING_SET_MODEM_INFO = 0x41 DUSS_MB_CMD_HDVT_RACING_GET_MODEM_INFO = 0x42 """Vision command set""" DUSS_MB_CMD_VISION_RESERVED = 0x00 DUSS_MB_CMD_VISION_BINO_INFO = 0x01 DUSS_MB_CMD_VISION_MONO_INFO = 0x02 DUSS_MB_CMD_VISION_ULTRASONIC_INFO = 0x03 DUSS_MB_CMD_VISION_OA_INFO = 0x04 DUSS_MB_CMD_VISION_RELITIVE_POS = 0x05 DUSS_MB_CMD_VISION_AVOIDANCE_WARN = 0x06 DUSS_MB_CMD_VISION_OBSTACLE_INFO = 0x07 DUSS_MB_CMD_VISION_TAPGO_OA_INFO = 0x08 DUSS_MB_CMD_VISION_PUSH_VISION_DEBUG_INFO = 0x0A DUSS_MB_CMD_VISION_PUSH_CONTROL_DEBUG_INFO = 0x0B DUSS_MB_CMD_VISION_PUSH_SDK_CONTROL_CMD = 0x0F DUSS_MB_CMD_VISION_ENABLE_TRACKING_TAPTOGO = 0x10 DUSS_MB_CMD_VISION_PUSH_TARGET_SPEED_POS_INFO = 0x11 DUSS_MB_CMD_VISION_PUSH_TARGET_POS_INFO = 0x12 DUSS_MB_CMD_VISION_PUSH_TRAJECTORY = 0x13 DUSS_MB_CMD_VISION_PUSH_EXPECTED_SPEED_ANGLE = 0x14 DUSS_MB_CMD_VISION_RECEIVE_FRAME_INFO = 0x15 DUSS_MB_CMD_VISION_FIXED_WING_CTRL = 0x1d DUSS_MB_CMD_VISION_FIXED_WING_STATUS_PUSH = 0x1e DUSS_MB_CMD_VISION_FLAT_CHECK = 0x19 DUSS_MB_CMD_VISION_MARQUEE_PUSH = 0x20 DUSS_MB_CMD_VISION_TRACKING_CNF_CANCEL = 0x21 DUSS_MB_CMD_VISION_MOVE_MARQUEE_PUSH = 0x22 DUSS_MB_CMD_VISION_TRACKING_STATUS_PUSH = 0x23 DUSS_MB_CMD_VISION_POSITION_PUSH = 0x24 DUSS_MB_CMD_VISION_FLY_CTL_PUSH = 0x25 DUSS_MB_CMD_VISION_TAPGO_STATUS_PUSH = 0x26 DUSS_MB_CMD_VISION_COMMON_CTL_CMD = 0x27 DUSS_MB_CMD_VISION_GET_PARA_CMD = 0x28 DUSS_MB_CMD_VISION_SET_PARA_CMD = 0x29 DUSS_MB_CMD_VISION_COM_STATUS_UPDATE = 0x2A DUSS_MB_CMD_VISION_TA_LOCK_UPDATE = 0x2C DUSS_MB_CMD_VISION_SMART_LANDING = 0x2D DUSS_MB_CMD_VISION_FUNC_LIST_PUSH = 0x2E DUSS_MB_CMD_VISION_SENSOR_STATUS_PUSH = 0x2F DUSS_MB_CMD_VISION_SELF_CALI = 0x30 DUSS_MB_CMD_VISION_SELF_CALI_STATE = 0x32 DUSS_MB_CMD_VISION_QRCODE_MODE = 0x37 DUSS_MB_CMD_VISION_RC_PACKET = 0x46 DUSS_MB_CMD_VISION_SET_BUFFER_CONFIG = 0x47 DUSS_MB_CMD_VISION_GET_BUFFER_CONFIG = 0x48 DUSS_MB_CMD_VISION_ENABLE_SDK_FUNC = 0xA3 DUSS_MB_CMD_VISION_DETECTION_MSG_PUSH = 0xA4 DUSS_MB_CMD_VISION_GET_SDK_FUNC = 0xA5 DUSS_MB_CMD_VISION_CTRL_PARAM_SET = 0xA8 DUSS_MB_CMD_VISION_CHASSIS_CTRL_PARAM_SET = 0xA9 DUSS_MB_CMD_VISION_GIMBAL_CTRL_PARAM_SET = 0xAA DUSS_MB_CMD_VISION_LINE_DETECTION_ATTR_SET = 0xAB """Smart UAV battery command set""" DUSS_MB_CMD_BATTERY_GET_DYNAMIC_INFO = 0x02 DUSS_MB_CMD_BATTERY_GET_SINGLE_CORE_VOLT = 0x03 DUSS_MB_CMD_BATTERY_PUSH_COMMON_INFO = 0x06 DUSS_MB_CMD_SIM_RESERVED = 0x00 DUSS_MB_CMD_SIM_SET_SIM_VISION_MODE = 0x1A """Glass command set""" DUSS_MB_CMD_SIM_GET_SIM_VISION_MODE = 0x1B DUSS_MB_CMD_GLASS_LINK_STATE_IND = 0x01 DUSS_MB_CMD_GLASS_IMU_STATUS_PUSH = 0x02 DUSS_MB_CMD_GLASS_SDR_STATUS_PUSH = 0x03 DUSS_MB_CMD_GLASS_GET_HEADBELT_SN = 0x04 DUSS_MB_CMD_RM_HIT_EVENT = 0x02 DUSS_MB_CMD_RM_WATER_GUN_PARM_SET = 0x05 DUSS_MB_CMD_RM_GAME_STATE_SYNC = 0x09 DUSS_MB_CMD_RM_GAMECTRL_CMD = 0x0a DUSS_MB_CMD_RM_GAME_GROUP_CONFIG = 0x0b DUSS_MB_CMD_RM_GAME_START_END_CONFIG = 0x0c DUSS_MB_CMD_RM_SKILL_SEND = 0x0f DUSS_MB_CMD_RM_IR_EVENT = 0x10 DUSS_MB_CMD_RM_BLOOD_LED_SET = 0x11 DUSS_MB_CMD_RM_PLAY_SOUND = 0x1a DUSS_MB_CMD_RM_SET_SPEAKER_VOLUME = 0x1b DUSS_MB_CMD_RM_GET_SPEAKER_VOLUME = 0x1c DUSS_MB_CMD_RM_AUDIO_TO_APP = 0x1d DUSS_MB_CMD_RM_SET_AUDIO_STATUS = 0x1e DUSS_MB_CMD_RM_CONFIG_STATE = 0x22 DUSS_MB_CMD_RM_ATTITUDE_EVENT = 0x29 DUSS_MB_CMD_RM_ARMOR_GET_STATE = 0x31 DUSS_MB_CMD_RM_ARMOR_LED_SET = 0x32 DUSS_MB_CMD_RM_SYSTEM_LED_SET = 0x33 DUSS_MB_CMD_RM_SHOOT_EVENT = 0x50 DUSS_MB_CMD_RM_SHOOT_CMD = 0x51 DUSS_MB_CMD_RM_SHOOT_GET_STATE = 0x52 DUSS_MB_CMD_RM_SHOOT_MODE_SET = 0x53 DUSS_MB_CMD_RM_SHOOT_MODE_GET = 0x54 DUSS_MB_CMD_RM_GUN_LED_SET = 0x55 DUSS_MB_CMD_RM_SET_SIGHT_BEAD_POSITION = 0x56 DUSS_MB_CMD_RM_GET_SIGHT_BEAD_POSITION = 0x57 DUSS_MB_CMD_RM_FC_RMC = 0x60 DUSS_MB_CMD_RM_FC_GET_STATE = 0x61 DUSS_MB_CMD_RM_1860_ACTIVE_STATE_GET = 0x75 """Virtual bus command set""" DUSS_MB_CMD_VBUS_ADD_NODE = 0x01 DUSS_MB_CMD_VBUS_NODE_RESET = 0x02 DUSS_MB_CMD_VBUS_ADD_MSG = 0x03 DUSS_MB_CMD_VBUS_DEL_MSG = 0x04 DUSS_MB_CMD_VBUS_QUERY_CONF = 0x05 DUSS_MB_CMD_VBUS_SET_PUSH_FREQ = 0x06 DUSS_MB_CMD_VBUS_PUSH_CTRL = 0x07 DUSS_MB_CMD_VBUS_DATA_ANALYSIS = 0x08 """PERCEPTION ID""" DUSS_MB_CMD_PER_TOF_DATA_SET = 0x20 DUSS_MB_CMD_PER_TOF_DATA_PUSH = 0x21 """Robotic Arm command set """ DUSS_MB_CMD_ROBOTIC_GRIPPER_CTRL_SET = 0x11 DUSS_MB_CMD_ROBOTIC_GRIPPER_STATUS_GET = 0x12 DUSS_MB_CMD_ROBOTIC_ARM_MOVE_CTRL = 0x13 DUSS_MB_CMD_ROBOTIC_ARM_POSITION_GET = 0x14 DUSS_MB_CMD_ROBOTIC_SERVO_ANGLE_GET = 0x15 DUSS_MB_CMD_ROBOTIC_SERVO_MODE_SET = 0x16 DUSS_MB_CMD_ROBOTIC_SERVO_DATA_SET = 0x17 DUSS_MB_CMD_ROBOTIC_ARM_MOVE_STOP = 0x18
# ex-096 - Função que caucula área def area(a, b): s = a * b return s print('=== CAUCULO DE ÁREA ===') lar = float(input('Largura: (m) ')) comp = float(input('Comprimento: (m) ')) print(f'A área total é de {area(lar, comp)}m²')
#!/usr/bin/python class GrabzItScrapeHistory: def __init__(self, identifier, finished): self.ID = identifier self.Finished = finished
class Node: def __init__(self, chr = None): self.chr = None self.isLeaf = False self.children = {} def getChildren(self): return self.children.keys() def getChild(self, s: str): return self.children.get(s) def addChild(self, s: str): self.children[s] = Node(s) return self.children[s] # Return the node to continue. class Trie: def __init__(self): """ Initialize your data structure here. """ self.root = Node() def insert(self, word: str) -> None: """ Inserts a word into the trie. """ curr = self.root for c in word: checkChildren = curr.getChildren() if c not in checkChildren: curr = curr.addChild(c) else: curr = curr.getChild(c) curr.isLeaf = True def search(self, word: str) -> bool: """ Returns if the word is in the trie. """ curr = self.root for c in word: if not curr.getChild(c): return False curr = curr.getChild(c) if curr.isLeaf == True: return True return False def startsWith(self, prefix: str) -> bool: """ Returns if there is any word in the trie that starts with the given prefix. """ curr = self.root for c in prefix: if not curr.getChild(c): return False curr = curr.getChild(c) return True # Your Trie object will be instantiated and called as such: # obj = Trie() # obj.insert(word) # param_2 = obj.search(word) # param_3 = obj.startsWith(prefix)
#Leia varios int; 999 para o progama; mostre os números digitados e a soma deles n1 = 0 n = 0 c = 0 n1 = int(input('\033[1;33mESCREVA UM NÚMERO INTEIRO FORA 999: ')) while n1 != 999: n += n1 c += 1 n1 = int(input('\033[1;33mESCREVA UM NÚMERO INTEIRO FORA 999: ')) print('A SOMA DOS {} NÚMEROS É {}'.format(c, n))
test_input = """ 1721 979 366 299 675 1456 """ input = """ 1749 1897 881 1736 1161 1720 1676 305 264 1904 1880 1173 483 1978 1428 1635 1386 1858 1602 1916 1906 1212 1730 1777 1698 1845 1812 1922 1729 1803 1761 1901 1748 1188 1964 1935 1919 1810 1567 1849 1417 1452 54 1722 1784 1261 1744 1594 1526 1771 1762 1894 1717 1716 51 1955 1143 1741 1999 1775 1944 1983 1962 1198 1553 1835 1867 1662 1461 1811 1764 1726 1927 1179 1468 1948 1813 1213 1905 1371 1751 1215 1392 1798 1823 1815 1923 1942 1987 1887 1838 1395 2007 1479 1752 1945 1621 1538 1937 565 1969 1493 1291 1438 1578 1770 2005 1703 1712 1943 2003 1499 1903 1760 1950 1990 1185 1809 1337 1358 1743 1707 1671 1788 1785 1972 1863 1690 1512 1963 1825 1460 1828 1902 1874 1755 1951 1830 1767 1787 1373 1709 1514 1807 1791 1724 1859 1590 1976 1572 1947 1913 1995 1728 1624 1731 1706 1782 1994 1851 1843 1773 1982 1685 2001 1346 1200 1746 1520 972 1834 1909 2008 1733 1960 1280 1879 1203 1979 1133 1647 1282 1684 860 1444 1780 1989 1795 1819 1797 1842 1796 1457 1839 1853 1711 1883 1146 1734 1389 """ def run1(input): nums = sorted(map(int, input.strip().split())) for i, n in enumerate(nums): for j, m in enumerate(nums): if i == j: continue if n + m == 2020: print(n, m, n*m) print("part 1") print("test input") run1(test_input) print("puzzle input") run1(input) def run2(input): nums = sorted(map(int, input.strip().split())) for i, n in enumerate(nums): for j, m in enumerate(nums): for k, p in enumerate(nums): if not k > j > i: continue if n + m + p == 2020: print(n, m, p, n*m*p) print() print("part 2") print("test input") run2(test_input) print("puzzle input") run2(input)
n=int(input()) d=list(map(int,input().split())) g=[[]for i in range(n)] for i in range(n-1): s,t=list(map(int,input().split())) s-=1 t-=1 g[s].append(t) g[t].append(s) class reroot: def __init__(self,g): self.e=(0,0) self.g =g self.p_list=[-1]*len(g) self.p_checked=[0]*len(g) self.table=[map()for i in range(len(g))] self.p_table=[self.e]*len(g) self.ans=[self.e]*len(g) self.dfs1(0,-1) for i in range(len(g)): self.ans[i]=self.dfs2(i,-1) def dfs1(self,n,p): self.p_list[n]=p tmp1,tmp2=self.e tmp=[self.e]*len(self.g[n]) for i in range(len(self.g[n])): t=self.g[n][i] if t==p: continue self.table[n][t]=tmp1 tmp[i]=self.dfs1(t,n) tmp1=self.f(tmp1,tmp[i]) for i in reversed(range(len(self.g[n]))): t=self.g[n][i] if t==p: continue self.table[n][t]=self.f(self.table[n][t],tmp2) tmp2=self.f(tmp[i],tmp2) self.table[n][p]=tmp1 return self.fix(self.table[n][p],n,p) def dfs2(self,n,p): if n==-1: return self.e if self.p_checked[n]==0: self.p_checked[n]=1 self.p_table[n]=self.dfs2(self.p_list[n],n) if p==-1: return self.f(self.table[n][self.p_list[n]],self.p_table[n]) else: return self.fix(self.f(self.table[n][p],self.p_table[n]),n,p) def query(self): return self.ans def f(self,s,t): return (s[0]+t[0],s[1]+t[1]) def fix(self,s,n,p): return (s[0]+s[1]+d[n],s[1]+d[n]) e=reroot(g).query() for d in e: print(d[0])
# wczytanie napisow with open('../dane/binarne.txt') as f: data = [] for word in f.readlines(): data.append(word[:-1]) # licznik double_cycle = 0 # rekord best = '' # przejscie po kazdym napisie for word in data: # jezeli obie polowki sa takie same to napis jest dwucykliczny if word[:len(word)//2] == word[len(word)//2:]: double_cycle += 1 # jezeli jest dluzszy niz aktualny rekord: zapisz if len(word) > len(best): best = word # wyswietlenie odpowiedzi answer = f'4.1. Liczba dwucyklicznych napisow: {double_cycle}; Najdluzszy taki napis: {best}; Ma dlugosc: {len(best)}' print(answer)
"""Define constants for the Somfy component.""" DOMAIN = "somfy" COORDINATOR = "coordinator"
# 0 < pwr < 6 and root^pwr = user input n = int(input("Enter an integer: ")) root, pwd = 0, 0 while root <= n: pwd += 1 if pwd == 6: pwd = 1 root += 1 if root ** pwd == n: print(root, "^", pwd, "is", n)