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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/widgets/my_password_field.dart | import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
import 'package:flutter/material.dart';
class MyPasswordField extends StatelessWidget {
const MyPasswordField(
{Key? key,
required this.hintText,
required this.isPasswordVisible,
required this.onTap,
required this.textEditingController})
: super(key: key);
final String hintText;
final bool isPasswordVisible;
final Function onTap;
final TextEditingController textEditingController;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 10),
child: TextField(
controller: textEditingController,
style: kBodyText.copyWith(
color: Colors.white,
),
obscureText: isPasswordVisible,
keyboardType: TextInputType.text,
textInputAction: TextInputAction.done,
decoration: InputDecoration(
suffixIcon: Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: IconButton(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onPressed: () {
onTap();
},
icon: Icon(
isPasswordVisible ? Icons.visibility : Icons.visibility_off,
color: Colors.grey,
),
),
),
contentPadding: EdgeInsets.all(20),
hintText: hintText,
hintStyle: kBodyText,
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.grey,
width: 1,
),
borderRadius: BorderRadius.circular(18),
),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.white,
width: 1,
),
borderRadius: BorderRadius.circular(18),
),
),
),
);
}
}
| 2,001 | my_password_field | dart | en | dart | code | {"qsc_code_num_words": 147, "qsc_code_num_chars": 2001.0, "qsc_code_mean_word_length": 7.91836735, "qsc_code_frac_words_unique": 0.55782313, "qsc_code_frac_chars_top_2grams": 0.04123711, "qsc_code_frac_chars_top_3grams": 0.03264605, "qsc_code_frac_chars_top_4grams": 0.04982818, "qsc_code_frac_chars_dupe_5grams": 0.21821306, "qsc_code_frac_chars_dupe_6grams": 0.06872852, "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.00900225, "qsc_code_frac_chars_whitespace": 0.33383308, "qsc_code_size_file_byte": 2001.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 30.78461538, "qsc_code_frac_chars_alphabet": 0.86421605, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.31746032, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.04347826, "qsc_code_frac_chars_long_word_length": 0.04347826, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/widgets/my_text_field.dart | import 'package:flutter/material.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
class MyTextField extends StatelessWidget {
const MyTextField(
{Key? key,
required this.hintText,
required this.inputType,
required this.textEditingController})
: super(key: key);
final String hintText;
final TextInputType inputType;
final TextEditingController textEditingController;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 10),
child: TextField(
controller: textEditingController,
style: kBodyText.copyWith(color: Colors.white),
keyboardType: inputType,
textInputAction: TextInputAction.next,
decoration: InputDecoration(
contentPadding: EdgeInsets.all(20),
hintText: hintText,
hintStyle: kBodyText,
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.grey,
width: 1,
),
borderRadius: BorderRadius.circular(18),
),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.white,
width: 1,
),
borderRadius: BorderRadius.circular(18),
),
),
),
);
}
}
| 1,384 | my_text_field | dart | en | dart | code | {"qsc_code_num_words": 108, "qsc_code_num_chars": 1384.0, "qsc_code_mean_word_length": 7.93518519, "qsc_code_frac_words_unique": 0.59259259, "qsc_code_frac_chars_top_2grams": 0.042007, "qsc_code_frac_chars_top_3grams": 0.03733956, "qsc_code_frac_chars_top_4grams": 0.10035006, "qsc_code_frac_chars_dupe_5grams": 0.20770128, "qsc_code_frac_chars_dupe_6grams": 0.09334889, "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.0102459, "qsc_code_frac_chars_whitespace": 0.29479769, "qsc_code_size_file_byte": 1384.0, "qsc_code_num_lines": 46.0, "qsc_code_num_chars_line_max": 69.0, "qsc_code_num_chars_line_mean": 30.08695652, "qsc_code_frac_chars_alphabet": 0.86782787, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.27272727, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.06286127, "qsc_code_frac_chars_long_word_length": 0.06286127, "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/actors/mobs/NewbornElemental.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Chill;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Frost;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.Embers;
import com.shatteredpixel.shatteredpixeldungeon.sprites.NewbornElementalSprite;
public class NewbornElemental extends Elemental {
{
spriteClass = NewbornElementalSprite.class;
HT = 65;
HP = HT/2; //32
defenseSkill = 12;
EXP = 7;
properties.add(Property.MINIBOSS);
}
@Override
public void add(Buff buff) {
if (buff instanceof Frost || buff instanceof Chill) {
die(buff);
} else {
super.add(buff);
}
}
@Override
public void die(Object cause) {
super.die(cause);
Dungeon.level.drop( new Embers(), pos ).sprite.drop();
}
}
| 1,736 | NewbornElemental | java | en | java | code | {"qsc_code_num_words": 224, "qsc_code_num_chars": 1736.0, "qsc_code_mean_word_length": 5.83928571, "qsc_code_frac_words_unique": 0.55803571, "qsc_code_frac_chars_top_2grams": 0.09097859, "qsc_code_frac_chars_top_3grams": 0.20336391, "qsc_code_frac_chars_top_4grams": 0.20183486, "qsc_code_frac_chars_dupe_5grams": 0.18883792, "qsc_code_frac_chars_dupe_6grams": 0.16896024, "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.01712329, "qsc_code_frac_chars_whitespace": 0.15898618, "qsc_code_size_file_byte": 1736.0, "qsc_code_num_lines": 59.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 29.42372881, "qsc_code_frac_chars_alphabet": 0.87876712, "qsc_code_frac_chars_comments": 0.45218894, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06666667, "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.3, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/widgets/my_sensor_card.dart | import 'package:chart_sparkline/chart_sparkline.dart';
import 'package:flutter/material.dart';
import 'package:iot_firestore_flutter_app/const/custom_colors.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
class MySensorCard extends StatelessWidget {
const MySensorCard(
{Key? key,
required this.value,
required this.name,
required this.assetImage,
required this.unit,
required this.trendData,
required this.linePoint})
: super(key: key);
final double value;
final String name;
final String unit;
final List<double> trendData;
final Color linePoint;
final AssetImage assetImage;
@override
Widget build(BuildContext context) {
return Card(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(18),
),
shadowColor: Colors.white,
elevation: 24,
color: kMainBG,
child: Container(
width: MediaQuery.of(context).size.width * 0.8,
height: 200,
child: Row(
children: [
Expanded(
flex: 1,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Image(
width: 60,
image: assetImage,
),
SizedBox(
height: 10,
),
Text(name, style: kBodyText.copyWith(color: Colors.white)),
SizedBox(
height: 10,
),
Text('$value$unit',
style: kHeadline.copyWith(color: Colors.white)),
],
),
),
Expanded(
flex: 1,
child: Container(
padding:
const EdgeInsets.symmetric(vertical: 30, horizontal: 8),
child: Sparkline(
data: trendData,
lineWidth: 5.0,
lineColor: Colors.white,
averageLine: true,
fillMode: FillMode.above,
sharpCorners: false,
pointsMode: PointsMode.last,
pointSize: 20,
pointColor: linePoint,
useCubicSmoothing: true,
),
),
),
],
),
));
}
}
| 2,605 | my_sensor_card | dart | en | dart | code | {"qsc_code_num_words": 194, "qsc_code_num_chars": 2605.0, "qsc_code_mean_word_length": 6.45360825, "qsc_code_frac_words_unique": 0.51546392, "qsc_code_frac_chars_top_2grams": 0.05750799, "qsc_code_frac_chars_top_3grams": 0.04073482, "qsc_code_frac_chars_top_4grams": 0.03194888, "qsc_code_frac_chars_dupe_5grams": 0.0798722, "qsc_code_frac_chars_dupe_6grams": 0.0798722, "qsc_code_frac_chars_dupe_7grams": 0.0798722, "qsc_code_frac_chars_dupe_8grams": 0.0798722, "qsc_code_frac_chars_dupe_9grams": 0.0798722, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01631543, "qsc_code_frac_chars_whitespace": 0.4353167, "qsc_code_size_file_byte": 2605.0, "qsc_code_num_lines": 83.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 31.38554217, "qsc_code_frac_chars_alphabet": 0.83480625, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.3, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07677543, "qsc_code_frac_chars_long_word_length": 0.07255278, "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/actors/mobs/Guard.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Cripple;
import com.shatteredpixel.shatteredpixeldungeon.effects.Chains;
import com.shatteredpixel.shatteredpixeldungeon.effects.Pushing;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GuardSprite;
import com.watabou.utils.Bundle;
import com.watabou.utils.Callback;
import com.watabou.utils.Random;
public class Guard extends Mob {
//they can only use their chains once
private boolean chainsUsed = false;
{
spriteClass = GuardSprite.class;
HP = HT = 40;
defenseSkill = 10;
EXP = 7;
maxLvl = 14;
loot = Generator.Category.ARMOR;
lootChance = 0.1667f;
properties.add(Property.UNDEAD);
HUNTING = new Hunting();
}
@Override
public int damageRoll() {
return Random.NormalIntRange(4, 12);
}
private boolean chain(int target){
if (chainsUsed || enemy.properties().contains(Property.IMMOVABLE))
return false;
Ballistica chain = new Ballistica(pos, target, Ballistica.PROJECTILE);
if (chain.collisionPos != enemy.pos
|| chain.path.size() < 2
|| Dungeon.level.pit[chain.path.get(1)])
return false;
else {
int newPos = -1;
for (int i : chain.subPath(1, chain.dist)){
if (!Dungeon.level.solid[i] && Actor.findChar(i) == null){
newPos = i;
break;
}
}
if (newPos == -1){
return false;
} else {
final int newPosFinal = newPos;
this.target = newPos;
yell( Messages.get(this, "scorpion") );
sprite.parent.add(new Chains(sprite.center(), enemy.sprite.center(), new Callback() {
public void call() {
Actor.addDelayed(new Pushing(enemy, enemy.pos, newPosFinal, new Callback(){
public void call() {
enemy.pos = newPosFinal;
Dungeon.level.occupyCell(enemy);
Cripple.prolong(enemy, Cripple.class, 4f);
if (enemy == Dungeon.hero) {
Dungeon.hero.interrupt();
Dungeon.observe();
GameScene.updateFog();
}
}
}), -1);
next();
}
}));
}
}
chainsUsed = true;
return true;
}
@Override
public int attackSkill( Char target ) {
return 14;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 8);
}
@Override
protected Item createLoot() {
Armor loot;
do{
loot = Generator.randomArmor();
//50% chance of re-rolling tier 4 or 5 items
} while (loot.tier >= 4 && Random.Int(2) == 0);
loot.level(0);
return loot;
}
private final String CHAINSUSED = "chainsused";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put(CHAINSUSED, chainsUsed);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
chainsUsed = bundle.getBoolean(CHAINSUSED);
}
private class Hunting extends Mob.Hunting{
@Override
public boolean act( boolean enemyInFOV, boolean justAlerted ) {
enemySeen = enemyInFOV;
if (!chainsUsed
&& enemyInFOV
&& !isCharmedBy( enemy )
&& !canAttack( enemy )
&& Dungeon.level.distance( pos, enemy.pos ) < 5
&& Random.Int(3) == 0
&& chain(enemy.pos)){
return false;
} else {
return super.act( enemyInFOV, justAlerted );
}
}
}
}
| 4,632 | Guard | java | en | java | code | {"qsc_code_num_words": 538, "qsc_code_num_chars": 4632.0, "qsc_code_mean_word_length": 6.04089219, "qsc_code_frac_words_unique": 0.4070632, "qsc_code_frac_chars_top_2grams": 0.04430769, "qsc_code_frac_chars_top_3grams": 0.16369231, "qsc_code_frac_chars_top_4grams": 0.176, "qsc_code_frac_chars_dupe_5grams": 0.18676923, "qsc_code_frac_chars_dupe_6grams": 0.01723077, "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.01436552, "qsc_code_frac_chars_whitespace": 0.1884715, "qsc_code_size_file_byte": 4632.0, "qsc_code_num_lines": 170.0, "qsc_code_num_chars_line_max": 90.0, "qsc_code_num_chars_line_mean": 27.24705882, "qsc_code_frac_chars_alphabet": 0.85022612, "qsc_code_frac_chars_comments": 0.18609672, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12096774, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00477454, "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.08064516, "qsc_codejava_score_lines_no_logic": 0.29032258, "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": 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/actors/mobs/Wraith.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShadowParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Grim;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.WraithSprite;
import com.watabou.noosa.tweeners.AlphaTweener;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Wraith extends Mob {
private static final float SPAWN_DELAY = 2f;
private int level;
{
spriteClass = WraithSprite.class;
HP = HT = 1;
EXP = 0;
maxLvl = -2;
flying = true;
properties.add(Property.UNDEAD);
}
private static final String LEVEL = "level";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEVEL, level );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
level = bundle.getInt( LEVEL );
adjustStats( level );
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 1 + level/2, 2 + level );
}
@Override
public int attackSkill( Char target ) {
return 10 + level;
}
public void adjustStats( int level ) {
this.level = level;
defenseSkill = attackSkill( null ) * 5;
enemySeen = true;
}
@Override
public boolean reset() {
state = WANDERING;
return true;
}
public static void spawnAround( int pos ) {
for (int n : PathFinder.NEIGHBOURS4) {
int cell = pos + n;
if (Dungeon.level.passable[cell] && Actor.findChar( cell ) == null) {
spawnAt( cell );
}
}
}
public static Wraith spawnAt( int pos ) {
if (Dungeon.level.passable[pos] && Actor.findChar( pos ) == null) {
Wraith w = new Wraith();
w.adjustStats( Dungeon.depth );
w.pos = pos;
w.state = w.HUNTING;
GameScene.add( w, SPAWN_DELAY );
w.sprite.alpha( 0 );
w.sprite.parent.add( new AlphaTweener( w.sprite, 1, 0.5f ) );
w.sprite.emitter().burst( ShadowParticle.CURSE, 5 );
return w;
} else {
return null;
}
}
{
immunities.add( Grim.class );
immunities.add( Terror.class );
}
}
| 3,266 | Wraith | java | en | java | code | {"qsc_code_num_words": 403, "qsc_code_num_chars": 3266.0, "qsc_code_mean_word_length": 5.80148883, "qsc_code_frac_words_unique": 0.44416873, "qsc_code_frac_chars_top_2grams": 0.04619333, "qsc_code_frac_chars_top_3grams": 0.14627887, "qsc_code_frac_chars_top_4grams": 0.15055603, "qsc_code_frac_chars_dupe_5grams": 0.12318221, "qsc_code_frac_chars_dupe_6grams": 0.0239521, "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.01235492, "qsc_code_frac_chars_whitespace": 0.18218004, "qsc_code_size_file_byte": 3266.0, "qsc_code_num_lines": 125.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 26.128, "qsc_code_frac_chars_alphabet": 0.86297267, "qsc_code_frac_chars_comments": 0.23913043, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06097561, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00201207, "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.09756098, "qsc_codejava_score_lines_no_logic": 0.30487805, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Monk.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Amok;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Imp;
import com.shatteredpixel.shatteredpixeldungeon.items.KindOfWeapon;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Food;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Gauntlet;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Gloves;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.MonkSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class Monk extends Mob {
{
spriteClass = MonkSprite.class;
HP = HT = 70;
defenseSkill = 30;
EXP = 11;
maxLvl = 21;
loot = new Food();
lootChance = 0.083f;
properties.add(Property.UNDEAD);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 12, 25 );
}
@Override
public int attackSkill( Char target ) {
return 30;
}
@Override
protected float attackDelay() {
return super.attackDelay()*0.5f;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 2);
}
@Override
public void rollToDropLoot() {
Imp.Quest.process( this );
super.rollToDropLoot();
}
private int hitsToDisarm = 0;
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (enemy == Dungeon.hero) {
Hero hero = Dungeon.hero;
KindOfWeapon weapon = hero.belongings.weapon;
if (weapon != null
&& !(weapon instanceof Gloves)
&& !(weapon instanceof Gauntlet)
&& !weapon.cursed) {
if (hitsToDisarm == 0) hitsToDisarm = Random.NormalIntRange(4, 8);
if (--hitsToDisarm == 0) {
hero.belongings.weapon = null;
Dungeon.quickslot.convertToPlaceholder(weapon);
weapon.updateQuickslot();
Dungeon.level.drop(weapon, hero.pos).sprite.drop();
GLog.w(Messages.get(this, "disarm", weapon.name()));
}
}
}
return damage;
}
{
immunities.add( Amok.class );
immunities.add( Terror.class );
}
private static String DISARMHITS = "hitsToDisarm";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put(DISARMHITS, hitsToDisarm);
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
hitsToDisarm = bundle.getInt(DISARMHITS);
}
}
| 3,592 | Monk | java | en | java | code | {"qsc_code_num_words": 415, "qsc_code_num_chars": 3592.0, "qsc_code_mean_word_length": 6.38795181, "qsc_code_frac_words_unique": 0.43373494, "qsc_code_frac_chars_top_2grams": 0.05092418, "qsc_code_frac_chars_top_3grams": 0.20067899, "qsc_code_frac_chars_top_4grams": 0.21576763, "qsc_code_frac_chars_dupe_5grams": 0.26103357, "qsc_code_frac_chars_dupe_6grams": 0.10788382, "qsc_code_frac_chars_dupe_7grams": 0.04526594, "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.01458886, "qsc_code_frac_chars_whitespace": 0.16035635, "qsc_code_size_file_byte": 3592.0, "qsc_code_num_lines": 131.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 27.41984733, "qsc_code_frac_chars_alphabet": 0.86438992, "qsc_code_frac_chars_comments": 0.21742762, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09195402, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00640342, "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.09195402, "qsc_codejava_score_lines_no_logic": 0.29885057, "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} | 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/actors/mobs/Crab.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.food.MysteryMeat;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CrabSprite;
import com.watabou.utils.Random;
public class Crab extends Mob {
{
spriteClass = CrabSprite.class;
HP = HT = 15;
defenseSkill = 5;
baseSpeed = 2f;
EXP = 4;
maxLvl = 9;
loot = new MysteryMeat();
lootChance = 0.167f;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 1, 7 );
}
@Override
public int attackSkill( Char target ) {
return 12;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 4);
}
}
| 1,524 | Crab | java | en | java | code | {"qsc_code_num_words": 202, "qsc_code_num_chars": 1524.0, "qsc_code_mean_word_length": 5.51485149, "qsc_code_frac_words_unique": 0.62376238, "qsc_code_frac_chars_top_2grams": 0.06104129, "qsc_code_frac_chars_top_3grams": 0.13644524, "qsc_code_frac_chars_top_4grams": 0.05116697, "qsc_code_frac_chars_dupe_5grams": 0.07360862, "qsc_code_frac_chars_dupe_6grams": 0.0502693, "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.0266129, "qsc_code_frac_chars_whitespace": 0.18635171, "qsc_code_size_file_byte": 1524.0, "qsc_code_num_lines": 58.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.27586207, "qsc_code_frac_chars_alphabet": 0.87177419, "qsc_code_frac_chars_comments": 0.51246719, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10344828, "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.10344828, "qsc_codejava_score_lines_no_logic": 0.31034483, "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} |
00jacs/sveltekit-ultrafast | src/routes/blog/+page.svelte | <script lang="ts">
import { Icon, BookOpen } from 'svelte-hero-icons';
export let data;
</script>
<div class="mx-auto my-6 max-w-5xl px-4 py-12">
{#if data.posts}
<div class="flex items-center justify-center gap-4">
{#each data.posts as post}
<article class="mb-6 max-w-64 rounded-box border border-base-200 px-6 py-6">
<h2 class="mb-4 text-lg font-semibold leading-6 tracking-tight">
{post.headline}
</h2>
<p class="text-base-content-secondary mb-4 text-sm leading-5">{post.excerpt}</p>
<a href={`/blog/${post.slug}`} class="btn btn-outline ml-auto border-base-200">
<div class="flex items-center justify-end gap-2">
<span class="block"> Read more </span>
<Icon src={BookOpen} class="mt-[0.8px] h-4 w-4" />
</div>
</a>
</article>
{/each}
</div>
{:else}
<div class="text-center">
<p class="mb-2 text-center text-2xl font-semibold">No posts found yet...</p>
<p class="text-base-content-secondary">Stay tuned!</p>
</div>
{/if}
</div>
| 1,026 | +page | svelte | en | svelte | code | {"qsc_code_num_words": 168, "qsc_code_num_chars": 1026.0, "qsc_code_mean_word_length": 3.78571429, "qsc_code_frac_words_unique": 0.5, "qsc_code_frac_chars_top_2grams": 0.05031447, "qsc_code_frac_chars_top_3grams": 0.01572327, "qsc_code_frac_chars_top_4grams": 0.05345912, "qsc_code_frac_chars_dupe_5grams": 0.18867925, "qsc_code_frac_chars_dupe_6grams": 0.18867925, "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.03584229, "qsc_code_frac_chars_whitespace": 0.18421053, "qsc_code_size_file_byte": 1026.0, "qsc_code_num_lines": 33.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 31.09090909, "qsc_code_frac_chars_alphabet": 0.72401434, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13793103, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.03448276, "qsc_code_frac_chars_string_length": 0.4122807, "qsc_code_frac_chars_long_word_length": 0.05263158, "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} |
00ffcc/chunkRWKV6 | cuda/continous_inter.cu | #include <stdio.h>
#include <assert.h>
#include "ATen/ATen.h"
typedef at::BFloat16 bf16;
typedef at::Half fp16;
typedef float fp32;
template <typename F>
__global__ void inter_fwd_kernel(const int B, const int T, const int C, const int H, const int CK, float *__restrict__ _state, int * __restrict__ _state_idx, int * __restrict__ _length,
const F *__restrict__ const _r, const float *__restrict__ _w, float *__restrict__ const _y)
// CK : chunk nums
{
const int b = blockIdx.x;
const int ck= blockIdx.y+1;
const int h = blockIdx.z;
const int i = threadIdx.x;
__shared__ float r[_N_], cw[_N_];
float state[_N_];
int t0 = _state_idx[ck*T-1]*H*_N_*_N_ + h*_N_*_N_ + i*_N_;
#pragma unroll
for (int j = 0; j < _N_; j++)
state[j] = _state[t0 + j];
cw[i]=1.0f;
__syncthreads();
// process y
const int t_end = b*CK*T*C + ck*T*C + h*_N_ + i + _length[b*CK + ck]*C;
for (int t = b*CK*T*C + ck*T*C + h*_N_ + i; t < t_end; t += C)
{
__syncthreads();
r[i] = float(_r[t]);
__syncthreads();
float y = _y[t];
#pragma unroll
for (int j = 0; j < _N_; j += 4)
{
const float4& r_ = (float4&)(r[j]);
const float4& w_ = (float4&)(cw[j]);
const float4& state_ = (float4&)(state[j]);
y += r_.x*w_.x*state_.x;
y += r_.y*w_.y*state_.y;
y += r_.z*w_.z*state_.z;
y += r_.w*w_.w*state_.w;
}
_y[t] = y;
__syncthreads();
cw[i] *= exp(-exp(_w[t]));
__syncthreads();
}
}
void inter_fwd_bf16(int B, int T, int C, int H, int CK, float *state, int *_state_idx, int *_length, bf16 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, _state_idx, _length, r, w, y);
}
void inter_fwd_fp16(int B, int T, int C, int H, int CK, float *state, int *_state_idx, int *_length, fp16 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, _state_idx, _length, r, w, y);
}
void inter_fwd_fp32(int B, int T, int C, int H, int CK, float *state, int *_state_idx, int *_length, fp32 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, _state_idx, _length, r, w, y);
} | 2,454 | continous_inter | cu | en | cuda | code | {"qsc_code_num_words": 410, "qsc_code_num_chars": 2454.0, "qsc_code_mean_word_length": 2.96829268, "qsc_code_frac_words_unique": 0.14390244, "qsc_code_frac_chars_top_2grams": 0.06573541, "qsc_code_frac_chars_top_3grams": 0.01232539, "qsc_code_frac_chars_top_4grams": 0.01972062, "qsc_code_frac_chars_dupe_5grams": 0.39523418, "qsc_code_frac_chars_dupe_6grams": 0.39523418, "qsc_code_frac_chars_dupe_7grams": 0.39523418, "qsc_code_frac_chars_dupe_8grams": 0.39523418, "qsc_code_frac_chars_dupe_9grams": 0.39523418, "qsc_code_frac_chars_dupe_10grams": 0.35743632, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02480271, "qsc_code_frac_chars_whitespace": 0.27709861, "qsc_code_size_file_byte": 2454.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 187.0, "qsc_code_num_chars_line_mean": 37.18181818, "qsc_code_frac_chars_alphabet": 0.66121759, "qsc_code_frac_chars_comments": 0.01303993, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.21311475, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00453983, "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.06557377} | 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} |
00ffcc/chunkRWKV6 | cuda/continous_rwkv6.cu | #include <stdio.h>
#include <assert.h>
#include "ATen/ATen.h"
typedef at::BFloat16 bf16;
typedef at::Half fp16;
typedef float fp32;
template <typename F>
__global__ void kernel_forward(const int B, const int T, const int C, const int H, const int CT,
float *__restrict__ _state ,
const int *__restrict__ _state_idx,
const F *__restrict__ const _r ,
const F *__restrict__ const _k ,
const F *__restrict__ const _v ,
const float *__restrict__ _w ,
float *__restrict__ _w_orig ,
const float *__restrict__ _u ,
float *__restrict__ const _y )
{
const int b = blockIdx.x / H;
const int h = blockIdx.x % H;
const int i = threadIdx.x;
_state_idx += b*T;
__shared__ float r[_N_], k[_N_], u[_N_], w[_N_];
int current_state_idx = -1, state_idx0 = _state_idx[0];
float state[_N_];
float w_orig = 0;
u[i] = _u[h*_N_ + i];
__syncthreads();
int t_end = b*T*C + h*_N_ + i + ((b+1)*T <= CT ? T : CT - b*T)*C;
for (int t = b*T*C + h*_N_ + i, ti = 0; t < t_end; t += C, ti++)
{
__syncthreads();
if (_state_idx[ti] != current_state_idx)
{
// store
if (current_state_idx != -1)
{
int t0 = current_state_idx*H*_N_*_N_ + h*_N_*_N_ + i*_N_;
#pragma unroll
for (int j = 0; j < _N_; j++)
_state[t0 + j] = state[j];
}
if (current_state_idx == state_idx0)
_w_orig[b*C + h*_N_ + i] = exp(w_orig);
current_state_idx = _state_idx[ti];
// load
int t0 = current_state_idx*H*_N_*_N_ + h*_N_*_N_ + i*_N_;
#pragma unroll
for (int j = 0; j < _N_; j++)
state[j] = _state[t0 + j];
}
const float ww = -exp(_w[t]);
w_orig += ww;
w[i] = exp(ww);
r[i] = float(_r[t]);
k[i] = float(_k[t]);
__syncthreads();
const float v = float(_v[t]);
float y = 0;
#pragma unroll
for (int j = 0; j < _N_; j+=4)
{
const float4& r_ = (float4&)(r[j]);
const float4& k_ = (float4&)(k[j]);
const float4& w_ = (float4&)(w[j]);
const float4& u_ = (float4&)(u[j]);
float4& s = (float4&)(state[j]);
float4 x;
x.x = k_.x * v;
x.y = k_.y * v;
x.z = k_.z * v;
x.w = k_.w * v;
y += r_.x * (u_.x * x.x + s.x);
y += r_.y * (u_.y * x.y + s.y);
y += r_.z * (u_.z * x.z + s.z);
y += r_.w * (u_.w * x.w + s.w);
s.x = s.x * w_.x + x.x;
s.y = s.y * w_.y + x.y;
s.z = s.z * w_.z + x.z;
s.w = s.w * w_.w + x.w;
}
_y[t] = y;
}
int t0 = current_state_idx*H*_N_*_N_ + h*_N_*_N_ + i*_N_;
#pragma unroll
for (int j = 0; j < _N_; j++)
_state[t0 + j] = state[j];
if (current_state_idx == state_idx0)
_w_orig[b*C + h*_N_ + i] = exp(w_orig);
}
void cuda_forward_bf16(int B, int T, int C, int H, int CT, float *state, int *_state_idx, bf16 *r, bf16 *k, bf16 *v, float *w, float *w_orig, float *u, float *y)
{
assert(H*_N_ == C);
kernel_forward<<<dim3(B * H), dim3(_N_)>>>(B, T, C, H, CT, state, _state_idx, r, k, v, w, w_orig, u, y);
}
void cuda_forward_fp16(int B, int T, int C, int H, int CT, float *state, int *_state_idx, fp16 *r, fp16 *k, fp16 *v, float *w, float *w_orig, float *u, float *y)
{
assert(H*_N_ == C);
kernel_forward<<<dim3(B * H), dim3(_N_)>>>(B, T, C, H, CT, state, _state_idx, r, k, v, w, w_orig, u, y);
}
void cuda_forward_fp32(int B, int T, int C, int H, int CT, float *state, int *_state_idx, fp32 *r, fp32 *k, fp32 *v, float *w, float *w_orig, float *u, float *y)
{
assert(H*_N_ == C);
kernel_forward<<<dim3(B * H), dim3(_N_)>>>(B, T, C, H, CT, state, _state_idx, r, k, v, w, w_orig, u, y);
}
| 4,264 | continous_rwkv6 | cu | en | cuda | code | {"qsc_code_num_words": 654, "qsc_code_num_chars": 4264.0, "qsc_code_mean_word_length": 2.67737003, "qsc_code_frac_words_unique": 0.09938838, "qsc_code_frac_chars_top_2grams": 0.09137636, "qsc_code_frac_chars_top_3grams": 0.0770988, "qsc_code_frac_chars_top_4grams": 0.01142204, "qsc_code_frac_chars_dupe_5grams": 0.44374643, "qsc_code_frac_chars_dupe_6grams": 0.42318675, "qsc_code_frac_chars_dupe_7grams": 0.41633352, "qsc_code_frac_chars_dupe_8grams": 0.41633352, "qsc_code_frac_chars_dupe_9grams": 0.41633352, "qsc_code_frac_chars_dupe_10grams": 0.40319817, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02653525, "qsc_code_frac_chars_whitespace": 0.38133208, "qsc_code_size_file_byte": 4264.0, "qsc_code_num_lines": 114.0, "qsc_code_num_chars_line_max": 162.0, "qsc_code_num_chars_line_mean": 37.40350877, "qsc_code_frac_chars_alphabet": 0.63722517, "qsc_code_frac_chars_comments": 0.00398687, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.24271845, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00259006, "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.03883495} | 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} |
0015/ESP32-OpenCV-Projects | esp32/examples/color_code/components/lvgl_gui/lvgl/src/lv_font/lv_font_montserrat_46.c | #include "../../lvgl.h"
/*******************************************************************************
* Size: 46 px
* Bpp: 4
* Opts: --no-compress --no-prefilter --bpp 4 --size 46 --font Montserrat-Medium.ttf -r 0x20-0x7F,0xB0,0x2022 --font FontAwesome5-Solid+Brands+Regular.woff -r 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --format lvgl -o lv_font_montserrat_46.c --force-fast-kern-format
******************************************************************************/
#ifndef LV_FONT_MONTSERRAT_46
#define LV_FONT_MONTSERRAT_46 1
#endif
#if LV_FONT_MONTSERRAT_46
/*-----------------
* BITMAPS
*----------------*/
/*Store the image of the glyphs*/
static LV_ATTRIBUTE_LARGE_CONST const uint8_t gylph_bitmap[] = {
/* U+20 " " */
/* U+21 "!" */
0x6f, 0xff, 0xfc, 0x5, 0xff, 0xff, 0xb0, 0x5f,
0xff, 0xfa, 0x4, 0xff, 0xff, 0xa0, 0x3f, 0xff,
0xf9, 0x3, 0xff, 0xff, 0x90, 0x2f, 0xff, 0xf8,
0x2, 0xff, 0xff, 0x70, 0x1f, 0xff, 0xf7, 0x0,
0xff, 0xff, 0x60, 0xf, 0xff, 0xf5, 0x0, 0xff,
0xff, 0x50, 0xf, 0xff, 0xf4, 0x0, 0xef, 0xff,
0x40, 0xd, 0xff, 0xf3, 0x0, 0xdf, 0xff, 0x20,
0xc, 0xff, 0xf2, 0x0, 0xcf, 0xff, 0x10, 0xb,
0xff, 0xf0, 0x0, 0xbf, 0xff, 0x0, 0xa, 0xff,
0xf0, 0x0, 0x9f, 0xff, 0x0, 0x3, 0x66, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d,
0xea, 0x10, 0x5f, 0xff, 0xfb, 0xb, 0xff, 0xff,
0xf1, 0xbf, 0xff, 0xff, 0x16, 0xff, 0xff, 0xb0,
0x7, 0xde, 0xa1, 0x0,
/* U+22 "\"" */
0x1f, 0xff, 0xc0, 0x0, 0xc, 0xff, 0xf1, 0x1f,
0xff, 0xb0, 0x0, 0xc, 0xff, 0xf0, 0xf, 0xff,
0xb0, 0x0, 0xb, 0xff, 0xf0, 0xf, 0xff, 0xa0,
0x0, 0xb, 0xff, 0xf0, 0xf, 0xff, 0xa0, 0x0,
0xa, 0xff, 0xf0, 0xf, 0xff, 0x90, 0x0, 0xa,
0xff, 0xf0, 0xf, 0xff, 0x90, 0x0, 0xa, 0xff,
0xe0, 0xf, 0xff, 0x90, 0x0, 0x9, 0xff, 0xe0,
0xe, 0xff, 0x80, 0x0, 0x9, 0xff, 0xd0, 0xe,
0xff, 0x80, 0x0, 0x9, 0xff, 0xd0, 0xe, 0xff,
0x70, 0x0, 0x8, 0xff, 0xd0, 0xd, 0xff, 0x70,
0x0, 0x8, 0xff, 0xc0, 0x8, 0xaa, 0x40, 0x0,
0x5, 0xaa, 0x70,
/* U+23 "#" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xfa, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0x80, 0x0, 0x0,
0x0, 0xd, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x40, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x10, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf1, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x10, 0x16, 0x66, 0x66, 0x6e, 0xff,
0xa6, 0x66, 0x66, 0x66, 0x6f, 0xff, 0x96, 0x66,
0x66, 0x60, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20,
0x0, 0x0, 0x0, 0x2f, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xfa, 0x0, 0x0, 0x0,
0x0, 0xaf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0x90, 0x0, 0x0, 0x0,
0xb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xf7, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x50, 0x0, 0x0, 0x0, 0xf,
0xff, 0x40, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfa, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x56, 0x66, 0x66, 0xaf,
0xfe, 0x66, 0x66, 0x66, 0x66, 0xbf, 0xfd, 0x66,
0x66, 0x66, 0x40, 0x0, 0x0, 0x0, 0x8, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf9,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70,
0x0, 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf6, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x40, 0x0,
0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+24 "$" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x59, 0xce, 0xff, 0xff, 0xec, 0x95,
0x10, 0x0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x40, 0x0,
0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0xe, 0xff, 0xff, 0xf9, 0x41,
0xff, 0xf1, 0x25, 0x8d, 0xff, 0xfa, 0x0, 0x0,
0x7f, 0xff, 0xfc, 0x20, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x4c, 0xf3, 0x0, 0x0, 0xef, 0xff, 0xe1,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x40,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0x30, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0x30, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x70, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xe2, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xfe, 0x60, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xfe, 0x83, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe9, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf4, 0x9f, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x6e, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x1, 0xdf, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0xe, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0xd, 0xff, 0xfa, 0x0, 0x40, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xf8,
0x0, 0xed, 0x20, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x8f, 0xff, 0xf3, 0x6, 0xff, 0xf9,
0x20, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff,
0xff, 0xd0, 0xd, 0xff, 0xff, 0xfb, 0x63, 0x10,
0xff, 0xf0, 0x26, 0xcf, 0xff, 0xff, 0x40, 0x8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x4d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x26, 0xad, 0xef, 0xff, 0xff, 0xeb, 0x72,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+25 "%" */
0x0, 0x0, 0x17, 0xce, 0xfd, 0x93, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xfb, 0xbd, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xa1, 0x0, 0x5, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x6,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0x20, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0,
0x0, 0x0, 0xd, 0xff, 0x30, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf6, 0x0,
0x0, 0x0, 0xb, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x6,
0xff, 0x90, 0x0, 0x0, 0x6, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xfa, 0x0, 0x0, 0x1, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x5, 0xff, 0x90, 0x0,
0x0, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xf8, 0x0, 0x0, 0x6f, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, 0x0,
0x0, 0xa, 0xff, 0x50, 0x0, 0x1f, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0x60, 0x0, 0x0, 0x1, 0xff, 0xf1, 0x0, 0xb,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xfe, 0x20, 0x0, 0x0, 0xaf, 0xfa,
0x0, 0x6, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xfe, 0x51, 0x3,
0xbf, 0xff, 0x20, 0x1, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0xbf, 0xfc,
0x0, 0x0, 0x5a, 0xef, 0xeb, 0x60, 0x0, 0x0,
0x0, 0x1, 0xaf, 0xff, 0xff, 0xfd, 0x40, 0x0,
0x6f, 0xff, 0x20, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xc1, 0x0, 0x0, 0x0, 0x0, 0x27, 0x9a, 0x84,
0x0, 0x0, 0x1f, 0xff, 0x70, 0x0, 0xcf, 0xff,
0xdb, 0xcf, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xc0, 0x0,
0x8f, 0xfe, 0x30, 0x0, 0x2d, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xf2, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x2f,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf7, 0x0, 0x6, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x8f, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xfd, 0x0, 0x0, 0x9f,
0xf5, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x30,
0x0, 0xc, 0xff, 0x20, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x70, 0x0, 0x0, 0xdf, 0xf1, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xd0, 0x0, 0x0, 0xd, 0xff,
0x10, 0x0, 0x0, 0x0, 0xe, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xf3, 0x0, 0x0,
0x0, 0xcf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xa, 0xff, 0x50, 0x0, 0x0,
0x0, 0x3f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfa,
0x0, 0x0, 0x0, 0x8, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf3, 0x0, 0x0, 0x2, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xe3, 0x0, 0x2,
0xdf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xfd, 0xbc, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0,
0x6, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0,
0x0, 0x0, 0x1, 0xef, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xbe, 0xfe, 0xb6,
0x0, 0x0, 0x0,
/* U+26 "&" */
0x0, 0x0, 0x0, 0x0, 0x39, 0xce, 0xff, 0xda,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xd3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xfa, 0x64, 0x58, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf4, 0x0,
0x0, 0x1, 0xdf, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x4, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0x30, 0x0, 0x0, 0x0, 0xf,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0x50, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf6, 0x0, 0x0,
0x4e, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xf4, 0x0, 0x9f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xef, 0xff, 0xf7, 0xef, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0x95, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x37, 0x20, 0x0, 0x0, 0x5f, 0xff,
0xfd, 0x30, 0x4, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x8, 0xff, 0xd2, 0x0, 0x3f, 0xff, 0xfb, 0x0,
0x0, 0x4, 0xff, 0xff, 0xf3, 0x0, 0x0, 0xcf,
0xff, 0x10, 0xd, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xf3, 0x0, 0x1f, 0xff, 0xd0,
0x5, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xf3, 0x7, 0xff, 0xf8, 0x0, 0xaf,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xf3, 0xef, 0xff, 0x20, 0xd, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0xef, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xf4, 0x0, 0xd, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xfb, 0x0,
0x0, 0xaf, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xf4, 0x0, 0x5,
0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4e, 0xff, 0xff, 0xff, 0xf4, 0x0, 0xc, 0xff,
0xff, 0xf8, 0x20, 0x0, 0x0, 0x15, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x1e, 0xff, 0xff,
0xff, 0xec, 0xcc, 0xef, 0xff, 0xff, 0xff, 0x53,
0xff, 0xff, 0xf3, 0x0, 0x1c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x4, 0xff,
0xff, 0x80, 0x0, 0x6, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd6, 0x0, 0x0, 0x4, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x48, 0xce, 0xff, 0xfd, 0xb7,
0x30, 0x0, 0x0, 0x0, 0x4, 0xd1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+27 "'" */
0x1f, 0xff, 0xc1, 0xff, 0xfb, 0xf, 0xff, 0xb0,
0xff, 0xfa, 0xf, 0xff, 0xa0, 0xff, 0xf9, 0xf,
0xff, 0x90, 0xff, 0xf9, 0xe, 0xff, 0x80, 0xef,
0xf8, 0xe, 0xff, 0x70, 0xdf, 0xf7, 0x8, 0xaa,
0x40,
/* U+28 "(" */
0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xef, 0xff, 0x40, 0x0, 0x0, 0x8f, 0xff, 0xb0,
0x0, 0x0, 0xe, 0xff, 0xf4, 0x0, 0x0, 0x6,
0xff, 0xfd, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x70,
0x0, 0x0, 0x2f, 0xff, 0xf1, 0x0, 0x0, 0x8,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x70,
0x0, 0x0, 0x1f, 0xff, 0xf3, 0x0, 0x0, 0x5,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xb0,
0x0, 0x0, 0xc, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xef, 0xff, 0x50, 0x0, 0x0, 0x1f, 0xff, 0xf3,
0x0, 0x0, 0x3, 0xff, 0xff, 0x10, 0x0, 0x0,
0x5f, 0xff, 0xf0, 0x0, 0x0, 0x6, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xc0, 0x0, 0x0,
0x8, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xb0, 0x0, 0x0, 0x9, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xb0, 0x0, 0x0, 0x9, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xb0, 0x0,
0x0, 0x8, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xe0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x1,
0xff, 0xff, 0x30, 0x0, 0x0, 0xe, 0xff, 0xf5,
0x0, 0x0, 0x0, 0xcf, 0xff, 0x80, 0x0, 0x0,
0x8, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x30, 0x0,
0x0, 0xc, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xc0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x10,
0x0, 0x0, 0xc, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0xef, 0xff,
0x40, 0x0, 0x0, 0x8, 0xff, 0xfb, 0x0, 0x0,
0x0, 0xe, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xc0,
/* U+29 ")" */
0x4f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0x80, 0x0, 0x0, 0x4, 0xff, 0xff, 0x10, 0x0,
0x0, 0xc, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x50,
0x0, 0x0, 0x9, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0xff, 0xff,
0x50, 0x0, 0x0, 0xb, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x10, 0x0, 0x0, 0xf, 0xff, 0xf5, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x70, 0x0, 0x0, 0xa,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xc0,
0x0, 0x0, 0x6, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xf0, 0x0, 0x0, 0x4, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0,
0x2, 0xff, 0xff, 0x20, 0x0, 0x0, 0x2f, 0xff,
0xf2, 0x0, 0x0, 0x2, 0xff, 0xff, 0x20, 0x0,
0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x3, 0xff,
0xff, 0x10, 0x0, 0x0, 0x4f, 0xff, 0xf0, 0x0,
0x0, 0x5, 0xff, 0xff, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xe0, 0x0, 0x0, 0x8, 0xff, 0xfc, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xa0, 0x0, 0x0, 0xd,
0xff, 0xf7, 0x0, 0x0, 0x0, 0xff, 0xff, 0x40,
0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x6,
0xff, 0xfd, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xa0,
0x0, 0x0, 0xf, 0xff, 0xf5, 0x0, 0x0, 0x4,
0xff, 0xff, 0x10, 0x0, 0x0, 0x9f, 0xff, 0xb0,
0x0, 0x0, 0xf, 0xff, 0xf5, 0x0, 0x0, 0x5,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x70,
0x0, 0x0, 0x4f, 0xff, 0xf1, 0x0, 0x0, 0xc,
0xff, 0xf8, 0x0, 0x0, 0x4, 0xff, 0xfe, 0x0,
0x0, 0x0,
/* U+2A "*" */
0x0, 0x0, 0x0, 0x2, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xc4, 0x0, 0x2, 0xff,
0x80, 0x0, 0x1a, 0x50, 0x8, 0xff, 0xb2, 0x2,
0xff, 0x80, 0x7, 0xff, 0xe0, 0xd, 0xff, 0xff,
0x72, 0xff, 0x84, 0xdf, 0xff, 0xf4, 0x0, 0x8f,
0xff, 0xfe, 0xff, 0xef, 0xff, 0xfb, 0x30, 0x0,
0x1, 0xaf, 0xff, 0xff, 0xff, 0xfd, 0x50, 0x0,
0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3c, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe5, 0x0, 0x8, 0xff, 0xff, 0xd6, 0xff,
0xaa, 0xff, 0xff, 0xc2, 0xb, 0xff, 0xf7, 0x2,
0xff, 0x80, 0x3d, 0xff, 0xf2, 0x3, 0xfa, 0x10,
0x2, 0xff, 0x80, 0x0, 0x7f, 0x90, 0x0, 0x20,
0x0, 0x2, 0xff, 0x80, 0x0, 0x1, 0x10, 0x0,
0x0, 0x0, 0x2, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x66, 0x30, 0x0,
0x0, 0x0,
/* U+2B "+" */
0x0, 0x0, 0x0, 0x0, 0x47, 0x77, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xbe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xab, 0xbb,
0xbb, 0xbb, 0xdf, 0xff, 0xcb, 0xbb, 0xbb, 0xbb,
0x70, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0,
/* U+2C "," */
0x0, 0x0, 0x0, 0x0, 0x6e, 0xfb, 0x10, 0x5f,
0xff, 0xfc, 0xb, 0xff, 0xff, 0xf2, 0xbf, 0xff,
0xff, 0x37, 0xff, 0xff, 0xf1, 0xa, 0xff, 0xfd,
0x0, 0xf, 0xff, 0x70, 0x3, 0xff, 0xf2, 0x0,
0x7f, 0xfd, 0x0, 0xb, 0xff, 0x80, 0x0, 0xff,
0xf2, 0x0, 0x3f, 0xfd, 0x0, 0x7, 0xff, 0x80,
0x0,
/* U+2D "-" */
0x5e, 0xee, 0xee, 0xee, 0xee, 0xee, 0xe6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff,
/* U+2E "." */
0x0, 0x45, 0x10, 0x1, 0xcf, 0xff, 0x50, 0x9f,
0xff, 0xff, 0xd, 0xff, 0xff, 0xf3, 0xcf, 0xff,
0xff, 0x25, 0xff, 0xff, 0xc0, 0x6, 0xdf, 0xa1,
0x0,
/* U+2F "/" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+30 "0" */
0x0, 0x0, 0x0, 0x0, 0x16, 0xad, 0xff, 0xec,
0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xb6, 0x42, 0x47, 0xdf, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xfd,
0x30, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x7f, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x20, 0x0, 0x1f,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xfa, 0x0, 0x6, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xf1, 0x0, 0xcf, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0x70, 0x1f,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xfb, 0x4, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xf0, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x29,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xf4, 0xbf, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0x6c, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf6,
0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x7c, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf6, 0xbf, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x69, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xf4, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x24, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xf0, 0x1f, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xfb, 0x0, 0xcf,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0x70, 0x6, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xf1, 0x0, 0x1f, 0xff, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xfa, 0x0, 0x0,
0x7f, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x20, 0x0, 0x0, 0xdf, 0xff,
0xfd, 0x30, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xb6,
0x32, 0x47, 0xdf, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x16, 0xad, 0xff, 0xed,
0x94, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+31 "1" */
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3a, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x3a, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0x1, 0x11, 0x11, 0x16, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x30,
/* U+32 "2" */
0x0, 0x0, 0x0, 0x5, 0x9c, 0xef, 0xfe, 0xdb,
0x72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x30, 0x0,
0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x1d, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xa6, 0x43,
0x24, 0x6b, 0xff, 0xff, 0xff, 0x30, 0x0, 0xbf,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef,
0xff, 0xfb, 0x0, 0x0, 0x9f, 0xd2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xd1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xd1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xd1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xc1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0,
/* U+33 "3" */
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x4f, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xef, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xfd, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xfa,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x56, 0x66, 0x7a, 0xdf, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0x10, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xe0, 0x5, 0xfc, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xf9, 0x0, 0xdf, 0xff, 0x92, 0x0, 0x0, 0x0,
0x0, 0x1, 0x9f, 0xff, 0xff, 0x20, 0x7f, 0xff,
0xff, 0xfd, 0x96, 0x43, 0x23, 0x6a, 0xff, 0xff,
0xff, 0x80, 0x4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x1,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x29, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x48, 0xbd, 0xff, 0xff, 0xdb,
0x72, 0x0, 0x0, 0x0, 0x0,
/* U+34 "4" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xe1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff,
0xfe, 0x10, 0x0, 0x0, 0x3, 0x33, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x1, 0xef, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf1, 0x0, 0x0, 0x0,
/* U+35 "5" */
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xa1, 0x11,
0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x0, 0x0,
0xb, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xfd, 0x11, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xb8, 0x50, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x10, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x25, 0x8d, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xef, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xa0, 0x3, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xf7, 0x0, 0xcf, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff,
0xff, 0x20, 0x5f, 0xff, 0xd6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4e, 0xff, 0xff, 0xb0, 0xe, 0xff,
0xff, 0xff, 0xb7, 0x53, 0x23, 0x47, 0xdf, 0xff,
0xff, 0xf2, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe4, 0x0, 0x0, 0x0, 0x5, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0,
0x0, 0x0, 0x0, 0x15, 0x9c, 0xef, 0xff, 0xec,
0x95, 0x0, 0x0, 0x0, 0x0,
/* U+36 "6" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xbe, 0xff,
0xfe, 0xb8, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0xfa, 0x62, 0x10, 0x12, 0x48, 0xef, 0x20,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf9, 0x10, 0x0,
0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xf0, 0x0, 0x3, 0x8c, 0xef,
0xfe, 0xc9, 0x40, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xe0, 0x4, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x60, 0x0, 0x0, 0xbf, 0xff, 0xd0, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0,
0xcf, 0xff, 0xd8, 0xff, 0xff, 0xff, 0xdc, 0xdf,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xfa, 0x40, 0x0, 0x0, 0x4b, 0xff, 0xff,
0xf9, 0x0, 0xbf, 0xff, 0xff, 0xfe, 0x40, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x20, 0xaf,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0x90, 0x9f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xd0, 0x6f, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf0, 0x2f, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xf1, 0xf, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf1,
0x9, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xf0, 0x3, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xc0, 0x0, 0xcf, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x70, 0x0,
0x2f, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xfe, 0x10, 0x0, 0x7, 0xff, 0xff,
0xfa, 0x40, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xec,
0xdf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfb, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x27, 0xbd, 0xff, 0xfe,
0xb7, 0x20, 0x0, 0x0, 0x0,
/* U+37 "7" */
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xaa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xaa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xaf, 0xff, 0xd1, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0x1a, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xa0, 0xaf, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf3, 0xa,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xfc, 0x0, 0xaf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x50,
0x9, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+38 "8" */
0x0, 0x0, 0x0, 0x3, 0x8b, 0xdf, 0xff, 0xec,
0xa6, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x20,
0x0, 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0xfd, 0xcd, 0xef, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xa4, 0x0, 0x0, 0x1, 0x6d, 0xff, 0xff, 0xf4,
0x0, 0x2, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xfc, 0x0, 0x8, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0x20, 0xb, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0x50,
0xc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0x60, 0xc, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x60, 0xa, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x5,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xfe, 0x0, 0x0, 0xdf, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xf7,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xd7, 0x31, 0x0,
0x14, 0x9f, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0,
0x0, 0x3, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xfe, 0xb9, 0x99, 0xad, 0xff, 0xff, 0xff,
0xd2, 0x0, 0x5, 0xff, 0xff, 0xfa, 0x30, 0x0,
0x0, 0x0, 0x16, 0xef, 0xff, 0xfd, 0x10, 0x1e,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0xb, 0xff, 0xff, 0x90, 0x7f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xf1, 0xbf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf5, 0xef, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf9,
0xef, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf8, 0xbf, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf5, 0x7f, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xf1, 0x1f,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3e, 0xff, 0xff, 0xa0, 0x6, 0xff, 0xff, 0xfe,
0x72, 0x0, 0x0, 0x0, 0x4a, 0xff, 0xff, 0xfe,
0x10, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xfd, 0xcd,
0xef, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x20, 0x0, 0x0, 0x0, 0x19, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0x9c, 0xef, 0xff, 0xed,
0xa7, 0x30, 0x0, 0x0, 0x0,
/* U+39 "9" */
0x0, 0x0, 0x0, 0x6, 0xad, 0xff, 0xfe, 0xc8,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xec, 0xde, 0xff, 0xff,
0xff, 0xd1, 0x0, 0x0, 0x1, 0xef, 0xff, 0xfd,
0x61, 0x0, 0x0, 0x27, 0xef, 0xff, 0xfd, 0x0,
0x0, 0x9, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xf2, 0x0, 0x6f, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf9, 0x0,
0x9f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xff, 0x0, 0xaf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x50, 0xbf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0x80, 0x9f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xc0, 0x6f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xe0, 0x2f, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xf0, 0xb, 0xff,
0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff,
0xff, 0xff, 0xf1, 0x2, 0xff, 0xff, 0xff, 0xa4,
0x10, 0x2, 0x5a, 0xff, 0xff, 0xef, 0xff, 0xf2,
0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0, 0x4, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x7f,
0xff, 0xf1, 0x0, 0x0, 0x18, 0xef, 0xff, 0xff,
0xff, 0xff, 0xc4, 0x0, 0x8f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x4, 0x8a, 0xcc, 0xb9, 0x72, 0x0,
0x0, 0x9f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2d, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0x20, 0x0, 0x0, 0x0, 0x0, 0x6, 0xef,
0xff, 0xfd, 0x0, 0x0, 0x0, 0xd, 0xfb, 0x63,
0x10, 0x12, 0x48, 0xdf, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1,
0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x37, 0xad, 0xef, 0xfe, 0xda, 0x61,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+3A ":" */
0x6, 0xdf, 0xa1, 0x5, 0xff, 0xff, 0xc0, 0xcf,
0xff, 0xff, 0x2d, 0xff, 0xff, 0xf3, 0x9f, 0xff,
0xfe, 0x1, 0xcf, 0xff, 0x50, 0x0, 0x45, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x45, 0x10, 0x1, 0xcf, 0xff, 0x50, 0x9f, 0xff,
0xff, 0xd, 0xff, 0xff, 0xf3, 0xcf, 0xff, 0xff,
0x25, 0xff, 0xff, 0xc0, 0x6, 0xdf, 0xa1, 0x0,
/* U+3B ";" */
0x6, 0xdf, 0xa1, 0x5, 0xff, 0xff, 0xc0, 0xcf,
0xff, 0xff, 0x2d, 0xff, 0xff, 0xf3, 0x9f, 0xff,
0xfe, 0x1, 0xcf, 0xff, 0x50, 0x0, 0x45, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6e, 0xfb, 0x10, 0x5f, 0xff,
0xfc, 0xb, 0xff, 0xff, 0xf2, 0xbf, 0xff, 0xff,
0x37, 0xff, 0xff, 0xf1, 0xa, 0xff, 0xfd, 0x0,
0xf, 0xff, 0x70, 0x3, 0xff, 0xf2, 0x0, 0x7f,
0xfd, 0x0, 0xb, 0xff, 0x80, 0x0, 0xff, 0xf2,
0x0, 0x3f, 0xfd, 0x0, 0x7, 0xff, 0x80, 0x0,
/* U+3C "<" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5c, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x28, 0xef, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xcf, 0xff,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x2, 0x8e,
0xff, 0xff, 0xff, 0xfb, 0x40, 0x0, 0x0, 0x0,
0x5b, 0xff, 0xff, 0xff, 0xfe, 0x81, 0x0, 0x0,
0x0, 0x28, 0xef, 0xff, 0xff, 0xff, 0xa4, 0x0,
0x0, 0x0, 0x5, 0xbf, 0xff, 0xff, 0xff, 0xd7,
0x10, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff,
0xfa, 0x30, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xfc, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe8, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3a, 0xff, 0xff, 0xff, 0xfe, 0x82, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x6d, 0xff, 0xff,
0xff, 0xfc, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xaf, 0xff, 0xff, 0xff, 0xf9, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x17, 0xdf, 0xff, 0xff,
0xff, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3a, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x7d, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xaf, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x17, 0x80,
/* U+3D "=" */
0xab, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfb, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb7, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfb, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
/* U+3E ">" */
0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xfa, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xd7,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xfd, 0x71,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9f, 0xff,
0xff, 0xff, 0xfa, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xcf, 0xff, 0xff, 0xff, 0xd7, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xef, 0xff,
0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5b, 0xff, 0xff, 0xff, 0xfd, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x7d, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5, 0xef, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x39, 0xff, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x16, 0xdf, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xaf, 0xff, 0xff,
0xff, 0xe8, 0x20, 0x0, 0x0, 0x1, 0x7d, 0xff,
0xff, 0xff, 0xfb, 0x50, 0x0, 0x0, 0x0, 0x4a,
0xff, 0xff, 0xff, 0xfe, 0x82, 0x0, 0x0, 0x0,
0x28, 0xef, 0xff, 0xff, 0xff, 0xb5, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xe8, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xfb,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xfe, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+3F "?" */
0x0, 0x0, 0x0, 0x16, 0xac, 0xef, 0xfe, 0xdb,
0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0x0, 0x1, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x1e, 0xff, 0xff, 0xfd, 0x73, 0x10, 0x1, 0x49,
0xff, 0xff, 0xff, 0x40, 0x3e, 0xff, 0xfe, 0x50,
0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xb0,
0x1, 0xbf, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0xf0, 0x0, 0x6, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1d, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xdf, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x37, 0x77, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1a, 0xed, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xed, 0x60,
0x0, 0x0, 0x0, 0x0,
/* U+40 "@" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x69, 0xcd, 0xef, 0xfe, 0xdb, 0x96, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x29, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x81, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff,
0xff, 0xff, 0xb8, 0x53, 0x21, 0x12, 0x36, 0x8c,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xfc, 0x51,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0xdf,
0xff, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xdf, 0xff,
0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x20,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xe1, 0x0, 0x0,
0x0, 0x1, 0xef, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xfb, 0x0, 0x0, 0x0, 0xa,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x27, 0xbe,
0xff, 0xdb, 0x61, 0x0, 0xa, 0xff, 0xf5, 0x0,
0x5f, 0xff, 0x60, 0x0, 0x0, 0x4f, 0xff, 0x90,
0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0xa, 0xff, 0xf5, 0x0, 0xa, 0xff,
0xe0, 0x0, 0x0, 0xbf, 0xfe, 0x10, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x1a, 0xff, 0xf5, 0x0, 0x1, 0xef, 0xf7, 0x0,
0x3, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xfd, 0xb9, 0xad, 0xff, 0xff, 0xdb, 0xff,
0xf5, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x9, 0xff,
0xe0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xfa, 0x20,
0x0, 0x0, 0x29, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x1f, 0xff, 0x40, 0xe, 0xff, 0x90, 0x0,
0x0, 0xb, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xf5, 0x0, 0x0, 0xb,
0xff, 0x90, 0x2f, 0xff, 0x40, 0x0, 0x0, 0x3f,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x5, 0xff, 0xd0,
0x5f, 0xff, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xf5, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x8f, 0xfd,
0x0, 0x0, 0x0, 0xef, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf5, 0x0,
0x0, 0x0, 0xff, 0xf2, 0xaf, 0xfb, 0x0, 0x0,
0x2, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xf5, 0x0, 0x0, 0x0,
0xef, 0xf3, 0xbf, 0xfa, 0x0, 0x0, 0x4, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xb, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xdf, 0xf4,
0xcf, 0xf9, 0x0, 0x0, 0x5, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xf5, 0x0, 0x0, 0x0, 0xcf, 0xf5, 0xcf, 0xf9,
0x0, 0x0, 0x5, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf5, 0x0,
0x0, 0x0, 0xcf, 0xf4, 0xbf, 0xfa, 0x0, 0x0,
0x4, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xf5, 0x0, 0x0, 0x0,
0xdf, 0xf4, 0xaf, 0xfb, 0x0, 0x0, 0x2, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xff, 0xf2,
0x8f, 0xfe, 0x0, 0x0, 0x0, 0xef, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf5, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x5f, 0xff,
0x10, 0x0, 0x0, 0x9f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf5, 0x0,
0x0, 0x5, 0xff, 0xd0, 0x2f, 0xff, 0x50, 0x0,
0x0, 0x3f, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xf6, 0x0, 0x0, 0xb,
0xff, 0x80, 0xd, 0xff, 0xa0, 0x0, 0x0, 0xb,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x2f, 0xff, 0x30,
0x8, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xff,
0xfa, 0x20, 0x0, 0x0, 0x19, 0xff, 0xfe, 0xff,
0xfe, 0x10, 0x1, 0xdf, 0xfc, 0x0, 0x2, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xfc,
0xa9, 0x9c, 0xff, 0xff, 0xc2, 0xff, 0xff, 0xea,
0xaf, 0xff, 0xf3, 0x0, 0x0, 0xbf, 0xfe, 0x10,
0x0, 0x0, 0x4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x10, 0xaf, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0x3f, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x1a, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1c, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x9, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x27, 0xbe, 0xff, 0xeb, 0x71, 0x0, 0x0, 0x0,
0x7c, 0xff, 0xd9, 0x20, 0x0, 0x0, 0x0, 0x1,
0xef, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xfd, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xef, 0xff, 0xfc, 0x61, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3a, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1a, 0xff, 0xff, 0xff, 0xc8, 0x53, 0x32, 0x23,
0x57, 0xae, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x7a, 0xce,
0xef, 0xfe, 0xda, 0x84, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+41 "A" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
0x8e, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xfa, 0x1, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x30, 0xa, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5, 0x0,
0x0, 0xcf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x70, 0x0, 0x0, 0xe, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xfc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xef, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x60, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf4, 0x0, 0x0, 0x1f, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xb0, 0x0, 0x8, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0x20, 0x0, 0xef, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf9, 0x0, 0x6f,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf1,
0xd, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x70,
/* U+42 "B" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xee, 0xb8, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe8, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x20, 0x0, 0x2, 0xff, 0xff, 0xec, 0xcc,
0xcc, 0xcc, 0xcc, 0xde, 0xff, 0xff, 0xff, 0xfe,
0x20, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xfc, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xf4, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0x90, 0x2, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xfb, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xc0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfb,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x90, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xf4, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xfd, 0x0, 0x2, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xaf, 0xff,
0xff, 0x20, 0x0, 0x2f, 0xff, 0xfe, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xdf, 0xff, 0xff, 0xfe, 0x40,
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x2, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x36, 0xbf,
0xff, 0xff, 0xb0, 0x2, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff,
0xff, 0x60, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf3, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x62, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0x72, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xf5, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0x22,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xd0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0x7e, 0xff, 0xff, 0xf4, 0x2, 0xff, 0xff, 0xec,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xdf, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0xec, 0x96, 0x10, 0x0, 0x0, 0x0,
/* U+43 "C" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xfd, 0xb8, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x81, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0xa, 0xff,
0xff, 0xff, 0xfb, 0x74, 0x32, 0x45, 0x8d, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xf8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff,
0xff, 0xe2, 0x0, 0x8, 0xff, 0xff, 0xfb, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xfe,
0x20, 0x0, 0x3f, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xb2, 0x0,
0x0, 0xdf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xc2, 0x0, 0x0, 0x8,
0xff, 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xfe, 0x20, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xf8, 0x10, 0x0, 0x0, 0x0, 0x0,
0x3b, 0xff, 0xff, 0xe2, 0x0, 0x0, 0xb, 0xff,
0xff, 0xff, 0xfb, 0x74, 0x32, 0x45, 0x8d, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x10, 0x0, 0x0, 0x0, 0x3, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x81, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xfd, 0xb8, 0x40, 0x0, 0x0, 0x0,
/* U+44 "D" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xec, 0x96, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x50, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11, 0x11, 0x12,
0x46, 0xaf, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xa0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xf5, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfd, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0x60,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xc0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf1,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf5,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfa,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfb,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfc,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfb,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfa,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf5,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf1,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xc0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0x60,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfd, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xf5, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xa0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11, 0x11, 0x12,
0x36, 0xaf, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x50, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xec, 0x96, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+45 "E" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x2, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x2, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x2, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x2, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x2f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x32, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x30,
/* U+46 "F" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x10, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+47 "G" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xfe, 0xc9, 0x51, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x40, 0x0, 0x0, 0xa, 0xff,
0xff, 0xff, 0xfc, 0x75, 0x32, 0x35, 0x7b, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xf8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf5, 0x0, 0x8, 0xff, 0xff, 0xfb, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, 0xff,
0x50, 0x0, 0x3f, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, 0x0,
0x0, 0xcf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xbb, 0xb6, 0xbf,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0xaf, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xf9, 0x8f, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xf9, 0x5f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xf9, 0x1f, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xf9, 0xb, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xf9, 0x4, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9,
0x0, 0xcf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0,
0x3f, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0, 0x7,
0xff, 0xff, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xf9, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xf8, 0x10, 0x0, 0x0, 0x0, 0x0,
0x5, 0xdf, 0xff, 0xf9, 0x0, 0x0, 0xa, 0xff,
0xff, 0xff, 0xfc, 0x75, 0x32, 0x34, 0x7a, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x3, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xfe, 0xc9, 0x51, 0x0, 0x0, 0x0,
/* U+48 "H" */
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x82, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x2f, 0xff, 0xf7,
0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x12, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x82, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80,
/* U+49 "I" */
0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff,
0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f,
0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7,
0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff,
0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f,
0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7,
0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff,
0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f,
0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7,
0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff,
0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f,
0xff, 0xf7, 0x2f, 0xff, 0xf7, 0x2f, 0xff, 0xf7,
0x2f, 0xff, 0xf7,
/* U+4A "J" */
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x11, 0x11, 0x11, 0x11,
0x11, 0x18, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xfe, 0x0, 0x2,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xb0, 0x1, 0xdf, 0x60, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xf7, 0x0, 0xbf, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x20, 0x2f, 0xff,
0xff, 0xd7, 0x31, 0x3, 0x8f, 0xff, 0xff, 0xb0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x1a,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0,
0x0, 0x0, 0x2, 0x7b, 0xef, 0xfe, 0xc8, 0x30,
0x0, 0x0, 0x0,
/* U+4B "K" */
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xfa, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0xb0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xfc, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xd1, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xfe,
0x10, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x1, 0xef, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x1d, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x1,
0xdf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0xc, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0xbf, 0xff, 0xff,
0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0xb, 0xff, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0xaf, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xfe, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xff, 0x40, 0xbf, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x1d, 0xff, 0xff, 0xe1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x50,
0x0, 0x2, 0xef, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff,
0xff, 0x90, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xf6, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0x30, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe1,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xfc, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0x90,
/* U+4C "L" */
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x11, 0x11, 0x2, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd2, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0,
/* U+4D "M" */
0x2f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xf0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xf0, 0x2f, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0xf0, 0x2f, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xf0,
0x2f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xf0, 0x2f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xf0, 0x2f, 0xff, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xff, 0xf0, 0x2f, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0xf0,
0x2f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xf0, 0x2f, 0xff, 0xfc, 0xff, 0xff, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xaf, 0xff, 0xf0, 0x2f, 0xff, 0xf4, 0xef,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xb, 0xff, 0xfb, 0x5f, 0xff, 0xf0, 0x2f, 0xff,
0xf4, 0x5f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xf2, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0xc, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x5f,
0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x3, 0xff, 0xff,
0x60, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xfe,
0x10, 0x5f, 0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0,
0x9f, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xf6, 0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff,
0xf4, 0x0, 0x1e, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xd0, 0x0, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0x0, 0x6, 0xff, 0xff, 0x20,
0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x5f,
0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0xdf,
0xff, 0xb0, 0x0, 0x0, 0xb, 0xff, 0xfa, 0x0,
0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x4f, 0xff, 0xf4, 0x0, 0x0, 0x4f, 0xff,
0xf2, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0xa, 0xff, 0xfd, 0x0, 0x0,
0xdf, 0xff, 0x80, 0x0, 0x0, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x1, 0xff, 0xff,
0x70, 0x6, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf1, 0x1e, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0xe, 0xff, 0xf9, 0x9f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf1,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf1,
/* U+4E "N" */
0x2f, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x2f, 0xff, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x82, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f,
0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xfd, 0xff,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x82, 0xff, 0xff, 0x7b, 0xff, 0xff,
0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x2f, 0xff, 0xf7, 0xd, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82,
0xff, 0xff, 0x70, 0x2f, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff,
0xf7, 0x0, 0x5f, 0xff, 0xff, 0x60, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70,
0x0, 0x8f, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0xcf, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x1, 0xff,
0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x1, 0xef,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x3, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0x82, 0xff,
0xff, 0x70, 0x0, 0x0, 0x6, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xf2, 0x0,
0x1, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xd0, 0x0, 0x1f,
0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x2e, 0xff, 0xff, 0xb0, 0x1, 0xff, 0xff,
0x82, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0x70, 0x1f, 0xff, 0xf8, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x41, 0xff, 0xff, 0x82, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xfe, 0x3f, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xfd,
0xff, 0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0x82,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xf8, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xff, 0x82, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xff, 0xf8, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0x82, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf8,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x80,
/* U+4F "O" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xed, 0xb8, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xff, 0xfb, 0x74, 0x32, 0x35,
0x8d, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0,
0x0, 0x0, 0x2, 0xaf, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfb, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xd0, 0x0, 0x0, 0xcf, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xff, 0x70, 0x0, 0x4f, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xfe, 0x0, 0xb,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf5,
0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xb0, 0x5f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0x8, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xf2, 0xaf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x4b, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf6,
0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x6b, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf6, 0xaf, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0x48, 0xff, 0xff, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf2, 0x5f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0x1,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0xb0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xf5, 0x0, 0x4f, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xfe, 0x0, 0x0, 0xcf, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xff, 0x70, 0x0, 0x3, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0x81, 0x0,
0x0, 0x0, 0x0, 0x2, 0xaf, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff,
0xfb, 0x74, 0x32, 0x35, 0x8c, 0xff, 0xff, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xfe, 0xb8, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+50 "P" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed,
0xc8, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x20, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x2f, 0xff,
0xf7, 0x11, 0x11, 0x11, 0x11, 0x23, 0x7b, 0xff,
0xff, 0xff, 0x80, 0x2, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xbf, 0xff, 0xff,
0x30, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xfc, 0x2, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xf2, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0x72, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfa, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xb2, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfc, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xb2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xfa, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0x72, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf2,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xfc, 0x2, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xaf,
0xff, 0xff, 0x40, 0x2f, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x12, 0x5a, 0xff, 0xff, 0xff, 0x90,
0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x30, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0xd9, 0x61, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x71, 0x11, 0x11, 0x11, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+51 "Q" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce,
0xff, 0xed, 0xb8, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x92, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xfb, 0x74,
0x32, 0x35, 0x8d, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xf8,
0x10, 0x0, 0x0, 0x0, 0x0, 0x3a, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4e, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xdf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff,
0x60, 0x0, 0x3, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xe0, 0x0, 0xa, 0xff, 0xff, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xf5, 0x0, 0xf, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfa, 0x0,
0x4f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xff, 0x0, 0x8f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0x20, 0xaf, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x40, 0xbf, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x50,
0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x60, 0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x60, 0xbf, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x50, 0x8f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x20,
0x5f, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xfb, 0x0, 0xc, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xf6, 0x0, 0x6, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xef, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff,
0x80, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xcf,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2d, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xe9, 0x52,
0x10, 0x13, 0x6a, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x9c, 0xef,
0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x8, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xfb,
0x10, 0x0, 0x0, 0x1, 0xaf, 0xe1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xe8, 0x30, 0x3, 0x8e, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1b, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c,
0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x26, 0x9a, 0xa8, 0x50, 0x0, 0x0,
/* U+52 "R" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed,
0xc8, 0x50, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x92, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x11, 0x11, 0x11, 0x11, 0x23,
0x7b, 0xff, 0xff, 0xff, 0x80, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b,
0xff, 0xff, 0xf3, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xfc, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0x20,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x70, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xa0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xb0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xc0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xa0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0x70, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0x30,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xfc, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a,
0xff, 0xff, 0xf4, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x2, 0x59, 0xff, 0xff, 0xff,
0x90, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xa2, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0x30, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xf9, 0x0, 0x0,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xff, 0x40, 0x0, 0x2f, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xe1, 0x0, 0x2f, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xfa, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0x50,
0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xef, 0xff, 0xe1,
/* U+53 "S" */
0x0, 0x0, 0x0, 0x0, 0x38, 0xbd, 0xff, 0xfe,
0xda, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9,
0x20, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x10, 0x0,
0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x10, 0x0, 0xd, 0xff, 0xff,
0xfa, 0x52, 0x0, 0x1, 0x36, 0xaf, 0xff, 0xfa,
0x0, 0x0, 0x7f, 0xff, 0xfd, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6d, 0xf4, 0x0, 0x0, 0xef,
0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x50, 0x0, 0x2, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfd, 0x72, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xea, 0x62, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe9, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x49, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0x6a, 0xef, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x7d,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xfa, 0x0, 0x51, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0xee, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf3, 0x7,
0xff, 0xfc, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0xd0, 0xe, 0xff, 0xff, 0xfe,
0x96, 0x30, 0x0, 0x1, 0x48, 0xef, 0xff, 0xff,
0x40, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x2b,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x39, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x7a, 0xde, 0xff, 0xfe,
0xc9, 0x50, 0x0, 0x0, 0x0,
/* U+54 "T" */
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x11, 0x11,
0x11, 0x11, 0x11, 0x1c, 0xff, 0xfc, 0x11, 0x11,
0x11, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+55 "U" */
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfc,
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfc,
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfc,
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfc,
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x6f, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xfb,
0x5f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0x4f, 0xff,
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf9, 0x1f, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf6, 0xd, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf2,
0x9, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xe0, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xcf, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0x10, 0x0, 0x3f, 0xff, 0xff, 0xc3, 0x0,
0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xb7, 0x43, 0x24,
0x6a, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x15, 0x9c, 0xef, 0xfe,
0xdb, 0x72, 0x0, 0x0, 0x0, 0x0,
/* U+56 "V" */
0xd, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf9, 0x6, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf2, 0x0, 0xef, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xb0, 0x0, 0x8f, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0x40, 0x0, 0x2f, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xfd, 0x0, 0x0, 0xb, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x4,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x20,
0x0, 0x0, 0x0, 0xe, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfd, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0x40, 0x0, 0x0, 0x3f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xb0, 0x0, 0x0, 0xaf, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xf2, 0x0, 0x1, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xf8, 0x0, 0x8,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfe, 0x0,
0xe, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0x60, 0x5f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xd0, 0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xf7, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+57 "W" */
0x5f, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf2, 0x1f, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xd0, 0xb, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x80, 0x6, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x20, 0x1, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfd, 0x0, 0x0, 0xbf, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xf8, 0x0, 0x0, 0x6f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0,
0x1f, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xac, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xe0, 0x0,
0x0, 0xc, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0x57, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x80,
0x0, 0x0, 0x6, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x1, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0x30, 0x0, 0x0, 0x1, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xfa, 0x0, 0xcf,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf5, 0x0,
0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf0,
0x0, 0x1f, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xa0, 0x0, 0xc, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xef,
0xff, 0x50, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0x30, 0x0, 0x0, 0x4,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0x40,
0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0x80, 0x0, 0x0,
0x9, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xa0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xd0, 0x0,
0x0, 0xe, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0xc, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf3,
0x0, 0x0, 0x4f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf4, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf8, 0x0, 0x0, 0x9f, 0xff, 0xa0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xf9, 0x0, 0x0, 0x7f, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xfd, 0x0, 0x0, 0xef, 0xff, 0x50, 0x0,
0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0xcf,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0x20, 0x4, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x40, 0x2,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x80, 0xa, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x90,
0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xd0, 0xf, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xe0, 0xc, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf2, 0x4f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf4, 0x1f, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf7,
0xaf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xf9, 0x7f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xfd, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xfe, 0xcf, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+58 "X" */
0x5, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf3, 0x0,
0x9, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xf7, 0x0, 0x0,
0xd, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0x90, 0x0, 0x0, 0x7f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xff, 0x50, 0x0, 0x3f, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xfe, 0x10, 0xd, 0xff, 0xfe, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xfb, 0x9, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xfa, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff,
0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xbf, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x90, 0xcf, 0xff,
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xd0, 0x2, 0xff, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xf3, 0x0, 0x6, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xf8, 0x0, 0x0, 0xa, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xfe,
0x10, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0x60, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x9f, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0x90,
0x0, 0x5f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0x40,
0x1e, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xfe, 0x10,
/* U+59 "Y" */
0xd, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xa0,
0x4f, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf1, 0x0,
0xbf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf7, 0x0, 0x2,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xfd, 0x0, 0x0, 0x8,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0x40, 0x0, 0x0, 0xe,
0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xf2, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0xb0, 0x0, 0xa, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0x50, 0x3, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfe,
0x0, 0xdf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf8,
0x6f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5A "Z" */
0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xb, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xb, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x3f, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xef, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0xb, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
/* U+5B "[" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0x72, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x2f, 0xff, 0xff, 0xff, 0xff,
0x72, 0xff, 0xff, 0xcb, 0xbb, 0xb4, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xff,
0xff, 0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2,
0xff, 0xff, 0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xff, 0xff,
0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x2, 0xff, 0xff, 0x40, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xff,
0xff, 0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2,
0xff, 0xff, 0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xff, 0xff,
0x40, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x2, 0xff, 0xff, 0x40, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x2, 0xff,
0xff, 0x40, 0x0, 0x0, 0x2f, 0xff, 0xfc, 0xbb,
0xbb, 0x42, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x2f,
0xff, 0xff, 0xff, 0xff, 0x72, 0xff, 0xff, 0xff,
0xff, 0xf7,
/* U+5C "\\" */
0x9f, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf4,
/* U+5D "]" */
0x2f, 0xff, 0xff, 0xff, 0xff, 0x72, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x2f, 0xff, 0xff, 0xff, 0xff,
0x71, 0xbb, 0xbb, 0xbf, 0xff, 0xf7, 0x0, 0x0,
0x0, 0xef, 0xff, 0x70, 0x0, 0x0, 0xe, 0xff,
0xf7, 0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0,
0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x0, 0xef,
0xff, 0x70, 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0,
0x0, 0x0, 0xef, 0xff, 0x70, 0x0, 0x0, 0xe,
0xff, 0xf7, 0x0, 0x0, 0x0, 0xef, 0xff, 0x70,
0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x0,
0xef, 0xff, 0x70, 0x0, 0x0, 0xe, 0xff, 0xf7,
0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0, 0x0,
0xe, 0xff, 0xf7, 0x0, 0x0, 0x0, 0xef, 0xff,
0x70, 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0,
0x0, 0xef, 0xff, 0x70, 0x0, 0x0, 0xe, 0xff,
0xf7, 0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0,
0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x0, 0xef,
0xff, 0x70, 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0,
0x0, 0x0, 0xef, 0xff, 0x70, 0x0, 0x0, 0xe,
0xff, 0xf7, 0x0, 0x0, 0x0, 0xef, 0xff, 0x70,
0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0, 0x0,
0xef, 0xff, 0x70, 0x0, 0x0, 0xe, 0xff, 0xf7,
0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0, 0x0,
0xe, 0xff, 0xf7, 0x0, 0x0, 0x0, 0xef, 0xff,
0x70, 0x0, 0x0, 0xe, 0xff, 0xf7, 0x0, 0x0,
0x0, 0xef, 0xff, 0x70, 0x0, 0x0, 0xe, 0xff,
0xf7, 0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0,
0x0, 0xe, 0xff, 0xf7, 0x1b, 0xbb, 0xbb, 0xff,
0xff, 0x72, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x2f,
0xff, 0xff, 0xff, 0xff, 0x72, 0xff, 0xff, 0xff,
0xff, 0xf7,
/* U+5E "^" */
0x0, 0x0, 0x0, 0x0, 0x48, 0x88, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xbf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xe1, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xf7, 0xa, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x10, 0x3f,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xa0, 0x0, 0xdf, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xf4, 0x0, 0x6, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xfd, 0x0, 0x0, 0xf,
0xff, 0x60, 0x0, 0x0, 0x0, 0xf, 0xff, 0x70,
0x0, 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0x6,
0xff, 0xf1, 0x0, 0x0, 0x3, 0xff, 0xf4, 0x0,
0x0, 0x0, 0xdf, 0xfa, 0x0, 0x0, 0x0, 0xc,
0xff, 0xa0, 0x0, 0x0, 0x4f, 0xff, 0x30, 0x0,
0x0, 0x0, 0x6f, 0xff, 0x10, 0x0, 0xa, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xe0, 0x0, 0x8f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0x50, 0xe, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xfc, 0x5,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xf2,
/* U+5F "_" */
0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
0xee, 0xee, 0xee, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0,
/* U+60 "`" */
0x2d, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x1, 0xbf, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xb0,
/* U+61 "a" */
0x0, 0x0, 0x2, 0x6a, 0xce, 0xff, 0xec, 0x95,
0x0, 0x0, 0x0, 0x0, 0x5, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe6, 0x0, 0x0, 0x2, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x4, 0xff, 0xfe, 0x94,
0x10, 0x0, 0x15, 0xcf, 0xff, 0xff, 0x40, 0x0,
0xbf, 0x60, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xb0, 0x0, 0x22, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x22, 0x33, 0x33, 0x33, 0x3e, 0xff,
0xf7, 0x0, 0x0, 0x4a, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x2c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x2,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xc, 0xff, 0xff, 0xb5, 0x20, 0x0,
0x0, 0x0, 0xe, 0xff, 0xf8, 0x4f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf8,
0x8f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf8, 0xaf, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0xaf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xf8, 0x7f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xf8, 0x2f, 0xff, 0xfe, 0x40,
0x0, 0x0, 0x1, 0x9f, 0xff, 0xff, 0xf8, 0xa,
0xff, 0xff, 0xfd, 0x97, 0x79, 0xcf, 0xff, 0xfe,
0xff, 0xf8, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x6b, 0xff, 0xf8, 0x0, 0x8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd4, 0xb, 0xff, 0xf8,
0x0, 0x0, 0x17, 0xbe, 0xff, 0xec, 0x94, 0x0,
0xb, 0xff, 0xf8,
/* U+62 "b" */
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x17, 0xbe,
0xff, 0xec, 0x94, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd5, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x91, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0,
0x0, 0xdf, 0xff, 0xbd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0xdf, 0xff,
0xff, 0xff, 0xf8, 0x30, 0x0, 0x15, 0xcf, 0xff,
0xff, 0xc0, 0x0, 0xdf, 0xff, 0xff, 0xfc, 0x10,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xf8, 0x0,
0xdf, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xff, 0x10, 0xdf, 0xff, 0xfe,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0x80, 0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xe0, 0xdf,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xf2, 0xdf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf4, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf6, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6,
0xdf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf4, 0xdf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf1, 0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xd0, 0xdf,
0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0x80, 0xdf, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff,
0x10, 0xdf, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xf8, 0x0, 0xdf, 0xff,
0xff, 0xff, 0xf8, 0x30, 0x0, 0x15, 0xcf, 0xff,
0xff, 0xc0, 0x0, 0xdf, 0xff, 0x8d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0,
0xdf, 0xff, 0x61, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb1, 0x0, 0x0, 0xdf, 0xff, 0x60,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x60, 0x0, 0x17, 0xbe,
0xff, 0xec, 0x94, 0x0, 0x0, 0x0, 0x0,
/* U+63 "c" */
0x0, 0x0, 0x0, 0x0, 0x5, 0xac, 0xef, 0xfe,
0xb7, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x30, 0x0,
0x0, 0x0, 0x4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x5, 0xff, 0xff, 0xfe, 0x83, 0x0, 0x1,
0x6c, 0xff, 0xff, 0xf4, 0x0, 0x1f, 0xff, 0xff,
0xb1, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf5,
0x0, 0xaf, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xfb, 0x10, 0x2, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0,
0x7, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0,
0x0, 0x9f, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xfb, 0x20, 0x0, 0x1e, 0xff, 0xff,
0xb1, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf5,
0x0, 0x4, 0xff, 0xff, 0xfe, 0x83, 0x0, 0x1,
0x6c, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xad, 0xef, 0xfe,
0xb7, 0x20, 0x0, 0x0,
/* U+64 "d" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x27, 0xbe, 0xff, 0xec, 0x83,
0x0, 0x3, 0xff, 0xff, 0x30, 0x0, 0x0, 0x2,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20, 0x3f,
0xff, 0xf3, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x53, 0xff, 0xff, 0x30,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xf3, 0x0, 0x7, 0xff,
0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff, 0xff,
0xff, 0xff, 0x30, 0x3, 0xff, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xf3,
0x0, 0xbf, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0x30, 0x2f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xf3, 0x8, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0x30, 0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xf3, 0xe, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0x30, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf3, 0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x30, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf3, 0xe, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0x30, 0xbf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf3, 0x8,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x30, 0x2f, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0xf3, 0x0, 0xbf, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0x30,
0x3, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x7, 0xff,
0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xef, 0xff, 0xff, 0xff, 0x5f, 0xff, 0xf3,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x50, 0xff, 0xff, 0x30, 0x0, 0x0,
0x3, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20,
0xf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x27,
0xbe, 0xff, 0xec, 0x83, 0x0, 0x0, 0xff, 0xff,
0x30,
/* U+65 "e" */
0x0, 0x0, 0x0, 0x0, 0x27, 0xbe, 0xff, 0xec,
0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xff, 0xff, 0xdc, 0xef, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xfa, 0x30, 0x0, 0x1, 0x7e, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x2f, 0xff, 0xfe, 0x40, 0x0, 0x0,
0x0, 0x1, 0xcf, 0xff, 0xf5, 0x0, 0x0, 0xbf,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfd, 0x0, 0x2, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40,
0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xa0, 0xb, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xe0, 0xe, 0xff, 0xf8, 0x33, 0x33, 0x33,
0x33, 0x33, 0x33, 0x33, 0x4f, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xe, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x37, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0x60, 0x0, 0x0, 0x5, 0xff, 0xff,
0xff, 0x94, 0x0, 0x0, 0x27, 0xdf, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0,
0x4, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x20, 0x0, 0x0, 0x0, 0x0, 0x18, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0x9c, 0xef, 0xfe,
0xc9, 0x50, 0x0, 0x0, 0x0,
/* U+66 "f" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xbe, 0xff, 0xda,
0x40, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0xbb, 0xef, 0xf1, 0x0, 0x0, 0x9, 0xff,
0xff, 0x70, 0x0, 0x3, 0x70, 0x0, 0x0, 0xe,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x30, 0x3b, 0xbb, 0xbf,
0xff, 0xfc, 0xbb, 0xbb, 0xbb, 0x20, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0,
/* U+67 "g" */
0x0, 0x0, 0x0, 0x0, 0x27, 0xbe, 0xff, 0xec,
0x94, 0x0, 0x0, 0xaf, 0xff, 0x80, 0x0, 0x0,
0x3, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x50,
0xa, 0xff, 0xf8, 0x0, 0x0, 0x8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xaf, 0xff,
0x80, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xbb, 0xff, 0xf8, 0x0, 0x9,
0xff, 0xff, 0xfe, 0x73, 0x0, 0x1, 0x4a, 0xff,
0xff, 0xff, 0xff, 0x80, 0x4, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xff, 0xff,
0xf8, 0x0, 0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0x80, 0x4f,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf8, 0x9, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x80, 0xdf, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf8, 0xf,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x80, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xf8, 0xf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x80,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xf8, 0xc, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0x80, 0x9f, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0xc, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xb1,
0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff,
0x80, 0x0, 0x8f, 0xff, 0xff, 0xf9, 0x41, 0x0,
0x26, 0xcf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xef, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xe, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd4, 0x0, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x1, 0x6a, 0xce, 0xed, 0xb7, 0x30,
0x0, 0xf, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xfd, 0x0, 0x0, 0x1c, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0x70, 0x0, 0x9, 0xff, 0x93, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf1, 0x0,
0x4, 0xff, 0xff, 0xfc, 0x84, 0x10, 0x0, 0x3,
0x7d, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x6, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x15, 0x8b, 0xde, 0xff, 0xed, 0xa6, 0x20,
0x0, 0x0, 0x0,
/* U+68 "h" */
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x16, 0xbd, 0xef, 0xec,
0x83, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x19,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0,
0xdf, 0xff, 0x93, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0xdf, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xd7, 0x31, 0x1, 0x4a,
0xff, 0xff, 0xfd, 0x0, 0xdf, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x50,
0xdf, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0xb0, 0xdf, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf0,
0xdf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf2, 0xdf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3,
0xdf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0xdf, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5,
/* U+69 "i" */
0x0, 0x57, 0x40, 0x0, 0xcf, 0xff, 0x90, 0x6f,
0xff, 0xff, 0x38, 0xff, 0xff, 0xf5, 0x5f, 0xff,
0xff, 0x20, 0xaf, 0xff, 0x60, 0x0, 0x24, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff,
0x90, 0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90,
0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90, 0xd,
0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90, 0xd, 0xff,
0xf9, 0x0, 0xdf, 0xff, 0x90, 0xd, 0xff, 0xf9,
0x0, 0xdf, 0xff, 0x90, 0xd, 0xff, 0xf9, 0x0,
0xdf, 0xff, 0x90, 0xd, 0xff, 0xf9, 0x0, 0xdf,
0xff, 0x90, 0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff,
0x90, 0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90,
0xd, 0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90, 0xd,
0xff, 0xf9, 0x0, 0xdf, 0xff, 0x90,
/* U+6A "j" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x37, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x14, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xff, 0x70, 0x0, 0xa3, 0x0, 0x2,
0xdf, 0xff, 0xf3, 0x0, 0x6f, 0xfe, 0xcd, 0xff,
0xff, 0xfb, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x10, 0x1, 0xef, 0xff, 0xff, 0xff, 0xfd,
0x20, 0x0, 0x0, 0x6b, 0xef, 0xfe, 0xa5, 0x0,
0x0, 0x0,
/* U+6B "k" */
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xb0, 0xd, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xb0, 0x0, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xb0, 0x0, 0xd, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x1c, 0xff, 0xff, 0xb0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff,
0xb0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x1d, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x2e, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x3f, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9,
0x0, 0x4f, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x5f, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xf9, 0x6f, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xef, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff,
0x70, 0x7f, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0xaf, 0xff,
0xfd, 0x10, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0x60, 0x0, 0x0, 0xdf, 0xff, 0xfb, 0x0, 0x0,
0x0, 0xd, 0xff, 0xff, 0x50, 0x0, 0x0, 0x2,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xf4,
0x0, 0x0, 0xd, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0xe1, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0xc0, 0x0, 0xd, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0x80, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x50, 0xd, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0x20, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xfd, 0x0,
/* U+6C "l" */
0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d,
0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf,
0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff,
0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff,
0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9,
0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d,
0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf,
0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff,
0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff,
0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x9d, 0xff, 0xf9,
0xdf, 0xff, 0x9d, 0xff, 0xf9, 0xdf, 0xff, 0x90,
/* U+6D "m" */
0xdf, 0xff, 0x60, 0x0, 0x38, 0xce, 0xff, 0xeb,
0x60, 0x0, 0x0, 0x0, 0x0, 0x59, 0xce, 0xfe,
0xda, 0x60, 0x0, 0x0, 0xd, 0xff, 0xf6, 0x2,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x6, 0xef, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0,
0x0, 0xdf, 0xff, 0x64, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x1b, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfa, 0x0, 0xd, 0xff, 0xfa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xc6, 0x20,
0x12, 0x7e, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xc6,
0x20, 0x12, 0x7e, 0xff, 0xff, 0xf4, 0xd, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x1c, 0xff,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0xb0, 0xdf, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0x1d,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf5, 0xdf, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x8d, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xf9, 0xdf, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xad, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xad, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xad, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfa,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xad, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xfa, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xad, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfa, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xad, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xfa, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xad,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xfa, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xa0,
/* U+6E "n" */
0xdf, 0xff, 0x60, 0x0, 0x27, 0xbe, 0xff, 0xec,
0x83, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x60, 0x1a,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0,
0xdf, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0xdf, 0xff, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xd7, 0x31, 0x1, 0x4a,
0xff, 0xff, 0xfd, 0x0, 0xdf, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x50,
0xdf, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0xb0, 0xdf, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf0,
0xdf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xf2, 0xdf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3,
0xdf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0xdf, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf5,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf5,
/* U+6F "o" */
0x0, 0x0, 0x0, 0x0, 0x16, 0xad, 0xef, 0xfd,
0xb7, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x2, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xf4,
0x0, 0x0, 0xaf, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xd0, 0x0, 0x2f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0x50, 0x7, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfa, 0x0, 0xbf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf0, 0xe,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0x20, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf3, 0xf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x40,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf3, 0xe, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0x10, 0xbf, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xe0,
0x7, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xfa, 0x0, 0x1f, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0x50, 0x0, 0xaf, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xd0,
0x0, 0x1, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x5,
0xff, 0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x4, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x16, 0xad, 0xff, 0xfd, 0xb7, 0x20, 0x0, 0x0,
0x0, 0x0,
/* U+70 "p" */
0xdf, 0xff, 0x60, 0x0, 0x17, 0xbe, 0xff, 0xec,
0x94, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x60,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x62, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0xdf,
0xff, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0xdf, 0xff, 0xff, 0xff,
0xf9, 0x30, 0x0, 0x15, 0xcf, 0xff, 0xff, 0xc0,
0x0, 0xdf, 0xff, 0xff, 0xfd, 0x20, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xf8, 0x0, 0xdf, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0x10, 0xdf, 0xff, 0xfe, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xe0, 0xdf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf2, 0xdf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf4, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf6, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf6, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf6, 0xdf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf4, 0xdf, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf1,
0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xd0, 0xdf, 0xff, 0xfe,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0x80, 0xdf, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x10, 0xdf,
0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xf8, 0x0, 0xdf, 0xff, 0xff, 0xff,
0xf8, 0x30, 0x0, 0x15, 0xcf, 0xff, 0xff, 0xc0,
0x0, 0xdf, 0xff, 0xad, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0xdf, 0xff,
0x91, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb1, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd6, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x16, 0xbe, 0xff, 0xec,
0x94, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+71 "q" */
0x0, 0x0, 0x0, 0x0, 0x27, 0xbe, 0xff, 0xec,
0x83, 0x0, 0x0, 0xff, 0xff, 0x30, 0x0, 0x0,
0x2, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x20,
0xf, 0xff, 0xf3, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff,
0x30, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x6f, 0xff, 0xf3, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff,
0xff, 0xff, 0xff, 0x30, 0x3, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xf3, 0x0, 0xbf, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0x30, 0x2f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xf3, 0x8, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0x30, 0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf3, 0xe,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0x30, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf3, 0xf, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x30,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf3, 0xe, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0x30, 0xbf, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf3,
0x8, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0x30, 0x2f, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xf3, 0x0, 0xbf, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff,
0x30, 0x3, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x72, 0x0, 0x2, 0x6d, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xf3, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x30, 0x0,
0x0, 0x3, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfb,
0x10, 0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x27, 0xbe, 0xff, 0xec, 0x83, 0x0, 0x3, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf3,
/* U+72 "r" */
0xdf, 0xff, 0x60, 0x0, 0x27, 0xbe, 0xf4, 0xdf,
0xff, 0x60, 0x1a, 0xff, 0xff, 0xf4, 0xdf, 0xff,
0x63, 0xef, 0xff, 0xff, 0xf4, 0xdf, 0xff, 0x8e,
0xff, 0xff, 0xff, 0xf4, 0xdf, 0xff, 0xff, 0xff,
0xfb, 0x75, 0x41, 0xdf, 0xff, 0xff, 0xfb, 0x20,
0x0, 0x0, 0xdf, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
/* U+73 "s" */
0x0, 0x0, 0x0, 0x59, 0xce, 0xff, 0xed, 0xa7,
0x30, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe8, 0x0, 0x0, 0x1c, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0,
0xd, 0xff, 0xff, 0xff, 0xed, 0xde, 0xff, 0xff,
0xff, 0x40, 0x7, 0xff, 0xff, 0xd6, 0x10, 0x0,
0x1, 0x49, 0xef, 0xb0, 0x0, 0xdf, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0x0, 0xf,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xfa, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xc9, 0x52, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc8, 0x40, 0x0, 0x0, 0x0, 0x6,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x0,
0x0, 0x0, 0x0, 0x6a, 0xef, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x25,
0x7a, 0xdf, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x17, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xfb, 0x1, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xa0,
0x8f, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xf7, 0x1f, 0xff, 0xfb, 0x63, 0x0, 0x0,
0x3, 0x8f, 0xff, 0xff, 0x19, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xef, 0xff, 0xff, 0xff, 0x70, 0x5e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x17, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x40, 0x0, 0x0, 0x0, 0x36, 0xac,
0xef, 0xfe, 0xdb, 0x82, 0x0, 0x0, 0x0,
/* U+74 "t" */
0x0, 0x0, 0x18, 0x88, 0x82, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x30, 0x3b, 0xbb, 0xbf, 0xff, 0xfc, 0xbb, 0xbb,
0xbb, 0x20, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xa1,
0x0, 0x5, 0x90, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xdd, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x28, 0xce, 0xfe, 0xc8, 0x20,
/* U+75 "u" */
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0xf, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0xf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfe, 0xf, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfe,
0xe, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xfe, 0xb, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xfe,
0x7, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xfe,
0x0, 0x9f, 0xff, 0xff, 0xc6, 0x20, 0x2, 0x6c,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xd, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xfe,
0x0, 0x2, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x54, 0xff, 0xfe, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc2, 0x4, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x16, 0xad, 0xef, 0xfc, 0x93,
0x0, 0x4, 0xff, 0xfe,
/* U+76 "v" */
0xd, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0x80, 0x7f, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf2, 0x1, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfb,
0x0, 0x9, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x40, 0x0, 0x2f,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xd0, 0x0, 0x0, 0xbf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf6,
0x0, 0x0, 0x5, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x0, 0x0, 0x0,
0xe, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x9, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xb0,
0x0, 0x0, 0xe, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0x20, 0x0, 0x5,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf8, 0x0, 0x0, 0xcf, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xe0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x60, 0x9,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xfc, 0x1, 0xff, 0xff, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf3, 0x7f, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xae,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+77 "w" */
0x8f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xe0, 0x2f, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0x80, 0xd, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x20, 0x7,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf6,
0x0, 0x0, 0xbf, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xf1, 0x0, 0x0, 0x5f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xaf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xb0, 0x0, 0x0, 0xf, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0x2c, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0,
0x0, 0xa, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x3,
0xff, 0xfc, 0x6, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0x0, 0x0, 0x0, 0x4, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf6, 0x0,
0xff, 0xff, 0x10, 0x0, 0x0, 0x5, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0x30, 0x0,
0x0, 0xf, 0xff, 0xf0, 0x0, 0xaf, 0xff, 0x60,
0x0, 0x0, 0xb, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x5f, 0xff,
0xa0, 0x0, 0x4f, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xe0, 0x0, 0x0, 0xbf, 0xff, 0x40, 0x0, 0xe,
0xff, 0xf2, 0x0, 0x0, 0x6f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xf4, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x0, 0x8, 0xff, 0xf8, 0x0,
0x0, 0xcf, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf9, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x2, 0xff, 0xfd, 0x0, 0x2, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x0, 0xd, 0xff, 0xf2, 0x0, 0x0, 0x0, 0xcf,
0xff, 0x30, 0x8, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0x50, 0x3f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x90, 0xd,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xb0, 0x9f, 0xff, 0x60, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xe0, 0x3f, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf1,
0xef, 0xff, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xf5, 0x9f, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xfb, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xfb, 0xef, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x20, 0x0, 0x0, 0x0, 0x0,
/* U+78 "x" */
0x8, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xfd, 0x0, 0xc, 0xff, 0xff,
0x20, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0x20, 0x0, 0x1e, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0x50, 0x0, 0x0, 0x4f,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf6, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xf2, 0x0, 0x0, 0xaf, 0xff,
0xf2, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff,
0xd0, 0x0, 0x6f, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0x90, 0x2f, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xff, 0x6d, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xef, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfc, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xff, 0xfd, 0x8, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0x20, 0xc, 0xff, 0xfe, 0x10, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x60, 0x0,
0x1e, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x4f, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xf5, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xf2, 0x0, 0x0, 0x7f, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xd0, 0x0,
0x3f, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0x90, 0x1e, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0x50,
/* U+79 "y" */
0x0, 0xdf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xf8, 0x0, 0x7f,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf1, 0x0, 0xf, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xa0, 0x0, 0x9, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x30,
0x0, 0x2, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x70, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0x90, 0x0, 0x0, 0x0, 0x9,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xef, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x50, 0x0, 0x5, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xc0, 0x0, 0xc, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xf3, 0x0, 0x2f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf9, 0x0,
0x9f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x11, 0xff, 0xff,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0x77, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xed, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x32, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0x81, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xed,
0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xdf, 0xff, 0xff, 0xff, 0xfe, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0x9d, 0xff, 0xeb, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+7A "z" */
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbf, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0xe1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xef, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xeb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb2, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x2f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4,
/* U+7B "{" */
0x0, 0x0, 0x0, 0x3, 0x9d, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xf4, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0xb2, 0x0, 0x0, 0x6f, 0xff,
0xfb, 0x10, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0x4b, 0xcf, 0xff, 0xff,
0x20, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xe5, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xc2, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xfb, 0x10, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0xb2, 0x0,
0x0, 0x8, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x3, 0x9d, 0xff, 0xf4,
/* U+7C "|" */
0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2,
0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f,
0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff,
0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff,
0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe,
0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2,
0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f,
0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff,
0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff,
0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe,
0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2,
0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe, 0x2f,
0xff, 0xe2, 0xff, 0xfe, 0x2f, 0xff, 0xe2, 0xff,
0xfe, 0x2f, 0xff, 0xe2, 0xff, 0xfe,
/* U+7D "}" */
0x2f, 0xff, 0xda, 0x40, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x1b, 0xce, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfc, 0xb5, 0x0, 0x0, 0x0, 0x4e, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x5, 0xff, 0xff, 0x91, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xf9, 0x0, 0x0,
0x1b, 0xce, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x2f,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xda,
0x40, 0x0, 0x0, 0x0,
/* U+7E "~" */
0x0, 0x1, 0x8d, 0xfe, 0xb5, 0x0, 0x0, 0x0,
0x0, 0x9, 0xbb, 0x0, 0x3, 0xef, 0xff, 0xff,
0xfb, 0x10, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x1,
0xef, 0xff, 0xff, 0xff, 0xfe, 0x30, 0x0, 0x0,
0x4f, 0xfd, 0x0, 0x8f, 0xff, 0xc7, 0x8e, 0xff,
0xff, 0x60, 0x0, 0xd, 0xff, 0xa0, 0xd, 0xff,
0xa0, 0x0, 0xa, 0xff, 0xff, 0xc8, 0x8e, 0xff,
0xf4, 0x1, 0xff, 0xf1, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xfb, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x3, 0xdf, 0xff, 0xff, 0xfd, 0x10,
0x3, 0xbb, 0x60, 0x0, 0x0, 0x0, 0x0, 0x7c,
0xff, 0xc7, 0x0, 0x0,
/* U+B0 "°" */
0x0, 0x0, 0x4a, 0xdf, 0xeb, 0x60, 0x0, 0x0,
0x0, 0x1c, 0xff, 0xff, 0xff, 0xfe, 0x30, 0x0,
0x1, 0xef, 0xfe, 0x97, 0x9d, 0xff, 0xf4, 0x0,
0xb, 0xff, 0x80, 0x0, 0x0, 0x6f, 0xfe, 0x10,
0x4f, 0xf9, 0x0, 0x0, 0x0, 0x6, 0xff, 0x90,
0xaf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xe0,
0xdf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf1,
0xef, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf2,
0xdf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf1,
0xaf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xe0,
0x4f, 0xf9, 0x0, 0x0, 0x0, 0x6, 0xff, 0x90,
0xb, 0xff, 0x90, 0x0, 0x0, 0x7f, 0xfe, 0x10,
0x1, 0xef, 0xfe, 0xa8, 0x9e, 0xff, 0xf4, 0x0,
0x0, 0x1c, 0xff, 0xff, 0xff, 0xfe, 0x30, 0x0,
0x0, 0x0, 0x4a, 0xdf, 0xeb, 0x60, 0x0, 0x0,
/* U+2022 "•" */
0x0, 0x27, 0x85, 0x0, 0x0, 0x7f, 0xff, 0xfc,
0x10, 0x5f, 0xff, 0xff, 0xfb, 0xc, 0xff, 0xff,
0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, 0x5e, 0xff,
0xff, 0xff, 0xf4, 0x9f, 0xff, 0xff, 0xfe, 0x1,
0xef, 0xff, 0xff, 0x50, 0x1, 0x9e, 0xfc, 0x40,
0x0,
/* U+F001 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8c, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xae, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x6a, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xae,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x27, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x28, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0xff, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa6, 0x10, 0xe, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x94, 0x0, 0x0, 0x0, 0xef, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x72,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe9, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xc7, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xfe,
0xa5, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xaf, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x14, 0x55, 0x42, 0xef, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0,
0x0, 0x4, 0x79, 0x99, 0x6c, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd4, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x8d, 0xff, 0xff,
0xea, 0x50, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8b, 0xcd, 0xcb, 0x73,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F008 "" */
0x5, 0x60, 0x0, 0x0, 0x18, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x84, 0x0, 0x0, 0x6, 0x50, 0x9f,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xe, 0xf9, 0xff, 0xe0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xfc, 0xaa,
0xaa, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xaa, 0xaa, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd,
0xdd, 0xdd, 0xdd, 0xdd, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x44, 0x44, 0xaf, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xfd, 0x44, 0x44, 0x5f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xf8, 0x0, 0x0, 0xe, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xf2, 0x0,
0x0, 0x7f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xfb,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xff, 0xee, 0xee, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x5f, 0xff, 0xfa,
0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
0x66, 0x8f, 0xff, 0xfa, 0x0, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x4f, 0xff, 0xff, 0xee, 0xee, 0xee, 0xee,
0xee, 0xee, 0xee, 0xee, 0xee, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xe, 0xff, 0xff, 0xf8, 0x66, 0x66,
0xbf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xfd, 0x66,
0x66, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x88, 0x88, 0xcf, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xfe, 0x88, 0x88, 0xaf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x4f, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xf8, 0x0, 0x0, 0xe, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf8,
0x0, 0x0, 0xe, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x5f, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf9, 0x0,
0x0, 0xe, 0xff, 0xff, 0xfd, 0xcc, 0xcc, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xcc, 0xcc,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
0x55, 0x55, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x22, 0x22, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x22, 0x22, 0x3f, 0xff, 0xdf,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xe, 0xfd, 0x3d, 0xd0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xd, 0xd3,
/* U+F00B "" */
0x4, 0x77, 0x77, 0x77, 0x77, 0x76, 0x10, 0x0,
0x3, 0x67, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x40, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x4e, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x1c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x5, 0x78,
0x88, 0x88, 0x88, 0x87, 0x10, 0x0, 0x3, 0x78,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x87, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x88, 0x88, 0x88, 0x88,
0x87, 0x20, 0x0, 0x4, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x60, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x3c, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0,
0x1b, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
/* U+F00C "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0x51, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x9d, 0x91,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xfc, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xc1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x6, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x10, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xef, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xbd, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F00D "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1b, 0xfe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1b, 0xfe, 0x70, 0x0,
0x1, 0xdf, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xf9, 0x0,
0x1d, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0x90,
0xaf, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xdf, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x5f, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe1,
0x7, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x20,
0x0, 0x7f, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe2, 0x0,
0x0, 0x3, 0x77, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x86, 0x0, 0x0,
/* U+F011 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0x22, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3e, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xb5, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x1, 0x9b, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2d, 0xff, 0xf4, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0xbf,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4e, 0xff, 0xff, 0xd0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0x70, 0x0, 0xd, 0xff, 0xff,
0xff, 0x60, 0x0, 0xd, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xf6,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0xd, 0xff, 0xff, 0xff, 0x60, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0,
0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x2,
0xff, 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xe2, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff,
0x60, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0x30,
0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x5f,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0xb, 0xff, 0xff, 0xff, 0xe0, 0xa, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0xff, 0x30, 0xdf, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xf6, 0xf, 0xff, 0xff, 0xff, 0x40, 0x0,
0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff,
0x92, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xfb, 0x3f,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xff, 0xc4, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xfd, 0x3f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xc2, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xfc, 0x1f, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8b, 0xbb, 0xa4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xa0,
0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xff, 0xf8, 0xc, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0x50, 0x8f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xf2, 0x3, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff,
0xfd, 0x0, 0xe, 0xff, 0xff, 0xff, 0xe1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x8f, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0x20, 0x0, 0x0, 0x1e, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x4, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc8, 0x53, 0x22, 0x46, 0x9e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x69, 0xce, 0xff,
0xff, 0xdb, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+F013 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x46,
0x78, 0x87, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xa3, 0x0, 0x0, 0x4, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x20,
0x0, 0x0, 0x6a, 0x10, 0x0, 0x0, 0x0, 0x0,
0x2e, 0xff, 0xa2, 0x0, 0xaf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x3c,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xff, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xca, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb9, 0x9c, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x60, 0x0, 0x2b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x3, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0,
0x1, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x2e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd1, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x31, 0x14,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf5, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf9, 0x16, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x42, 0xbf,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfc,
0x30, 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa1, 0x0, 0x4, 0xdf, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0,
0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x92, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xce,
0xff, 0xff, 0xdb, 0x81, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+F015 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0,
0x0, 0x0, 0x3, 0x44, 0x44, 0x41, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe,
0x50, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xcf,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3e, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x20, 0x0, 0x5f, 0xff, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe4, 0x0, 0x5f, 0xff, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x5f, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xff,
0xff, 0xff, 0xe5, 0x7f, 0xff, 0xff, 0xff, 0xf9,
0x5f, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e,
0xff, 0xff, 0xff, 0xfc, 0x10, 0x3, 0xef, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff,
0x40, 0x0, 0x5f, 0xd2, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff,
0xff, 0xd2, 0x0, 0x8, 0xff, 0xff, 0x40, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xfb, 0x10, 0x0, 0xaf, 0xff, 0xff,
0xf7, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xfd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x1c, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x0, 0x1c, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xaf, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x3,
0xef, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xfe, 0x40,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe3, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff,
0xd2, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x50, 0x0, 0x4f, 0xff, 0xff,
0xff, 0xfc, 0x10, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xfb, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x2,
0xdf, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x2d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x1b, 0xff, 0xff, 0xff, 0xff, 0x50,
0xaf, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x4, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x10, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xf6, 0xef, 0xff, 0xff, 0xfe, 0x30, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x6,
0xff, 0xff, 0xff, 0xfa, 0x4f, 0xff, 0xff, 0xc1,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x60, 0x0, 0x4e, 0xff, 0xff, 0xe1, 0x7, 0xff,
0xfa, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x2, 0xdf, 0xff, 0x30,
0x0, 0x9f, 0x80, 0x0, 0x2d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0xb,
0xf6, 0x0, 0x0, 0x1, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x77, 0x77,
0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x5e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0,
/* U+F019 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xcf, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8c, 0xcc, 0xcc, 0xcc, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xcc, 0xcc, 0xcc,
0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x63,
0x0, 0x8, 0xff, 0xff, 0xff, 0x80, 0x0, 0x36,
0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x40, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x7, 0xff, 0x70, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x22, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0x11, 0x4c,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0,
0x9f, 0xf7, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x3f,
0xf1, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfb, 0x10, 0xaf, 0xf8,
0x2, 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, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x6, 0x89, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x98,
0x60,
/* U+F01C "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0x94, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0x50, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef,
0xff, 0xff, 0xe1, 0x0, 0x0, 0xdf, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xff, 0xfa, 0x0, 0x9, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0x50,
0x3f, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff,
0xff, 0xe0, 0xbf, 0xff, 0xff, 0xf6, 0x44, 0x44,
0x44, 0x44, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x44, 0x44, 0x44, 0x44, 0x44,
0x9f, 0xff, 0xff, 0xf7, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd8, 0x88, 0x88, 0x88, 0x88, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 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, 0xff, 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, 0xff, 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, 0xff, 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,
0xff, 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, 0xff, 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, 0xff, 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, 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, 0xfa,
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, 0xf5, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x1, 0x9e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd7, 0x0,
/* U+F021 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x12, 0x22, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x14, 0x67, 0x88, 0x75, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x9d, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xa5, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe8, 0x20, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x10, 0x0, 0x4,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x3, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc1, 0x2, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x31, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb6, 0x21, 0x0, 0x3, 0x7c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x0,
0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xff, 0x81,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0xc, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x4f, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46,
0x54, 0x43, 0x21, 0x5, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xaf, 0xff, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa, 0xff,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd, 0xff, 0xff,
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x9, 0xff, 0xff, 0xe6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0x44,
0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x41,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x44, 0x43, 0x10, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0xcd, 0xef,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xef, 0xff, 0xff, 0xf7, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xff, 0xf1, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xfe, 0x10, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xdf, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x40, 0x0, 0x0, 0x0, 0x3,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x1b, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0xb8, 0x77, 0x9a, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x10, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x20, 0x5, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x30, 0x0, 0x19, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0x29, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x17, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x2, 0x7a, 0xdf, 0xff, 0xfe,
0xc9, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xad, 0xee, 0xec, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F026 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xef, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf3,
0xcf, 0xff, 0xff, 0xff, 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, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x2, 0x44, 0x44, 0x44, 0x44,
0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xec, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F027 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xef, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x24, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x4f, 0xfe,
0x30, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xb,
0xff, 0xff, 0x40, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xaf, 0xff, 0xff, 0x20, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1, 0xcf, 0xff, 0xfb, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xf1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xd, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xef, 0xff, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x4f, 0xff, 0xff,
0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xb, 0xff,
0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xaf, 0xff, 0xd2, 0x0, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x2, 0xcf, 0xa0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0x44, 0x44, 0x44, 0x44, 0x48, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xec, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F028 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xab, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xb, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xd1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x93,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0x70, 0x0, 0x0, 0x5f, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xfb, 0x0, 0x0, 0x9,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xb0,
0x0, 0x0, 0xdf, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x4f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x50, 0x0, 0xc, 0xff,
0xff, 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xe0, 0x0,
0x4, 0xff, 0xff, 0x50, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x36, 0x10, 0x0, 0x0, 0x9f, 0xff,
0xf7, 0x0, 0x0, 0xdf, 0xff, 0xa0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x5, 0xff, 0xf5, 0x0, 0x0,
0xd, 0xff, 0xfe, 0x0, 0x0, 0x8f, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xc, 0xff, 0xff,
0x60, 0x0, 0x6, 0xff, 0xff, 0x40, 0x0, 0x3f,
0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x9,
0xff, 0xff, 0xf3, 0x0, 0x0, 0xef, 0xff, 0x90,
0x0, 0xf, 0xff, 0xf5, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1, 0xbf, 0xff, 0xfc, 0x0, 0x0, 0xaf,
0xff, 0xc0, 0x0, 0xd, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xa, 0xff, 0xff, 0x20,
0x0, 0x6f, 0xff, 0xf0, 0x0, 0xa, 0xff, 0xfa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x60, 0x0, 0x4f, 0xff, 0xf0, 0x0, 0xa,
0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xdf, 0xff, 0x70, 0x0, 0x3f, 0xff, 0xf1,
0x0, 0x9, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xef, 0xff, 0x70, 0x0, 0x4f,
0xff, 0xf1, 0x0, 0x9, 0xff, 0xfb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x4, 0xff, 0xff, 0x40,
0x0, 0x5f, 0xff, 0xf0, 0x0, 0xa, 0xff, 0xfa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x4e, 0xff,
0xff, 0x0, 0x0, 0x8f, 0xff, 0xe0, 0x0, 0xc,
0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x5,
0xff, 0xff, 0xf7, 0x0, 0x0, 0xcf, 0xff, 0xb0,
0x0, 0xe, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xb, 0xff, 0xff, 0xc0, 0x0, 0x2, 0xff,
0xff, 0x60, 0x0, 0x1f, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0xa, 0xff, 0xfc, 0x10, 0x0,
0xa, 0xff, 0xff, 0x10, 0x0, 0x6f, 0xff, 0xf1,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xbe, 0x80,
0x0, 0x0, 0x4f, 0xff, 0xfb, 0x0, 0x0, 0xbf,
0xff, 0xd0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xf3, 0x0,
0x2, 0xff, 0xff, 0x70, 0x2, 0x44, 0x44, 0x44,
0x44, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff,
0xa0, 0x0, 0x9, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xdf,
0xff, 0xfe, 0x10, 0x0, 0x1f, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x9f, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xff, 0x40, 0x0, 0x4,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xe3, 0x0,
0x0, 0xd, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xfa,
0x10, 0x0, 0x0, 0xcf, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x10, 0x0, 0x0, 0xa, 0xff, 0xff, 0xe1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xec, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F03E "" */
0x0, 0x2, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44,
0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44,
0x44, 0x44, 0x44, 0x44, 0x44, 0x20, 0x0, 0x4,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x30, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xbf, 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, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0,
0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0,
0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0x7a, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x46, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0x5, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x5, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x1d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x1, 0x9e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe9, 0x10,
/* U+F048 "" */
0x3, 0x44, 0x44, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x52, 0x0, 0x2f,
0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0x80, 0x4f, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf4, 0x4f, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xf7, 0x4f, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x2, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xf3, 0x9f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xf3, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xf3, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xf3, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3,
0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x1, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xf7, 0x3f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xf2,
0x1e, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2b, 0xfc, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F04B "" */
0x0, 0x2, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xf9,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x30, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x40, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 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,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x60, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x50, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4a, 0xb8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F04C "" */
0x0, 0x3, 0x44, 0x44, 0x44, 0x44, 0x43, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0x44, 0x44,
0x44, 0x44, 0x30, 0x0, 0x0, 0x4d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x4, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x40, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x40, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x40, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20,
0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x1,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x8d, 0xff, 0xff,
0xff, 0xff, 0xfe, 0xa2, 0x0, 0x0, 0x0, 0x0,
0x8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xea, 0x20,
0x0,
/* U+F04D "" */
0x0, 0x3, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44,
0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44,
0x44, 0x44, 0x30, 0x0, 0x0, 0x4d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 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, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x1,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x8d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x20,
0x0,
/* U+F051 "" */
0x0, 0x15, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0x44, 0x44, 0x40, 0x5,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xf6, 0x1f, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xfd,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xe2,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x30,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0xf, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfb, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0xf, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x1f, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x60, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0,
0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x20, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd1, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x10,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x4f, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf8, 0x3f, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0xd, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf7,
0x2, 0xbf, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xe4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F052 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xff,
0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0,
0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x1, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x30, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x10, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x10, 0x0, 0x5, 0x9b, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x27, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x84, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x70, 0xd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xea, 0x10,
/* U+F053 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2b, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x33, 0x0, 0x0,
/* U+F054 "" */
0x0, 0x7, 0xca, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xfd,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F067 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x56, 0x65, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xef, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0x79, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a,
0xff, 0xff, 0xff, 0xff, 0xc9, 0x99, 0x99, 0x99,
0x99, 0x99, 0x98, 0x40, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x70, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 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, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0xa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2,
0x0, 0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x3f, 0xff, 0xff, 0xff, 0xf7, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0xde, 0xed, 0xa2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F068 "" */
0x2, 0x89, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x98, 0x40, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 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, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0xa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F06E "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x35, 0x67, 0x66, 0x53, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0x7b, 0xef, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xa6, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x17, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x19, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x51, 0x0, 0x0,
0x26, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x10, 0x0,
0x0, 0x0, 0x0, 0x2, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x10, 0x0, 0x0, 0x2, 0xbd, 0xdb,
0x71, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xfb, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0xef, 0xff, 0xff,
0xff, 0xff, 0xfb, 0x0, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x3, 0x10,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xa, 0xfc, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfb, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0xb, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x10, 0x0, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xe3,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x2, 0xaf, 0xff, 0xff,
0xe9, 0x10, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x35, 0x53, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff,
0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2c, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x71, 0x0, 0x0, 0x0,
0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8,
0x65, 0x57, 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x8e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x7a, 0xce,
0xff, 0xff, 0xdc, 0x97, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F070 "" */
0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xfc, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xe4, 0x0, 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,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xff, 0xff, 0xfb, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0x46, 0x66, 0x64, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0x15, 0x9c, 0xff,
0xff, 0xff, 0xff, 0xff, 0xda, 0x61, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x1, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xd3, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb6, 0x20, 0x0, 0x2, 0x6b,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0xff,
0xff, 0xff, 0xfd, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xdf, 0xff, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x3b, 0xdc, 0xa6, 0x10, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xfd, 0x20, 0xf, 0xff, 0xff,
0xe6, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x40, 0x0, 0x0, 0x0, 0x3, 0xdf, 0xff, 0xff,
0xff, 0xf5, 0xc, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xfb, 0x10, 0x0,
0x0, 0x0, 0x1b, 0xff, 0xff, 0xff, 0xff, 0x9c,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0x4, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x30, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff,
0xff, 0xff, 0x50, 0xd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xf9,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xff, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x86, 0x55, 0x74, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x1b, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x17, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x48, 0xac, 0xef, 0xff, 0xed,
0xb8, 0x51, 0x0, 0x0, 0x0, 0x0, 0x4, 0xef,
0xff, 0xff, 0xff, 0xe4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xb3, 0x0,
/* U+F071 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d,
0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xff, 0xfe, 0xcc, 0xcc, 0xcc, 0xff,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0,
0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x9a, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50,
0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc4, 0x11, 0x6e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0xd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x8, 0xce, 0xee, 0xee, 0xee,
0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
0xee, 0xee, 0xdb, 0x60, 0x0,
/* U+F074 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff,
0xa0, 0x0, 0xad, 0xdd, 0xdd, 0xdd, 0xdd, 0xda,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8d, 0xdd, 0xdd, 0xef, 0xff, 0xff, 0xff, 0xfa,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x25, 0x55, 0x55, 0x55, 0x6f,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x2, 0xef, 0xff,
0xff, 0xff, 0xf8, 0x55, 0xaf, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x1d, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0x20, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x0, 0x8f, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf4,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x50, 0x0,
0xbf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0xa, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xb,
0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff,
0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff,
0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xc9, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0xc8, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xc1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0xb, 0xff, 0x70, 0x0,
0x0, 0x7f, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x9f, 0xff, 0xf6, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x8, 0xff, 0xff, 0xff, 0x50, 0x0, 0x8f,
0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x11, 0x11,
0x11, 0x2d, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xf4, 0x11, 0x8f, 0xff,
0xff, 0xff, 0xc1, 0x0, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x10, 0x1, 0x22, 0x22,
0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x22, 0x22, 0x9f, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff,
0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xd1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xfd, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xd1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xdb, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F077 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x5f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xfb, 0x2f, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf7,
0x4, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x90, 0x0, 0x5f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfa, 0x0,
0x0, 0x3, 0x97, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x59, 0x60, 0x0,
/* U+F078 "" */
0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x0, 0x0, 0x0, 0xb, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xe3, 0x0,
0x0, 0xcf, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1d, 0xff, 0xfe, 0x30, 0xb, 0xff, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xe2,
0x4f, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xff, 0xfa, 0x4f, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xfa,
0xc, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x30,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x1,
0xdf, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xf5, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0x50, 0x1, 0xdf,
0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F079 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xa1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xfd, 0x10,
0x0, 0x0, 0x2, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0xd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x20, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2,
0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x2, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x2c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xff, 0xad, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xf6, 0x2f, 0xff, 0xff, 0x91, 0xdf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x70,
0x2f, 0xff, 0xff, 0x90, 0x2e, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x0, 0x2f, 0xff, 0xff,
0x90, 0x2, 0xef, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff,
0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16,
0x30, 0x0, 0x2f, 0xff, 0xff, 0x90, 0x0, 0x16,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xf9, 0x0, 0xa, 0xff,
0xff, 0xf1, 0x0, 0x4e, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x2f, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xa0, 0xa, 0xff, 0xff, 0xf1, 0x4,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x2f,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xf9,
0xa, 0xff, 0xff, 0xf1, 0x3f, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0x7a, 0xff, 0xff,
0xf3, 0xef, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xeb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xba, 0x60, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x10, 0x0,
0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 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, 0x6f, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 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,
0x6f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F07B "" */
0x0, 0x16, 0x78, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcb, 0xa5,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 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, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x1d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x1, 0x9e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe9, 0x10,
/* U+F093 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xfd, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x13, 0x33, 0x33, 0x33, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa3, 0x33, 0x33, 0x33,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x20,
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x2,
0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x40, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0xd,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x5, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x10, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x14, 0x44,
0x44, 0x44, 0x30, 0x0, 0x1e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe6, 0x21, 0x11, 0x11, 0x11,
0x12, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0,
0x9f, 0xf7, 0x1, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x3f,
0xf1, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfb, 0x10, 0xaf, 0xf8,
0x2, 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, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x6, 0x89, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x98,
0x60,
/* U+F095 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xc9, 0x51, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xff, 0xfd, 0xa6, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xef, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xaf,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0xef, 0xff, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0x5, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf2, 0x0, 0x2b, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd3, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x92, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9b, 0xba, 0x98, 0x64, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F0C4 "" */
0x0, 0x0, 0x0, 0x57, 0x98, 0x51, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff,
0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xdf, 0xff, 0xe8, 0x10, 0x0, 0x1d, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff,
0xfe, 0x30, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd1, 0x9f, 0xff, 0xff, 0xf7, 0x35,
0xef, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0xd,
0xff, 0xff, 0xf4, 0x0, 0x1, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0xff, 0xff, 0xfd, 0x0,
0x0, 0xa, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0xf, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0x30, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0xef, 0xff, 0xff,
0x20, 0x0, 0xd, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0xa, 0xff, 0xff, 0xfd, 0x20, 0x1a, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49,
0xcd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0x79, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe2, 0x4f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0x73, 0x5e,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0xdf,
0xff, 0xff, 0x40, 0x0, 0x1f, 0xff, 0xff, 0xf1,
0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xd0, 0x0,
0x0, 0xaf, 0xff, 0xff, 0x20, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0,
0xff, 0xff, 0xfd, 0x0, 0x0, 0x9, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb0, 0x0, 0xe, 0xff, 0xff, 0xf2,
0x0, 0x0, 0xdf, 0xff, 0xff, 0x10, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0xaf, 0xff, 0xff, 0xd2, 0x1, 0xaf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x5, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3b, 0xff, 0xff, 0xfd, 0x40, 0x0,
0x0, 0x3c, 0xff, 0xff, 0xff, 0xfe, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x56, 0x52, 0x0, 0x0, 0x0, 0x0, 0x4, 0x9c,
0xdc, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F0C5 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x8f, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x8, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x8f, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x8, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x8f, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x8, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x8f,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x8, 0xff, 0xff, 0xff, 0xff,
0x0, 0x46, 0x66, 0x66, 0x64, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x59, 0x99, 0x99, 0x99, 0x90, 0x8f, 0xff, 0xff,
0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xdd, 0xdd,
0xdd, 0xdd, 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xa0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xfa, 0x0, 0x5f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff,
0xa0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x5f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xfa,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff,
0xff, 0xff, 0xfd, 0x0, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x50, 0xff, 0xff, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19,
0xbc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xb9, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F0C7 "" */
0x0, 0x27, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x97, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x60, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x32, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0xbf, 0xff, 0xff, 0xff, 0x60, 0x0, 0xf,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x60,
0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x6f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, 0xe2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xcb, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe5, 0x0, 0x0, 0x2b,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd1, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0x10, 0x0, 0x3c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6e, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x50, 0x0, 0x8d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x30,
0x0,
/* U+F0E7 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xca, 0xaa, 0xaa, 0xaa, 0xaa, 0xa7, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0x1, 0xad, 0xdd, 0xdd, 0xdd,
0xdd, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xd3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F0EA "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5c, 0xff, 0xfc, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x44,
0x44, 0x44, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x64,
0x44, 0x44, 0x44, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xa, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x40, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0xa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x9c, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x8d, 0x50, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x8,
0xff, 0x50, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x8f, 0xff, 0x50, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x8, 0xff, 0xff, 0x50, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x8f, 0xff, 0xff,
0x50, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x8, 0xff, 0xff, 0xff, 0x50, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x8f, 0xff,
0xff, 0xff, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x8, 0xff, 0xff, 0xff, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x5a,
0xaa, 0xaa, 0xaa, 0xa0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x42, 0x22, 0x22, 0x22,
0x22, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x17, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf1, 0x2, 0x55, 0x55, 0x55, 0x55,
0x52, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd4, 0x0,
/* U+F0F3 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xc1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xdf,
0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0,
0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x90, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x30, 0x0, 0x12, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x21, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x8b, 0xb9, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F11C "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0x82, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x60, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 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, 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, 0xfb, 0xff, 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, 0xff, 0xff, 0xfe, 0x10,
0x0, 0x1e, 0xff, 0x60, 0x0, 0x3, 0xff, 0xf4,
0x0, 0x0, 0x5f, 0xfe, 0x20, 0x0, 0x2e, 0xff,
0x50, 0x0, 0x4, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xb, 0xff, 0x20, 0x0, 0x0,
0xef, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0xc, 0xff, 0x10, 0x0, 0x0, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xb, 0xff, 0x20,
0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0xc, 0xff, 0x10, 0x0, 0x0, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xb,
0xff, 0x20, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0xc, 0xff, 0x10, 0x0,
0x0, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xb, 0xff, 0x20, 0x0, 0x0, 0xef, 0xf0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0xc, 0xff,
0x10, 0x0, 0x0, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xfe, 0x10, 0x0, 0x1d, 0xff, 0x60, 0x0, 0x2,
0xff, 0xf3, 0x0, 0x0, 0x4f, 0xfe, 0x10, 0x0,
0x1e, 0xff, 0x40, 0x0, 0x3, 0xff, 0xff, 0xfc,
0xff, 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, 0xff, 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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xee, 0xef, 0xff, 0xfe, 0xee, 0xee,
0xff, 0xff, 0xee, 0xee, 0xff, 0xff, 0xfe, 0xee,
0xef, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0x30, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0xef, 0xf3, 0x0, 0x0, 0x1f, 0xff,
0x10, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0xcf, 0xf1,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x5, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0xcf, 0xf1, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x5, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0x10, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x22, 0x27,
0xff, 0xf3, 0x22, 0x23, 0xff, 0xf7, 0x22, 0x22,
0x5f, 0xff, 0x52, 0x22, 0x2a, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 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, 0xff, 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, 0xff, 0xff,
0xff, 0xcb, 0xbb, 0xcf, 0xff, 0xeb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xcf, 0xff, 0xeb, 0xbb, 0xbd, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xc, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0x20, 0x0, 0x1, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xb,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x10, 0x0,
0x0, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xb, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0x10, 0x0, 0x0, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xb, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0xff, 0x10, 0x0, 0x0, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xfd, 0x0, 0x0, 0xc, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0x20, 0x0, 0x1, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xdc, 0xcc, 0xcf,
0xff, 0xec, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xdf, 0xff, 0xec, 0xcc,
0xce, 0xff, 0xff, 0xfc, 0xff, 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, 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, 0xfa,
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, 0xf5, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xa0, 0x1, 0x9e, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd7, 0x0,
/* U+F124 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xaf, 0xff, 0xa1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xbf, 0xff, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x5, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xef, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0,
0x0, 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x1a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0,
0x1, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0,
0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0x89, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
0xaa, 0xaa, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0x9b, 0x83, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F15B "" */
0x4, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,
0x77, 0x77, 0x0, 0x6, 0x30, 0x0, 0x0, 0x0,
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x0, 0xff, 0x60, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0xf, 0xff,
0x60, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0,
0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x20, 0xf, 0xff, 0xff, 0x60, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x0, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x20, 0xf, 0xff, 0xff, 0xff,
0x60, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xff, 0xff,
0xff, 0xff, 0x60, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0xf,
0xff, 0xff, 0xff, 0xff, 0x60, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x20, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x7b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0x18, 0xaa, 0xaa,
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa4, 0x0,
/* U+F1EB "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x34, 0x56, 0x66, 0x65, 0x32, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x25, 0x9c, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0xb7, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x9d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb7, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x29, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfb, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xdd, 0xee,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x10, 0x0, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8,
0x53, 0x10, 0x0, 0x0, 0x0, 0x2, 0x47, 0xae,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4,
0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0x9f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xaf, 0xff,
0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xef, 0xff,
0xff, 0xff, 0xf3, 0xb, 0xff, 0xff, 0xff, 0x50,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1b, 0xff, 0xff, 0xff, 0x40,
0x0, 0xcf, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x48, 0xac, 0xef, 0xff, 0xed,
0xb9, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8f, 0xff, 0xf4, 0x0, 0x0, 0xb, 0xfc,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9,
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff,
0x50, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x22, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x97,
0x53, 0x33, 0x46, 0x8b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xe7, 0x20, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xe6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2,
0xaf, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xdf, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xdf, 0xff,
0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xfe, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xa, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x61, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x27, 0x98, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9,
0xff, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff,
0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 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, 0xdf,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6b, 0xdc, 0x93, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+F240 "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb8, 0x30, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 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, 0xa0, 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, 0xc0,
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, 0xc0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0xa0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xc,
0xcd, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x6, 0x77, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x38, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xe2, 0xff, 0xff, 0xfe, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbf, 0xff, 0xff, 0xd4, 0x10,
0xff, 0xff, 0xff, 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, 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,
0xb0, 0x0, 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, 0x60, 0x0, 0x1e,
0xff, 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, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F241 "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb8, 0x30, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 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, 0xa0, 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, 0xc0,
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, 0xc0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0xa0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xcd, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x2f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xfc, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x2f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xfc, 0x0, 0x2f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x77, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x18, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xe2, 0xff, 0xff, 0xfe, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbf, 0xff, 0xff, 0xd4, 0x10,
0xff, 0xff, 0xff, 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, 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,
0xb0, 0x0, 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, 0x60, 0x0, 0x1e,
0xff, 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, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F242 "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb8, 0x30, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 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, 0xa0, 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, 0xc0,
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, 0xc0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0xa0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xcd, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x77, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x18, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xe2, 0xff, 0xff, 0xfe, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbf, 0xff, 0xff, 0xd4, 0x10,
0xff, 0xff, 0xff, 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, 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,
0xb0, 0x0, 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, 0x60, 0x0, 0x1e,
0xff, 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, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F243 "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb8, 0x30, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 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, 0xa0, 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, 0xc0,
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, 0xc0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0xa0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xcd, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x77, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x38, 0x88, 0x88, 0x88, 0x88, 0x88, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xe2, 0xff, 0xff, 0xfe, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbf, 0xff, 0xff, 0xd4, 0x10,
0xff, 0xff, 0xff, 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, 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,
0xb0, 0x0, 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, 0x60, 0x0, 0x1e,
0xff, 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, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F244 "" */
0x0, 0x49, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xb8, 0x30, 0x0, 0x0, 0x9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 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, 0xa0, 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, 0xc0,
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, 0xc0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0xa0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xcd, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x77, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xe2, 0xff, 0xff, 0xfe, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb,
0xbb, 0xbb, 0xbb, 0xbf, 0xff, 0xff, 0xd4, 0x10,
0xff, 0xff, 0xff, 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, 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,
0xb0, 0x0, 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, 0x60, 0x0, 0x1e,
0xff, 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, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F287 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xad, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xc1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xaa, 0xae, 0xff, 0xff,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x8, 0xff, 0xfd, 0x99, 0x9e, 0xff, 0xff, 0xff,
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xb0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xfe, 0x10, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
0xf6, 0x0, 0x0, 0x0, 0x3, 0x9b, 0xa5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x9, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x58, 0x98, 0x40, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff,
0xfc, 0x20, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb9, 0x0, 0x0, 0x0,
0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x1, 0xef, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x9, 0xff,
0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xb2, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x50, 0x0, 0x6f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xde,
0xff, 0xff, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
0xff, 0xff, 0xff, 0xfe, 0x50, 0xff, 0xff, 0xff,
0xff, 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, 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, 0xd3, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x55, 0x55,
0x55, 0x55, 0xaf, 0xff, 0xd5, 0x55, 0x55, 0x55,
0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8,
0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfb, 0x20,
0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfa, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0, 0xbf,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x5f, 0xff, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70,
0x0, 0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, 0xc4,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0,
0x0, 0x0, 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, 0xf7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xfe, 0x10, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x90, 0x0,
0xc, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x8, 0xff, 0xf6, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf,
0xff, 0xdd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xd0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x45, 0x5d, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0x89, 0x99, 0x99, 0x99, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+F293 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x6a, 0xdf, 0xff, 0xff, 0xff, 0xc9, 0x50, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff,
0x70, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x2, 0xef, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x30, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xbf,
0xff, 0xff, 0xf0, 0x0, 0xd5, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0x20, 0x3, 0xff, 0xff, 0xff,
0xf5, 0x8, 0xff, 0xff, 0xf0, 0x0, 0xdf, 0x50,
0x0, 0x8f, 0xff, 0xff, 0xff, 0x50, 0x6, 0xff,
0xff, 0xff, 0x40, 0x0, 0x8f, 0xff, 0xf0, 0x0,
0xcf, 0xf6, 0x0, 0x9, 0xff, 0xff, 0xff, 0x80,
0x9, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x8, 0xff,
0xf0, 0x0, 0xcf, 0xfc, 0x0, 0x3, 0xff, 0xff,
0xff, 0xa0, 0xb, 0xff, 0xff, 0xff, 0xfa, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0xcf, 0xc0, 0x0, 0x2e,
0xff, 0xff, 0xff, 0xc0, 0xd, 0xff, 0xff, 0xff,
0xff, 0xa0, 0x0, 0x7, 0xf0, 0x0, 0xcc, 0x0,
0x1, 0xef, 0xff, 0xff, 0xff, 0xe0, 0xe, 0xff,
0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x70, 0x0,
0x80, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x10, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf2, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe2, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf2, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0xc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf1,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x0,
0x30, 0x0, 0x40, 0x0, 0x1d, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xd1,
0x0, 0x3, 0xe0, 0x0, 0xc7, 0x0, 0x2, 0xef,
0xff, 0xff, 0xff, 0xf0, 0xc, 0xff, 0xff, 0xff,
0xfd, 0x10, 0x0, 0x3e, 0xf1, 0x0, 0xcf, 0x60,
0x0, 0x2e, 0xff, 0xff, 0xff, 0xd0, 0xa, 0xff,
0xff, 0xff, 0xd1, 0x0, 0x3, 0xff, 0xf1, 0x0,
0xcf, 0xf6, 0x0, 0x3, 0xff, 0xff, 0xff, 0xb0,
0x7, 0xff, 0xff, 0xff, 0x30, 0x0, 0x3f, 0xff,
0xf1, 0x0, 0xcf, 0xf9, 0x0, 0x1, 0xdf, 0xff,
0xff, 0x90, 0x4, 0xff, 0xff, 0xff, 0xd1, 0x3,
0xff, 0xff, 0xf1, 0x0, 0xdf, 0xa0, 0x0, 0x1d,
0xff, 0xff, 0xff, 0x70, 0x1, 0xff, 0xff, 0xff,
0xfd, 0x5f, 0xff, 0xff, 0xf1, 0x0, 0xda, 0x0,
0x1, 0xdf, 0xff, 0xff, 0xff, 0x40, 0x0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0,
0x70, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf2, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff,
0xfb, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf2, 0x0, 0x0, 0xc, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0xb, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0,
0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0,
0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xa, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x71,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x26, 0x8a, 0xcd, 0xdd, 0xcb, 0x96,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+F2ED "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x67,
0x77, 0x77, 0x77, 0x77, 0x76, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x99, 0x99,
0x99, 0x99, 0x99, 0x9d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0x99, 0x99, 0x99, 0x99,
0x99, 0x50, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf3, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x10, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22,
0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xc4, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x2, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x70, 0x7f,
0xff, 0xff, 0xe3, 0x1c, 0xff, 0xff, 0xfb, 0x14,
0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xf1, 0x1, 0xff, 0xff, 0xfb, 0x0,
0x7f, 0xff, 0xff, 0x50, 0xd, 0xff, 0xff, 0xff,
0x60, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x10,
0x1f, 0xff, 0xff, 0xb0, 0x7, 0xff, 0xff, 0xf5,
0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x2,
0xff, 0xff, 0xff, 0xf1, 0x1, 0xff, 0xff, 0xfb,
0x0, 0x7f, 0xff, 0xff, 0x50, 0xd, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0x10, 0x1f, 0xff, 0xff, 0xb0, 0x7, 0xff, 0xff,
0xf5, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x2, 0xff, 0xff, 0xff, 0xf1, 0x1, 0xff, 0xff,
0xfb, 0x0, 0x7f, 0xff, 0xff, 0x50, 0xd, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0x10, 0x1f, 0xff, 0xff, 0xb0, 0x7, 0xff,
0xff, 0xf5, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x2, 0xff, 0xff, 0xff, 0xf1, 0x1, 0xff,
0xff, 0xfb, 0x0, 0x7f, 0xff, 0xff, 0x50, 0xd,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x2f, 0xff,
0xff, 0xff, 0x10, 0x1f, 0xff, 0xff, 0xb0, 0x7,
0xff, 0xff, 0xf5, 0x0, 0xdf, 0xff, 0xff, 0xf6,
0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xf1, 0x1,
0xff, 0xff, 0xfb, 0x0, 0x7f, 0xff, 0xff, 0x50,
0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x2f,
0xff, 0xff, 0xff, 0x10, 0x1f, 0xff, 0xff, 0xb0,
0x7, 0xff, 0xff, 0xf5, 0x0, 0xdf, 0xff, 0xff,
0xf6, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xf1,
0x1, 0xff, 0xff, 0xfb, 0x0, 0x7f, 0xff, 0xff,
0x50, 0xd, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0x10, 0x1f, 0xff, 0xff,
0xb0, 0x7, 0xff, 0xff, 0xf5, 0x0, 0xdf, 0xff,
0xff, 0xf6, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff,
0xf1, 0x1, 0xff, 0xff, 0xfb, 0x0, 0x7f, 0xff,
0xff, 0x50, 0xd, 0xff, 0xff, 0xff, 0x60, 0x0,
0x0, 0x2f, 0xff, 0xff, 0xff, 0x10, 0x1f, 0xff,
0xff, 0xb0, 0x7, 0xff, 0xff, 0xf5, 0x0, 0xdf,
0xff, 0xff, 0xf6, 0x0, 0x0, 0x2, 0xff, 0xff,
0xff, 0xf1, 0x1, 0xff, 0xff, 0xfb, 0x0, 0x7f,
0xff, 0xff, 0x50, 0xd, 0xff, 0xff, 0xff, 0x60,
0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x10, 0x1f,
0xff, 0xff, 0xb0, 0x7, 0xff, 0xff, 0xf5, 0x0,
0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x2, 0xff,
0xff, 0xff, 0xf1, 0x1, 0xff, 0xff, 0xfb, 0x0,
0x7f, 0xff, 0xff, 0x50, 0xd, 0xff, 0xff, 0xff,
0x60, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x10,
0x1f, 0xff, 0xff, 0xb0, 0x7, 0xff, 0xff, 0xf5,
0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x2,
0xff, 0xff, 0xff, 0xf1, 0x1, 0xff, 0xff, 0xfb,
0x0, 0x7f, 0xff, 0xff, 0x50, 0xd, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff,
0x10, 0x1f, 0xff, 0xff, 0xb0, 0x7, 0xff, 0xff,
0xf5, 0x0, 0xdf, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x2, 0xff, 0xff, 0xff, 0xf1, 0x1, 0xff, 0xff,
0xfb, 0x0, 0x7f, 0xff, 0xff, 0x50, 0xd, 0xff,
0xff, 0xff, 0x60, 0x0, 0x0, 0x2f, 0xff, 0xff,
0xff, 0x70, 0x7f, 0xff, 0xff, 0xe3, 0x1c, 0xff,
0xff, 0xfb, 0x14, 0xff, 0xff, 0xff, 0xf6, 0x0,
0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xd0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0,
0x0, 0x6, 0xab, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc,
0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcb,
0x71, 0x0, 0x0, 0x0,
/* U+F304 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x23, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xdf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x8f, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x50, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xdb,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x9b, 0xa8, 0x64, 0x20, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+F55A "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x26, 0x78, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88,
0x88, 0x87, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfb, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xa, 0xff,
0xff, 0xff, 0xff, 0xfb, 0x0, 0x8f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff,
0xb0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0xa, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0xaf,
0xff, 0xa0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf4, 0x0, 0x0, 0x0, 0xa, 0xfa, 0x0, 0x0,
0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x4f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x1d, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0,
0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x6f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x3, 0xe3,
0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x30, 0x0, 0x0,
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe2, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0x40, 0x0, 0x2, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x20,
0x3, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x2e,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0x5f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x53, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 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, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x0, 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, 0xf1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xae, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xeb, 0x40, 0x0,
/* U+F7C2 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xbb, 0xbb,
0xff, 0xfb, 0xbb, 0xbc, 0xff, 0xeb, 0xbb, 0xbf,
0xff, 0xff, 0xa0, 0x0, 0x3, 0xff, 0xff, 0xf1,
0x0, 0xc, 0xff, 0x10, 0x0, 0x3f, 0xfa, 0x0,
0x1, 0xff, 0xff, 0xfa, 0x0, 0x3, 0xff, 0xff,
0xff, 0x10, 0x0, 0xcf, 0xf1, 0x0, 0x3, 0xff,
0xa0, 0x0, 0x1f, 0xff, 0xff, 0xa0, 0x3, 0xff,
0xff, 0xff, 0xf1, 0x0, 0xc, 0xff, 0x10, 0x0,
0x3f, 0xfa, 0x0, 0x1, 0xff, 0xff, 0xfa, 0x4,
0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0xcf, 0xf1,
0x0, 0x3, 0xff, 0xa0, 0x0, 0x1f, 0xff, 0xff,
0xa4, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0xc,
0xff, 0x10, 0x0, 0x3f, 0xfa, 0x0, 0x1, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x0, 0xcf, 0xf1, 0x0, 0x3, 0xff, 0xa0, 0x0,
0x1f, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xf1, 0x0, 0xc, 0xff, 0x10, 0x0, 0x3f, 0xfa,
0x0, 0x1, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff,
0xff, 0xff, 0x10, 0x0, 0xcf, 0xf1, 0x0, 0x3,
0xff, 0xa0, 0x0, 0x1f, 0xff, 0xff, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf5, 0x0, 0x9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x2, 0x8a,
0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
0xaa, 0xaa, 0xaa, 0xa9, 0x61, 0x0, 0x0,
/* U+F8A2 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6f, 0xff, 0xf3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6f, 0xff, 0xff, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1a, 0xd8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0,
0x0, 0x1d, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x2d, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x2e,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x3e, 0xff,
0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x30, 0x0, 0x0, 0x4f, 0xff, 0xff,
0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xf3, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff,
0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0x30, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff,
0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf3, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x30, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xaf,
0xff, 0xff, 0xff, 0xff, 0xfa, 0x33, 0x33, 0x33,
0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
0x33, 0x33, 0x33, 0x32, 0x0, 0x0, 0x0, 0x9f,
0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f,
0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f,
0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0xfc, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 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 = 198, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 0, .adv_w = 197, .box_w = 7, .box_h = 33, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 116, .adv_w = 288, .box_w = 14, .box_h = 13, .ofs_x = 2, .ofs_y = 20},
{.bitmap_index = 207, .adv_w = 517, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 719, .adv_w = 457, .box_w = 26, .box_h = 45, .ofs_x = 1, .ofs_y = -6},
{.bitmap_index = 1304, .adv_w = 620, .box_w = 37, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 1915, .adv_w = 505, .box_w = 29, .box_h = 34, .ofs_x = 2, .ofs_y = -1},
{.bitmap_index = 2408, .adv_w = 155, .box_w = 5, .box_h = 13, .ofs_x = 2, .ofs_y = 20},
{.bitmap_index = 2441, .adv_w = 248, .box_w = 11, .box_h = 44, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 2683, .adv_w = 249, .box_w = 11, .box_h = 44, .ofs_x = 1, .ofs_y = -9},
{.bitmap_index = 2925, .adv_w = 294, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = 17},
{.bitmap_index = 3087, .adv_w = 428, .box_w = 21, .box_h = 21, .ofs_x = 3, .ofs_y = 6},
{.bitmap_index = 3308, .adv_w = 167, .box_w = 7, .box_h = 14, .ofs_x = 2, .ofs_y = -7},
{.bitmap_index = 3357, .adv_w = 282, .box_w = 13, .box_h = 4, .ofs_x = 2, .ofs_y = 11},
{.bitmap_index = 3383, .adv_w = 167, .box_w = 7, .box_h = 7, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 3408, .adv_w = 259, .box_w = 20, .box_h = 44, .ofs_x = -2, .ofs_y = -5},
{.bitmap_index = 3848, .adv_w = 491, .box_w = 27, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 4294, .adv_w = 272, .box_w = 13, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 4509, .adv_w = 422, .box_w = 25, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 4922, .adv_w = 421, .box_w = 25, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 5335, .adv_w = 492, .box_w = 30, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 5830, .adv_w = 422, .box_w = 25, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 6243, .adv_w = 454, .box_w = 26, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 6672, .adv_w = 440, .box_w = 25, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 7085, .adv_w = 474, .box_w = 26, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 7514, .adv_w = 454, .box_w = 26, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 7943, .adv_w = 167, .box_w = 7, .box_h = 25, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 8031, .adv_w = 167, .box_w = 7, .box_h = 32, .ofs_x = 2, .ofs_y = -7},
{.bitmap_index = 8143, .adv_w = 428, .box_w = 21, .box_h = 21, .ofs_x = 3, .ofs_y = 6},
{.bitmap_index = 8364, .adv_w = 428, .box_w = 21, .box_h = 15, .ofs_x = 3, .ofs_y = 9},
{.bitmap_index = 8522, .adv_w = 428, .box_w = 21, .box_h = 21, .ofs_x = 3, .ofs_y = 6},
{.bitmap_index = 8743, .adv_w = 422, .box_w = 24, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 9139, .adv_w = 761, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 10063, .adv_w = 539, .box_w = 35, .box_h = 33, .ofs_x = -1, .ofs_y = 0},
{.bitmap_index = 10641, .adv_w = 557, .box_w = 29, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 11120, .adv_w = 532, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 11615, .adv_w = 608, .box_w = 32, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 12143, .adv_w = 493, .box_w = 25, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 12556, .adv_w = 467, .box_w = 24, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 12952, .adv_w = 568, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 13447, .adv_w = 598, .box_w = 29, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 13926, .adv_w = 228, .box_w = 6, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 14025, .adv_w = 378, .box_w = 21, .box_h = 33, .ofs_x = -1, .ofs_y = 0},
{.bitmap_index = 14372, .adv_w = 529, .box_w = 30, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 14867, .adv_w = 437, .box_w = 23, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 15247, .adv_w = 703, .box_w = 36, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 15841, .adv_w = 598, .box_w = 29, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 16320, .adv_w = 618, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 16898, .adv_w = 531, .box_w = 27, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 17344, .adv_w = 618, .box_w = 36, .box_h = 40, .ofs_x = 2, .ofs_y = -7},
{.bitmap_index = 18064, .adv_w = 535, .box_w = 28, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 18526, .adv_w = 457, .box_w = 26, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 18955, .adv_w = 432, .box_w = 27, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 19401, .adv_w = 582, .box_w = 28, .box_h = 33, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 19863, .adv_w = 524, .box_w = 34, .box_h = 33, .ofs_x = -1, .ofs_y = 0},
{.bitmap_index = 20424, .adv_w = 829, .box_w = 50, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 21249, .adv_w = 495, .box_w = 31, .box_h = 33, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 21761, .adv_w = 476, .box_w = 31, .box_h = 33, .ofs_x = -1, .ofs_y = 0},
{.bitmap_index = 22273, .adv_w = 484, .box_w = 28, .box_h = 33, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 22735, .adv_w = 245, .box_w = 11, .box_h = 44, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 22977, .adv_w = 259, .box_w = 20, .box_h = 44, .ofs_x = -2, .ofs_y = -5},
{.bitmap_index = 23417, .adv_w = 245, .box_w = 11, .box_h = 44, .ofs_x = 0, .ofs_y = -9},
{.bitmap_index = 23659, .adv_w = 429, .box_w = 21, .box_h = 20, .ofs_x = 3, .ofs_y = 7},
{.bitmap_index = 23869, .adv_w = 368, .box_w = 23, .box_h = 3, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 23904, .adv_w = 442, .box_w = 13, .box_h = 6, .ofs_x = 5, .ofs_y = 28},
{.bitmap_index = 23943, .adv_w = 440, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 24218, .adv_w = 502, .box_w = 26, .box_h = 35, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 24673, .adv_w = 420, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 24973, .adv_w = 502, .box_w = 27, .box_h = 35, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 25446, .adv_w = 450, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 25771, .adv_w = 260, .box_w = 18, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 26086, .adv_w = 508, .box_w = 27, .box_h = 34, .ofs_x = 1, .ofs_y = -9},
{.bitmap_index = 26545, .adv_w = 501, .box_w = 24, .box_h = 35, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 26965, .adv_w = 205, .box_w = 7, .box_h = 36, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 27091, .adv_w = 209, .box_w = 15, .box_h = 45, .ofs_x = -5, .ofs_y = -9},
{.bitmap_index = 27429, .adv_w = 453, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 27867, .adv_w = 205, .box_w = 5, .box_h = 35, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 27955, .adv_w = 778, .box_w = 41, .box_h = 25, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 28468, .adv_w = 501, .box_w = 24, .box_h = 25, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 28768, .adv_w = 467, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 29106, .adv_w = 502, .box_w = 26, .box_h = 34, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 29548, .adv_w = 502, .box_w = 27, .box_h = 34, .ofs_x = 1, .ofs_y = -9},
{.bitmap_index = 30007, .adv_w = 302, .box_w = 14, .box_h = 25, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 30182, .adv_w = 369, .box_w = 21, .box_h = 25, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 30445, .adv_w = 305, .box_w = 18, .box_h = 31, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 30724, .adv_w = 498, .box_w = 24, .box_h = 25, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 31024, .adv_w = 411, .box_w = 27, .box_h = 25, .ofs_x = -1, .ofs_y = 0},
{.bitmap_index = 31362, .adv_w = 662, .box_w = 42, .box_h = 25, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 31887, .adv_w = 406, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 32200, .adv_w = 411, .box_w = 28, .box_h = 34, .ofs_x = -2, .ofs_y = -9},
{.bitmap_index = 32676, .adv_w = 383, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = 0},
{.bitmap_index = 32951, .adv_w = 258, .box_w = 14, .box_h = 44, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 33259, .adv_w = 220, .box_w = 5, .box_h = 44, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 33369, .adv_w = 258, .box_w = 14, .box_h = 44, .ofs_x = 0, .ofs_y = -9},
{.bitmap_index = 33677, .adv_w = 428, .box_w = 23, .box_h = 8, .ofs_x = 2, .ofs_y = 12},
{.bitmap_index = 33769, .adv_w = 308, .box_w = 16, .box_h = 15, .ofs_x = 2, .ofs_y = 18},
{.bitmap_index = 33889, .adv_w = 231, .box_w = 9, .box_h = 9, .ofs_x = 3, .ofs_y = 9},
{.bitmap_index = 33930, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 35035, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 35840, .adv_w = 736, .box_w = 46, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 36783, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 37588, .adv_w = 506, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 38116, .adv_w = 736, .box_w = 45, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 39174, .adv_w = 736, .box_w = 44, .box_h = 47, .ofs_x = 1, .ofs_y = -6},
{.bitmap_index = 40208, .adv_w = 828, .box_w = 52, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 41274, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 42355, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 43265, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 44346, .adv_w = 368, .box_w = 23, .box_h = 36, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 44760, .adv_w = 552, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 45390, .adv_w = 828, .box_w = 52, .box_h = 44, .ofs_x = 0, .ofs_y = -5},
{.bitmap_index = 46534, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 47339, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4},
{.bitmap_index = 47969, .adv_w = 644, .box_w = 41, .box_h = 48, .ofs_x = 0, .ofs_y = -7},
{.bitmap_index = 48953, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 49794, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 50635, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4},
{.bitmap_index = 51265, .adv_w = 644, .box_w = 42, .box_h = 41, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 52126, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 52626, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 53126, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 53967, .adv_w = 644, .box_w = 41, .box_h = 10, .ofs_x = 0, .ofs_y = 12},
{.bitmap_index = 54172, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 55082, .adv_w = 920, .box_w = 58, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 56445, .adv_w = 828, .box_w = 54, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 57714, .adv_w = 736, .box_w = 46, .box_h = 42, .ofs_x = 0, .ofs_y = -4},
{.bitmap_index = 58680, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5},
{.bitmap_index = 59180, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5},
{.bitmap_index = 59680, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 60724, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 61529, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 62610, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 63715, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 64556, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 65520, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 66361, .adv_w = 460, .box_w = 31, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 67090, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 68054, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 69018, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 69928, .adv_w = 736, .box_w = 48, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 71056, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 71879, .adv_w = 920, .box_w = 58, .box_h = 42, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 73097, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 73967, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 74837, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 75707, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 76577, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 77447, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 78491, .adv_w = 644, .box_w = 36, .box_h = 47, .ofs_x = 2, .ofs_y = -6},
{.bitmap_index = 79337, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 80301, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6},
{.bitmap_index = 81406, .adv_w = 920, .box_w = 58, .box_h = 35, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 82421, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6},
{.bitmap_index = 83244, .adv_w = 740, .box_w = 47, .box_h = 30, .ofs_x = 0, .ofs_y = 2}
};
/*---------------------
* CHARACTER MAPPING
*--------------------*/
static const uint16_t unicode_list_1[] = {
0x0, 0x1f72, 0xef51, 0xef58, 0xef5b, 0xef5c, 0xef5d, 0xef61,
0xef63, 0xef65, 0xef69, 0xef6c, 0xef71, 0xef76, 0xef77, 0xef78,
0xef8e, 0xef98, 0xef9b, 0xef9c, 0xef9d, 0xefa1, 0xefa2, 0xefa3,
0xefa4, 0xefb7, 0xefb8, 0xefbe, 0xefc0, 0xefc1, 0xefc4, 0xefc7,
0xefc8, 0xefc9, 0xefcb, 0xefe3, 0xefe5, 0xf014, 0xf015, 0xf017,
0xf037, 0xf03a, 0xf043, 0xf06c, 0xf074, 0xf0ab, 0xf13b, 0xf190,
0xf191, 0xf192, 0xf193, 0xf194, 0xf1d7, 0xf1e3, 0xf23d, 0xf254,
0xf4aa, 0xf712, 0xf7f2
};
/*Collect the unicode lists and glyph_id offsets*/
static const lv_font_fmt_txt_cmap_t cmaps[] =
{
{
.range_start = 32, .range_length = 95, .glyph_id_start = 1,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 176, .range_length = 63475, .glyph_id_start = 96,
.unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 59, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
}
};
/*-----------------
* KERNING
*----------------*/
/*Map glyph_ids to kern left classes*/
static const uint8_t kern_left_class_mapping[] =
{
0, 0, 1, 2, 0, 3, 4, 5,
2, 6, 7, 8, 9, 10, 9, 10,
11, 12, 0, 13, 14, 15, 16, 17,
18, 19, 12, 20, 20, 0, 0, 0,
21, 22, 23, 24, 25, 22, 26, 27,
28, 29, 29, 30, 31, 32, 29, 29,
22, 33, 34, 35, 3, 36, 30, 37,
37, 38, 39, 40, 41, 42, 43, 0,
44, 0, 45, 46, 47, 48, 49, 50,
51, 45, 52, 52, 53, 48, 45, 45,
46, 46, 54, 55, 56, 57, 51, 58,
58, 59, 58, 60, 41, 0, 0, 9,
61, 9, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0
};
/*Map glyph_ids to kern right classes*/
static const uint8_t kern_right_class_mapping[] =
{
0, 0, 1, 2, 0, 3, 4, 5,
2, 6, 7, 8, 9, 10, 9, 10,
11, 12, 13, 14, 15, 16, 17, 12,
18, 19, 20, 21, 21, 0, 0, 0,
22, 23, 24, 25, 23, 25, 25, 25,
23, 25, 25, 26, 25, 25, 25, 25,
23, 25, 23, 25, 3, 27, 28, 29,
29, 30, 31, 32, 33, 34, 35, 0,
36, 0, 37, 38, 39, 39, 39, 0,
39, 38, 40, 41, 38, 38, 42, 42,
39, 42, 39, 42, 43, 44, 45, 46,
46, 47, 46, 48, 0, 0, 35, 9,
49, 9, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0
};
/*Kern values between classes*/
static const int8_t kern_class_values[] =
{
0, 2, 0, 0, 0, 0, 0, 0,
0, 2, 0, 0, 7, 0, 0, 0,
0, 5, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 2, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 2, 33, 0, 20, -16, 0, 0,
0, 0, -40, -44, 5, 35, 16, 13,
-29, 5, 36, 2, 31, 7, 24, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 44, 6, -5, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 15, 0, -22, 0, 0, 0, 0,
0, -15, 13, 15, 0, 0, -7, 0,
-5, 7, 0, -7, 0, -7, -4, -15,
0, 0, 0, 0, -7, 0, 0, -10,
-11, 0, 0, -7, 0, -15, 0, 0,
0, 0, 0, 0, 0, 0, 0, -7,
-7, 0, -11, 0, -20, 0, -89, 0,
0, -15, 0, 15, 22, 1, 0, -15,
7, 7, 24, 15, -13, 15, 0, 0,
-42, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -27, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -20, -9, -36, 0, -29,
-5, 0, 0, 0, 0, 1, 29, 0,
-22, -6, -2, 2, 0, -13, 0, 0,
-5, -54, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -59, -6, 28,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -30, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 24,
0, 7, 0, 0, -15, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 28, 6,
2, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-27, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 5,
15, 7, 22, -7, 0, 0, 15, -7,
-24, -101, 5, 20, 15, 1, -10, 0,
26, 0, 24, 0, 24, 0, -68, 0,
-9, 22, 0, 24, -7, 15, 7, 0,
0, 2, -7, 0, 0, -13, 59, 0,
59, 0, 22, 0, 31, 10, 13, 22,
0, 0, 0, -27, 0, 0, 0, 0,
2, -5, 0, 5, -13, -10, -15, 5,
0, -7, 0, 0, 0, -29, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 2, -40, 0, -46, 0, 0, 0,
0, -5, 0, 73, -9, -10, 7, 7,
-7, 0, -10, 7, 0, 0, -39, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -71, 0, 7, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -46, 0, 44, 0, 0, -27, 0,
24, 0, -50, -71, -50, -15, 22, 0,
0, -49, 0, 9, -17, 0, -11, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 19, 22, -90, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 35, 0, 5, 0, 0, 0,
0, 0, 5, 5, -9, -15, 0, -2,
-2, -7, 0, 0, -5, 0, 0, 0,
-15, 0, -6, 0, -17, -15, 0, -18,
-24, -24, -14, 0, -15, 0, -15, 0,
0, 0, 0, -6, 0, 0, 7, 0,
5, -7, 0, 2, 0, 0, 0, 7,
-5, 0, 0, 0, -5, 7, 7, -2,
0, 0, 0, -14, 0, -2, 0, 0,
0, 0, 0, 2, 0, 10, -5, 0,
-9, 0, -13, 0, 0, -5, 0, 22,
0, 0, -7, 0, 0, 0, 0, 0,
-2, 2, -5, -5, 0, 0, -7, 0,
-7, 0, 0, 0, 0, 0, 0, 0,
0, 0, -4, -4, 0, -7, -9, 0,
0, 0, 0, 0, 2, 0, 0, -5,
0, -7, -7, -7, 0, 0, 0, 0,
0, 0, 0, 0, 0, -4, 0, 0,
0, 0, -5, -10, 0, -11, 0, -22,
-5, -22, 15, 0, 0, -15, 7, 15,
20, 0, -18, -2, -9, 0, -2, -35,
7, -5, 5, -39, 7, 0, 0, 2,
-38, 0, -39, -6, -64, -5, 0, -37,
0, 15, 21, 0, 10, 0, 0, 0,
0, 1, 0, -13, -10, 0, -22, 0,
0, 0, -7, 0, 0, 0, -7, 0,
0, 0, 0, 0, -4, -4, 0, -4,
-10, 0, 0, 0, 0, 0, 0, 0,
-7, -7, 0, -5, -9, -6, 0, 0,
-7, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -6, -6, 0, -9,
0, -5, 0, -15, 7, 0, 0, -9,
4, 7, 7, 0, 0, 0, 0, 0,
0, -5, 0, 0, 0, 0, 0, 5,
0, 0, -7, 0, -7, -5, -9, 0,
0, 0, 0, 0, 0, 0, 6, 0,
-6, 0, 0, 0, 0, -8, -11, 0,
-14, 0, 22, -5, 2, -24, 0, 0,
20, -37, -38, -31, -15, 7, 0, -6,
-48, -13, 0, -13, 0, -15, 11, -13,
-47, 0, -20, 0, 0, 4, -2, 6,
-5, 0, 7, 1, -22, -28, 0, -37,
-18, -15, -18, -22, -9, -20, -1, -14,
-20, 4, 0, 2, 0, -7, 0, 0,
0, 5, 0, 7, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -7,
0, -4, 0, -2, -7, 0, -13, -16,
-16, -2, 0, -22, 0, 0, 0, 0,
0, 0, -6, 0, 0, 0, 0, 3,
-4, 0, 0, 0, 7, 0, 0, 0,
0, 0, 0, 0, 0, 35, 0, 0,
0, 0, 0, 0, 5, 0, 0, 0,
-7, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -13, 0, 7, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -5, 0, 0, 0,
-14, 0, 0, 0, 0, -37, -22, 0,
0, 0, -11, -37, 0, 0, -7, 7,
0, -20, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -12, 0, 0, -14,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 7, 0, -13, 0,
0, 0, 0, 9, 0, 5, -15, -15,
0, -7, -7, -9, 0, 0, 0, 0,
0, 0, -22, 0, -7, 0, -11, -7,
0, -16, -18, -22, -6, 0, -15, 0,
-22, 0, 0, 0, 0, 59, 0, 0,
4, 0, 0, -10, 0, 7, 0, -32,
0, 0, 0, 0, 0, -68, -13, 24,
22, -6, -31, 0, 7, -11, 0, -37,
-4, -10, 7, -52, -7, 10, 0, 11,
-26, -11, -27, -24, -31, 0, 0, -44,
0, 42, 0, 0, -4, 0, 0, 0,
-4, -4, -7, -20, -24, -1, -68, 0,
0, 0, 0, 0, 0, 0, 0, 0,
2, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -7, 0, -4, -7, -11, 0, 0,
-15, 0, -7, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -2, 0, -15, 0, 0, 15,
-2, 10, 0, -16, 7, -5, -2, -19,
-7, 0, -10, -7, -5, 0, -11, -13,
0, 0, -6, -2, -5, -13, -9, 0,
0, -7, 0, 7, -5, 0, -16, 0,
0, 0, -15, 0, -13, 0, -13, -13,
7, 0, 0, 0, 0, 0, 0, 0,
0, -15, 7, 0, -10, 0, -5, -9,
-23, -5, -5, -5, -2, -5, -9, -2,
0, 0, 0, 0, 0, -7, -6, -6,
0, 0, 0, 0, 9, -5, 0, -5,
0, 0, 0, -5, -9, -5, -7, -9,
-7, 0, 6, 29, -2, 0, -20, 0,
-5, 15, 0, -7, -31, -10, 11, 1,
0, -35, -13, 7, -13, 5, 0, -5,
-6, -24, 0, -11, 4, 0, 0, -13,
0, 0, 0, 7, 7, -15, -14, 0,
-13, -7, -11, -7, -7, 0, -13, 4,
-14, -13, 22, 0, 0, 0, 0, 0,
0, 0, 0, 0, 7, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -13, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-5, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -6, -7,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -11, 0, 0, -10,
0, 0, -7, -7, 0, 0, 0, 0,
-7, 0, 0, 0, 0, -4, 0, 0,
0, 0, 0, -5, 0, 0, 0, 0,
-11, 0, -15, 0, 0, 0, -24, 0,
5, -16, 15, 1, -5, -35, 0, 0,
-16, -7, 0, -29, -18, -21, 0, 0,
-32, -7, -29, -28, -35, 0, -19, 0,
6, 49, -10, 0, -17, -7, -2, -7,
-13, -20, -13, -27, -30, -17, -7, 0,
0, -5, 0, 2, 0, 0, -52, -7,
22, 16, -16, -27, 0, 2, -23, 0,
-37, -5, -7, 15, -68, -10, 2, 0,
0, -48, -9, -38, -7, -54, 0, 0,
-52, 0, 43, 2, 0, -5, 0, 0,
0, 0, -4, -5, -28, -5, 0, -48,
0, 0, 0, 0, -24, 0, -7, 0,
-2, -21, -35, 0, 0, -4, -11, -22,
-7, 0, -5, 0, 0, 0, 0, -33,
-7, -24, -24, -6, -13, -18, -7, -13,
0, -15, -7, -24, -11, 0, -9, -14,
-7, -14, 0, 4, 0, -5, -24, 0,
15, 0, -13, 0, 0, 0, 0, 9,
0, 5, -15, 30, 0, -7, -7, -9,
0, 0, 0, 0, 0, 0, -22, 0,
-7, 0, -11, -7, 0, -16, -18, -22,
-6, 0, -15, 6, 29, 0, 0, 0,
0, 59, 0, 0, 4, 0, 0, -10,
0, 7, 0, 0, 0, 0, 0, 0,
0, 0, -1, 0, 0, 0, 0, 0,
-5, -15, 0, 0, 0, 0, 0, -4,
0, 0, 0, -7, -7, 0, 0, -15,
-7, 0, 0, -15, 0, 13, -4, 0,
0, 0, 0, 0, 0, 4, 0, 0,
0, 0, 11, 15, 6, -7, 0, -24,
-12, 0, 22, -24, -24, -15, -15, 29,
13, 7, -64, -5, 15, -7, 0, -7,
8, -7, -26, 0, -7, 7, -10, -6,
-22, -6, 0, 0, 22, 15, 0, -21,
0, -40, -10, 21, -10, -28, 2, -10,
-24, -24, -7, 29, 7, 0, -11, 0,
-20, 0, 6, 24, -17, -27, -29, -18,
22, 0, 2, -54, -6, 7, -13, -5,
-17, 0, -16, -27, -11, -11, -6, 0,
0, -17, -15, -7, 0, 22, 17, -7,
-40, 0, -40, -10, 0, -26, -43, -2,
-24, -13, -24, -21, 20, 0, 0, -10,
0, -15, -7, 0, -7, -13, 0, 13,
-24, 7, 0, 0, -39, 0, -7, -16,
-13, -5, -22, -18, -24, -17, 0, -22,
-7, -17, -14, -22, -7, 0, 0, 2,
35, -13, 0, -22, -7, 0, -7, -15,
-17, -20, -21, -28, -10, -15, 15, 0,
-11, 0, -37, -9, 4, 15, -24, -27,
-15, -24, 24, -7, 4, -68, -13, 15,
-16, -13, -27, 0, -22, -31, -9, -7,
-6, -7, -15, -22, -2, 0, 0, 22,
21, -5, -48, 0, -44, -17, 18, -28,
-50, -15, -26, -31, -37, -24, 15, 0,
0, 0, 0, -9, 0, 0, 7, -9,
15, 5, -14, 15, 0, 0, -23, -2,
0, -2, 0, 2, 2, -6, 0, 0,
0, 0, 0, 0, -7, 0, 0, 0,
0, 6, 22, 1, 0, -9, 0, 0,
0, 0, -5, -5, -9, 0, 0, 0,
2, 6, 0, 0, 0, 0, 6, 0,
-6, 0, 28, 0, 13, 2, 2, -10,
0, 15, 0, 0, 0, 6, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 22, 0, 21, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -44, 0, -7, 13, 0, 22,
0, 0, 73, 9, -15, -15, 7, 7,
-5, 2, -37, 0, 0, 35, -44, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -50, 28, 103, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -44, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -12, 0, 0, -14,
-7, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -5, 0, -20, 0,
0, 2, 0, 0, 7, 95, -15, -6,
24, 20, -20, 7, 0, 0, 7, 7,
-10, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -96, 21, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -21,
0, 0, 0, -20, 0, 0, 0, 0,
-16, -4, 0, 0, 0, -16, 0, -9,
0, -35, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -49, 0, 0,
0, 0, 2, 0, 0, 0, 0, 0,
0, -7, 0, 0, -14, 0, -11, 0,
-20, 0, 0, 0, -13, 7, -9, 0,
0, -20, -7, -17, 0, 0, -20, 0,
-7, 0, -35, 0, -8, 0, 0, -60,
-14, -29, -8, -26, 0, 0, -49, 0,
-20, -4, 0, 0, 0, 0, 0, 0,
0, 0, -11, -13, -6, -13, 0, 0,
0, 0, -16, 0, -16, 10, -8, 15,
0, -5, -17, -5, -13, -14, 0, -9,
-4, -5, 5, -20, -2, 0, 0, 0,
-65, -6, -10, 0, -16, 0, -5, -35,
-7, 0, 0, -5, -6, 0, 0, 0,
0, 5, 0, -5, -13, -5, 13, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 10, 0, 0, 0, 0, 0,
0, -16, 0, -5, 0, 0, 0, -15,
7, 0, 0, 0, -20, -7, -15, 0,
0, -21, 0, -7, 0, -35, 0, 0,
0, 0, -71, 0, -15, -27, -37, 0,
0, -49, 0, -5, -11, 0, 0, 0,
0, 0, 0, 0, 0, -7, -11, -4,
-11, 2, 0, 0, 13, -10, 0, 23,
36, -7, -7, -22, 9, 36, 13, 16,
-20, 9, 31, 9, 21, 16, 20, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 46, 35, -13, -7, 0, -6,
59, 32, 59, 0, 0, 0, 7, 0,
0, 27, 0, 0, -12, 0, 0, 0,
0, 0, 0, 0, 0, 0, -5, 0,
0, 0, 0, 0, 0, 0, 0, 10,
0, 0, 0, 0, -62, -9, -6, -30,
-36, 0, 0, -49, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -12, 0, 0,
0, 0, 0, 0, 0, 0, 0, -5,
0, 0, 0, 0, 0, 0, 0, 0,
10, 0, 0, 0, 0, -62, -9, -6,
-30, -36, 0, 0, -29, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-6, 0, 0, 0, -17, 7, 0, -7,
6, 13, 7, -22, 0, -1, -6, 7,
0, 6, 0, 0, 0, 0, -18, 0,
-7, -5, -15, 0, -7, -29, 0, 46,
-7, 0, -16, -5, 0, -5, -13, 0,
-7, -21, -15, -9, 0, 0, 0, -12,
0, 0, 0, 0, 0, 0, 0, 0,
0, -5, 0, 0, 0, 0, 0, 0,
0, 0, 10, 0, 0, 0, 0, -62,
-9, -6, -30, -36, 0, 0, -49, 0,
0, 0, 0, 0, 0, 37, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-12, 0, -24, -9, -7, 22, -7, -7,
-29, 2, -4, 2, -5, -20, 1, 16,
1, 6, 2, 6, -18, -29, -9, 0,
-28, -14, -20, -31, -29, 0, -12, -15,
-9, -10, -6, -5, -9, -5, 0, -5,
-2, 11, 0, 11, -5, 0, 23, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -5, -7, -7, 0, 0,
-20, 0, -4, 0, -13, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-44, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -7, -7, 0, -10,
0, 0, 0, 0, -6, 0, 0, -13,
-7, 7, 0, -13, -14, -5, 0, -21,
-5, -16, -5, -9, 0, -13, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -49, 0, 24, 0, 0, -13, 0,
0, 0, 0, -10, 0, -7, 0, 0,
-4, 0, 0, -5, 0, -17, 0, 0,
31, -10, -24, -23, 5, 8, 8, -1,
-21, 5, 11, 5, 22, 5, 24, -5,
-20, 0, 0, -29, 0, 0, -22, -20,
0, 0, -15, 0, -10, -13, 0, -11,
0, -11, 0, -5, 11, 0, -6, -22,
-7, 27, 0, 0, -7, 0, -15, 0,
0, 10, -17, 0, 7, -7, 6, 1,
0, -24, 0, -5, -2, 0, -7, 8,
-6, 0, 0, 0, -30, -9, -16, 0,
-22, 0, 0, -35, 0, 27, -7, 0,
-13, 0, 4, 0, -7, 0, -7, -22,
0, -7, 7, 0, 0, 0, 0, -5,
0, 0, 7, -10, 2, 0, 0, -9,
-5, 0, -9, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -46, 0, 16, 0,
0, -6, 0, 0, 0, 0, 1, 0,
-7, -7, 0, 0, 0, 15, 0, 17,
0, 0, 0, 0, 0, -46, -42, 2,
32, 22, 13, -29, 5, 31, 0, 27,
0, 15, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 39, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0
};
/*Collect the kern class' data in one place*/
static const lv_font_fmt_txt_kern_classes_t kern_classes =
{
.class_pair_values = kern_class_values,
.left_class_mapping = kern_left_class_mapping,
.right_class_mapping = kern_right_class_mapping,
.left_class_cnt = 61,
.right_class_cnt = 49,
};
/*--------------------
* ALL CUSTOM DATA
*--------------------*/
/*Store all the custom data of the font*/
static lv_font_fmt_txt_dsc_t font_dsc = {
.glyph_bitmap = gylph_bitmap,
.glyph_dsc = glyph_dsc,
.cmaps = cmaps,
.kern_dsc = &kern_classes,
.kern_scale = 16,
.cmap_num = 2,
.bpp = 4,
.kern_classes = 1,
.bitmap_format = 0
};
/*-----------------
* PUBLIC FONT
*----------------*/
/*Initialize a public general font descriptor*/
lv_font_t lv_font_montserrat_46 = {
.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 = 50, /*The maximum line height required by the font*/
.base_line = 9, /*Baseline measured from the bottom of the line*/
#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0)
.subpx = LV_FONT_SUBPX_NONE,
#endif
.dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
};
#endif /*#if LV_FONT_MONTSERRAT_46*/
| 542,258 | lv_font_montserrat_46 | c | en | c | code | {"qsc_code_num_words": 91008, "qsc_code_num_chars": 542258.0, "qsc_code_mean_word_length": 3.42106188, "qsc_code_frac_words_unique": 0.01083421, "qsc_code_frac_chars_top_2grams": 0.56838738, "qsc_code_frac_chars_top_3grams": 0.70917378, "qsc_code_frac_chars_top_4grams": 0.78545917, "qsc_code_frac_chars_dupe_5grams": 0.95877871, "qsc_code_frac_chars_dupe_6grams": 0.94174932, "qsc_code_frac_chars_dupe_7grams": 0.92286667, "qsc_code_frac_chars_dupe_8grams": 0.90175176, "qsc_code_frac_chars_dupe_9grams": 0.8667005, "qsc_code_frac_chars_dupe_10grams": 0.83497675, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.35110849, "qsc_code_frac_chars_whitespace": 0.25194096, "qsc_code_size_file_byte": 542258.0, "qsc_code_num_lines": 11563.0, "qsc_code_num_chars_line_max": 573.0, "qsc_code_num_chars_line_mean": 46.89596126, "qsc_code_frac_chars_alphabet": 0.41628188, "qsc_code_frac_chars_comments": 0.00742451, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.57607143, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 2.23e-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.55278496, "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": 8.929e-05, "qsc_codec_frac_lines_print": 0.0, "qsc_codec_frac_lines_preprocessor_directives": 0.00071429} | 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": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 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": 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} |
00ffcc/chunkRWKV6 | cuda/inter.cu | #include <stdio.h>
#include <assert.h>
#include "ATen/ATen.h"
typedef at::BFloat16 bf16;
typedef at::Half fp16;
typedef float fp32;
template <typename F>
__global__ void inter_fwd_kernel(const int B, const int T, const int C, const int H, const int CK, float *__restrict__ _state,
const F *__restrict__ const _r, const float *__restrict__ _w, float *__restrict__ const _y)
// CK : chunk nums
{
const int b = blockIdx.x;
const int ck= blockIdx.y+1;
const int h = blockIdx.z;
const int i = threadIdx.x;
_state+=b*CK*H*_N_*_N_ + (ck-1)*H*_N_*_N_ + h*_N_*_N_ + i*_N_; // state_(ck-1)
float state[_N_];
#pragma unroll
for (int j = 0; j < _N_; j++)
state[j] = _state[j];
__shared__ float r[_N_], cw[_N_];
__syncthreads();
cw[i]=1.0f;
// process y
for (int t = b*CK*T*C + ck*T*C + h*_N_ + i; t < b*CK*T*C + (ck+1)*T*C + h*_N_ + i; t += C)
{
__syncthreads();
r[i] = float(_r[t]);
__syncthreads();
float y = _y[t];
#pragma unroll
for (int j = 0; j < _N_; j += 4)
{
const float4& r_ = (float4&)(r[j]);
const float4& w_ = (float4&)(cw[j]);
const float4& state_ = (float4&)(state[j]);
y += r_.x*w_.x*state_.x;
y += r_.y*w_.y*state_.y;
y += r_.z*w_.z*state_.z;
y += r_.w*w_.w*state_.w;
}
_y[t] = y;
__syncthreads();
cw[i] *= _w[t];
__syncthreads();
}
}
void inter_fwd_bf16(int B, int T, int C, int H, int CK, float *state, bf16 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, r, w, y);
}
void inter_fwd_fp16(int B, int T, int C, int H, int CK, float *state, fp16 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, r, w, y);
}
void inter_fwd_fp32(int B, int T, int C, int H, int CK, float *state, fp32 *r, float *w, float *y)
{
assert(H*_N_ == C);
inter_fwd_kernel<<<dim3(B, CK-1, H), dim3(_N_)>>>(B, T, C, H, CK, state, r, w, y);
} | 2,198 | inter | cu | en | cuda | code | {"qsc_code_num_words": 370, "qsc_code_num_chars": 2198.0, "qsc_code_mean_word_length": 2.83513514, "qsc_code_frac_words_unique": 0.14594595, "qsc_code_frac_chars_top_2grams": 0.0686368, "qsc_code_frac_chars_top_3grams": 0.01429933, "qsc_code_frac_chars_top_4grams": 0.02287893, "qsc_code_frac_chars_dupe_5grams": 0.36415634, "qsc_code_frac_chars_dupe_6grams": 0.36415634, "qsc_code_frac_chars_dupe_7grams": 0.33841754, "qsc_code_frac_chars_dupe_8grams": 0.33841754, "qsc_code_frac_chars_dupe_9grams": 0.33841754, "qsc_code_frac_chars_dupe_10grams": 0.29456625, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02829582, "qsc_code_frac_chars_whitespace": 0.29253867, "qsc_code_size_file_byte": 2198.0, "qsc_code_num_lines": 65.0, "qsc_code_num_chars_line_max": 127.0, "qsc_code_num_chars_line_mean": 33.81538462, "qsc_code_frac_chars_alphabet": 0.64630225, "qsc_code_frac_chars_comments": 0.02183803, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22033898, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0051139, "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.06779661} | 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} |
00ffcc/conRWKV | conRWKV/models/v7/model_fla.py | ########################################################################################################
# The RWKV Language Model - https://github.com/BlinkDL/RWKV-LM
# 笑死,刚准备改就发现fla加了rwkv7的layer和model
# 1.21号晚上发现cu_seqlens有问题,想修一下,结果22号Zhiyuan Li就修了,太强了orz
########################################################################################################
import torch, types
import torch.nn as nn
from typing import List, Optional, Union
from fla.ops.rwkv7 import chunk_rwkv7, fused_recurrent_rwkv7
from torch.nn import functional as F
torch.backends.cudnn.benchmark = True
torch.backends.cudnn.allow_tf32 = True
torch.backends.cuda.matmul.allow_tf32 = True
# torch.backends.cuda.matmul.allow_fp16_reduced_precision_reduction = True
# torch.backends.cuda.matmul.allow_bf16_reduced_precision_reduction = True
torch._C._jit_set_autocast_mode(False)
import time
from conRWKV.utils import log
# DTYPE = torch.bfloat16
DTYPE = torch.half # better
########################################################################################################
# RWKV TimeMix
########################################################################################################
class RWKV_Tmix_x070(torch.nn.Module):
def __init__(self, args, layer_id):
super().__init__()
self.args = args
self.layer_id = layer_id
self.dtype = DTYPE
self.head_size = args.head_size
self.n_head = args.dim_att // self.head_size
assert args.dim_att % self.n_head == 0
H = self.n_head
N = self.head_size
C = args.n_embd
self.x_r = nn.Parameter(torch.empty(1,1,C))
self.x_w = nn.Parameter(torch.empty(1,1,C))
self.x_k = nn.Parameter(torch.empty(1,1,C))
self.x_v = nn.Parameter(torch.empty(1,1,C))
self.x_a = nn.Parameter(torch.empty(1,1,C))
self.x_g = nn.Parameter(torch.empty(1,1,C))
self.w0 = nn.Parameter(torch.empty(1,1,C))
self.w1 = nn.Parameter(torch.empty(C, args.D_DECAY_LORA))
self.w2 = nn.Parameter(torch.empty(args.D_DECAY_LORA, C))
self.a0 = nn.Parameter(torch.empty(1,1,C))
self.a1 = nn.Parameter(torch.empty(C, args.D_AAA_LORA))
self.a2 = nn.Parameter(torch.empty(args.D_AAA_LORA, C))
self.v0 = nn.Parameter(torch.empty(1,1,C))
self.v1 = nn.Parameter(torch.empty(C, args.D_MV_LORA))
self.v2 = nn.Parameter(torch.empty(args.D_MV_LORA, C))
self.g1 = nn.Parameter(torch.empty(C, args.D_GATE_LORA))
self.g2 = nn.Parameter(torch.empty(args.D_GATE_LORA, C))
self.k_k = nn.Parameter(torch.empty(1,1,C))
self.k_a = nn.Parameter(torch.empty(1,1,C))
self.r_k = nn.Parameter(torch.empty(H,N))
self.receptance = nn.Linear(C, C, bias=False)
self.key = nn.Linear(C, C, bias=False)
self.value = nn.Linear(C, C, bias=False)
self.output = nn.Linear(C, C, bias=False)
self.ln_x = nn.GroupNorm(H, C, eps=64e-5) # !!! notice eps value !!!
def forward(self,
x: torch.Tensor,
v_first: torch.Tensor,
state: torch.Tensor,
cu_seqlens: torch.LongTensor
):
B, T, C = x.shape
H = self.n_head
N = self.head_size
xx = torch.cat([torch.empty(1, 1, C, device=x.device, dtype=x.dtype), x[:, :-1, :]], dim=1)
N_prefill = cu_seqlens.shape[-1] - 1
xx[0, cu_seqlens[:-1], :] = state[self.layer_id, :N_prefill, :, 0]
xx[0, cu_seqlens[-1]:, :] = state[self.layer_id, N_prefill:, :, 0]
state[self.layer_id, :N_prefill, :, 0] = x[0, cu_seqlens[1:]-1, :]
state[self.layer_id, N_prefill:, :, 0] = x[0, cu_seqlens[-1]:, :]
xx = xx - x
xr = x + xx * self.x_r
xw = x + xx * self.x_w
xk = x + xx * self.x_k
xv = x + xx * self.x_v
xa = x + xx * self.x_a
xg = x + xx * self.x_g
r = self.receptance(xr)
w = -torch.exp(-F.softplus(-(self.w0 + torch.tanh(xw @ self.w1) @ self.w2)) - 0.5) # soft-clamp to (-inf, -0.5)
k = self.key(xk)
v = self.value(xv)
if self.layer_id == 0:
v_first = v # store the v of the first layer
else:
v = v + (v_first - v) * torch.sigmoid(self.v0 + (xv @ self.v1) @ self.v2) # add value residual
a = torch.sigmoid(self.a0 + (xa @ self.a1) @ self.a2) # a is "in-context learning rate"
g = torch.sigmoid(xg @ self.g1) @ self.g2
kk = k * self.k_k
kk = F.normalize(kk.view(B,T,H,-1), dim=-1, p=2.0).view(B,T,C)
k = k * (1 + (a-1) * self.k_a)
r.resize_((B, T, H, N))
w.resize_((B, T, H, N))
k.resize_((B, T, H, N))
v.resize_((B, T, H, N))
kk.resize_((B, T, H, N))
a.resize_((B, T, H, N))
N_prefill = cu_seqlens.shape[-1] - 1
if N_prefill > 0:
# prefilling
r_ = r[:, :cu_seqlens[-1], :, :]
w_ = w[:, :cu_seqlens[-1], :, :]
k_ = k[:, :cu_seqlens[-1], :, :]
v_ = v[:, :cu_seqlens[-1], :, :]
kk_ = kk[:, :cu_seqlens[-1], :, :]
a_ = a[:, :cu_seqlens[-1], :, :]
recurrent_state = state[self.layer_id, :N_prefill, :, 1:-1].reshape(-1, H, N, N)
x1, recurrent_state = chunk_rwkv7(
r=r_,
log_w=w_,
k=k_,
v=v_,
a=-kk_,
b=kk_ * a_,
scale=1.,
initial_state=recurrent_state,
output_final_state=True,
cu_seqlens=cu_seqlens,
head_first=False
)
state[self.layer_id, :N_prefill, :, 1:-1] = recurrent_state.reshape(-1, H*N, N)
else:
x1 = torch.empty(B, 0, H, N, device=x.device, dtype=x.dtype)
if cu_seqlens[-1] < T:
# decoding
r_ = r[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
w_ = w[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
k_ = k[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
v_ = v[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
kk_ = kk[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
a_ = a[:, cu_seqlens[-1]:, :, :].view(-1, 1, H, N)
recurrent_state = state[self.layer_id, N_prefill:, :, 1:-1].reshape(-1, H, N, N)
x2, recurrent_state = fused_recurrent_rwkv7(
r=r_,
log_w=w_,
k=k_,
v=v_,
a=-kk_,
b=kk_ * a_,
scale=1.,
initial_state=recurrent_state,
output_final_state=True,
cu_seqlens=None,
head_first=False
)
state[self.layer_id, N_prefill:, :, 1:-1] = recurrent_state.reshape(-1, H*N, N)
x2 = x2.view(B, T-cu_seqlens[-1], H, N)
else:
x2 = torch.empty(B, 0, H, N, device=x.device, dtype=x.dtype)
x = torch.cat([x1, x2], dim=1)
# fla的state最后2维和官方实现(https://github.com/BlinkDL/RWKV-LM/blob/main/RWKV-v7/rwkv_v7_demo.py)是反的,要转置一下
x.resize_((B * T, C))
x = self.ln_x(x).view(B, T, C)
x = x + ((r * k * self.r_k).sum(dim=-1, keepdim=True) * v).view(B, T, C)
x = self.output(x * g)
v_first.resize_((B, T, C))
return x, v_first
########################################################################################################
# RWKV ChannelMix
########################################################################################################
class RWKV_CMix_x070(torch.nn.Module):
def __init__(self, args, layer_id):
super().__init__()
self.args = args
self.layer_id = layer_id
with torch.no_grad():
self.x_k = nn.Parameter(torch.empty(1, 1, args.n_embd))
self.key = nn.Linear(args.n_embd, args.dim_ffn, bias=False)
self.value = nn.Linear(args.dim_ffn, args.n_embd, bias=False)
def forward(self,
x: torch.Tensor,
state: torch.Tensor,
cu_seqlens: torch.LongTensor
):
B, T, C = x.shape
xx = torch.cat([torch.empty(1, 1, C, device=x.device, dtype=x.dtype), x[:, :-1, :]], dim=1)
N_prefill = cu_seqlens.shape[-1] - 1
xx[0, cu_seqlens[:-1], :] = state[self.layer_id, :N_prefill, :, -1]
xx[0, cu_seqlens[-1]:, :] = state[self.layer_id, N_prefill:, :, -1]
state[self.layer_id, :N_prefill, :, -1] = x[0, cu_seqlens[1:]-1, :]
state[self.layer_id, N_prefill:, :, -1] = x[0, cu_seqlens[-1]:, :]
xx = xx - x
k = x + xx * self.x_k
k = torch.relu(self.key(k)) ** 2
return self.value(k)
########################################################################################################
# RWKV Block
########################################################################################################
class Block(torch.nn.Module):
def __init__(self, args, layer_id):
super().__init__()
self.args = args
self.layer_id = layer_id
self.ln1 = nn.LayerNorm(args.n_embd)
self.ln2 = nn.LayerNorm(args.n_embd)
self.att = RWKV_Tmix_x070(args, layer_id)
self.ffn = RWKV_CMix_x070(args, layer_id)
def forward(self, x, v_first, state: torch.Tensor, cu_seqlens):
xx, v_first = self.att(self.ln1(x), v_first, state, cu_seqlens)
x = x + xx
x = x + self.ffn(self.ln2(x), state, cu_seqlens)
return x, v_first
########################################################################################################
# RWKV Model
########################################################################################################
class RWKV(nn.Module):
def __init__(self, args):
super().__init__()
self.args = args
args.dim_att = args.n_embd
args.dim_ffn = args.n_embd * 4
self.emb = nn.Embedding(args.vocab_size, args.n_embd)
self.ln0 = nn.LayerNorm(args.n_embd)
self.blocks = nn.ModuleList([Block(args, i) for i in range(args.n_layer)])
self.ln_out = nn.LayerNorm(args.n_embd)
self.head = nn.Linear(args.n_embd, args.vocab_size, bias=False)
@staticmethod
def from_pretrained(model_path, device):
z = torch.load(model_path, mmap=True, weights_only=True)
z['ln0.weight'] = z['blocks.0.ln0.weight']
z['ln0.bias'] = z['blocks.0.ln0.bias']
args = types.SimpleNamespace()
args.n_head, args.head_size = z['blocks.0.att.r_k'].shape
args.n_embd = args.n_head * args.head_size
args.n_layer = max(int(k.split('.')[1]) for k in z.keys() if 'blocks.' in k) + 1
args.vocab_size = z['emb.weight'].shape[0]
args.D_DECAY_LORA = z['blocks.1.att.w1'].shape[1]
args.D_AAA_LORA = z['blocks.1.att.a1'].shape[1]
args.D_MV_LORA = z['blocks.1.att.v1'].shape[1]
args.D_GATE_LORA = z['blocks.1.att.g1'].shape[1]
model = RWKV(args)
model.load_state_dict(z, strict=False)
model = model.to(device).to(dtype=DTYPE)
model.device = device
return model
def forward(self,
idx: Union[torch.LongTensor, List[torch.LongTensor]],
state: torch.Tensor,
):
'''
cu_seqlens (torch.LongTensor):
Cumulative sequence lengths of shape `[N_of_prefill+1]` used for variable-length training,
consistent with the FlashAttention API.
the start index of each segment.
idx[0, cu_seqlens[-1]:] are the decoding tokens.
'''
assert isinstance(idx, list), f"idx must be a list of LongTensors"
# sort idx by length in descending order
idx, index = zip(*sorted(zip(idx, range(len(idx))), key=lambda x: x[0].shape[-1], reverse=True))
index = torch.LongTensor(index).to(self.device)
cu_seqlens = torch.cat([torch.LongTensor([0]), torch.cumsum(torch.LongTensor([i.shape[-1] for i in idx if i.shape[-1]>1]), dim=0)], dim=0).to(self.device)
idx = torch.cat(idx, dim=-1)
state = state[:, index, :, :]
reverse_index = torch.argsort(index)
assert idx.shape[0] == 1, "batch size must be 1"
assert state.shape[1] == (cu_seqlens.shape[0] - 1) + (idx.shape[-1] - cu_seqlens[-1]), f"state shape error {state.shape[1]} {cu_seqlens.shape[0]-1} {idx.shape[-1] - cu_seqlens[-1]}"
log.info(f"prefill: {cu_seqlens.shape[0] - 1} batches, {cu_seqlens[-1]} tokens; decoding: {idx.shape[-1] - cu_seqlens[-1]} tokens")
x = self.emb(idx)
x = self.ln0(x)
v_first = torch.empty_like(x)
for block in self.blocks:
x, v_first = block(x, v_first, state, cu_seqlens)
x = self.ln_out(x)
x = self.head(x)
x = torch.cat([x[0, cu_seqlens[1:]-1], x[0, cu_seqlens[-1]:]], dim=0)
x = x[reverse_index]
state = state[:, reverse_index]
return x, state
def empty_state(self, batch_size=1, device=None):
if device is None:
device = self.device
return torch.zeros(self.args.n_layer, batch_size, self.args.n_embd, self.args.head_size+2, dtype=DTYPE, device=device)
########################################################################################################
# RWKV Inference
########################################################################################################
if __name__ == '__main__':
with torch.no_grad():
import sys
sys.path.append(r"../..")
from tokenizer.tokenization_rwkv_world import RWKVWorldTokenizer
tokenizer=RWKVWorldTokenizer(vocab_file=r"../../tokenizer/rwkv_vocab_v20230424.txt")
MODEL_NAME = r"../../weights/v7-0.1b.pth"
model = RWKV.from_pretrained(MODEL_NAME, device='cuda')
model.eval()
########################################################################################################
prompt = "The Eiffel tower is in the city of"
input_ids = tokenizer(prompt, return_tensors="pt").input_ids.to('cuda')
print(f'\nInput:\n{input_ids}')
state = model.empty_state(3)
outs, state = model.forward([input_ids[:, :4], input_ids[:, :6], input_ids[:, :5]], state)
outs, state = model.forward([input_ids[:, 4:-1], input_ids[:, 6:-1], input_ids[:, 5:-1]], state)
outs, state = model.forward([input_ids[:, -1:], input_ids[:, -1:], input_ids[:, -1:]], state)
# out, state = model.forward([input_ids], state)
# print(f'\nOutput:\n{out}')
# logits of the last token => prediction for the next token
for i in range(outs.shape[0]):
out = outs[i]
probs = F.softmax(out.float(), dim=-1) # compute softmax in float (more accurate)
print(f'\n{prompt}')
_, indices = torch.topk(probs, 10) # print top-10 possibilities
for i in range(len(indices)):
token_id = indices[i].item()
token = tokenizer.decode([token_id])
token_prob = probs[token_id].item()
print(token, f'[probability {token_prob:.2%}]')
| 15,443 | model_fla | py | de | python | code | {"qsc_code_num_words": 2090, "qsc_code_num_chars": 15443.0, "qsc_code_mean_word_length": 3.55023923, "qsc_code_frac_words_unique": 0.14880383, "qsc_code_frac_chars_top_2grams": 0.05579515, "qsc_code_frac_chars_top_3grams": 0.03908356, "qsc_code_frac_chars_top_4grams": 0.05943396, "qsc_code_frac_chars_dupe_5grams": 0.4606469, "qsc_code_frac_chars_dupe_6grams": 0.39919137, "qsc_code_frac_chars_dupe_7grams": 0.3203504, "qsc_code_frac_chars_dupe_8grams": 0.26536388, "qsc_code_frac_chars_dupe_9grams": 0.21778976, "qsc_code_frac_chars_dupe_10grams": 0.18625337, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0254895, "qsc_code_frac_chars_whitespace": 0.26581623, "qsc_code_size_file_byte": 15443.0, "qsc_code_num_lines": 385.0, "qsc_code_num_chars_line_max": 190.0, "qsc_code_num_chars_line_mean": 40.11168831, "qsc_code_frac_chars_alphabet": 0.6289469, "qsc_code_frac_chars_comments": 0.07427313, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.24723247, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00738007, "qsc_code_frac_chars_string_length": 0.04610122, "qsc_code_frac_chars_long_word_length": 0.00847392, "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.01476015, "qsc_codepython_cate_ast": 1.0, "qsc_codepython_frac_lines_func_ratio": 0.03690037, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.03321033, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.10701107, "qsc_codepython_frac_lines_print": 0.01107011} | 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} |
00ffcc/chunkRWKV6 | cuda/wkv5_op.cpp | #include <torch/extension.h>
#include "ATen/ATen.h"
typedef at::BFloat16 bf16;
void cuda_forward(int B, int T, int C, int H, bf16 *r, bf16 *k, bf16 *v, float *w, bf16 *u, bf16 *y);
void cuda_backward(int B, int T, int C, int H, bf16 *r, bf16 *k, bf16 *v, float *w, float *ww, bf16 *u, bf16 *gy, bf16 *gr, bf16 *gk, bf16 *gv, bf16 *gw, bf16 *gu);
void forward(int64_t B, int64_t T, int64_t C, int64_t H, torch::Tensor &r, torch::Tensor &k, torch::Tensor &v, torch::Tensor &w, torch::Tensor &u, torch::Tensor &y) {
cuda_forward(B, T, C, H, r.data_ptr<bf16>(), k.data_ptr<bf16>(), v.data_ptr<bf16>(), w.data_ptr<float>(), u.data_ptr<bf16>(), y.data_ptr<bf16>());
}
void backward(int64_t B, int64_t T, int64_t C, int64_t H, torch::Tensor &r, torch::Tensor &k, torch::Tensor &v, torch::Tensor &w, torch::Tensor &ww, torch::Tensor &u, torch::Tensor &gy, torch::Tensor &gr, torch::Tensor &gk, torch::Tensor &gv, torch::Tensor &gw, torch::Tensor &gu) {
cuda_backward(B, T, C, H, r.data_ptr<bf16>(), k.data_ptr<bf16>(), v.data_ptr<bf16>(), w.data_ptr<float>(), ww.data_ptr<float>(), u.data_ptr<bf16>(), gy.data_ptr<bf16>(), gr.data_ptr<bf16>(), gk.data_ptr<bf16>(), gv.data_ptr<bf16>(), gw.data_ptr<bf16>(), gu.data_ptr<bf16>());
}
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
m.def("forward", &forward, "wkv5 forward");
m.def("backward", &backward, "wkv5 backward");
}
TORCH_LIBRARY(wkv5, m) {
m.def("forward", forward);
m.def("backward", backward);
}
| 1,469 | wkv5_op | cpp | en | cpp | code | {"qsc_code_num_words": 266, "qsc_code_num_chars": 1469.0, "qsc_code_mean_word_length": 3.4962406, "qsc_code_frac_words_unique": 0.15789474, "qsc_code_frac_chars_top_2grams": 0.21290323, "qsc_code_frac_chars_top_3grams": 0.17741935, "qsc_code_frac_chars_top_4grams": 0.0172043, "qsc_code_frac_chars_dupe_5grams": 0.5483871, "qsc_code_frac_chars_dupe_6grams": 0.41935484, "qsc_code_frac_chars_dupe_7grams": 0.41935484, "qsc_code_frac_chars_dupe_8grams": 0.38064516, "qsc_code_frac_chars_dupe_9grams": 0.38064516, "qsc_code_frac_chars_dupe_10grams": 0.38064516, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06656226, "qsc_code_frac_chars_whitespace": 0.13070116, "qsc_code_size_file_byte": 1469.0, "qsc_code_num_lines": 22.0, "qsc_code_num_chars_line_max": 283.0, "qsc_code_num_chars_line_mean": 66.77272727, "qsc_code_frac_chars_alphabet": 0.66170713, "qsc_code_frac_chars_comments": 0.0, "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.04492852, "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.10526316, "qsc_codecpp_frac_lines_func_ratio": 0.21052632, "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.31578947, "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": 1, "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": 1, "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} |
00ffcc/chunkRWKV6 | cuda/rwkv6_op.cpp | #include <torch/extension.h>
#include "ATen/ATen.h"
#include <c10/cuda/CUDAGuard.h>
typedef at::BFloat16 bf16;
typedef at::Half fp16;
typedef float fp32;
void cuda_forward_bf16(int B, int T, int C, int H, float *state, bf16 *r, bf16 *k, bf16 *v, float *w, float *u, float *y);
void cuda_forward_fp16(int B, int T, int C, int H, float *state, fp16 *r, fp16 *k, fp16 *v, float *w, float *u, float *y);
void cuda_forward_fp32(int B, int T, int C, int H, float *state, fp32 *r, fp32 *k, fp32 *v, float *w, float *u, float *y);
void forward_bf16(int64_t B, int64_t T, int64_t C, int64_t H, torch::Tensor &state, torch::Tensor &r, torch::Tensor &k, torch::Tensor &v, torch::Tensor &w, torch::Tensor &u, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
cuda_forward_bf16(B, T, C, H, state.data_ptr<float>(), r.data_ptr<bf16>(), k.data_ptr<bf16>(), v.data_ptr<bf16>(), w.data_ptr<float>(), u.data_ptr<float>(), y.data_ptr<float>());
}
void forward_fp16(int64_t B, int64_t T, int64_t C, int64_t H, torch::Tensor &state, torch::Tensor &r, torch::Tensor &k, torch::Tensor &v, torch::Tensor &w, torch::Tensor &u, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
cuda_forward_fp16(B, T, C, H, state.data_ptr<float>(), r.data_ptr<fp16>(), k.data_ptr<fp16>(), v.data_ptr<fp16>(), w.data_ptr<float>(), u.data_ptr<float>(), y.data_ptr<float>());
}
void forward_fp32(int64_t B, int64_t T, int64_t C, int64_t H, torch::Tensor &state, torch::Tensor &r, torch::Tensor &k, torch::Tensor &v, torch::Tensor &w, torch::Tensor &u, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
cuda_forward_fp32(B, T, C, H, state.data_ptr<float>(), r.data_ptr<fp32>(), k.data_ptr<fp32>(), v.data_ptr<fp32>(), w.data_ptr<float>(), u.data_ptr<float>(), y.data_ptr<float>());
}
void inter_fwd_bf16(int B, int T, int C, int H, int CK, float *state, bf16 *r, float *w, float *y);
void inter_fwd_fp16(int B, int T, int C, int H, int CK, float *state, fp16 *r, float *w, float *y);
void inter_fwd_fp32(int B, int T, int C, int H, int CK, float *state, fp32 *r, float *w, float *y);
void Inter_fwd_bf16(int64_t B, int64_t T, int64_t C, int64_t H, int64_t CK, torch::Tensor &state, torch::Tensor &r, torch::Tensor &w, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
inter_fwd_bf16(B, T, C, H, CK, state.data_ptr<float>(), r.data_ptr<bf16>(), w.data_ptr<float>(), y.data_ptr<float>());
}
void Inter_fwd_fp16(int64_t B, int64_t T, int64_t C, int64_t H, int64_t CK, torch::Tensor &state, torch::Tensor &r, torch::Tensor &w, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
inter_fwd_fp16(B, T, C, H, CK, state.data_ptr<float>(), r.data_ptr<fp16>(), w.data_ptr<float>(), y.data_ptr<float>());
}
void Inter_fwd_fp32(int64_t B, int64_t T, int64_t C, int64_t H, int64_t CK, torch::Tensor &state, torch::Tensor &r, torch::Tensor &w, torch::Tensor &y) {
const at::cuda::OptionalCUDAGuard device_guard(device_of(state));
inter_fwd_fp32(B, T, C, H, CK, state.data_ptr<float>(), r.data_ptr<fp32>(), w.data_ptr<float>(), y.data_ptr<float>());
}
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
m.def("forward_bf16", &forward_bf16, "rwkv6 forward_bf16");
m.def("forward_fp16", &forward_fp16, "rwkv6 forward_fp16");
m.def("forward_fp32", &forward_fp32, "rwkv6 forward_fp32");
m.def("Inter_fwd_bf16", &Inter_fwd_bf16, "rwkv6 inter forward_bf16");
m.def("Inter_fwd_fp16", &Inter_fwd_fp16, "rwkv6 inter forward_fp16");
m.def("Inter_fwd_fp32", &Inter_fwd_fp32, "rwkv6 inter forward_fp32");
}
TORCH_LIBRARY(rwkv6, m) {
m.def("forward_bf16", forward_bf16);
m.def("forward_fp16", forward_fp16);
m.def("forward_fp32", forward_fp32);
m.def("Inter_fwd_bf16", Inter_fwd_bf16);
m.def("Inter_fwd_fp16", Inter_fwd_fp16);
m.def("Inter_fwd_fp32", Inter_fwd_fp32);
}
| 3,970 | rwkv6_op | cpp | en | cpp | code | {"qsc_code_num_words": 715, "qsc_code_num_chars": 3970.0, "qsc_code_mean_word_length": 3.63216783, "qsc_code_frac_words_unique": 0.06713287, "qsc_code_frac_chars_top_2grams": 0.13977667, "qsc_code_frac_chars_top_3grams": 0.09703504, "qsc_code_frac_chars_top_4grams": 0.01848286, "qsc_code_frac_chars_dupe_5grams": 0.86522911, "qsc_code_frac_chars_dupe_6grams": 0.85598768, "qsc_code_frac_chars_dupe_7grams": 0.85598768, "qsc_code_frac_chars_dupe_8grams": 0.82672314, "qsc_code_frac_chars_dupe_9grams": 0.72121679, "qsc_code_frac_chars_dupe_10grams": 0.66576819, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06268053, "qsc_code_frac_chars_whitespace": 0.1279597, "qsc_code_size_file_byte": 3970.0, "qsc_code_num_lines": 60.0, "qsc_code_num_chars_line_max": 194.0, "qsc_code_num_chars_line_mean": 66.16666667, "qsc_code_frac_chars_alphabet": 0.68746389, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11538462, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07380353, "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.05769231, "qsc_codecpp_frac_lines_func_ratio": 0.34615385, "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.40384615, "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": 1, "qsc_code_frac_chars_dupe_6grams": 1, "qsc_code_frac_chars_dupe_7grams": 1, "qsc_code_frac_chars_dupe_8grams": 1, "qsc_code_frac_chars_dupe_9grams": 1, "qsc_code_frac_chars_dupe_10grams": 1, "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": 1, "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/actors/mobs/npcs/RatKing.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.RatKingSprite;
public class RatKing extends NPC {
{
spriteClass = RatKingSprite.class;
state = SLEEPING;
}
@Override
public int defenseSkill( Char enemy ) {
return 100_000_000;
}
@Override
public float speed() {
return 2f;
}
@Override
protected Char chooseEnemy() {
return null;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean reset() {
return true;
}
@Override
public boolean interact() {
sprite.turnTo( pos, Dungeon.hero.pos );
if (state == SLEEPING) {
notice();
yell( Messages.get(this, "not_sleeping") );
state = WANDERING;
} else {
yell( Messages.get(this, "what_is_it") );
}
return true;
}
@Override
public String description() {
return ((RatKingSprite)sprite).festive ?
Messages.get(this, "desc_festive")
: super.description();
}
}
| 2,066 | RatKing | java | en | java | code | {"qsc_code_num_words": 257, "qsc_code_num_chars": 2066.0, "qsc_code_mean_word_length": 5.80933852, "qsc_code_frac_words_unique": 0.53307393, "qsc_code_frac_chars_top_2grams": 0.06563965, "qsc_code_frac_chars_top_3grams": 0.15271266, "qsc_code_frac_chars_top_4grams": 0.14735432, "qsc_code_frac_chars_dupe_5grams": 0.12190221, "qsc_code_frac_chars_dupe_6grams": 0.03750837, "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.01597633, "qsc_code_frac_chars_whitespace": 0.18199419, "qsc_code_size_file_byte": 2066.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 24.5952381, "qsc_code_frac_chars_alphabet": 0.86745562, "qsc_code_frac_chars_comments": 0.37802517, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19230769, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02645914, "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.15384615, "qsc_codejava_score_lines_no_logic": 0.36538462, "qsc_codejava_frac_words_no_modifier": 0.88888889, "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/actors/mobs/npcs/ImpShopkeeper.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ElmoParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ImpSprite;
public class ImpShopkeeper extends Shopkeeper {
{
spriteClass = ImpSprite.class;
}
private boolean seenBefore = false;
@Override
protected boolean act() {
if (!seenBefore && Dungeon.level.heroFOV[pos]) {
yell( Messages.get(this, "greetings", Dungeon.hero.givenName() ) );
seenBefore = true;
}
return super.act();
}
@Override
public void flee() {
for (Heap heap: Dungeon.level.heaps.valueList()) {
if (heap.type == Heap.Type.FOR_SALE) {
CellEmitter.get( heap.pos ).burst( ElmoParticle.FACTORY, 4 );
heap.destroy();
}
}
destroy();
sprite.emitter().burst( Speck.factory( Speck.WOOL ), 15 );
sprite.killAndErase();
}
}
| 1,993 | ImpShopkeeper | java | en | java | code | {"qsc_code_num_words": 244, "qsc_code_num_chars": 1993.0, "qsc_code_mean_word_length": 6.09836066, "qsc_code_frac_words_unique": 0.54918033, "qsc_code_frac_chars_top_2grams": 0.09139785, "qsc_code_frac_chars_top_3grams": 0.20430108, "qsc_code_frac_chars_top_4grams": 0.20698925, "qsc_code_frac_chars_dupe_5grams": 0.15793011, "qsc_code_frac_chars_dupe_6grams": 0.03763441, "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.01189061, "qsc_code_frac_chars_whitespace": 0.15604616, "qsc_code_size_file_byte": 1993.0, "qsc_code_num_lines": 64.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 31.140625, "qsc_code_frac_chars_alphabet": 0.87277051, "qsc_code_frac_chars_comments": 0.39187155, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.05882353, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00742574, "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.05882353, "qsc_codejava_score_lines_no_logic": 0.29411765, "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": 0, "qsc_codejava_frac_lines_print": 0} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/NPC.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public abstract class NPC extends Mob {
{
HP = HT = 1;
EXP = 0;
alignment = Alignment.NEUTRAL;
state = PASSIVE;
}
protected void throwItem() {
Heap heap = Dungeon.level.heaps.get( pos );
if (heap != null) {
int n;
do {
n = pos + PathFinder.NEIGHBOURS8[Random.Int( 8 )];
} while (!Dungeon.level.passable[n] && !Dungeon.level.avoid[n]);
Dungeon.level.drop( heap.pickUp(), n ).sprite.drop( pos );
}
}
@Override
public void beckon( int cell ) {
}
} | 1,590 | NPC | java | en | java | code | {"qsc_code_num_words": 219, "qsc_code_num_chars": 1590.0, "qsc_code_mean_word_length": 5.25570776, "qsc_code_frac_words_unique": 0.58447489, "qsc_code_frac_chars_top_2grams": 0.03909644, "qsc_code_frac_chars_top_3grams": 0.13205908, "qsc_code_frac_chars_top_4grams": 0.04952215, "qsc_code_frac_chars_dupe_5grams": 0.15464813, "qsc_code_frac_chars_dupe_6grams": 0.04865334, "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.01607963, "qsc_code_frac_chars_whitespace": 0.17861635, "qsc_code_size_file_byte": 1590.0, "qsc_code_num_lines": 54.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.44444444, "qsc_code_frac_chars_alphabet": 0.86523737, "qsc_code_frac_chars_comments": 0.49119497, "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.07407407, "qsc_codejava_score_lines_no_logic": 0.33333333, "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/actors/mobs/npcs/Sheep.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SheepSprite;
import com.watabou.utils.Random;
public class Sheep extends NPC {
private static final String[] LINE_KEYS = {"Baa!", "Baa?", "Baa.", "Baa..."};
{
spriteClass = SheepSprite.class;
}
public float lifespan;
private boolean initialized = false;
@Override
protected boolean act() {
if (initialized) {
HP = 0;
destroy();
sprite.die();
} else {
initialized = true;
spend( lifespan + Random.Float(2) );
}
return true;
}
@Override
public int defenseSkill(Char enemy) {
return 100_000_000;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean interact() {
sprite.showStatus( CharSprite.NEUTRAL, Messages.get(this, Random.element( LINE_KEYS )) );
Dungeon.hero.spendAndNext(1f);
return false;
}
} | 2,062 | Sheep | java | en | java | code | {"qsc_code_num_words": 260, "qsc_code_num_chars": 2062.0, "qsc_code_mean_word_length": 5.85769231, "qsc_code_frac_words_unique": 0.55769231, "qsc_code_frac_chars_top_2grams": 0.07813526, "qsc_code_frac_chars_top_3grams": 0.17465529, "qsc_code_frac_chars_top_4grams": 0.17334209, "qsc_code_frac_chars_dupe_5grams": 0.18647406, "qsc_code_frac_chars_dupe_6grams": 0.03676953, "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.01685067, "qsc_code_frac_chars_whitespace": 0.16537342, "qsc_code_size_file_byte": 2062.0, "qsc_code_num_lines": 77.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 26.77922078, "qsc_code_frac_chars_alphabet": 0.86809994, "qsc_code_frac_chars_comments": 0.37875849, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11363636, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01404056, "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.11363636, "qsc_codejava_score_lines_no_logic": 0.38636364, "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": 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} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner/Info.plist | <?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>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>firebase_realtimedb</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
| 1,538 | Info | plist | en | openstep property list | data | {"qsc_code_num_words": 147, "qsc_code_num_chars": 1538.0, "qsc_code_mean_word_length": 8.0, "qsc_code_frac_words_unique": 0.40136054, "qsc_code_frac_chars_top_2grams": 0.08418367, "qsc_code_frac_chars_top_3grams": 0.01530612, "qsc_code_frac_chars_top_4grams": 0.03571429, "qsc_code_frac_chars_dupe_5grams": 0.27040816, "qsc_code_frac_chars_dupe_6grams": 0.27040816, "qsc_code_frac_chars_dupe_7grams": 0.18537415, "qsc_code_frac_chars_dupe_8grams": 0.18537415, "qsc_code_frac_chars_dupe_9grams": 0.18537415, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00764951, "qsc_code_frac_chars_whitespace": 0.06501951, "qsc_code_size_file_byte": 1538.0, "qsc_code_num_lines": 45.0, "qsc_code_num_chars_line_max": 103.0, "qsc_code_num_chars_line_mean": 34.17777778, "qsc_code_frac_chars_alphabet": 0.81015299, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 1.0, "qsc_code_frac_lines_dupe_lines": 0.22222222, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.05461638, "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": 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": 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/windows/windows/WndDocument.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.windows.windows;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.SPDSettings;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.journal.Document;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextBlock;
import com.shatteredpixel.shatteredpixeldungeon.ui.ScrollPane;
import com.shatteredpixel.shatteredpixeldungeon.ui.Window;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndStory;
import com.watabou.noosa.BitmapText;
import com.watabou.noosa.ColorBlock;
import com.watabou.noosa.Image;
import com.watabou.noosa.ui.Component;
import java.util.ArrayList;
//FIXME lots of copy-pasta from WndJournal here. should generalize some of this. Primarily ListItem
public class WndDocument extends Window {
private static final int WIDTH_P = 120;
private static final int HEIGHT_P = 160;
private static final int WIDTH_L = 160;
private static final int HEIGHT_L = 128;
private static final int ITEM_HEIGHT = 18;
private ScrollPane list;
private ArrayList<docPage> pages = new ArrayList<>();
public WndDocument( Document doc ){
int w = SPDSettings.landscape() ? WIDTH_L : WIDTH_P;
int h = SPDSettings.landscape() ? HEIGHT_L : HEIGHT_P;
resize(w, h);
list = new ScrollPane( new Component() ){
@Override
public void onClick( float x, float y ) {
int size = pages.size();
for (int i=0; i < size; i++) {
if (pages.get( i ).onClick( x, y )) {
break;
}
}
}
};
add( list );
list.setRect( 0, 0, w, h);
Component content = list.content();
float pos = 0;
ColorBlock line = new ColorBlock( w, 1, 0xFF222222);
line.y = pos;
content.add(line);
RenderedTextBlock title = PixelScene.renderTextBlock(doc.title(), 9);
title.hardlight(TITLE_COLOR);
title.maxWidth( w - 2 );
title.setPos( (w - title.width())/2f, pos + 1 + ((ITEM_HEIGHT) - title.height())/2f);
PixelScene.align(title);
content.add(title);
pos += Math.max(ITEM_HEIGHT, title.height());
for (String page : doc.pages()){
docPage item = new docPage( doc, page );
item.setRect( 0, pos, w, ITEM_HEIGHT );
content.add( item );
pos += item.height();
pages.add(item);
}
content.setSize( w, pos );
list.setSize( list.width(), list.height() );
}
private static class docPage extends ListItem {
private boolean found = false;
private Document doc;
private String page;
public docPage(Document doc, String page ){
super( new ItemSprite( doc.pageSprite(), null),
Messages.titleCase(doc.pageTitle(page)), -1);
this.doc = doc;
this.page = page;
found = doc.hasPage(page);
if (!found) {
icon.hardlight( 0.5f, 0.5f, 0.5f);
label.text( Messages.titleCase(Messages.get( WndDocument.class, "missing" )));
label.hardlight( 0x999999 );
}
}
public boolean onClick( float x, float y ) {
if (inside( x, y ) && found) {
ShatteredPixelDungeon.scene().addToFront( new WndStory( doc.pageBody(page) ));
return true;
} else {
return false;
}
}
}
private static class ListItem extends Component {
protected RenderedTextBlock label;
protected BitmapText depth;
protected ColorBlock line;
protected Image icon;
public ListItem( Image icon, String text ) {
this(icon, text, -1);
}
public ListItem( Image icon, String text, int d ) {
super();
this.icon.copy(icon);
label.text( text );
if (d >= 0) {
depth.text(Integer.toString(d));
depth.measure();
if (d == Dungeon.depth) {
label.hardlight(TITLE_COLOR);
depth.hardlight(TITLE_COLOR);
}
}
}
@Override
protected void createChildren() {
label = PixelScene.renderTextBlock( 7 );
add( label );
icon = new Image();
add( icon );
depth = new BitmapText( PixelScene.pixelFont);
add( depth );
line = new ColorBlock( 1, 1, 0xFF222222);
add(line);
}
@Override
protected void layout() {
icon.y = y + 1 + (height() - 1 - icon.height()) / 2f;
PixelScene.align(icon);
depth.x = icon.x + (icon.width - depth.width()) / 2f;
depth.y = icon.y + (icon.height - depth.height()) / 2f + 1;
PixelScene.align(depth);
line.size(width, 1);
line.x = 0;
line.y = y;
label.maxWidth((int)(width - icon.width() - 8 - 1));
label.setPos(icon.x + icon.width() + 1, y + 1 + (height() - label.height()) / 2f);
PixelScene.align(label);
}
}
}
| 5,613 | WndDocument | java | en | java | code | {"qsc_code_num_words": 699, "qsc_code_num_chars": 5613.0, "qsc_code_mean_word_length": 5.40772532, "qsc_code_frac_words_unique": 0.29613734, "qsc_code_frac_chars_top_2grams": 0.03571429, "qsc_code_frac_chars_top_3grams": 0.12063492, "qsc_code_frac_chars_top_4grams": 0.12804233, "qsc_code_frac_chars_dupe_5grams": 0.11534392, "qsc_code_frac_chars_dupe_6grams": 0.03227513, "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.0197221, "qsc_code_frac_chars_whitespace": 0.20505968, "qsc_code_size_file_byte": 5613.0, "qsc_code_num_lines": 210.0, "qsc_code_num_chars_line_max": 100.0, "qsc_code_num_chars_line_mean": 26.72857143, "qsc_code_frac_chars_alphabet": 0.82743165, "qsc_code_frac_chars_comments": 0.15660075, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.02189781, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00147866, "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.00591466, "qsc_code_frac_lines_prompt_comments": 0.0047619, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.02919708, "qsc_codejava_score_lines_no_logic": 0.2189781, "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} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner.xcodeproj/project.pbxproj | // !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
32BEDB222454BCD300572FD8 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 32BEDB212454BCD300572FD8 /* GoogleService-Info.plist */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
5F0B359892E7151E6259A557 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 06009A125397D342C9B78D59 /* libPods-Runner.a */; };
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; };
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
06009A125397D342C9B78D59 /* libPods-Runner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Runner.a"; sourceTree = BUILT_PRODUCTS_DIR; };
0F22762DEE4D1CE6D95AE160 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
32BEDB212454BCD300572FD8 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D9A955A8C009142A47EBE3E0 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
E1C2FA832C51E96DB4C3B2E1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5F0B359892E7151E6259A557 /* libPods-Runner.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
6804057F50D7DC8AF9BF59F6 /* Frameworks */ = {
isa = PBXGroup;
children = (
06009A125397D342C9B78D59 /* libPods-Runner.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
AD3040A15F394B2ED45258FE /* Pods */,
6804057F50D7DC8AF9BF59F6 /* Frameworks */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
32BEDB212454BCD300572FD8 /* GoogleService-Info.plist */,
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */,
7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */,
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
97C146F11CF9000F007C117D /* Supporting Files */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
);
path = Runner;
sourceTree = "<group>";
};
97C146F11CF9000F007C117D /* Supporting Files */ = {
isa = PBXGroup;
children = (
97C146F21CF9000F007C117D /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
AD3040A15F394B2ED45258FE /* Pods */ = {
isa = PBXGroup;
children = (
E1C2FA832C51E96DB4C3B2E1 /* Pods-Runner.debug.xcconfig */,
D9A955A8C009142A47EBE3E0 /* Pods-Runner.release.xcconfig */,
0F22762DEE4D1CE6D95AE160 /* Pods-Runner.profile.xcconfig */,
);
name = Pods;
path = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
945E5D451652D05880A25598 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
ACE94F45020351E018AEA6F3 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1020;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
32BEDB222454BCD300572FD8 /* GoogleService-Info.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
945E5D451652D05880A25598 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
ACE94F45020351E018AEA6F3 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */,
97C146F31CF9000F007C117D /* main.m in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.thatproject.firebaseRealtimedb;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.thatproject.firebaseRealtimedb;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = com.thatproject.firebaseRealtimedb;
PRODUCT_NAME = "$(TARGET_NAME)";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}
| 23,297 | project | pbxproj | en | unknown | unknown | {} | 0 | {} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/build.gradle | def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 28
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.thatproject.firebase_realtimedb"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
apply plugin: 'com.google.gms.google-services' | 1,632 | build | gradle | en | gradle | data | {"qsc_code_num_words": 157, "qsc_code_num_chars": 1632.0, "qsc_code_mean_word_length": 7.2866242, "qsc_code_frac_words_unique": 0.55414013, "qsc_code_frac_chars_top_2grams": 0.06818182, "qsc_code_frac_chars_top_3grams": 0.08653846, "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.00764526, "qsc_code_frac_chars_whitespace": 0.19852941, "qsc_code_size_file_byte": 1632.0, "qsc_code_num_lines": 56.0, "qsc_code_num_chars_line_max": 122.0, "qsc_code_num_chars_line_mean": 29.14285714, "qsc_code_frac_chars_alphabet": 0.86697248, "qsc_code_frac_chars_comments": 0.40992647, "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.26272066, "qsc_code_frac_chars_long_word_length": 0.08307373, "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.03571429, "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_words_unique": 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_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/actors/mobs/Eye.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Light;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.PurpleParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.Dewdrop;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfDisintegration;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Grim;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Vampiric;
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.EyeSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class Eye extends Mob {
{
spriteClass = EyeSprite.class;
HP = HT = 100;
defenseSkill = 20;
viewDistance = Light.DISTANCE;
EXP = 13;
maxLvl = 25;
flying = true;
HUNTING = new Hunting();
loot = new Dewdrop();
lootChance = 0.5f;
properties.add(Property.DEMONIC);
}
@Override
public int damageRoll() {
return Random.NormalIntRange(20, 30);
}
@Override
public int attackSkill( Char target ) {
return 30;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 10);
}
private Ballistica beam;
private int beamTarget = -1;
private int beamCooldown;
public boolean beamCharged;
@Override
protected boolean canAttack( Char enemy ) {
if (beamCooldown == 0) {
Ballistica aim = new Ballistica(pos, enemy.pos, Ballistica.STOP_TERRAIN);
if (enemy.invisible == 0 && !isCharmedBy(enemy) && fieldOfView[enemy.pos] && aim.subPath(1, aim.dist).contains(enemy.pos)){
beam = aim;
beamTarget = aim.collisionPos;
return true;
} else
//if the beam is charged, it has to attack, will aim at previous location of target.
return beamCharged;
} else
return super.canAttack(enemy);
}
@Override
protected boolean act() {
if (beamCharged && state != HUNTING){
beamCharged = false;
}
if (beam == null && beamTarget != -1) {
beam = new Ballistica(pos, beamTarget, Ballistica.STOP_TERRAIN);
sprite.turnTo(pos, beamTarget);
}
if (beamCooldown > 0)
beamCooldown--;
return super.act();
}
@Override
protected boolean doAttack( Char enemy ) {
if (beamCooldown > 0) {
return super.doAttack(enemy);
} else if (!beamCharged){
((EyeSprite)sprite).charge( enemy.pos );
spend( attackDelay()*2f );
beamCharged = true;
return true;
} else {
spend( attackDelay() );
beam = new Ballistica(pos, beamTarget, Ballistica.STOP_TERRAIN);
if (Dungeon.level.heroFOV[pos] || Dungeon.level.heroFOV[beam.collisionPos] ) {
sprite.zap( beam.collisionPos );
return false;
} else {
deathGaze();
return true;
}
}
}
@Override
public void damage(int dmg, Object src) {
if (beamCharged) dmg /= 4;
super.damage(dmg, src);
}
//used so resistances can differentiate between melee and magical attacks
public static class DeathGaze{}
public void deathGaze(){
if (!beamCharged || beamCooldown > 0 || beam == null)
return;
beamCharged = false;
beamCooldown = Random.IntRange(3, 6);
boolean terrainAffected = false;
for (int pos : beam.subPath(1, beam.dist)) {
if (Dungeon.level.flamable[pos]) {
Dungeon.level.destroy( pos );
GameScene.updateMap( pos );
terrainAffected = true;
}
Char ch = Actor.findChar( pos );
if (ch == null) {
continue;
}
if (hit( this, ch, true )) {
ch.damage( Random.NormalIntRange( 30, 50 ), new DeathGaze() );
if (Dungeon.level.heroFOV[pos]) {
ch.sprite.flash();
CellEmitter.center( pos ).burst( PurpleParticle.BURST, Random.IntRange( 1, 2 ) );
}
if (!ch.isAlive() && ch == Dungeon.hero) {
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "deathgaze_kill") );
}
} else {
ch.sprite.showStatus( CharSprite.NEUTRAL, ch.defenseVerb() );
}
}
if (terrainAffected) {
Dungeon.observe();
}
beam = null;
beamTarget = -1;
}
private static final String BEAM_TARGET = "beamTarget";
private static final String BEAM_COOLDOWN = "beamCooldown";
private static final String BEAM_CHARGED = "beamCharged";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( BEAM_TARGET, beamTarget);
bundle.put( BEAM_COOLDOWN, beamCooldown );
bundle.put( BEAM_CHARGED, beamCharged );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
if (bundle.contains(BEAM_TARGET))
beamTarget = bundle.getInt(BEAM_TARGET);
beamCooldown = bundle.getInt(BEAM_COOLDOWN);
beamCharged = bundle.getBoolean(BEAM_CHARGED);
}
{
resistances.add( WandOfDisintegration.class );
resistances.add( Grim.class );
}
{
immunities.add( Terror.class );
}
private class Hunting extends Mob.Hunting{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
//even if enemy isn't seen, attack them if the beam is charged
if (beamCharged && enemy != null && canAttack(enemy)) {
enemySeen = enemyInFOV;
return doAttack(enemy);
}
return super.act(enemyInFOV, justAlerted);
}
}
}
| 6,582 | Eye | java | en | java | code | {"qsc_code_num_words": 753, "qsc_code_num_chars": 6582.0, "qsc_code_mean_word_length": 6.25365206, "qsc_code_frac_words_unique": 0.3373174, "qsc_code_frac_chars_top_2grams": 0.03631344, "qsc_code_frac_chars_top_3grams": 0.14525377, "qsc_code_frac_chars_top_4grams": 0.15884477, "qsc_code_frac_chars_dupe_5grams": 0.23826715, "qsc_code_frac_chars_dupe_6grams": 0.10235719, "qsc_code_frac_chars_dupe_7grams": 0.0501168, "qsc_code_frac_chars_dupe_8grams": 0.02166065, "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.01047794, "qsc_code_frac_chars_whitespace": 0.17350349, "qsc_code_size_file_byte": 6582.0, "qsc_code_num_lines": 241.0, "qsc_code_num_chars_line_max": 127.0, "qsc_code_num_chars_line_mean": 27.31120332, "qsc_code_frac_chars_alphabet": 0.85514706, "qsc_code_frac_chars_comments": 0.1519295, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12571429, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00841992, "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.06857143, "qsc_codejava_score_lines_no_logic": 0.24571429, "qsc_codejava_frac_words_no_modifier": 0.78571429, "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/actors/mobs/Warlock.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Weakness;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Grim;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.WarlockSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Callback;
import com.watabou.utils.Random;
public class Warlock extends Mob implements Callback {
private static final float TIME_TO_ZAP = 1f;
{
spriteClass = WarlockSprite.class;
HP = HT = 70;
defenseSkill = 18;
EXP = 11;
maxLvl = 21;
loot = Generator.Category.POTION;
lootChance = 0.83f;
properties.add(Property.UNDEAD);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 16, 22 );
}
@Override
public int attackSkill( Char target ) {
return 25;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 8);
}
@Override
protected boolean canAttack( Char enemy ) {
return new Ballistica( pos, enemy.pos, Ballistica.MAGIC_BOLT).collisionPos == enemy.pos;
}
protected boolean doAttack( Char enemy ) {
if (Dungeon.level.adjacent( pos, enemy.pos )) {
return super.doAttack( enemy );
} else {
if (sprite != null && sprite.visible) {
sprite.zap( enemy.pos );
return false;
} else {
zap();
return true;
}
}
}
//used so resistances can differentiate between melee and magical attacks
public static class DarkBolt{}
private void zap() {
spend( TIME_TO_ZAP );
if (hit( this, enemy, true )) {
if (enemy == Dungeon.hero && Random.Int( 2 ) == 0) {
Buff.prolong( enemy, Weakness.class, Weakness.DURATION );
}
int dmg = Random.Int( 12, 18 );
enemy.damage( dmg, new DarkBolt() );
if (!enemy.isAlive() && enemy == Dungeon.hero) {
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "bolt_kill") );
}
} else {
enemy.sprite.showStatus( CharSprite.NEUTRAL, enemy.defenseVerb() );
}
}
public void onZapComplete() {
zap();
next();
}
@Override
public void call() {
next();
}
@Override
public Item createLoot(){
Item loot = super.createLoot();
if (loot instanceof PotionOfHealing){
//count/10 chance of not dropping potion
if (Random.Float() < ((8f - Dungeon.LimitedDrops.WARLOCK_HP.count) / 8f)){
Dungeon.LimitedDrops.WARLOCK_HP.count++;
} else {
return null;
}
}
return loot;
}
{
resistances.add( Grim.class );
}
}
| 3,897 | Warlock | java | en | java | code | {"qsc_code_num_words": 462, "qsc_code_num_chars": 3897.0, "qsc_code_mean_word_length": 6.04545455, "qsc_code_frac_words_unique": 0.45670996, "qsc_code_frac_chars_top_2grams": 0.04833512, "qsc_code_frac_chars_top_3grams": 0.19047619, "qsc_code_frac_chars_top_4grams": 0.20479771, "qsc_code_frac_chars_dupe_5grams": 0.21840315, "qsc_code_frac_chars_dupe_6grams": 0.08449696, "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.01464174, "qsc_code_frac_chars_whitespace": 0.17628945, "qsc_code_size_file_byte": 3897.0, "qsc_code_num_lines": 150.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 25.98, "qsc_code_frac_chars_alphabet": 0.85545171, "qsc_code_frac_chars_comments": 0.22940724, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14285714, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.002997, "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.09183673, "qsc_codejava_score_lines_no_logic": 0.30612245, "qsc_codejava_frac_words_no_modifier": 0.9, "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/actors/mobs/Acidic.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.AcidicSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Random;
public class Acidic extends Scorpio {
{
spriteClass = AcidicSprite.class;
properties.add(Property.ACIDIC);
}
@Override
public int defenseProc( Char enemy, int damage ) {
int dmg = Random.IntRange( 0, damage );
if (dmg > 0) {
enemy.damage( dmg, this );
if (!enemy.isAlive() && enemy == Dungeon.hero) {
Dungeon.fail(getClass());
GLog.n(Messages.capitalize(Messages.get(Char.class, "kill", name)));
}
}
return super.defenseProc( enemy, damage );
}
}
| 1,689 | Acidic | java | en | java | code | {"qsc_code_num_words": 218, "qsc_code_num_chars": 1689.0, "qsc_code_mean_word_length": 5.75688073, "qsc_code_frac_words_unique": 0.55045872, "qsc_code_frac_chars_top_2grams": 0.0812749, "qsc_code_frac_chars_top_3grams": 0.18167331, "qsc_code_frac_chars_top_4grams": 0.1752988, "qsc_code_frac_chars_dupe_5grams": 0.06533865, "qsc_code_frac_chars_dupe_6grams": 0.04462151, "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.01346563, "qsc_code_frac_chars_whitespace": 0.16459443, "qsc_code_size_file_byte": 1689.0, "qsc_code_num_lines": 53.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 31.86792453, "qsc_code_frac_chars_alphabet": 0.87597449, "qsc_code_frac_chars_comments": 0.46240379, "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.00440529, "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.04, "qsc_codejava_score_lines_no_logic": 0.32, "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/actors/mobs/DM300.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
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.ToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ElmoParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.LloydsBeacon;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.MetalShard;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.DM300Sprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.Camera;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class DM300 extends Mob {
{
spriteClass = DM300Sprite.class;
HP = HT = 200;
EXP = 30;
defenseSkill = 18;
properties.add(Property.BOSS);
properties.add(Property.INORGANIC);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 20, 25 );
}
@Override
public int attackSkill( Char target ) {
return 28;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 10);
}
@Override
public boolean act() {
GameScene.add( Blob.seed( pos, 30, ToxicGas.class ) );
return super.act();
}
@Override
public void move( int step ) {
super.move( step );
if (Dungeon.level.map[step] == Terrain.INACTIVE_TRAP && HP < HT) {
HP += Random.Int( 1, HT - HP );
sprite.emitter().burst( ElmoParticle.FACTORY, 5 );
if (Dungeon.level.heroFOV[step] && Dungeon.hero.isAlive()) {
GLog.n( Messages.get(this, "repair") );
}
}
int[] cells = {
step-1, step+1, step-Dungeon.level.width(), step+Dungeon.level.width(),
step-1-Dungeon.level.width(),
step-1+Dungeon.level.width(),
step+1-Dungeon.level.width(),
step+1+Dungeon.level.width()
};
int cell = cells[Random.Int( cells.length )];
if (Dungeon.level.heroFOV[cell]) {
CellEmitter.get( cell ).start( Speck.factory( Speck.ROCK ), 0.07f, 10 );
Camera.main.shake( 3, 0.7f );
Sample.INSTANCE.play( Assets.SND_ROCKS );
if (Dungeon.level.water[cell]) {
GameScene.ripple( cell );
} else if (Dungeon.level.map[cell] == Terrain.EMPTY) {
Level.set( cell, Terrain.EMPTY_DECO );
GameScene.updateMap( cell );
}
}
Char ch = Actor.findChar( cell );
if (ch != null && ch != this) {
Buff.prolong( ch, Paralysis.class, 2 );
}
}
@Override
public void damage(int dmg, Object src) {
super.damage(dmg, src);
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null && !isImmune(src.getClass())) lock.addTime(dmg*1.5f);
}
@Override
public void die( Object cause ) {
super.die( cause );
GameScene.bossSlain();
Dungeon.level.drop( new SkeletonKey( Dungeon.depth ), pos ).sprite.drop();
//60% chance of 2 shards, 30% chance of 3, 10% chance for 4. Average of 2.5
int shards = Random.chances(new float[]{0, 0, 6, 3, 1});
for (int i = 0; i < shards; i++){
int ofs;
do {
ofs = PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!Dungeon.level.passable[pos + ofs]);
Dungeon.level.drop( new MetalShard(), pos + ofs ).sprite.drop( pos );
}
Badges.validateBossSlain();
LloydsBeacon beacon = Dungeon.hero.belongings.getItem(LloydsBeacon.class);
if (beacon != null) {
beacon.upgrade();
}
yell( Messages.get(this, "defeated") );
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
yell(Messages.get(this, "notice"));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
}
}
{
immunities.add( ToxicGas.class );
immunities.add( Terror.class );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
BossHealthBar.assignBoss(this);
}
}
| 5,928 | DM300 | java | en | java | code | {"qsc_code_num_words": 715, "qsc_code_num_chars": 5928.0, "qsc_code_mean_word_length": 6.03636364, "qsc_code_frac_words_unique": 0.35664336, "qsc_code_frac_chars_top_2grams": 0.06255792, "qsc_code_frac_chars_top_3grams": 0.22891566, "qsc_code_frac_chars_top_4grams": 0.25486562, "qsc_code_frac_chars_dupe_5grams": 0.25695088, "qsc_code_frac_chars_dupe_6grams": 0.14063948, "qsc_code_frac_chars_dupe_7grams": 0.02432808, "qsc_code_frac_chars_dupe_8grams": 0.02432808, "qsc_code_frac_chars_dupe_9grams": 0.02432808, "qsc_code_frac_chars_dupe_10grams": 0.02432808, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01623762, "qsc_code_frac_chars_whitespace": 0.14811066, "qsc_code_size_file_byte": 5928.0, "qsc_code_num_lines": 193.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 30.71502591, "qsc_code_frac_chars_alphabet": 0.83841584, "qsc_code_frac_chars_comments": 0.14439946, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07801418, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00433754, "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.06382979, "qsc_codejava_score_lines_no_logic": 0.29787234, "qsc_codejava_frac_words_no_modifier": 0.9, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/main.dart | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:iot_firestore_flutter_app/route/router.dart' as router;
import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'const/custom_colors.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp])
.then((_) {
runApp(new MyApp());
});
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'IoT Firestore App',
theme: ThemeData(
textTheme: GoogleFonts.poppinsTextTheme(Theme.of(context).textTheme),
scaffoldBackgroundColor: kMainBG,
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
onGenerateRoute: router.generateRoute,
initialRoute: SplashScreenRoute,
);
}
}
| 1,030 | main | dart | en | dart | code | {"qsc_code_num_words": 94, "qsc_code_num_chars": 1030.0, "qsc_code_mean_word_length": 7.9893617, "qsc_code_frac_words_unique": 0.63829787, "qsc_code_frac_chars_top_2grams": 0.08655126, "qsc_code_frac_chars_top_3grams": 0.06790945, "qsc_code_frac_chars_top_4grams": 0.0665779, "qsc_code_frac_chars_dupe_5grams": 0.10652463, "qsc_code_frac_chars_dupe_6grams": 0.10652463, "qsc_code_frac_chars_dupe_7grams": 0.10652463, "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.15728155, "qsc_code_size_file_byte": 1030.0, "qsc_code_num_lines": 33.0, "qsc_code_num_chars_line_max": 78.0, "qsc_code_num_chars_line_mean": 31.21212121, "qsc_code_frac_chars_alphabet": 0.86520737, "qsc_code_frac_chars_comments": 0.0, "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.24271845, "qsc_code_frac_chars_long_word_length": 0.22621359, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/auth_helper.dart | import 'dart:async';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
class AuthHelper {
static final FirebaseAuth _firebaseAuth = FirebaseAuth.instance;
static Future<dynamic> signUp(String email, String password) async {
try {
UserCredential userCredential = await _firebaseAuth
.createUserWithEmailAndPassword(email: email, password: password);
return userCredential.user;
} on FirebaseAuthException catch (e) {
return e.message;
}
}
static Future<dynamic> signIn(String email, String password) async {
try {
UserCredential userCredential = await FirebaseAuth.instance
.signInWithEmailAndPassword(email: email, password: password);
return userCredential.user;
} on FirebaseAuthException catch (e) {
return e.message;
}
}
static Future<void> signOut() async {
await _firebaseAuth.signOut();
}
static Future<void> resetPassword(String email) async {
await _firebaseAuth.sendPasswordResetEmail(email: email);
}
static Future<FirebaseApp> initializeFirebase({
required BuildContext context,
}) async {
FirebaseApp firebaseApp = await Firebase.initializeApp();
return firebaseApp;
}
static User? currentUser() {
return FirebaseAuth.instance.currentUser;
}
}
| 1,391 | auth_helper | dart | en | dart | code | {"qsc_code_num_words": 131, "qsc_code_num_chars": 1391.0, "qsc_code_mean_word_length": 7.61068702, "qsc_code_frac_words_unique": 0.34351145, "qsc_code_frac_chars_top_2grams": 0.06018054, "qsc_code_frac_chars_top_3grams": 0.04212638, "qsc_code_frac_chars_top_4grams": 0.05015045, "qsc_code_frac_chars_dupe_5grams": 0.3671013, "qsc_code_frac_chars_dupe_6grams": 0.3671013, "qsc_code_frac_chars_dupe_7grams": 0.3671013, "qsc_code_frac_chars_dupe_8grams": 0.3671013, "qsc_code_frac_chars_dupe_9grams": 0.3671013, "qsc_code_frac_chars_dupe_10grams": 0.3671013, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0, "qsc_code_frac_chars_whitespace": 0.18979152, "qsc_code_size_file_byte": 1391.0, "qsc_code_num_lines": 50.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 27.82, "qsc_code_frac_chars_alphabet": 0.88464951, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.2, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08554996, "qsc_code_frac_chars_long_word_length": 0.07836089, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/screens/signin_screen.dart | import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'package:iot_firestore_flutter_app/widgets/my_password_field.dart';
import 'package:iot_firestore_flutter_app/widgets/my_text_button.dart';
import 'package:iot_firestore_flutter_app/widgets/my_text_field.dart';
import 'package:flutter/material.dart';
import '../auth_helper.dart';
class SignInScreen extends StatefulWidget {
const SignInScreen({Key? key}) : super(key: key);
@override
_SignInScreenState createState() => _SignInScreenState();
}
class _SignInScreenState extends State<SignInScreen> {
bool isPasswordVisible = true;
final TextEditingController _email = TextEditingController();
final TextEditingController _password = TextEditingController();
@override
void dispose() {
_email.dispose();
_password.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding:
const EdgeInsets.only(left: 16, right: 16, top: 60, bottom: 30),
child: CustomScrollView(
reverse: true,
slivers: [
SliverFillRemaining(
hasScrollBody: false,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Flexible(
fit: FlexFit.loose,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Welcome back.",
style: kHeadline,
),
SizedBox(
height: 10,
),
Text(
"You've been missed!",
style: kBodyText2,
),
SizedBox(
height: 60,
),
MyTextField(
textEditingController: _email,
hintText: 'Email',
inputType: TextInputType.emailAddress,
),
MyPasswordField(
hintText: 'Password',
textEditingController: _password,
isPasswordVisible: isPasswordVisible,
onTap: () {
setState(() {
isPasswordVisible = !isPasswordVisible;
});
},
),
],
),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"Dont't have an account? ",
style: kBodyText,
),
GestureDetector(
onTap: () {
Navigator.pushNamed(context, SignUpScreenRoute);
},
child: Text(
'Register',
style: kBodyText.copyWith(
color: Colors.white,
),
),
)
],
),
SizedBox(
height: 20,
),
MyTextButton(
buttonName: 'Sign In',
onTap: _signIn,
bgColor: Colors.white,
textColor: Colors.black87,
),
],
),
),
),
],
),
),
);
}
_signIn() async {
var email = _email.text.trim();
var pw = _password.text.trim();
if (email.isEmpty || pw.isEmpty) {
await showOkAlertDialog(
context: context,
message: 'Check your email or password',
);
return;
}
var obj = await AuthHelper.signIn(email, pw);
if (obj is User) {
Navigator.pushNamedAndRemoveUntil(
context, DashboardScreenRoute, (Route<dynamic> route) => false);
} else {
await showOkAlertDialog(
context: context,
message: obj,
);
}
}
}
| 4,897 | signin_screen | dart | en | dart | code | {"qsc_code_num_words": 303, "qsc_code_num_chars": 4897.0, "qsc_code_mean_word_length": 6.96369637, "qsc_code_frac_words_unique": 0.48184818, "qsc_code_frac_chars_top_2grams": 0.0492891, "qsc_code_frac_chars_top_3grams": 0.0563981, "qsc_code_frac_chars_top_4grams": 0.04739336, "qsc_code_frac_chars_dupe_5grams": 0.14976303, "qsc_code_frac_chars_dupe_6grams": 0.10900474, "qsc_code_frac_chars_dupe_7grams": 0.10900474, "qsc_code_frac_chars_dupe_8grams": 0.07203791, "qsc_code_frac_chars_dupe_9grams": 0.07203791, "qsc_code_frac_chars_dupe_10grams": 0.0492891, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00748031, "qsc_code_frac_chars_whitespace": 0.48131509, "qsc_code_size_file_byte": 4897.0, "qsc_code_num_lines": 148.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 33.08783784, "qsc_code_frac_chars_alphabet": 0.82322835, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.33576642, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.11210945, "qsc_code_frac_chars_long_word_length": 0.08535838, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/screens/splash_screen.dart | import 'package:firebase_auth/firebase_auth.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'package:flutter/material.dart';
import '../auth_helper.dart';
class SplashScreen extends StatelessWidget {
const SplashScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: FutureBuilder(
future: AuthHelper.initializeFirebase(context: context),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.done) {
User? user = AuthHelper.currentUser();
if (user != null) {
Future.delayed(Duration.zero, () async {
Navigator.pushNamedAndRemoveUntil(context, DashboardScreenRoute,
(Route<dynamic> route) => false);
});
} else {
return _getScreen(context);
}
}
return Center(
child: CircularProgressIndicator(),
);
},
));
}
_getScreen(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 50),
child: Column(
children: [
Flexible(
child: Column(
children: [
Center(
child: Container(
child: Image(
image: AssetImage(
'assets/images/iot_image.png',
),
color: Colors.white,
),
),
),
SizedBox(
height: 20,
),
Text(
"Firebase\nCloud Firestore",
style: kHeadline,
textAlign: TextAlign.left,
),
SizedBox(
height: 20,
),
Container(
width: MediaQuery.of(context).size.width * 0.8,
child: Text(
"This is a project that connects to hardware devices via Firebase and gets the readings from sensors. For detail, you can check out my channel.",
style: kBodyText,
textAlign: TextAlign.center,
),
)
],
),
),
Container(
height: 60,
width: MediaQuery.of(context).size.width * 0.8,
decoration: BoxDecoration(
color: Colors.grey[850],
borderRadius: BorderRadius.circular(18),
),
child: Container(
child: TextButton(
style: ButtonStyle(
overlayColor: MaterialStateProperty.resolveWith(
(states) => Colors.black12,
),
),
onPressed: () {
Navigator.pushNamedAndRemoveUntil(context,
SignInScreenRoute, (Route<dynamic> route) => false);
},
child: Text(
'GET STARTED',
style: kButtonText.copyWith(color: Colors.white),
),
),
))
],
),
);
}
}
| 3,389 | splash_screen | dart | en | dart | code | {"qsc_code_num_words": 240, "qsc_code_num_chars": 3389.0, "qsc_code_mean_word_length": 6.62083333, "qsc_code_frac_words_unique": 0.56666667, "qsc_code_frac_chars_top_2grams": 0.03272498, "qsc_code_frac_chars_top_3grams": 0.03209566, "qsc_code_frac_chars_top_4grams": 0.02517306, "qsc_code_frac_chars_dupe_5grams": 0.09314034, "qsc_code_frac_chars_dupe_6grams": 0.09314034, "qsc_code_frac_chars_dupe_7grams": 0.09314034, "qsc_code_frac_chars_dupe_8grams": 0.04405286, "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.01097752, "qsc_code_frac_chars_whitespace": 0.4355267, "qsc_code_size_file_byte": 3389.0, "qsc_code_num_lines": 103.0, "qsc_code_num_chars_line_max": 166.0, "qsc_code_num_chars_line_mean": 32.90291262, "qsc_code_frac_chars_alphabet": 0.81965499, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36363636, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.01010101, "qsc_code_frac_chars_string_length": 0.12186486, "qsc_code_frac_chars_long_word_length": 0.06373562, "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} |
01-ai/Yi-1.5 | demo/web_demo.py | import gradio as gr
from argparse import ArgumentParser
from threading import Thread
from transformers import (
AutoModelForCausalLM,
AutoTokenizer,
TextIteratorStreamer,
)
def respond(
message,
history: list[tuple[str, str]],
system_message,
max_tokens,
temperature,
top_p,
):
messages = [{"role": "system", "content": system_message}]
for val in history:
if val[0]:
messages.append({"role": "user", "content": val[0]})
if val[1]:
messages.append({"role": "assistant", "content": val[1]})
messages.append({"role": "user", "content": message})
model_inputs = tokenizer.apply_chat_template(
messages, add_generation_prompt=True, tokenize=True, return_tensors="pt"
).to(next(model.parameters()).device)
streamer = TextIteratorStreamer(
tokenizer, timeout=60, skip_prompt=True, skip_special_tokens=True
)
generate_kwargs = {
"input_ids": model_inputs,
"streamer": streamer,
"max_new_tokens": max_tokens,
"do_sample": True,
"top_p": top_p,
"temperature": temperature,
"repetition_penalty": 1.2,
"eos_token_id": [tokenizer.eos_token_id],
}
t = Thread(target=model.generate, kwargs=generate_kwargs)
t.start()
response = ""
for new_token in streamer:
if new_token != "":
response += new_token
yield response
"""
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
"""
demo = gr.ChatInterface(
respond,
additional_inputs=[
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
gr.Slider(
minimum=0.1,
maximum=1.0,
value=0.95,
step=0.05,
label="Top-p (nucleus sampling)",
),
],
)
if __name__ == "__main__":
parser = ArgumentParser()
parser.add_argument(
"-c",
"--checkpoint-path",
type=str,
default="01-ai/Yi-1.5-34B-Chat",
help="Checkpoint name or path, default to %(default)r",
)
parser.add_argument(
"--share",
action="store_true",
default=False,
help="Create a publicly shareable link for the interface.",
)
parser.add_argument(
"--inbrowser",
action="store_true",
default=True,
help="Automatically launch the interface in a new tab on the default browser.",
)
parser.add_argument(
"--server-port", type=int, default=8000, help="Demo server port."
)
parser.add_argument(
"--server-name", type=str, default="127.0.0.1", help="Demo server name."
)
args = parser.parse_args()
tokenizer = AutoTokenizer.from_pretrained(args.checkpoint_path, use_fast=False)
model = AutoModelForCausalLM.from_pretrained(
args.checkpoint_path, device_map="auto", torch_dtype="auto"
).eval()
demo.launch(
server_name=args.server_name,
server_port=args.server_port,
inbrowser=args.inbrowser,
share=args.share,
)
| 3,321 | web_demo | py | en | python | code | {"qsc_code_num_words": 388, "qsc_code_num_chars": 3321.0, "qsc_code_mean_word_length": 5.12628866, "qsc_code_frac_words_unique": 0.40721649, "qsc_code_frac_chars_top_2grams": 0.02262443, "qsc_code_frac_chars_top_3grams": 0.04273504, "qsc_code_frac_chars_top_4grams": 0.02212167, "qsc_code_frac_chars_dupe_5grams": 0.09854198, "qsc_code_frac_chars_dupe_6grams": 0.02413273, "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.02058111, "qsc_code_frac_chars_whitespace": 0.25383921, "qsc_code_size_file_byte": 3321.0, "qsc_code_num_lines": 115.0, "qsc_code_num_chars_line_max": 121.0, "qsc_code_num_chars_line_mean": 28.87826087, "qsc_code_frac_chars_alphabet": 0.78208232, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.07070707, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.1807078, "qsc_code_frac_chars_long_word_length": 0.00657689, "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.01010101, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.0, "qsc_codepython_frac_lines_import": 0.04040404, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.05050505, "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} |
01bps/WiFi-Auto-Auth | setup.md | # Kindly go through the steps to locally setup the script on your device.
___
## 1. Install Dependencies
Run the following command to install the requirements:
```bash
pip install -r requirements.txt
```
## 2. Find Your Network's Login URL and Payload
```
2.1 Connect to your WiFi network manually.
2.2 Open the login page in a browser (http://192.168.x.x:8090/httpclient.html).
2.3 Inspect the login form (Right-click → Inspect → Network Tab).
2.4 Find the POST request URL inside the Network tab(should look like http://192.168.x.x:8090/login.xml).
2.5 Copy the form data parameters (like username, password, a, etc.).
```
## 3. Edit ```wifi_auto_login.py``` file
Modify the ```def wifi_login()``` function to match your payload parameters.
i.e:
```
{
"login_url": "http://192.168.100.1:8090/login.xml",
"username": "your_username",
"password": "your_password",
"payload_params": {
"mode": "191",
"username": "your_username",
"password": "your_password",
"a": "dynamic",
"producttype": "0"
},
"db_name": "wifi_log.db"
}
```
Note: a → Keep "dynamic" if the value changes on every login attempt.
## 4. Run the Script
Run the Python script to log in automatically:
```
python wifi_auto_login.py
```
## 5. Automate WiFi Login on System Boot:
#### **🔹 Windows (Task Scheduler)**
5.1. Open **Task Scheduler** → **Create Basic Task**.
5.2. Set **Trigger** → **At Startup**.
5.3. Set **Action** → **Start a Program** → Browse for `python.exe`.
5.4. In **Arguments**, enter:
```text
"C:\path\to\wifi_auto_login.py"
```
5.5. Save and enable the task.
---
#### **🔹 Linux (Crontab)**
5.1. Open terminal and run:
```bash
crontab -e
```
5.2. Add this line at the end:
```bash
@reboot python3 /path/to/wifi_auto_login.py
```
5.3. Save and exit.
---
#### **🔹 macOS (Launch Agents)**
5.1. Create a `.plist` file in `~/Library/LaunchAgents/`:
```bash
nano ~/Library/LaunchAgents/wifi_auto_login.plist
```
5.2. Add this content:
```xml
<?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>wifi_auto_login</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/python3</string>
<string>/path/to/wifi_auto_login.py</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
```
5.3. Save and enable it:
```bash
launchctl load ~/Library/LaunchAgents/wifi_auto_login.plist
```
We have succesfully setup the script now the wifi or LAN will get connected **automatically on system startup**!
## **Command-Line Interface (CLI) Usage**
This script now includes a command-line interface for easier interaction. Here are the available options:
| Command | Description |
| ---------------------- | ----------------------------------------------------------- |
| `python wifi_auto_login.py --login` | Performs a login attempt. This is the default action. |
| `python wifi_auto_login.py --view-logs` | Shows the 5 most recent login attempts. |
| `python wifi_auto_login.py --view-logs 10` | Shows the specified number of recent login attempts. |
| `python wifi_auto_login.py --setup` | Launches an interactive wizard to guide you through setup. |
| `python wifi_auto_login.py --test` | Tests the connection to the login server without logging in. |
| `python wifi_auto_login.py --clear-logs` | Deletes all stored login logs from the database. |
| `python wifi_auto_login.py --help` | Displays the help menu with all available commands. |
### **Examples**
**To perform a login:**
```bash
python wifi_auto_login.py --login
```
**To view the last 3 login attempts:**
```bash
python wifi_auto_login.py --view-logs 3
```
| 3,990 | setup | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00100251, "qsc_doc_frac_words_redpajama_stop": 0.125, "qsc_doc_num_sentences": 98.0, "qsc_doc_num_words": 568, "qsc_doc_num_chars": 3990.0, "qsc_doc_num_lines": 125.0, "qsc_doc_mean_word_length": 4.33802817, "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.39788732, "qsc_doc_entropy_unigram": 4.86007963, "qsc_doc_frac_words_all_caps": 0.01327434, "qsc_doc_frac_lines_dupe_lines": 0.25688073, "qsc_doc_frac_chars_dupe_lines": 0.05832187, "qsc_doc_frac_chars_top_2grams": 0.05519481, "qsc_doc_frac_chars_top_3grams": 0.08969156, "qsc_doc_frac_chars_top_4grams": 0.08522727, "qsc_doc_frac_chars_dupe_5grams": 0.21996753, "qsc_doc_frac_chars_dupe_6grams": 0.18547078, "qsc_doc_frac_chars_dupe_7grams": 0.07711039, "qsc_doc_frac_chars_dupe_8grams": 0.03246753, "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": 16.73777778, "qsc_doc_frac_chars_hyperlink_html_tag": 0.08245614, "qsc_doc_frac_chars_alphabet": 0.74707556, "qsc_doc_frac_chars_digital": 0.02877015, "qsc_doc_frac_chars_whitespace": 0.20726817, "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} |
01bps/WiFi-Auto-Auth | network_utils.py | """
Network utilities for WiFi Auto Auth - Multi-Network Support
Handles network detection, SSID identification, and network profile management.
"""
import subprocess
import platform
import re
import json
import os
from typing import Optional, Dict, List, Tuple
from config.logging_config import get_logger
logger = get_logger(__name__)
class NetworkDetector:
"""Handles network detection and SSID identification across different platforms."""
def __init__(self):
self.platform = platform.system().lower()
logger.debug(f"Initialized NetworkDetector for platform: {self.platform}")
def get_current_ssid(self) -> Optional[str]:
"""
Get the SSID of the currently connected WiFi network.
Returns:
str: SSID of current network, or None if not connected to WiFi
"""
try:
if self.platform == "windows":
return self._get_ssid_windows()
elif self.platform == "darwin": # macOS
return self._get_ssid_macos()
elif self.platform == "linux":
return self._get_ssid_linux()
else:
logger.warning(f"Unsupported platform: {self.platform}")
return None
except Exception as e:
logger.error(f"Failed to get current SSID: {e}")
return None
def _get_ssid_windows(self) -> Optional[str]:
"""Get SSID on Windows using netsh command."""
try:
# Use netsh to get WiFi profile information
cmd = ["netsh", "wlan", "show", "profiles"]
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
# Get the currently connected profile
cmd_interfaces = ["netsh", "wlan", "show", "interfaces"]
interfaces_result = subprocess.run(cmd_interfaces, capture_output=True, text=True, check=True)
# Parse the SSID from the interfaces output
for line in interfaces_result.stdout.split('\n'):
if 'SSID' in line and 'BSSID' not in line:
# Extract SSID (format: " SSID : NetworkName")
match = re.search(r'SSID\s*:\s*(.+)', line.strip())
if match:
ssid = match.group(1).strip()
logger.debug(f"Detected Windows SSID: {ssid}")
return ssid
logger.debug("No active WiFi connection found on Windows")
return None
except subprocess.CalledProcessError as e:
logger.error(f"Windows netsh command failed: {e}")
return None
except Exception as e:
logger.error(f"Error getting Windows SSID: {e}")
return None
def _get_ssid_macos(self) -> Optional[str]:
"""Get SSID on macOS using airport utility."""
try:
# Try using networksetup first
cmd = ["networksetup", "-getairportnetwork", "en0"]
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
# Parse output (format: "Current Wi-Fi Network: NetworkName")
if "Current Wi-Fi Network:" in result.stdout:
ssid = result.stdout.split("Current Wi-Fi Network:")[-1].strip()
if ssid and ssid != "You are not associated with an AirPort network.":
logger.debug(f"Detected macOS SSID: {ssid}")
return ssid
# Fallback to airport utility
airport_cmd = ["/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport", "-I"]
airport_result = subprocess.run(airport_cmd, capture_output=True, text=True, check=True)
for line in airport_result.stdout.split('\n'):
if 'SSID:' in line:
ssid = line.split('SSID:')[-1].strip()
logger.debug(f"Detected macOS SSID via airport: {ssid}")
return ssid
logger.debug("No active WiFi connection found on macOS")
return None
except subprocess.CalledProcessError as e:
logger.error(f"macOS network command failed: {e}")
return None
except Exception as e:
logger.error(f"Error getting macOS SSID: {e}")
return None
def _get_ssid_linux(self) -> Optional[str]:
"""Get SSID on Linux using various methods."""
methods = [
self._linux_iwgetid,
self._linux_nmcli,
self._linux_iwconfig
]
for method in methods:
try:
ssid = method()
if ssid:
logger.debug(f"Detected Linux SSID: {ssid}")
return ssid
except Exception as e:
logger.debug(f"Linux method {method.__name__} failed: {e}")
continue
logger.debug("No active WiFi connection found on Linux")
return None
def _linux_iwgetid(self) -> Optional[str]:
"""Get SSID using iwgetid command."""
cmd = ["iwgetid", "-r"]
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
ssid = result.stdout.strip()
return ssid if ssid else None
def _linux_nmcli(self) -> Optional[str]:
"""Get SSID using NetworkManager's nmcli."""
cmd = ["nmcli", "-t", "-f", "active,ssid", "dev", "wifi"]
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
for line in result.stdout.split('\n'):
if line.startswith('yes:'):
ssid = line.split(':', 1)[1]
return ssid if ssid else None
return None
def _linux_iwconfig(self) -> Optional[str]:
"""Get SSID using iwconfig command."""
cmd = ["iwconfig"]
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
for line in result.stdout.split('\n'):
if 'ESSID:' in line:
match = re.search(r'ESSID:"([^"]*)"', line)
if match:
return match.group(1)
return None
class NetworkProfileManager:
"""Manages network profiles and configuration loading."""
def __init__(self, config_path: str = "config.json"):
self.config_path = config_path
self.detector = NetworkDetector()
logger.debug(f"Initialized NetworkProfileManager with config: {config_path}")
def load_config(self) -> Dict:
"""Load and parse configuration file."""
if not os.path.exists(self.config_path):
raise FileNotFoundError(
f"Missing {self.config_path}. Please copy config.example.json to {self.config_path} and configure your networks."
)
with open(self.config_path, "r") as f:
config = json.load(f)
logger.debug(f"Loaded configuration from {self.config_path}")
return config
def get_available_networks(self) -> List[str]:
"""Get list of configured network profile names."""
try:
config = self.load_config()
# Handle both new multi-network format and legacy format
if "networks" in config:
networks = list(config["networks"].keys())
logger.debug(f"Found configured networks: {networks}")
return networks
else:
# Legacy single network configuration
logger.debug("Using legacy single network configuration")
return ["default"]
except Exception as e:
logger.error(f"Error getting available networks: {e}")
return []
def get_network_profile(self, network_name: Optional[str] = None, auto_detect: bool = True) -> Tuple[str, Dict]:
"""
Get network configuration for specified network or auto-detect current network.
Args:
network_name: Specific network profile to use
auto_detect: Whether to auto-detect current network if network_name is None
Returns:
Tuple of (network_name, network_config)
"""
config = self.load_config()
# Handle legacy configuration format
if "networks" not in config:
logger.info("Using legacy configuration format")
legacy_config = {
"ssid": config.get("ssid", "Unknown"),
"wifi_url": config["wifi_url"],
"username": config["username"],
"password": config["password"],
"product_type": config.get("product_type", "0"),
"description": "Legacy configuration"
}
return "legacy", legacy_config
networks = config["networks"]
# If specific network requested, use it
if network_name:
if network_name in networks:
logger.info(f"Using specified network profile: {network_name}")
return network_name, networks[network_name]
else:
raise ValueError(f"Network profile '{network_name}' not found in configuration")
# Auto-detect current network
if auto_detect:
current_ssid = self.detector.get_current_ssid()
if current_ssid:
logger.info(f"Detected current SSID: {current_ssid}")
# Find matching network profile by SSID
for profile_name, profile_config in networks.items():
if profile_config.get("ssid") == current_ssid:
logger.info(f"Found matching network profile: {profile_name}")
return profile_name, profile_config
logger.warning(f"No network profile found for SSID: {current_ssid}")
else:
logger.warning("Could not detect current network SSID")
# Fall back to default network
default_network = config.get("default_network", list(networks.keys())[0])
if default_network in networks:
logger.info(f"Using default network profile: {default_network}")
return default_network, networks[default_network]
# If default not found, use first available
first_network = list(networks.keys())[0]
logger.info(f"Using first available network profile: {first_network}")
return first_network, networks[first_network]
def list_networks(self) -> Dict[str, Dict]:
"""Get detailed information about all configured networks."""
try:
config = self.load_config()
if "networks" not in config:
# Legacy format
return {
"legacy": {
"ssid": config.get("ssid", "Unknown"),
"wifi_url": config["wifi_url"],
"description": "Legacy configuration"
}
}
return config["networks"]
except Exception as e:
logger.error(f"Error listing networks: {e}")
return {}
# Convenience functions for backward compatibility
def get_current_ssid() -> Optional[str]:
"""Get the SSID of the currently connected WiFi network."""
detector = NetworkDetector()
return detector.get_current_ssid()
def get_network_profile(network_name: Optional[str] = None, auto_detect: bool = True) -> Tuple[str, Dict]:
"""Get network configuration for specified network or auto-detect current network."""
manager = NetworkProfileManager()
return manager.get_network_profile(network_name, auto_detect)
def list_available_networks() -> List[str]:
"""Get list of configured network profile names."""
manager = NetworkProfileManager()
return manager.get_available_networks() | 12,207 | network_utils | py | en | python | code | {"qsc_code_num_words": 1301, "qsc_code_num_chars": 12207.0, "qsc_code_mean_word_length": 5.23904689, "qsc_code_frac_words_unique": 0.16525749, "qsc_code_frac_chars_top_2grams": 0.01540493, "qsc_code_frac_chars_top_3grams": 0.01584507, "qsc_code_frac_chars_top_4grams": 0.01848592, "qsc_code_frac_chars_dupe_5grams": 0.34844484, "qsc_code_frac_chars_dupe_6grams": 0.28711854, "qsc_code_frac_chars_dupe_7grams": 0.23679577, "qsc_code_frac_chars_dupe_8grams": 0.22579225, "qsc_code_frac_chars_dupe_9grams": 0.19953052, "qsc_code_frac_chars_dupe_10grams": 0.17429577, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00184434, "qsc_code_frac_chars_whitespace": 0.33374293, "qsc_code_size_file_byte": 12207.0, "qsc_code_num_lines": 300.0, "qsc_code_num_chars_line_max": 130.0, "qsc_code_num_chars_line_mean": 40.69, "qsc_code_frac_chars_alphabet": 0.8362228, "qsc_code_frac_chars_comments": 0.15515688, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28643216, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.00502513, "qsc_code_frac_chars_string_length": 0.19528386, "qsc_code_frac_chars_long_word_length": 0.01089864, "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.08040201, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.00502513, "qsc_codepython_frac_lines_import": 0.03517588, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.30653266, "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} |
01bps/WiFi-Auto-Auth | wifi_auto_login.py |
import sqlite3
import requests
import datetime
import re
import socket
import argparse
import json
import os
from cryptography.fernet import Fernet
# --- CONFIGURATION ---
CONFIG_PATH = "config.json"
SECRET_KEY_PATH = "config/secret.key"
def get_or_create_secret_key():
if os.path.exists(SECRET_KEY_PATH):
with open(SECRET_KEY_PATH, "rb") as f:
return f.read()
key = Fernet.generate_key()
os.makedirs(os.path.dirname(SECRET_KEY_PATH), exist_ok=True)
with open(SECRET_KEY_PATH, "wb") as f:
f.write(key)
return key
def encrypt_if_plaintext(value, fernet):
# If already encrypted, leave as is
try:
fernet.decrypt(value.encode())
return value
except Exception:
# Not encrypted, encrypt
return fernet.encrypt(value.encode()).decode()
def decrypt_if_encrypted(value, fernet):
try:
return fernet.decrypt(value.encode()).decode()
except Exception:
return value
def load_config():
"""Load configuration file, encrypt plaintext passwords, and return config dict"""
if not os.path.exists(CONFIG_PATH):
raise FileNotFoundError(
"Missing config.json. Please copy config.example.json to config.json and fill in your details."
)
with open(CONFIG_PATH, "r") as f:
config = json.load(f)
key = get_or_create_secret_key()
fernet = Fernet(key)
updated = False
# Encrypt WiFi password if plaintext
if "password" in config:
orig = config["password"]
enc = encrypt_if_plaintext(orig, fernet)
if enc != orig:
config["password"] = enc
updated = True
# Encrypt dashboard password if plaintext
if "dashboard" in config and "password" in config["dashboard"]:
orig = config["dashboard"]["password"]
enc = encrypt_if_plaintext(orig, fernet)
if enc != orig:
config["dashboard"]["password"] = enc
updated = True
if updated:
with open(CONFIG_PATH, "w") as f:
json.dump(config, f, indent=2)
return config
# Initialize logging first
from config.logging_config import setup_logging_from_env, get_logger
setup_logging_from_env()
logger = get_logger(__name__)
# Import network utilities for multi-network support
try:
from network_utils import NetworkProfileManager, get_current_ssid
MULTI_NETWORK_SUPPORT = True
logger.info("Multi-network support enabled")
except ImportError as e:
logger.warning(f"Multi-network support disabled: {e}")
MULTI_NETWORK_SUPPORT = False
# Global variables - will be loaded when needed
URL = None
USERNAME = None
PASSWORD = None
PRODUCT_TYPE = None
FERNET_KEY = get_or_create_secret_key()
FERNET = Fernet(FERNET_KEY)
# --- DATABASE SETUP ---
DB_NAME = "wifi_log.db"
def check_connectivity(host="8.8.8.8", port=53, timeout=3):
"""
Check for an active internet connection by connecting to a known host.
"""
try:
socket.setdefaulttimeout(timeout)
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.connect((host, port))
return True
except (socket.error, OSError):
return False
# Initialize logging
from config.logging_config import setup_logging_from_env, get_logger
setup_logging_from_env()
logger = get_logger(__name__)
def setup_database():
"""Create the database and table if they do not exist."""
conn = sqlite3.connect(DB_NAME)
cursor = conn.cursor()
# Check if the table exists and get its schema
cursor.execute("PRAGMA table_info(login_attempts)")
columns = [row[1] for row in cursor.fetchall()]
if not columns:
# Create new table with network support
cursor.execute("""
CREATE TABLE login_attempts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT,
network_name TEXT,
network_ssid TEXT,
username TEXT,
password TEXT,
a TEXT,
response_status TEXT,
response_message TEXT
)
""")
logger.info("Created new login_attempts table with network support")
else:
# Check if we need to add network columns to existing table
if 'network_name' not in columns:
cursor.execute("ALTER TABLE login_attempts ADD COLUMN network_name TEXT")
logger.info("Added network_name column to existing table")
if 'network_ssid' not in columns:
cursor.execute("ALTER TABLE login_attempts ADD COLUMN network_ssid TEXT")
logger.info("Added network_ssid column to existing table")
conn.commit()
conn.close()
def log_attempt(username, password, a, response_status, response_message, network_name=None, network_ssid=None):
"""Log each login attempt in the database."""
conn = sqlite3.connect(DB_NAME)
cursor = conn.cursor()
# Store encrypted password in DB
cursor.execute("""
INSERT INTO login_attempts (timestamp, network_name, network_ssid, username, password, a, response_status, response_message)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
""", (datetime.datetime.now(), network_name, network_ssid, username, "******", a, response_status, response_message))
conn.commit()
conn.close()
# --- HELPER FUNCTIONS ---
def extract_message(response_text):
"""Extracts the meaningful message from the XML response."""
match = re.search(r"<message><!\[CDATA\[(.*?)\]\]></message>", response_text)
return match.group(1) if match else "Unknown response"
# --- MAIN WIFI LOGIN FUNCTION ---
def wifi_login(network_name=None):
"""Perform the WiFi login request and log the result."""
# As Per setup.md, user needs to modify these values
url = "POST url from the inspect element" # Change Required
username = "username"
password = "password"
a_value = str(int(datetime.datetime.now().timestamp())) # Generate dynamic 'a' value, you may refer to the screenshots in the setup.md file
# Load config when needed
config = load_config()
global URL, USERNAME, PASSWORD, PRODUCT_TYPE
URL = config["wifi_url"]
USERNAME = config["username"]
# Decrypt password for login
PASSWORD = decrypt_if_encrypted(config["password"], FERNET)
PRODUCT_TYPE = config.get("product_type", "0")
network_profile_name = "legacy"
network_ssid = "Unknown"
try:
if MULTI_NETWORK_SUPPORT:
# Use multi-network configuration
manager = NetworkProfileManager()
network_profile_name, network_config = manager.get_network_profile(network_name, auto_detect=True)
network_ssid = network_config.get("ssid", "Unknown")
URL = network_config["wifi_url"]
USERNAME = network_config["username"]
PASSWORD = network_config["password"]
PRODUCT_TYPE = network_config.get("product_type", "0")
print(f"\n🌐 Using Network Profile: {network_profile_name}")
print(f"📡 Network SSID: {network_ssid}")
print(f"🔗 Login URL: {URL}")
else:
# Fallback to legacy single network configuration
config = load_config()
URL = config["wifi_url"]
USERNAME = config["username"]
PASSWORD = config["password"]
PRODUCT_TYPE = config.get("product_type", "0")
network_ssid = config.get("ssid", "Unknown")
print(f"\n🌐 Using Legacy Configuration")
except Exception as e:
logger.error(f"Configuration error: {e}")
print(f"❌ Configuration Error: {e}")
return
a_value = str(int(datetime.datetime.now().timestamp())) # Generate dynamic 'a' value
payload = {
"mode": "191",
"username": USERNAME,
"password": PASSWORD,
"a": a_value,
"producttype": PRODUCT_TYPE
}
try:
response = requests.post(URL, data=payload)
response_status = response.status_code
response_message = extract_message(response.text)
print(f"\n📌 Login Attempt")
print(f"Time: {datetime.datetime.now()}")
print(f"Username: {USERNAME}")
print(f"Session ID (a): {a_value}")
print(f"Status: {response_status}")
print(f"Message: {response_message}")
print("-" * 80)
# Log the attempt in SQLite with network information
log_attempt(USERNAME, PASSWORD, a_value, response_status, response_message,
network_profile_name, network_ssid)
except requests.exceptions.RequestException as e:
print(f"❌ Error: {e}")
log_attempt(USERNAME, PASSWORD, a_value, "FAILED", str(e),
network_profile_name, network_ssid)
# --- VIEW LOGIN LOGS ---
def view_logs(limit=5, network_filter=None):
"""Display login logs in a readable format."""
conn = sqlite3.connect(DB_NAME)
cursor = conn.cursor()
# Check if table has new network columns
cursor.execute("PRAGMA table_info(login_attempts)")
columns = [row[1] for row in cursor.fetchall()]
has_network_columns = 'network_name' in columns and 'network_ssid' in columns
if has_network_columns:
base_query = """
SELECT timestamp, network_name, network_ssid, username, a, response_status, response_message
FROM login_attempts
"""
if network_filter:
query = base_query + "WHERE network_name = ? ORDER BY timestamp DESC LIMIT ?"
cursor.execute(query, (network_filter, limit))
else:
query = base_query + "ORDER BY timestamp DESC LIMIT ?"
cursor.execute(query, (limit,))
else:
# Legacy table structure
cursor.execute("""
SELECT timestamp, username, a, response_status, response_message
FROM login_attempts
ORDER BY timestamp DESC
LIMIT ?
""", (limit,))
logs = cursor.fetchall()
conn.close()
if not logs:
filter_msg = f" for network '{network_filter}'" if network_filter else ""
logger.info(f"No login attempts found in database{filter_msg}")
return
filter_msg = f" for network '{network_filter}'" if network_filter else ""
logger.info(f"Recent login attempts retrieved from database{filter_msg}")
logger.info("=" * 80)
for log in logs:
if has_network_columns:
timestamp, network_name, network_ssid, username, a, status, message = log
logger.info(f"Time: {timestamp}")
logger.info(f"Network: {network_name} ({network_ssid})")
logger.info(f"Username: {username}")
logger.info(f"Session ID (a): {a}")
logger.info(f"Status: {status}")
logger.info(f"Message: {message}")
else:
timestamp, username, a, status, message = log
logger.info(f"Time: {timestamp}")
logger.info(f"Username: {username}")
logger.info(f"Session ID (a): {a}")
logger.info(f"Status: {status}")
logger.info(f"Message: {message}")
logger.info("-" * 80)
def parse_arguments():
"""Parse command line arguments for logging configuration."""
parser = argparse.ArgumentParser(description='WiFi Auto Login with Professional Logging')
# Logging configuration arguments
parser.add_argument(
'--log-level',
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
help='Set the logging level (default: INFO)'
)
parser.add_argument(
'--log-file',
action='store_true',
default=True,
help='Enable file logging (default: enabled)'
)
parser.add_argument(
'--no-log-file',
action='store_false',
dest='log_file',
help='Disable file logging'
)
parser.add_argument(
'--log-dir',
default='./logs',
help='Directory for log files (default: ./logs)'
)
parser.add_argument(
'--console-logging',
action='store_true',
default=True,
help='Enable console logging (default: enabled)'
)
parser.add_argument(
'--no-console-logging',
action='store_false',
dest='console_logging',
help='Disable console logging'
)
# Application arguments
parser.add_argument(
'--view-logs',
type=int,
metavar='N',
help='View last N login attempts instead of performing login'
)
parser.add_argument(
'--max-attempts',
type=int,
default=5,
help='Maximum number of login attempts to show when viewing logs (default: 5)'
)
return parser.parse_args()
def clear_logs():
"""Deletes all logs from the login_attempts table."""
conn = sqlite3.connect(DB_NAME)
cursor = conn.cursor()
cursor.execute("DELETE FROM login_attempts")
conn.commit()
conn.close()
print("✅ All logs have been cleared.")
def test_connection(network_name=None):
"""Tests if the login URL is reachable."""
try:
if MULTI_NETWORK_SUPPORT:
manager = NetworkProfileManager()
network_profile_name, network_config = manager.get_network_profile(network_name, auto_detect=True)
url = network_config["wifi_url"]
print(f"🔗 Testing connection for network '{network_profile_name}' to {url}...")
else:
config = load_config()
url = config["wifi_url"]
print(f"🔗 Testing connection to {url}...")
response = requests.head(url, timeout=5) # Use HEAD to be efficient
if response.status_code == 200:
print(f"✅ Connection successful! The server responded with status {response.status_code}.")
else:
print(f"⚠️ Connection successful, but the server responded with status {response.status_code}.")
except requests.exceptions.RequestException as e:
print(f"❌ Connection failed: {e}")
except Exception as e:
print(f"❌ Configuration error: {e}")
def run_setup_wizard():
"""Guides the user through an interactive setup process."""
print("--- WiFi-Auto-Auth Interactive Setup ---")
print("This wizard will help you configure the script.")
print()
# Ask about multi-network setup
print("Choose configuration type:")
print("1. Single Network (Legacy)")
print("2. Multi-Network (Recommended)")
choice = input("\nEnter your choice (1 or 2): ").strip()
if choice == "2":
setup_multi_network()
else:
setup_single_network()
def setup_single_network():
"""Set up single network configuration."""
print("\n--- Single Network Setup ---")
url = input("1. Enter the POST request URL from your network's login page: ")
username = input("2. Enter your login username: ")
password = input("3. Enter your login password: ")
product_type = input("4. Enter product type (optional, press Enter for default): ") or "0"
config = {
"wifi_url": url,
"username": username,
"password": password,
"product_type": product_type,
"dashboard": {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123"
}
}
save_config(config)
print("\n✅ Single network setup complete!")
def setup_multi_network():
"""Set up multi-network configuration."""
print("\n--- Multi-Network Setup ---")
networks = {}
default_network = None
while True:
print(f"\n--- Network Profile #{len(networks) + 1} ---")
profile_name = input("Enter network profile name (e.g., home, work, school): ").strip()
if not profile_name:
break
ssid = input(f"Enter SSID for {profile_name}: ").strip()
url = input(f"Enter login URL for {profile_name}: ").strip()
username = input(f"Enter username for {profile_name}: ").strip()
password = input(f"Enter password for {profile_name}: ").strip()
product_type = input(f"Enter product type for {profile_name} (optional): ").strip() or "0"
description = input(f"Enter description for {profile_name} (optional): ").strip() or f"{profile_name.title()} network"
networks[profile_name] = {
"ssid": ssid,
"wifi_url": url,
"username": username,
"password": password,
"product_type": product_type,
"description": description
}
if not default_network:
default_network = profile_name
add_more = input(f"\nAdd another network profile? (y/N): ").strip().lower()
if add_more not in ['y', 'yes']:
break
if not networks:
print("No networks configured. Falling back to single network setup.")
setup_single_network()
return
# Ask for default network
if len(networks) > 1:
print(f"\nAvailable networks: {', '.join(networks.keys())}")
default_choice = input(f"Enter default network (press Enter for '{default_network}'): ").strip()
if default_choice in networks:
default_network = default_choice
config = {
"default_network": default_network,
"networks": networks,
"dashboard": {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123"
}
}
save_config(config)
print(f"\n✅ Multi-network setup complete! {len(networks)} networks configured.")
print(f"Default network: {default_network}")
def save_config(config):
"""Save configuration to config.json file."""
try:
with open(CONFIG_PATH, 'w') as f:
json.dump(config, f, indent=2)
print(f"\n💾 Configuration saved to {CONFIG_PATH}")
except Exception as e:
print(f"\n❌ Error saving configuration: {e}")
def list_networks():
"""List all configured network profiles."""
if not MULTI_NETWORK_SUPPORT:
print("❌ Multi-network support not available. Using legacy configuration.")
return
try:
manager = NetworkProfileManager()
networks = manager.list_networks()
current_ssid = get_current_ssid()
print("\n📶 Configured Network Profiles:")
print("=" * 60)
for name, config in networks.items():
ssid = config.get("ssid", "Unknown")
url = config.get("wifi_url", "Unknown")
description = config.get("description", "No description")
# Mark current network
current_marker = " 📍 CURRENT" if ssid == current_ssid else ""
print(f"🌐 Network: {name}{current_marker}")
print(f" SSID: {ssid}")
print(f" URL: {url}")
print(f" Description: {description}")
print("-" * 60)
if current_ssid:
print(f"\n📡 Currently connected to: {current_ssid}")
else:
print("\n📡 No WiFi connection detected")
except Exception as e:
print(f"❌ Error listing networks: {e}")
def detect_network():
"""Detect current network and show matching profile."""
if not MULTI_NETWORK_SUPPORT:
print("❌ Multi-network support not available.")
return
try:
current_ssid = get_current_ssid()
if not current_ssid:
print("📡 No WiFi connection detected")
return
print(f"📡 Current SSID: {current_ssid}")
manager = NetworkProfileManager()
try:
network_name, network_config = manager.get_network_profile(auto_detect=True)
print(f"✅ Found matching profile: {network_name}")
print(f" Description: {network_config.get('description', 'No description')}")
print(f" Login URL: {network_config.get('wifi_url', 'Unknown')}")
except Exception:
print("⚠️ No matching network profile found")
print("💡 You may need to add this network to your config.json")
except Exception as e:
print(f"❌ Error detecting network: {e}")
def start_dashboard():
"""Start the web dashboard server."""
try:
import subprocess
import sys
print("🚀 Starting WiFi Auto Auth Dashboard...")
print("📊 Dashboard will be available at: http://127.0.0.1:8000")
print("🔑 Default credentials: admin / admin123")
print("🛑 Press Ctrl+C to stop the server")
# Start the dashboard server
subprocess.run([sys.executable, "dashboard.py"], check=True)
except subprocess.CalledProcessError as e:
print(f"❌ Error starting dashboard: {e}")
except KeyboardInterrupt:
print("\n🛑 Dashboard server stopped.")
except ImportError:
print("❌ Dashboard dependencies not installed. Please run: pip install -r requirements.txt")
except FileNotFoundError:
print("❌ Dashboard server not found. Please ensure dashboard.py exists.")
if __name__ == "__main__":
setup_database() # Ensure the database is set up
print("Checking for internet connectivity...")
if check_connectivity():
print("✅ Internet connection is already active. No login needed.")
else:
print("❌ No internet connection detected. Proceeding with login attempt.")
wifi_login() # Attempt login only if not connected
view_logs(5) # Show last 5 login attempts
parser = argparse.ArgumentParser(
description="A script to automatically log into captive portal WiFi networks with multi-network support."
)
parser.add_argument(
'--login',
action='store_true',
help="Perform a login attempt."
)
parser.add_argument(
'--network', '-n',
type=str,
metavar='PROFILE',
help="Specify which network profile to use (overrides auto-detection)."
)
parser.add_argument(
'--view-logs',
nargs='?',
const=5,
type=int,
metavar='N',
help="View the last N login attempts. Defaults to 5 if no number is provided."
)
parser.add_argument(
'--network-filter',
type=str,
metavar='PROFILE',
help="Filter logs by network profile name."
)
parser.add_argument(
'--list-networks',
action='store_true',
help="List all configured network profiles."
)
parser.add_argument(
'--detect-network',
action='store_true',
help="Detect current network and show matching profile."
)
parser.add_argument(
'--setup',
action='store_true',
help="Run the interactive setup wizard to configure credentials."
)
parser.add_argument(
'--test',
action='store_true',
help="Test the connection to the login URL without logging in."
)
parser.add_argument(
'--clear-logs',
action='store_true',
help="Clear all login logs from the database."
)
parser.add_argument(
'--dashboard',
action='store_true',
help="Start the web dashboard server for monitoring login attempts."
)
args = parser.parse_args()
# For operations that don't need config, handle them first
if args.setup:
run_setup_wizard()
elif args.dashboard:
# Trigger config encryption if needed
load_config()
start_dashboard()
elif args.list_networks:
list_networks()
elif args.detect_network:
detect_network()
else:
# For operations that need database/config
try:
setup_database() # Ensure the database is always set up
if args.login:
wifi_login(args.network)
elif args.view_logs is not None:
view_logs(args.view_logs, args.network_filter)
elif args.test:
test_connection(args.network)
elif args.clear_logs:
clear_logs()
else:
print("No arguments provided. Performing default login action.")
wifi_login(args.network)
view_logs(1, args.network_filter)
except FileNotFoundError as e:
print(f"❌ Configuration Error: {e}")
print("💡 Run 'python wifi_auto_login.py --setup' to configure the application.")
print("📖 Or copy config.example.json to config.json and edit it manually.")
| 24,811 | wifi_auto_login | py | en | python | code | {"qsc_code_num_words": 2902, "qsc_code_num_chars": 24811.0, "qsc_code_mean_word_length": 5.11199173, "qsc_code_frac_words_unique": 0.15713301, "qsc_code_frac_chars_top_2grams": 0.01496461, "qsc_code_frac_chars_top_3grams": 0.0206269, "qsc_code_frac_chars_top_4grams": 0.00431412, "qsc_code_frac_chars_dupe_5grams": 0.32301989, "qsc_code_frac_chars_dupe_6grams": 0.25331985, "qsc_code_frac_chars_dupe_7grams": 0.23262555, "qsc_code_frac_chars_dupe_8grams": 0.19474216, "qsc_code_frac_chars_dupe_9grams": 0.1495787, "qsc_code_frac_chars_dupe_10grams": 0.1379845, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00541415, "qsc_code_frac_chars_whitespace": 0.27790093, "qsc_code_size_file_byte": 24811.0, "qsc_code_num_lines": 711.0, "qsc_code_num_chars_line_max": 145.0, "qsc_code_num_chars_line_mean": 34.89592124, "qsc_code_frac_chars_alphabet": 0.8199933, "qsc_code_frac_chars_comments": 0.09076619, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.34458259, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0017762, "qsc_code_frac_chars_string_length": 0.32804068, "qsc_code_frac_chars_long_word_length": 0.01619018, "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.03552398, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.04262877, "qsc_codepython_frac_lines_import": 0.02841918, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.09413854, "qsc_codepython_frac_lines_print": 0.12611012} | 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} |
01bps/WiFi-Auto-Auth | DASHBOARD.md | # WiFi Auto Auth Dashboard
A beautiful web-based monitoring interface for WiFi Auto Auth that provides real-time visualization of login attempts, statistics, and historical data.
## 🚀 Quick Start
1. **Install dependencies**: `pip install -r requirements.txt`
2. **Copy config**: `cp config.example.json config.json` (edit with your WiFi details)
3. **Generate data**: `python wifi_auto_login.py --login` (run a few times)
4. **Start dashboard**: `python wifi_auto_login.py --dashboard`
5. **Access**: Open http://127.0.0.1:8000 (username: admin, password: admin123)
## Features
### 🎯 Core Features
- **Real-time Dashboard**: Live monitoring of WiFi login attempts
- **Interactive Charts**: Time-based visualizations using Chart.js
- **Advanced Filtering**: Filter by date range, status, and more
- **Responsive Design**: Works perfectly on desktop and mobile devices
- **Secure Access**: HTTP Basic Authentication protection
- **RESTful API**: Complete API for data access and integration
### 📊 Dashboard Components
- **Statistics Cards**: Total attempts, success rate, failure count
- **Login Attempts Table**: Detailed view of recent attempts
- **Time-based Charts**: Visual representation of login patterns
- **Success Rate Pie Chart**: Quick overview of success vs failure rates
- **Real-time Updates**: Auto-refresh every 30 seconds
### 🔒 Security Features
- HTTP Basic Authentication
- Configurable credentials
- Session management
- Secure API endpoints
## Installation
### Prerequisites
- Python 3.7 or higher
- All dependencies from `requirements.txt`
### Install Dependencies
```bash
pip install -r requirements.txt
```
The dashboard requires these additional packages:
- `fastapi>=0.104.0` - Modern web framework
- `uvicorn>=0.24.0` - ASGI server
- `jinja2>=3.1.0` - Template engine
- `python-multipart>=0.0.6` - Form data handling
- `aiofiles>=23.2.0` - Async file operations
## Configuration
### Dashboard Settings
Add dashboard configuration to your `config.json`:
```json
{
"wifi_url": "http://192.168.1.1/login",
"username": "your_username",
"password": "your_password",
"product_type": "router",
"dashboard": {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123"
}
}
```
### Configuration Options
| Option | Description | Default |
|--------|-------------|---------|
| `host` | Dashboard server host | `127.0.0.1` |
| `port` | Dashboard server port | `8000` |
| `username` | Dashboard login username | `admin` |
| `password` | Dashboard login password | `admin123` |
## Usage
### Starting the Dashboard
#### Method 1: Using CLI Command
```bash
python wifi_auto_login.py --dashboard
```
#### Method 2: Direct Server Start
```bash
python dashboard.py
```
#### Method 3: Custom Host/Port
```bash
python dashboard.py --host 0.0.0.0 --port 8080
```
### Accessing the Dashboard
1. **Open your browser** and navigate to: `http://127.0.0.1:8000`
2. **Enter credentials** when prompted:
- Username: `admin` (or your configured username)
- Password: `admin123` (or your configured password)
3. **Explore the dashboard** - you'll see all your WiFi login statistics and history
### Dashboard Sections
#### 📈 Statistics Overview
- **Total Attempts**: All login attempts recorded
- **Successful**: Number of successful logins
- **Failed**: Number of failed attempts
- **Success Rate**: Percentage of successful logins
#### 🔍 Filtering Options
- **Date Range**: Filter attempts by start and end date
- **Status Filter**: Show only successful or failed attempts
- **Result Limit**: Control number of results displayed (25, 50, 100, 200)
#### 📊 Visualizations
- **Login Attempts Over Time**: Line chart showing hourly login patterns
- **Success Rate Distribution**: Pie chart showing success vs failure ratio
- **Real-time Updates**: Charts refresh automatically every 30 seconds
#### 📋 Login Attempts Table
- **Timestamp**: When the login attempt occurred
- **Username**: User account used for login
- **Session ID**: Unique session identifier
- **Status**: Success (200) or failure status codes
- **Message**: Response message from the WiFi system
## API Endpoints
The dashboard provides a RESTful API for integration:
### Authentication
All API endpoints require HTTP Basic Authentication using the same credentials as the dashboard.
### Available Endpoints
#### `GET /`
Main dashboard page (HTML)
#### `GET /api/attempts`
Get login attempts with optional filters
**Query Parameters:**
- `start_date`: Filter attempts after this date (ISO format)
- `end_date`: Filter attempts before this date (ISO format)
- `status_filter`: `success` or `failed`
- `limit`: Maximum number of results (default: 50)
**Example:**
```bash
curl -u admin:admin123 "http://localhost:8000/api/attempts?limit=10&status_filter=success"
```
#### `GET /api/stats`
Get dashboard statistics
**Response:**
```json
{
"total_attempts": 150,
"successful_attempts": 145,
"failed_attempts": 5,
"success_rate": 96.67,
"last_attempt": "2025-10-03T10:30:45"
}
```
#### `GET /api/hourly-stats`
Get hourly statistics for charts
**Query Parameters:**
- `days`: Number of days to include (default: 7)
**Example:**
```bash
curl -u admin:admin123 "http://localhost:8000/api/hourly-stats?days=3"
```
#### `GET /health`
Health check endpoint (no authentication required)
## Development
### Running in Development Mode
```bash
python dashboard.py --debug
```
This enables:
- Auto-reload on code changes
- Detailed error messages
- Debug logging
### Custom Styling
The dashboard uses Bootstrap 5 and custom CSS. You can modify:
- `static/dashboard.css` - Custom styles
- `templates/dashboard.html` - Main dashboard template
- `templates/login.html` - Login page template
### Adding New Features
The dashboard is built with FastAPI, making it easy to extend:
1. **Add new API endpoints** in `dashboard.py`
2. **Modify database queries** in the database functions
3. **Update templates** for new UI components
4. **Add JavaScript** for new interactive features
## Troubleshooting
### Common Issues
#### "Database not found" Error
- **Cause**: The database hasn't been created yet
- **Solution**: Run the main script first: `python wifi_auto_login.py --login`
#### "Port already in use" Error
- **Cause**: Another process is using port 8000
- **Solution**: Use a different port: `python dashboard.py --port 8080`
#### Authentication Issues
- **Cause**: Incorrect credentials
- **Solution**: Check your `config.json` dashboard settings
#### Charts Not Loading
- **Cause**: No login data available
- **Solution**: Run some login attempts first to populate the database
#### Permission Denied
- **Cause**: Insufficient permissions to bind to the specified host/port
- **Solution**: Use `127.0.0.1` instead of `0.0.0.0`, or run with appropriate permissions
### Debug Mode
Enable debug mode for detailed error information:
```bash
python dashboard.py --debug
```
### Logs
The dashboard uses the same logging configuration as the main application. Check:
- Console output for real-time logs
- Log files in the `logs/` directory (if configured)
## Security Considerations
### Production Deployment
⚠️ **Important**: The default credentials are for development only!
For production deployment:
1. **Change default credentials** in `config.json`
2. **Use HTTPS** with a reverse proxy (nginx, Apache)
3. **Restrict access** by IP address if needed
4. **Use strong passwords** (12+ characters, mixed case, numbers, symbols)
5. **Consider additional authentication** methods if required
### Network Security
- The dashboard binds to `127.0.0.1` by default (localhost only)
- To allow network access, bind to `0.0.0.0` but ensure proper firewall rules
- Consider using a VPN for remote access
## Performance
### Optimization Tips
- **Limit results** using the limit parameter for better performance
- **Use date filters** to reduce database query time
- **Regular maintenance** - consider archiving old login attempts
- **Monitor database size** - SQLite performance degrades with very large databases
### Resource Usage
- **Memory**: ~50MB for typical usage
- **CPU**: Minimal when idle, moderate during chart updates
- **Database**: Grows ~1KB per login attempt
- **Network**: ~100KB per dashboard page load
## Integration Examples
### Monitoring Scripts
```python
import requests
from requests.auth import HTTPBasicAuth
# Get current statistics
response = requests.get(
'http://localhost:8000/api/stats',
auth=HTTPBasicAuth('admin', 'admin123')
)
stats = response.json()
print(f"Success rate: {stats['success_rate']}%")
```
### Automated Reporting
```python
import requests
from requests.auth import HTTPBasicAuth
from datetime import datetime, timedelta
# Get yesterday's login attempts
yesterday = datetime.now() - timedelta(days=1)
start_date = yesterday.strftime('%Y-%m-%dT00:00:00')
end_date = yesterday.strftime('%Y-%m-%dT23:59:59')
response = requests.get(
f'http://localhost:8000/api/attempts?start_date={start_date}&end_date={end_date}',
auth=HTTPBasicAuth('admin', 'admin123')
)
attempts = response.json()['attempts']
print(f"Yesterday's login attempts: {len(attempts)}")
```
## Support
For issues, questions, or contributions:
1. Check the troubleshooting section above
2. Review the application logs
3. Create an issue on the project repository
4. Include detailed error messages and system information
## License
This dashboard is part of the WiFi Auto Auth project and follows the same license terms. | 9,533 | DASHBOARD | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00146858, "qsc_doc_frac_words_redpajama_stop": 0.0982801, "qsc_doc_num_sentences": 104.0, "qsc_doc_num_words": 1263, "qsc_doc_num_chars": 9533.0, "qsc_doc_num_lines": 342.0, "qsc_doc_mean_word_length": 5.40300871, "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.3618369, "qsc_doc_entropy_unigram": 5.59774162, "qsc_doc_frac_words_all_caps": 0.01670762, "qsc_doc_frac_lines_dupe_lines": 0.17857143, "qsc_doc_frac_chars_dupe_lines": 0.05310994, "qsc_doc_frac_chars_top_2grams": 0.00468933, "qsc_doc_frac_chars_top_3grams": 0.00439625, "qsc_doc_frac_chars_top_4grams": 0.0052755, "qsc_doc_frac_chars_dupe_5grams": 0.09144197, "qsc_doc_frac_chars_dupe_6grams": 0.05509965, "qsc_doc_frac_chars_dupe_7grams": 0.03048066, "qsc_doc_frac_chars_dupe_8grams": 0.03048066, "qsc_doc_frac_chars_dupe_9grams": 0.01436108, "qsc_doc_frac_chars_dupe_10grams": 0.01436108, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 20.37668161, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.80920729, "qsc_doc_frac_chars_digital": 0.0295421, "qsc_doc_frac_chars_whitespace": 0.14780237, "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/actors/hero/HeroAction.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.actors.hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
public class HeroAction {
public int dst;
public static class Move extends HeroAction {
public Move( int dst ) {
this.dst = dst;
}
}
public static class PickUp extends HeroAction {
public PickUp( int dst ) {
this.dst = dst;
}
}
public static class OpenChest extends HeroAction {
public OpenChest( int dst ) {
this.dst = dst;
}
}
public static class Buy extends HeroAction {
public Buy( int dst ) {
this.dst = dst;
}
}
public static class Interact extends HeroAction {
public Char ch;
public Interact( Char ch ) {
this.ch = ch;
}
}
public static class Unlock extends HeroAction {
public Unlock( int door ) {
this.dst = door;
}
}
public static class Descend extends HeroAction {
public Descend( int stairs ) {
this.dst = stairs;
}
}
public static class Ascend extends HeroAction {
public Ascend( int stairs ) {
this.dst = stairs;
}
}
public static class Alchemy extends HeroAction {
public Alchemy( int pot ) {
this.dst = pot;
}
}
public static class Attack extends HeroAction {
public Char target;
public Attack( Char target ) {
this.target = target;
}
}
}
| 2,080 | HeroAction | java | en | java | code | {"qsc_code_num_words": 275, "qsc_code_num_chars": 2080.0, "qsc_code_mean_word_length": 5.28, "qsc_code_frac_words_unique": 0.38909091, "qsc_code_frac_chars_top_2grams": 0.12121212, "qsc_code_frac_chars_top_3grams": 0.11707989, "qsc_code_frac_chars_top_4grams": 0.06887052, "qsc_code_frac_chars_dupe_5grams": 0.20110193, "qsc_code_frac_chars_dupe_6grams": 0.18319559, "qsc_code_frac_chars_dupe_7grams": 0.1446281, "qsc_code_frac_chars_dupe_8grams": 0.1446281, "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.01057872, "qsc_code_frac_chars_whitespace": 0.22740385, "qsc_code_size_file_byte": 2080.0, "qsc_code_num_lines": 90.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 23.11111111, "qsc_code_frac_chars_alphabet": 0.89296826, "qsc_code_frac_chars_comments": 0.37548077, "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": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.0, "qsc_codejava_score_lines_no_logic": 0.0877193, "qsc_codejava_frac_words_no_modifier": 0.0, "qsc_codejava_frac_words_legal_var_name": 1.0, "qsc_codejava_frac_words_legal_func_name": null, "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} |
01bps/WiFi-Auto-Auth | MULTI_NETWORK.md | # Multi-Network Support Guide
WiFi Auto Auth now supports multiple network profiles, allowing you to automatically connect to different WiFi networks (home, work, school, etc.) with different credentials and settings.
## Features
- **Auto-Detection**: Automatically detects current network SSID and selects appropriate profile
- **Manual Selection**: Override auto-detection by specifying a network profile
- **Network-Specific Logging**: Track login attempts per network
- **Dashboard Integration**: View network-specific statistics in the web dashboard
- **Backward Compatibility**: Existing single-network configurations continue to work
## Configuration
### New Multi-Network Format
Create or update your `config.json` file with the new multi-network format:
```json
{
"default_network": "home",
"networks": {
"home": {
"ssid": "HomeWiFi",
"wifi_url": "http://192.168.1.1/login",
"username": "your_home_username",
"password": "your_home_password",
"product_type": "router",
"description": "Home WiFi network"
},
"work": {
"ssid": "OfficeWiFi",
"wifi_url": "http://10.0.0.1/login",
"username": "your_work_username",
"password": "your_work_password",
"product_type": "enterprise",
"description": "Work WiFi network"
},
"school": {
"ssid": "SchoolWiFi",
"wifi_url": "http://172.16.1.1/login",
"username": "your_school_username",
"password": "your_school_password",
"product_type": "edu",
"description": "School WiFi network"
}
},
"dashboard": {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123"
}
}
```
### Legacy Configuration Support
Existing single-network configurations will continue to work:
```json
{
"wifi_url": "http://192.168.1.1/login",
"username": "your_username",
"password": "your_password",
"product_type": "router"
}
```
## Usage
### Auto-Detection (Recommended)
The script automatically detects your current network SSID and selects the appropriate profile:
```bash
# Auto-detect current network and login
python wifi_auto_login.py --login
# Auto-detect and show recent logs
python wifi_auto_login.py
```
### Manual Network Selection
Override auto-detection by specifying a network profile:
```bash
# Login using specific network profile
python wifi_auto_login.py --login --network work
# Test connection for specific network
python wifi_auto_login.py --test --network home
```
### Network Management Commands
```bash
# List all configured network profiles
python wifi_auto_login.py --list-networks
# Detect current network and show matching profile
python wifi_auto_login.py --detect-network
# View logs for specific network
python wifi_auto_login.py --view-logs 10 --network-filter work
```
## Command Reference
### New Commands
| Command | Description |
|---------|-------------|
| `--network PROFILE` | Use specific network profile |
| `--list-networks` | List all configured networks |
| `--detect-network` | Detect current network |
| `--network-filter PROFILE` | Filter logs by network |
### Updated Commands
| Command | Description |
|---------|-------------|
| `--login` | Auto-detects network or uses --network |
| `--test` | Tests connection for detected/specified network |
| `--view-logs N` | Shows network info in logs |
## Network Detection
The script uses platform-specific methods to detect your current WiFi network:
### Windows
- Uses `netsh wlan show interfaces` command
- Requires WiFi adapter to be connected
### macOS
- Uses `networksetup -getairportnetwork en0` command
- Falls back to `airport -I` utility
### Linux
- Tries multiple methods: `iwgetid`, `nmcli`, `iwconfig`
- Requires appropriate network utilities installed
## Database Schema
The database now includes network information:
```sql
CREATE TABLE login_attempts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT,
network_name TEXT, -- New: Network profile name
network_ssid TEXT, -- New: Actual SSID
username TEXT,
password TEXT,
a TEXT,
response_status TEXT,
response_message TEXT
);
```
Existing databases are automatically upgraded with new columns.
## Dashboard Features
### Network Statistics
- Per-network success rates
- Network-specific attempt counts
- Last login time per network
### Filtering
- Filter logs by network profile
- Network-specific historical data
- Multi-network overview
### API Endpoints
| Endpoint | Description |
|----------|-------------|
| `/api/network-stats` | Get per-network statistics |
| `/api/attempts?network_filter=PROFILE` | Filtered login attempts |
## Migration Guide
### From Single Network to Multi-Network
1. **Backup your current config.json**:
```bash
cp config.json config.json.backup
```
2. **Update configuration format**:
```bash
# Use the new example as template
cp config.example.json config.json
# Edit config.json with your networks
```
3. **Test the configuration**:
```bash
python wifi_auto_login.py --list-networks
python wifi_auto_login.py --detect-network
```
### Gradual Migration
You can keep using legacy format while adding new networks:
```json
{
"wifi_url": "http://192.168.1.1/login",
"username": "legacy_user",
"password": "legacy_pass",
"networks": {
"work": {
"ssid": "OfficeWiFi",
"wifi_url": "http://10.0.0.1/login",
"username": "work_user",
"password": "work_pass"
}
}
}
```
## Troubleshooting
### Network Detection Issues
1. **No SSID detected**:
```bash
# Check if WiFi is connected
python wifi_auto_login.py --detect-network
# Manually specify network
python wifi_auto_login.py --login --network home
```
2. **Platform not supported**:
- Windows: Ensure you have admin privileges for netsh
- macOS: Check if networksetup is available
- Linux: Install wireless-tools or network-manager
3. **Profile not found**:
```bash
# List available profiles
python wifi_auto_login.py --list-networks
# Check SSID matches exactly
python wifi_auto_login.py --detect-network
```
### Configuration Issues
1. **Invalid JSON**:
```bash
# Validate JSON syntax
python -m json.tool config.json
```
2. **Missing network profile**:
- Add the network to your config.json
- Ensure SSID matches exactly (case-sensitive)
3. **Legacy compatibility**:
- Old format still works
- Gradually migrate to new format
## Best Practices
### Network Profile Design
1. **Use descriptive names**: `home`, `work`, `coffee-shop`
2. **Include descriptions**: Help identify networks later
3. **Set default network**: For fallback when detection fails
4. **Test each profile**: Verify credentials before deployment
### Security Considerations
1. **Protect config.json**: Contains passwords in plain text
2. **Use different passwords**: Don't reuse across networks
3. **Regular updates**: Change passwords periodically
4. **Backup configurations**: Keep secure backups
### Monitoring
1. **Use dashboard**: Monitor per-network success rates
2. **Check logs regularly**: Identify authentication issues
3. **Network-specific analysis**: Filter logs by network
4. **Set up alerts**: Monitor for failure patterns
## Examples
### Complete Multi-Network Setup
```bash
# 1. Set up configuration
cp config.example.json config.json
# Edit config.json with your networks
# 2. Test configuration
python wifi_auto_login.py --list-networks
python wifi_auto_login.py --detect-network
# 3. Test each network
python wifi_auto_login.py --test --network home
python wifi_auto_login.py --test --network work
# 4. Set up automatic login
python wifi_auto_login.py --login
# 5. Monitor via dashboard
python wifi_auto_login.py --dashboard
```
### Automated Network Switching
```bash
#!/bin/bash
# Example script for automated network handling
# Detect current network
CURRENT_NETWORK=$(python wifi_auto_login.py --detect-network 2>/dev/null | grep "Found matching profile" | cut -d: -f2 | xargs)
if [ -n "$CURRENT_NETWORK" ]; then
echo "Logging into detected network: $CURRENT_NETWORK"
python wifi_auto_login.py --login --network "$CURRENT_NETWORK"
else
echo "No matching network profile found, using auto-detection"
python wifi_auto_login.py --login
fi
```
## Support
If you encounter issues with multi-network support:
1. Check the troubleshooting section above
2. Enable debug logging: `python wifi_auto_login.py --log-level DEBUG`
3. Test with single network first
4. Report issues with network detection details
5. Include platform information (Windows/macOS/Linux)
The multi-network feature is designed to be backward compatible while providing powerful new capabilities for managing multiple WiFi environments. | 8,833 | MULTI_NETWORK | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00226424, "qsc_doc_frac_words_redpajama_stop": 0.08230453, "qsc_doc_num_sentences": 98.0, "qsc_doc_num_words": 1111, "qsc_doc_num_chars": 8833.0, "qsc_doc_num_lines": 343.0, "qsc_doc_mean_word_length": 5.5229523, "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.29882988, "qsc_doc_entropy_unigram": 5.0343936, "qsc_doc_frac_words_all_caps": 0.01940035, "qsc_doc_frac_lines_dupe_lines": 0.28846154, "qsc_doc_frac_chars_dupe_lines": 0.15311653, "qsc_doc_frac_chars_top_2grams": 0.03129074, "qsc_doc_frac_chars_top_3grams": 0.05247718, "qsc_doc_frac_chars_top_4grams": 0.07121904, "qsc_doc_frac_chars_dupe_5grams": 0.21936115, "qsc_doc_frac_chars_dupe_6grams": 0.19687093, "qsc_doc_frac_chars_dupe_7grams": 0.19035202, "qsc_doc_frac_chars_dupe_8grams": 0.15091265, "qsc_doc_frac_chars_dupe_9grams": 0.10723598, "qsc_doc_frac_chars_dupe_10grams": 0.07464146, "qsc_doc_frac_chars_replacement_symbols": 0.0, "qsc_doc_cate_code_related_file_name": 0.0, "qsc_doc_num_chars_sentence_length_mean": 19.03174603, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.82731253, "qsc_doc_frac_chars_digital": 0.01231527, "qsc_doc_frac_chars_whitespace": 0.17264802, "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/actors/hero/HeroSubClass.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.actors.hero;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.watabou.utils.Bundle;
public enum HeroSubClass {
NONE( null ),
GLADIATOR( "gladiator" ),
BERSERKER( "berserker" ),
WARLOCK( "warlock" ),
BATTLEMAGE( "battlemage" ),
ASSASSIN( "assassin" ),
FREERUNNER( "freerunner" ),
SNIPER( "sniper" ),
WARDEN( "warden" );
private String title;
HeroSubClass( String title ) {
this.title = title;
}
public String title() {
return Messages.get(this, title);
}
public String desc() {
return Messages.get(this, title+"_desc");
}
private static final String SUBCLASS = "subClass";
public void storeInBundle( Bundle bundle ) {
bundle.put( SUBCLASS, toString() );
}
public static HeroSubClass restoreInBundle( Bundle bundle ) {
String value = bundle.getString( SUBCLASS );
return valueOf( value );
}
}
| 1,711 | HeroSubClass | java | en | java | code | {"qsc_code_num_words": 214, "qsc_code_num_chars": 1711.0, "qsc_code_mean_word_length": 5.72429907, "qsc_code_frac_words_unique": 0.55140187, "qsc_code_frac_chars_top_2grams": 0.02693878, "qsc_code_frac_chars_top_3grams": 0.03183673, "qsc_code_frac_chars_top_4grams": 0.04653061, "qsc_code_frac_chars_dupe_5grams": 0.10938776, "qsc_code_frac_chars_dupe_6grams": 0.04571429, "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.01222142, "qsc_code_frac_chars_whitespace": 0.18702513, "qsc_code_size_file_byte": 1711.0, "qsc_code_num_lines": 67.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.53731343, "qsc_code_frac_chars_alphabet": 0.86843997, "qsc_code_frac_chars_comments": 0.45645821, "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.08387097, "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.15625, "qsc_codejava_score_lines_no_logic": 0.25, "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": null, "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/actors/mobs/GnollTrickster.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
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.Poison;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Ghost;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GnollTricksterSprite;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class GnollTrickster extends Gnoll {
{
spriteClass = GnollTricksterSprite.class;
HP = HT = 20;
defenseSkill = 5;
EXP = 5;
state = WANDERING;
//at half quantity, see createLoot()
loot = Generator.Category.MISSILE;
lootChance = 1f;
properties.add(Property.MINIBOSS);
}
private int combo = 0;
@Override
public int attackSkill( Char target ) {
return 16;
}
@Override
protected boolean canAttack( Char enemy ) {
Ballistica attack = new Ballistica( pos, enemy.pos, Ballistica.PROJECTILE);
return !Dungeon.level.adjacent(pos, enemy.pos) && attack.collisionPos == enemy.pos;
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
//The gnoll's attacks get more severe the more the player lets it hit them
combo++;
int effect = Random.Int(4)+combo;
if (effect > 2) {
if (effect >=6 && enemy.buff(Burning.class) == null){
if (Dungeon.level.flamable[enemy.pos])
GameScene.add(Blob.seed(enemy.pos, 4, Fire.class));
Buff.affect(enemy, Burning.class).reignite( enemy );
} else
Buff.affect( enemy, Poison.class).set((effect-2) );
}
return damage;
}
@Override
protected boolean getCloser( int target ) {
combo = 0; //if he's moving, he isn't attacking, reset combo.
if (state == HUNTING) {
return enemySeen && getFurther( target );
} else {
return super.getCloser( target );
}
}
@Override
protected Item createLoot() {
MissileWeapon drop = (MissileWeapon)super.createLoot();
//half quantity, rounded up
drop.quantity((drop.quantity()+1)/2);
return drop;
}
@Override
public void die( Object cause ) {
super.die( cause );
Ghost.Quest.process();
}
private static final String COMBO = "combo";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle(bundle);
bundle.put(COMBO, combo);
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
combo = bundle.getInt( COMBO );
}
}
| 3,888 | GnollTrickster | java | en | java | code | {"qsc_code_num_words": 473, "qsc_code_num_chars": 3888.0, "qsc_code_mean_word_length": 6.13953488, "qsc_code_frac_words_unique": 0.43340381, "qsc_code_frac_chars_top_2grams": 0.04958678, "qsc_code_frac_chars_top_3grams": 0.19628099, "qsc_code_frac_chars_top_4grams": 0.21212121, "qsc_code_frac_chars_dupe_5grams": 0.24517906, "qsc_code_frac_chars_dupe_6grams": 0.11398072, "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.01000303, "qsc_code_frac_chars_whitespace": 0.15149177, "qsc_code_size_file_byte": 3888.0, "qsc_code_num_lines": 133.0, "qsc_code_num_chars_line_max": 86.0, "qsc_code_num_chars_line_mean": 29.23308271, "qsc_code_frac_chars_alphabet": 0.87026372, "qsc_code_frac_chars_comments": 0.24897119, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09411765, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00171233, "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.09411765, "qsc_codejava_score_lines_no_logic": 0.32941176, "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} | 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/actors/mobs/Spinner.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Blob;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Web;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Roots;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.items.food.MysteryMeat;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SpinnerSprite;
import com.watabou.utils.Random;
public class Spinner extends Mob {
{
spriteClass = SpinnerSprite.class;
HP = HT = 50;
defenseSkill = 14;
EXP = 9;
maxLvl = 17;
loot = new MysteryMeat();
lootChance = 0.125f;
FLEEING = new Fleeing();
}
@Override
public int damageRoll() {
return Random.NormalIntRange(10, 25);
}
@Override
public int attackSkill(Char target) {
return 20;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 6);
}
@Override
protected boolean act() {
boolean result = super.act();
if (state == FLEEING && buff( Terror.class ) == null &&
enemy != null && enemySeen && enemy.buff( Poison.class ) == null) {
state = HUNTING;
}
return result;
}
@Override
public int attackProc(Char enemy, int damage) {
damage = super.attackProc( enemy, damage );
if (Random.Int(2) == 0) {
Buff.affect(enemy, Poison.class).set(Random.Int(7, 9) );
state = FLEEING;
}
return damage;
}
@Override
public void move(int step) {
int curWeb = Blob.volumeAt(pos, Web.class);
if (state == FLEEING && curWeb < 5) {
GameScene.add(Blob.seed(pos, Random.Int(5, 7) - curWeb, Web.class));
}
super.move(step);
}
{
resistances.add(Poison.class);
}
{
immunities.add(Web.class);
}
private class Fleeing extends Mob.Fleeing {
@Override
protected void nowhereToRun() {
if (buff(Terror.class) == null) {
state = HUNTING;
} else {
super.nowhereToRun();
}
}
}
}
| 2,997 | Spinner | java | en | java | code | {"qsc_code_num_words": 371, "qsc_code_num_chars": 2997.0, "qsc_code_mean_word_length": 5.83018868, "qsc_code_frac_words_unique": 0.44743935, "qsc_code_frac_chars_top_2grams": 0.086454, "qsc_code_frac_chars_top_3grams": 0.19325012, "qsc_code_frac_chars_top_4grams": 0.20342117, "qsc_code_frac_chars_dupe_5grams": 0.21359223, "qsc_code_frac_chars_dupe_6grams": 0.17845585, "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.01728296, "qsc_code_frac_chars_whitespace": 0.1698365, "qsc_code_size_file_byte": 2997.0, "qsc_code_num_lines": 116.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 25.8362069, "qsc_code_frac_chars_alphabet": 0.85209003, "qsc_code_frac_chars_comments": 0.26059393, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.11538462, "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.08974359, "qsc_codejava_score_lines_no_logic": 0.29487179, "qsc_codejava_frac_words_no_modifier": 0.77777778, "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/actors/mobs/Gnoll.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GnollSprite;
import com.watabou.utils.Random;
public class Gnoll extends Mob {
{
spriteClass = GnollSprite.class;
HP = HT = 12;
defenseSkill = 4;
EXP = 2;
maxLvl = 8;
loot = Gold.class;
lootChance = 0.5f;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 1, 6 );
}
@Override
public int attackSkill( Char target ) {
return 10;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 2);
}
}
| 1,489 | Gnoll | java | en | java | code | {"qsc_code_num_words": 199, "qsc_code_num_chars": 1489.0, "qsc_code_mean_word_length": 5.46733668, "qsc_code_frac_words_unique": 0.61306533, "qsc_code_frac_chars_top_2grams": 0.0625, "qsc_code_frac_chars_top_3grams": 0.13970588, "qsc_code_frac_chars_top_4grams": 0.05238971, "qsc_code_frac_chars_dupe_5grams": 0.07536765, "qsc_code_frac_chars_dupe_6grams": 0.05147059, "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.02479339, "qsc_code_frac_chars_whitespace": 0.18737408, "qsc_code_size_file_byte": 1489.0, "qsc_code_num_lines": 57.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 26.12280702, "qsc_code_frac_chars_alphabet": 0.87438017, "qsc_code_frac_chars_comments": 0.5245131, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10714286, "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.10714286, "qsc_codejava_score_lines_no_logic": 0.32142857, "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/actors/mobs/Bee.java | /*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* 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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Amok;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Corruption;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.BeeSprite;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
import java.util.HashSet;
//FIXME the AI for these things is becoming a complete mess, should refactor
public class Bee extends Mob {
{
spriteClass = BeeSprite.class;
viewDistance = 4;
EXP = 0;
flying = true;
state = WANDERING;
//only applicable when the bee is charmed with elixir of honeyed healing
intelligentAlly = true;
}
private int level;
//-1 refers to a pot that has gone missing.
private int potPos;
//-1 for no owner
private int potHolder;
private static final String LEVEL = "level";
private static final String POTPOS = "potpos";
private static final String POTHOLDER = "potholder";
private static final String ALIGMNENT = "alignment";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( LEVEL, level );
bundle.put( POTPOS, potPos );
bundle.put( POTHOLDER, potHolder );
bundle.put( ALIGMNENT, alignment);
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
spawn( bundle.getInt( LEVEL ) );
potPos = bundle.getInt( POTPOS );
potHolder = bundle.getInt( POTHOLDER );
if (bundle.contains(ALIGMNENT)) alignment = bundle.getEnum( ALIGMNENT, Alignment.class);
}
public void spawn( int level ) {
this.level = level;
HT = (2 + level) * 4;
defenseSkill = 9 + level;
}
public void setPotInfo(int potPos, Char potHolder){
this.potPos = potPos;
if (potHolder == null)
this.potHolder = -1;
else
this.potHolder = potHolder.id();
}
public int potPos(){
return potPos;
}
public int potHolderID(){
return potHolder;
}
@Override
public int attackSkill( Char target ) {
return defenseSkill;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( HT / 10, HT / 4 );
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (enemy instanceof Mob) {
((Mob)enemy).aggro( this );
}
return damage;
}
@Override
protected Char chooseEnemy() {
//if the pot is no longer present, default to regular AI behaviour
if (alignment == Alignment.ALLY || (potHolder == -1 && potPos == -1)){
return super.chooseEnemy();
//if something is holding the pot, target that
}else if (Actor.findById(potHolder) != null){
return (Char) Actor.findById(potHolder);
//if the pot is on the ground
}else {
//try to find a new enemy in these circumstances
if (enemy == null || !enemy.isAlive() || state == WANDERING
|| Dungeon.level.distance(enemy.pos, potPos) > 3
|| (alignment == Alignment.ALLY && enemy.alignment == Alignment.ALLY)){
//find all mobs near the pot
HashSet<Char> enemies = new HashSet<>();
for (Mob mob : Dungeon.level.mobs) {
if (!(mob == this)
&& Dungeon.level.distance(mob.pos, potPos) <= 3
&& mob.alignment != Alignment.NEUTRAL
&& !(alignment == Alignment.ALLY && mob.alignment == Alignment.ALLY)) {
enemies.add(mob);
}
}
if (!enemies.isEmpty()){
return Random.element(enemies);
} else {
if (alignment != Alignment.ALLY && Dungeon.level.distance(Dungeon.hero.pos, potPos) <= 3){
return Dungeon.hero;
} else {
return null;
}
}
} else {
return enemy;
}
}
}
@Override
protected boolean getCloser(int target) {
if (alignment == Alignment.ALLY && enemy == null && buff(Corruption.class) == null){
target = Dungeon.hero.pos;
} else if (enemy != null && Actor.findById(potHolder) == enemy) {
target = enemy.pos;
} else if (potPos != -1 && (state == WANDERING || Dungeon.level.distance(target, potPos) > 3))
this.target = target = potPos;
return super.getCloser( target );
}
@Override
public String description() {
if (alignment == Alignment.ALLY && buff(Corruption.class) == null){
return Messages.get(this, "desc_honey");
} else {
return super.description();
}
}
{
immunities.add( Poison.class );
immunities.add( Amok.class );
}
} | 5,398 | Bee | java | en | java | code | {"qsc_code_num_words": 650, "qsc_code_num_chars": 5398.0, "qsc_code_mean_word_length": 5.71384615, "qsc_code_frac_words_unique": 0.32307692, "qsc_code_frac_chars_top_2grams": 0.02423263, "qsc_code_frac_chars_top_3grams": 0.09208401, "qsc_code_frac_chars_top_4grams": 0.09477652, "qsc_code_frac_chars_dupe_5grams": 0.14889607, "qsc_code_frac_chars_dupe_6grams": 0.05950458, "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.00623701, "qsc_code_frac_chars_whitespace": 0.19803631, "qsc_code_size_file_byte": 5398.0, "qsc_code_num_lines": 193.0, "qsc_code_num_chars_line_max": 97.0, "qsc_code_num_chars_line_mean": 27.96891192, "qsc_code_frac_chars_alphabet": 0.85169785, "qsc_code_frac_chars_comments": 0.21007781, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09701493, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0091442, "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.00518135, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.08955224, "qsc_codejava_score_lines_no_logic": 0.24626866, "qsc_codejava_frac_words_no_modifier": 0.92307692, "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/actors/mobs/GreatCrab.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Ghost;
import com.shatteredpixel.shatteredpixeldungeon.items.food.MysteryMeat;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GreatCrabSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class GreatCrab extends Crab {
{
spriteClass = GreatCrabSprite.class;
HP = HT = 25;
defenseSkill = 0; //see damage()
baseSpeed = 1f;
EXP = 6;
state = WANDERING;
properties.add(Property.MINIBOSS);
}
private int moving = 0;
@Override
protected boolean getCloser( int target ) {
//this is used so that the crab remains slower, but still detects the player at the expected rate.
moving++;
if (moving < 3) {
return super.getCloser( target );
} else {
moving = 0;
return true;
}
}
@Override
public void damage( int dmg, Object src ){
//crab blocks all attacks originating from its current enemy if it sees them.
//All direct damage is negated, no exceptions. environmental effects go through as normal.
if ((enemySeen && state != SLEEPING && paralysed == 0)
&& ((src instanceof Wand && enemy == Dungeon.hero)
|| (src instanceof Char && enemy == src))){
GLog.n( Messages.get(this, "noticed") );
sprite.showStatus( CharSprite.NEUTRAL, Messages.get(this, "blocked") );
} else {
super.damage( dmg, src );
}
}
@Override
public void die( Object cause ) {
super.die( cause );
Ghost.Quest.process();
Dungeon.level.drop( new MysteryMeat(), pos );
Dungeon.level.drop( new MysteryMeat(), pos ).sprite.drop();
}
}
| 2,737 | GreatCrab | java | en | java | code | {"qsc_code_num_words": 346, "qsc_code_num_chars": 2737.0, "qsc_code_mean_word_length": 5.82080925, "qsc_code_frac_words_unique": 0.53179191, "qsc_code_frac_chars_top_2grams": 0.08440914, "qsc_code_frac_chars_top_3grams": 0.18867925, "qsc_code_frac_chars_top_4grams": 0.19662363, "qsc_code_frac_chars_dupe_5grams": 0.24826216, "qsc_code_frac_chars_dupe_6grams": 0.06057597, "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.01139351, "qsc_code_frac_chars_whitespace": 0.16624041, "qsc_code_size_file_byte": 2737.0, "qsc_code_num_lines": 87.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 31.45977011, "qsc_code_frac_chars_alphabet": 0.87116564, "qsc_code_frac_chars_comments": 0.38728535, "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.00834824, "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.06, "qsc_codejava_score_lines_no_logic": 0.28, "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/actors/mobs/Necromancer.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.actors.mobs;
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.Adrenaline;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Corruption;
import com.shatteredpixel.shatteredpixeldungeon.effects.Beam;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Pushing;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.NecromancerSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SkeletonSprite;
import com.watabou.noosa.audio.Sample;
import com.watabou.noosa.particles.Emitter;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Necromancer extends Mob {
{
spriteClass = NecromancerSprite.class;
HP = HT = 35;
defenseSkill = 11;
EXP = 7;
maxLvl = 14;
loot = new PotionOfHealing();
lootChance = 0.2f; //see createloot
properties.add(Property.UNDEAD);
HUNTING = new Hunting();
}
public boolean summoning = false;
private Emitter summoningEmitter = null;
private int summoningPos = -1;
private boolean firstSummon = true;
private NecroSkeleton mySkeleton;
private int storedSkeletonID = -1;
@Override
public void updateSpriteState() {
super.updateSpriteState();
if (summoning && summoningEmitter == null){
summoningEmitter = CellEmitter.get( summoningPos );
summoningEmitter.pour(Speck.factory(Speck.RATTLE), 0.2f);
sprite.zap( summoningPos );
}
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
@Override
public void rollToDropLoot() {
lootChance *= ((6f - Dungeon.LimitedDrops.NECRO_HP.count) / 6f);
super.rollToDropLoot();
}
@Override
protected Item createLoot(){
Dungeon.LimitedDrops.NECRO_HP.count++;
return super.createLoot();
}
@Override
public void die(Object cause) {
if (storedSkeletonID != -1){
Actor ch = Actor.findById(storedSkeletonID);
storedSkeletonID = -1;
if (ch instanceof NecroSkeleton){
mySkeleton = (NecroSkeleton) ch;
}
}
if (mySkeleton != null && mySkeleton.isAlive()){
mySkeleton.die(null);
}
if (summoningEmitter != null){
summoningEmitter.killAndErase();
summoningEmitter = null;
}
super.die(cause);
}
private static final String SUMMONING = "summoning";
private static final String FIRST_SUMMON = "first_summon";
private static final String SUMMONING_POS = "summoning_pos";
private static final String MY_SKELETON = "my_skeleton";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( SUMMONING, summoning );
bundle.put( FIRST_SUMMON, firstSummon );
if (summoning){
bundle.put( SUMMONING_POS, summoningPos);
}
if (mySkeleton != null){
bundle.put( MY_SKELETON, mySkeleton.id() );
}
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
summoning = bundle.getBoolean( SUMMONING );
if (bundle.contains(FIRST_SUMMON)) firstSummon = bundle.getBoolean(FIRST_SUMMON);
if (summoning){
summoningPos = bundle.getInt( SUMMONING_POS );
}
if (bundle.contains( MY_SKELETON )){
storedSkeletonID = bundle.getInt( MY_SKELETON );
}
}
public void onZapComplete(){
if (mySkeleton == null || mySkeleton.sprite == null || !mySkeleton.isAlive()){
return;
}
//heal skeleton first
if (mySkeleton.HP < mySkeleton.HT){
sprite.parent.add(new Beam.HealthRay(sprite.center(), mySkeleton.sprite.center()));
mySkeleton.HP = Math.min(mySkeleton.HP + 5, mySkeleton.HT);
mySkeleton.sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
//otherwise give it adrenaline
} else if (mySkeleton.buff(Adrenaline.class) == null) {
sprite.parent.add(new Beam.HealthRay(sprite.center(), mySkeleton.sprite.center()));
Buff.affect(mySkeleton, Adrenaline.class, 3f);
}
next();
}
private class Hunting extends Mob.Hunting{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
enemySeen = enemyInFOV;
if (storedSkeletonID != -1){
Actor ch = Actor.findById(storedSkeletonID);
storedSkeletonID = -1;
if (ch instanceof NecroSkeleton){
mySkeleton = (NecroSkeleton) ch;
}
}
if (summoning){
//push anything on summoning spot away, to the furthest valid cell
if (Actor.findChar(summoningPos) != null) {
int pushPos = pos;
for (int c : PathFinder.NEIGHBOURS8) {
if (Actor.findChar(summoningPos + c) == null
&& Dungeon.level.passable[summoningPos + c]
&& Dungeon.level.trueDistance(pos, summoningPos + c) > Dungeon.level.trueDistance(pos, pushPos)) {
pushPos = summoningPos + c;
}
}
//push enemy, or wait a turn if there is no valid pushing position
if (pushPos != pos) {
Char ch = Actor.findChar(summoningPos);
Actor.addDelayed( new Pushing( ch, ch.pos, pushPos ), -1 );
ch.pos = pushPos;
Dungeon.level.occupyCell(ch );
} else {
spend(TICK);
return true;
}
}
summoning = firstSummon = false;
mySkeleton = new NecroSkeleton();
mySkeleton.pos = summoningPos;
GameScene.add( mySkeleton );
Dungeon.level.occupyCell( mySkeleton );
Sample.INSTANCE.play(Assets.SND_BONES);
summoningEmitter.burst( Speck.factory( Speck.RATTLE ), 5 );
sprite.idle();
if (buff(Corruption.class) != null){
Buff.affect(mySkeleton, Corruption.class);
}
spend(TICK);
return true;
}
if (mySkeleton != null &&
(!mySkeleton.isAlive()
|| !Dungeon.level.mobs.contains(mySkeleton)
|| mySkeleton.alignment != alignment)){
mySkeleton = null;
}
//if enemy is seen, and enemy is within range, and we haven no skeleton, summon a skeleton!
if (enemySeen && Dungeon.level.distance(pos, enemy.pos) <= 4 && mySkeleton == null){
summoningPos = -1;
for (int c : PathFinder.NEIGHBOURS8){
if (Actor.findChar(enemy.pos+c) == null
&& Dungeon.level.passable[enemy.pos+c]
&& fieldOfView[enemy.pos+c]
&& Dungeon.level.trueDistance(pos, enemy.pos+c) < Dungeon.level.trueDistance(pos, summoningPos)){
summoningPos = enemy.pos+c;
}
}
if (summoningPos != -1){
summoning = true;
summoningEmitter = CellEmitter.get(summoningPos);
summoningEmitter.pour(Speck.factory(Speck.RATTLE), 0.2f);
sprite.zap( summoningPos );
spend( firstSummon ? TICK : 2*TICK );
} else {
//wait for a turn
spend(TICK);
}
return true;
//otherwise, if enemy is seen, and we have a skeleton...
} else if (enemySeen && mySkeleton != null){
target = enemy.pos;
spend(TICK);
if (!fieldOfView[mySkeleton.pos]){
//if the skeleton is not next to the enemy
//teleport them to the closest spot next to the enemy that can be seen
if (!Dungeon.level.adjacent(mySkeleton.pos, enemy.pos)){
int telePos = -1;
for (int c : PathFinder.NEIGHBOURS8){
if (Actor.findChar(enemy.pos+c) == null
&& Dungeon.level.passable[enemy.pos+c]
&& fieldOfView[enemy.pos+c]
&& Dungeon.level.trueDistance(pos, enemy.pos+c) < Dungeon.level.trueDistance(pos, telePos)){
telePos = enemy.pos+c;
}
}
if (telePos != -1){
ScrollOfTeleportation.appear(mySkeleton, telePos);
mySkeleton.teleportSpend();
if (sprite != null && sprite.visible){
sprite.zap(telePos);
return false;
} else {
onZapComplete();
}
}
}
return true;
} else {
//zap skeleton
if (mySkeleton.HP < mySkeleton.HT || mySkeleton.buff(Adrenaline.class) == null) {
if (sprite != null && sprite.visible){
sprite.zap(mySkeleton.pos);
return false;
} else {
onZapComplete();
}
}
}
return true;
//otherwise, default to regular hunting behaviour
} else {
return super.act(enemyInFOV, justAlerted);
}
}
}
public static class NecroSkeleton extends Skeleton {
{
state = WANDERING;
spriteClass = NecroSkeletonSprite.class;
//no loot or exp
maxLvl = -5;
//20/25 health to start
HP = 20;
}
private void teleportSpend(){
spend(TICK);
}
public static class NecroSkeletonSprite extends SkeletonSprite{
public NecroSkeletonSprite(){
super();
brightness(0.75f);
}
@Override
public void resetColor() {
super.resetColor();
brightness(0.75f);
}
}
}
}
| 10,166 | Necromancer | java | en | java | code | {"qsc_code_num_words": 1094, "qsc_code_num_chars": 10166.0, "qsc_code_mean_word_length": 6.26873857, "qsc_code_frac_words_unique": 0.25685558, "qsc_code_frac_chars_top_2grams": 0.02887139, "qsc_code_frac_chars_top_3grams": 0.09973753, "qsc_code_frac_chars_top_4grams": 0.1090697, "qsc_code_frac_chars_dupe_5grams": 0.34762321, "qsc_code_frac_chars_dupe_6grams": 0.20968212, "qsc_code_frac_chars_dupe_7grams": 0.15296005, "qsc_code_frac_chars_dupe_8grams": 0.14304462, "qsc_code_frac_chars_dupe_9grams": 0.13677457, "qsc_code_frac_chars_dupe_10grams": 0.13677457, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.0083635, "qsc_code_frac_chars_whitespace": 0.21198111, "qsc_code_size_file_byte": 10166.0, "qsc_code_num_lines": 367.0, "qsc_code_num_chars_line_max": 107.0, "qsc_code_num_chars_line_mean": 27.70027248, "qsc_code_frac_chars_alphabet": 0.8477094, "qsc_code_frac_chars_comments": 0.13348416, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.24230769, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00510841, "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.04230769, "qsc_codejava_score_lines_no_logic": 0.16923077, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/screens/signup_screen.dart | import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:iot_firestore_flutter_app/auth_helper.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'package:iot_firestore_flutter_app/widgets/my_password_field.dart';
import 'package:iot_firestore_flutter_app/widgets/my_text_button.dart';
import 'package:iot_firestore_flutter_app/widgets/my_text_field.dart';
import 'package:flutter/material.dart';
class SignUpScreen extends StatefulWidget {
const SignUpScreen({Key? key}) : super(key: key);
@override
_SignUpScreenState createState() => _SignUpScreenState();
}
class _SignUpScreenState extends State<SignUpScreen> {
bool passwordVisibility = true;
final TextEditingController _email = TextEditingController();
final TextEditingController _password = TextEditingController();
final TextEditingController _passwordConfirm = TextEditingController();
@override
void dispose() {
_email.dispose();
_password.dispose();
_passwordConfirm.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding:
const EdgeInsets.only(left: 16, right: 16, top: 40, bottom: 30),
child: CustomScrollView(
slivers: [
SliverFillRemaining(
hasScrollBody: false,
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 20,
),
child: Column(
children: [
Flexible(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
IconButton(
onPressed: () {
Navigator.pop(context);
},
icon: Image(
width: 24,
color: Colors.white,
image: AssetImage('assets/images/back_arrow.png'),
),
),
Text(
"Register",
style: kHeadline,
),
Text(
"Create new account to get started.",
style: kBodyText2,
),
SizedBox(
height: 50,
),
MyTextField(
hintText: 'Email',
inputType: TextInputType.emailAddress,
textEditingController: _email,
),
MyPasswordField(
hintText: 'Password',
textEditingController: _password,
isPasswordVisible: passwordVisibility,
onTap: () {
setState(() {
passwordVisibility = !passwordVisibility;
});
},
),
MyPasswordField(
hintText: 'Password Confirm',
textEditingController: _passwordConfirm,
isPasswordVisible: passwordVisibility,
onTap: () {
setState(() {
passwordVisibility = !passwordVisibility;
});
},
)
],
),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"Already have an account? ",
style: kBodyText,
),
GestureDetector(
onTap: () {
Navigator.pushNamedAndRemoveUntil(
context,
SignInScreenRoute,
(Route<dynamic> route) => false);
},
child: Text(
"Sign In",
style: kBodyText.copyWith(
color: Colors.white,
),
),
),
],
),
SizedBox(
height: 20,
),
MyTextButton(
buttonName: 'Register',
onTap: _signUp,
bgColor: Colors.white,
textColor: Colors.black87,
)
],
),
),
),
],
),
),
);
}
_signUp() async {
var email = _email.text.trim();
var pw = _password.text.trim();
var pwConfirm = _passwordConfirm.text.trim();
if (email.isEmpty || pw.isEmpty || pw != pwConfirm) {
await showOkAlertDialog(
context: context,
message: 'Check your email or password',
);
return;
}
var obj = await AuthHelper.signUp(email, pw);
if (obj is User) {
Navigator.pushNamedAndRemoveUntil(
context, DashboardScreenRoute, (Route<dynamic> route) => false);
} else {
await showOkAlertDialog(
context: context,
message: obj,
);
}
}
}
| 6,005 | signup_screen | dart | en | dart | code | {"qsc_code_num_words": 345, "qsc_code_num_chars": 6005.0, "qsc_code_mean_word_length": 7.30144928, "qsc_code_frac_words_unique": 0.44637681, "qsc_code_frac_chars_top_2grams": 0.046447, "qsc_code_frac_chars_top_3grams": 0.05398968, "qsc_code_frac_chars_top_4grams": 0.04763795, "qsc_code_frac_chars_dupe_5grams": 0.20762207, "qsc_code_frac_chars_dupe_6grams": 0.17348154, "qsc_code_frac_chars_dupe_7grams": 0.10678841, "qsc_code_frac_chars_dupe_8grams": 0.06034141, "qsc_code_frac_chars_dupe_9grams": 0.06034141, "qsc_code_frac_chars_dupe_10grams": 0.04128622, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00628515, "qsc_code_frac_chars_whitespace": 0.49658618, "qsc_code_size_file_byte": 6005.0, "qsc_code_num_lines": 169.0, "qsc_code_num_chars_line_max": 81.0, "qsc_code_num_chars_line_mean": 35.53254438, "qsc_code_frac_chars_alphabet": 0.82699305, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.38993711, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.10574521, "qsc_code_frac_chars_long_word_length": 0.08259784, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/screens/dashboard_screen.dart | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:iot_firestore_flutter_app/auth_helper.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
import 'package:iot_firestore_flutter_app/model/sensor.dart';
import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'package:iot_firestore_flutter_app/widgets/my_sensor_card.dart';
import 'package:flutter/material.dart';
class DashboardScreen extends StatefulWidget {
const DashboardScreen({Key? key}) : super(key: key);
@override
_DashboardScreenState createState() => _DashboardScreenState();
}
class _DashboardScreenState extends State<DashboardScreen> {
List<double>? tempList;
List<double>? rhList;
static String collectionName = 'House';
final sensorRef = FirebaseFirestore.instance
.collection(collectionName)
.withConverter<Sensor>(
fromFirestore: (snapshots, _) => Sensor.fromJson(snapshots.data()!),
toFirestore: (movie, _) => movie.toJson(),
);
@override
Widget build(BuildContext context) {
return Scaffold(
body: StreamBuilder<QuerySnapshot<Sensor>>(
stream: sensorRef.snapshots(),
builder: (context, snapshot) {
if (snapshot.hasError) {
return Center(
child: Text(snapshot.error.toString()),
);
}
if (!snapshot.hasData) {
return const Center(child: CircularProgressIndicator());
}
final data = snapshot.requireData;
if (tempList == null) {
tempList = List.filled(5, data.docs.first.data().temperature,
growable: true);
} else {
tempList!.add(data.docs.first.data().temperature);
tempList!.removeAt(0);
}
if (rhList == null) {
rhList =
List.filled(5, data.docs.first.data().humidity, growable: true);
} else {
rhList!.add(data.docs.first.data().humidity);
rhList!.removeAt(0);
}
return Padding(
padding:
const EdgeInsets.only(left: 16, right: 16, top: 40, bottom: 30),
child: CustomScrollView(slivers: [
SliverFillRemaining(
hasScrollBody: false,
child: Column(
children: [
Flexible(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
collectionName,
style: kHeadline,
),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
data.docs.first.id,
style: kHeadline,
),
),
SizedBox(
height: 30,
),
Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
MySensorCard(
value: data.docs.first.data().humidity,
unit: '%',
name: 'Humidity',
assetImage: AssetImage(
'assets/images/humidity_icon.png',
),
trendData: rhList!,
linePoint: Colors.blueAccent,
),
SizedBox(
height: 20,
),
MySensorCard(
value: data.docs.first.data().temperature,
unit: '\'C',
name: 'Temperature',
assetImage: AssetImage(
'assets/images/temperature_icon.png',
),
trendData: tempList!,
linePoint: Colors.redAccent,
)
],
),
),
],
),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"Sign out of Firebase? ",
style: kBodyText,
),
GestureDetector(
onTap: _signOut,
child: Text(
"Sign Out",
style: kBodyText.copyWith(
color: Colors.white,
),
),
),
],
),
SizedBox(
height: 20,
),
],
),
),
]),
);
},
));
}
_signOut() async {
await AuthHelper.signOut();
Navigator.pushNamedAndRemoveUntil(
context, SplashScreenRoute, (Route<dynamic> route) => false);
}
}
| 5,626 | dashboard_screen | dart | en | dart | code | {"qsc_code_num_words": 354, "qsc_code_num_chars": 5626.0, "qsc_code_mean_word_length": 6.65254237, "qsc_code_frac_words_unique": 0.42655367, "qsc_code_frac_chars_top_2grams": 0.03864119, "qsc_code_frac_chars_top_3grams": 0.03864119, "qsc_code_frac_chars_top_4grams": 0.0433121, "qsc_code_frac_chars_dupe_5grams": 0.21316348, "qsc_code_frac_chars_dupe_6grams": 0.17197452, "qsc_code_frac_chars_dupe_7grams": 0.14309979, "qsc_code_frac_chars_dupe_8grams": 0.03651805, "qsc_code_frac_chars_dupe_9grams": 0.03651805, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00763624, "qsc_code_frac_chars_whitespace": 0.48791326, "qsc_code_size_file_byte": 5626.0, "qsc_code_num_lines": 159.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 35.3836478, "qsc_code_frac_chars_alphabet": 0.80978827, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.38513514, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08460718, "qsc_code_frac_chars_long_word_length": 0.07465339, "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/actors/mobs/Succubus.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.actors.mobs;
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.Barrier;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Charm;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Light;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Sleep;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfLullaby;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SuccubusSprite;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class Succubus extends Mob {
private static final int BLINK_DELAY = 5;
private int delay = 0;
{
spriteClass = SuccubusSprite.class;
HP = HT = 80;
defenseSkill = 25;
viewDistance = Light.DISTANCE;
EXP = 12;
maxLvl = 25;
loot = new ScrollOfLullaby();
lootChance = 0.05f;
properties.add(Property.DEMONIC);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 22, 30 );
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (enemy.buff(Charm.class) != null ){
int shield = (HP - HT) + (5 + damage);
if (shield > 0){
HP = HT;
Buff.affect(this, Barrier.class).setShield(shield);
} else {
HP += 5 + damage;
}
sprite.emitter().burst( Speck.factory( Speck.HEALING ), 2 );
Sample.INSTANCE.play( Assets.SND_CHARMS );
} else if (Random.Int( 3 ) == 0) {
//attack will reduce by 5 turns, so effectively 3-4 turns
Buff.affect( enemy, Charm.class, Random.IntRange( 3, 4 ) + 5 ).object = id();
enemy.sprite.centerEmitter().start( Speck.factory( Speck.HEART ), 0.2f, 5 );
Sample.INSTANCE.play( Assets.SND_CHARMS );
}
return damage;
}
@Override
protected boolean getCloser( int target ) {
if (fieldOfView[target] && Dungeon.level.distance( pos, target ) > 2 && delay <= 0) {
blink( target );
spend( -1 / speed() );
return true;
} else {
delay--;
return super.getCloser( target );
}
}
private void blink( int target ) {
Ballistica route = new Ballistica( pos, target, Ballistica.PROJECTILE);
int cell = route.collisionPos;
//can't occupy the same cell as another char, so move back one.
if (Actor.findChar( cell ) != null && cell != this.pos)
cell = route.path.get(route.dist-1);
if (Dungeon.level.avoid[ cell ]){
ArrayList<Integer> candidates = new ArrayList<>();
for (int n : PathFinder.NEIGHBOURS8) {
cell = route.collisionPos + n;
if (Dungeon.level.passable[cell] && Actor.findChar( cell ) == null) {
candidates.add( cell );
}
}
if (candidates.size() > 0)
cell = Random.element(candidates);
else {
delay = BLINK_DELAY;
return;
}
}
ScrollOfTeleportation.appear( this, cell );
delay = BLINK_DELAY;
}
@Override
public int attackSkill( Char target ) {
return 40;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 10);
}
{
immunities.add( Sleep.class );
immunities.add( Charm.class );
}
}
| 4,444 | Succubus | java | en | java | code | {"qsc_code_num_words": 540, "qsc_code_num_chars": 4444.0, "qsc_code_mean_word_length": 5.85925926, "qsc_code_frac_words_unique": 0.41481481, "qsc_code_frac_chars_top_2grams": 0.04835651, "qsc_code_frac_chars_top_3grams": 0.18015171, "qsc_code_frac_chars_top_4grams": 0.19469027, "qsc_code_frac_chars_dupe_5grams": 0.20069532, "qsc_code_frac_chars_dupe_6grams": 0.16087231, "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.01639344, "qsc_code_frac_chars_whitespace": 0.17641764, "qsc_code_size_file_byte": 4444.0, "qsc_code_num_lines": 154.0, "qsc_code_num_chars_line_max": 88.0, "qsc_code_num_chars_line_mean": 28.85714286, "qsc_code_frac_chars_alphabet": 0.84808743, "qsc_code_frac_chars_comments": 0.20274527, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.10576923, "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.05769231, "qsc_codejava_score_lines_no_logic": 0.27884615, "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": 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/actors/mobs/King.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.ToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Blindness;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
import com.shatteredpixel.shatteredpixeldungeon.effects.Flare;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.ArmorKit;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.LloydsBeacon;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfDisintegration;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Grim;
import com.shatteredpixel.shatteredpixeldungeon.levels.CityBossLevel;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.KingSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.UndeadSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class King extends Mob {
private static final int MAX_ARMY_SIZE = 5;
{
spriteClass = KingSprite.class;
HP = HT = 300;
EXP = 40;
defenseSkill = 25;
Undead.count = 0;
properties.add(Property.BOSS);
properties.add(Property.UNDEAD);
}
private boolean nextPedestal = true;
private static final String PEDESTAL = "pedestal";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( PEDESTAL, nextPedestal );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
nextPedestal = bundle.getBoolean( PEDESTAL );
BossHealthBar.assignBoss(this);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 25, 40 );
}
@Override
public int attackSkill( Char target ) {
return 32;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 14);
}
@Override
protected boolean getCloser( int target ) {
return canTryToSummon() ?
super.getCloser( ((CityBossLevel)Dungeon.level).pedestal( nextPedestal ) ) :
super.getCloser( target );
}
@Override
protected boolean canAttack( Char enemy ) {
return canTryToSummon() ?
pos == ((CityBossLevel)Dungeon.level).pedestal( nextPedestal ) :
Dungeon.level.adjacent( pos, enemy.pos );
}
private boolean canTryToSummon() {
if (paralysed <= 0 && Undead.count < maxArmySize()) {
Char ch = Actor.findChar( ((CityBossLevel)Dungeon.level).pedestal( nextPedestal ) );
return ch == this || ch == null;
} else {
return false;
}
}
@Override
protected boolean act() {
if (canTryToSummon() && pos == ((CityBossLevel)Dungeon.level).pedestal( nextPedestal )) {
summon();
return true;
} else {
if (enemy != null && Actor.findChar( ((CityBossLevel)Dungeon.level).pedestal( nextPedestal ) ) == enemy) {
nextPedestal = !nextPedestal;
}
return super.act();
}
}
@Override
public void damage(int dmg, Object src) {
super.damage(dmg, src);
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) lock.addTime(dmg);
}
@Override
public void die( Object cause ) {
GameScene.bossSlain();
Dungeon.level.drop( new ArmorKit(), pos ).sprite.drop();
Dungeon.level.drop( new SkeletonKey( Dungeon.depth ), pos ).sprite.drop();
super.die( cause );
Badges.validateBossSlain();
LloydsBeacon beacon = Dungeon.hero.belongings.getItem(LloydsBeacon.class);
if (beacon != null) {
beacon.upgrade();
}
yell( Messages.get(this, "defeated", Dungeon.hero.givenName()) );
}
@Override
public void aggro(Char ch) {
super.aggro(ch);
for (Mob mob : Dungeon.level.mobs){
if (mob instanceof Undead){
mob.aggro(ch);
}
}
}
private int maxArmySize() {
return 1 + MAX_ARMY_SIZE * (HT - HP) / HT;
}
private void summon() {
nextPedestal = !nextPedestal;
sprite.centerEmitter().start( Speck.factory( Speck.SCREAM ), 0.4f, 2 );
Sample.INSTANCE.play( Assets.SND_CHALLENGE );
boolean[] passable = Dungeon.level.passable.clone();
for (Char c : Actor.chars()) {
passable[c.pos] = false;
}
int undeadsToSummon = maxArmySize() - Undead.count;
PathFinder.buildDistanceMap( pos, passable, undeadsToSummon );
PathFinder.distance[pos] = Integer.MAX_VALUE;
int dist = 1;
undeadLabel:
for (int i=0; i < undeadsToSummon; i++) {
do {
for (int j=0; j < Dungeon.level.length(); j++) {
if (PathFinder.distance[j] == dist) {
Undead undead = new Undead();
undead.pos = j;
GameScene.add( undead );
ScrollOfTeleportation.appear( undead, j );
new Flare( 3, 32 ).color( 0x000000, false ).show( undead.sprite, 2f ) ;
PathFinder.distance[j] = Integer.MAX_VALUE;
continue undeadLabel;
}
}
dist++;
} while (dist < undeadsToSummon);
}
yell( Messages.get(this, "arise") );
spend( TICK );
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
yell(Messages.get(this, "notice"));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
}
}
{
resistances.add( WandOfDisintegration.class );
resistances.add( ToxicGas.class );
resistances.add( Burning.class );
}
{
immunities.add( Paralysis.class );
immunities.add( Vertigo.class );
immunities.add( Blindness.class );
immunities.add( Terror.class );
}
public static class Undead extends Mob {
public static int count = 0;
{
spriteClass = UndeadSprite.class;
HP = HT = 28;
defenseSkill = 15;
maxLvl = -2;
EXP = 0;
state = WANDERING;
properties.add(Property.UNDEAD);
properties.add(Property.INORGANIC);
}
@Override
protected void onAdd() {
count++;
super.onAdd();
}
@Override
protected void onRemove() {
count--;
super.onRemove();
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 15, 25 );
}
@Override
public int attackSkill( Char target ) {
return 16;
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (Random.Int( MAX_ARMY_SIZE ) == 0) {
Buff.prolong( enemy, Paralysis.class, 1 );
}
return damage;
}
@Override
public void damage( int dmg, Object src ) {
super.damage( dmg, src );
if (src instanceof ToxicGas) {
((ToxicGas)src).clear( pos );
}
}
@Override
public void die( Object cause ) {
super.die( cause );
if (Dungeon.level.heroFOV[pos]) {
Sample.INSTANCE.play( Assets.SND_BONES );
}
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
{
immunities.add( Grim.class );
immunities.add( Paralysis.class );
}
}
}
| 8,864 | King | java | en | java | code | {"qsc_code_num_words": 972, "qsc_code_num_chars": 8864.0, "qsc_code_mean_word_length": 6.46296296, "qsc_code_frac_words_unique": 0.28909465, "qsc_code_frac_chars_top_2grams": 0.04727794, "qsc_code_frac_chars_top_3grams": 0.18147087, "qsc_code_frac_chars_top_4grams": 0.20312003, "qsc_code_frac_chars_dupe_5grams": 0.32712512, "qsc_code_frac_chars_dupe_6grams": 0.20168736, "qsc_code_frac_chars_dupe_7grams": 0.10283349, "qsc_code_frac_chars_dupe_8grams": 0.03374721, "qsc_code_frac_chars_dupe_9grams": 0.01782872, "qsc_code_frac_chars_dupe_10grams": 0.01782872, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00969813, "qsc_code_frac_chars_whitespace": 0.17407491, "qsc_code_size_file_byte": 8864.0, "qsc_code_num_lines": 332.0, "qsc_code_num_chars_line_max": 110.0, "qsc_code_num_chars_line_mean": 26.69879518, "qsc_code_frac_chars_alphabet": 0.84838137, "qsc_code_frac_chars_comments": 0.08810921, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18253968, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00358778, "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.00098973, "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.1031746, "qsc_codejava_score_lines_no_logic": 0.25793651, "qsc_codejava_frac_words_no_modifier": 0.85185185, "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/actors/mobs/Shielded.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ShieldedSprite;
import com.watabou.utils.Random;
public class Shielded extends Brute {
{
spriteClass = ShieldedSprite.class;
defenseSkill = 20;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 10);
}
}
| 1,140 | Shielded | java | en | java | code | {"qsc_code_num_words": 157, "qsc_code_num_chars": 1140.0, "qsc_code_mean_word_length": 5.41401274, "qsc_code_frac_words_unique": 0.66242038, "qsc_code_frac_chars_top_2grams": 0.03882353, "qsc_code_frac_chars_top_3grams": 0.04588235, "qsc_code_frac_chars_top_4grams": 0.06705882, "qsc_code_frac_chars_dupe_5grams": 0.09647059, "qsc_code_frac_chars_dupe_6grams": 0.06588235, "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.02357985, "qsc_code_frac_chars_whitespace": 0.18157895, "qsc_code_size_file_byte": 1140.0, "qsc_code_num_lines": 39.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 29.23076923, "qsc_code_frac_chars_alphabet": 0.88745981, "qsc_code_frac_chars_comments": 0.68508772, "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.30769231, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/1_Network_Class/1_Network_Class.ino | /////////////////////////////////////////////////////////////////
/*
ESP32 | Cloud Firestore - Ep 1. Firebase Setup
Video Tutorial: https://youtu.be/KV0D8nrsBLg
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
// 05-06-2024
// Code Updated - Network Class
// Tested ESP32 Version - 2.0.16
#include "DHTesp.h" // Click here to get the library: http://librarymanager/All#DHTesp
#include <Ticker.h>
#include "Display.h"
#ifndef ESP32
#pragma message(THIS EXAMPLE IS FOR ESP32 ONLY !)
#error Select ESP32 board.
#endif
/**************************************************************/
/* Example how to read DHT sensors from an ESP32 using multi- */
/* tasking. */
/* This example depends on the Ticker library to wake up */
/* the task every 20 seconds */
/**************************************************************/
Display *display;
DHTesp dht;
void tempTask(void *pvParameters);
bool getTemperature();
void triggerGetTemp();
/** Task handle for the light value read task */
TaskHandle_t tempTaskHandle = NULL;
/** Ticker for temperature reading */
Ticker tempTicker;
/** Comfort profile */
ComfortState cf;
/** Flag if task should run */
bool tasksEnabled = false;
/** Pin number for DHT11 data pin */
int dhtPin = 21;
/**
* initTemp
* Setup DHT library
* Setup task and timer for repeated measurement
* @return bool
* true if task and timer are started
* false if task or timer couldn't be started
*/
bool initTemp() {
byte resultValue = 0;
// Initialize temperature sensor
dht.setup(dhtPin, DHTesp::DHT11);
Serial.println("DHT initiated");
// Start task to get temperature
xTaskCreatePinnedToCore(
tempTask, /* Function to implement the task */
"tempTask ", /* Name of the task */
4000, /* Stack size in words */
NULL, /* Task input parameter */
5, /* Priority of the task */
&tempTaskHandle, /* Task handle. */
1); /* Core where the task should run */
if (tempTaskHandle == NULL) {
Serial.println("Failed to start task for temperature update");
return false;
} else {
// Start update of environment data every 20 seconds
tempTicker.attach(20, triggerGetTemp);
}
return true;
}
/**
* triggerGetTemp
* Sets flag dhtUpdated to true for handling in loop()
* called by Ticker getTempTimer
*/
void triggerGetTemp() {
if (tempTaskHandle != NULL) {
xTaskResumeFromISR(tempTaskHandle);
}
}
/**
* Task to reads temperature from DHT11 sensor
* @param pvParameters
* pointer to task parameters
*/
void tempTask(void *pvParameters) {
Serial.println("tempTask loop started");
while (1) // tempTask loop
{
if (tasksEnabled) {
// Get temperature values
getTemperature();
}
// Got sleep again
vTaskSuspend(NULL);
}
}
/**
* getTemperature
* Reads temperature from DHT11 sensor
* @return bool
* true if temperature could be aquired
* false if aquisition failed
*/
bool getTemperature() {
// Reading temperature for humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (it's a very slow sensor)
TempAndHumidity newValues = dht.getTempAndHumidity();
// Check if any reads failed and exit early (to try again).
if (dht.getStatus() != 0) {
Serial.println("DHT11 error status: " + String(dht.getStatusString()));
return false;
}
float heatIndex = dht.computeHeatIndex(newValues.temperature, newValues.humidity);
float dewPoint = dht.computeDewPoint(newValues.temperature, newValues.humidity);
float cr = dht.getComfortRatio(cf, newValues.temperature, newValues.humidity);
String comfortStatus;
switch (cf) {
case Comfort_OK:
comfortStatus = "OK";
break;
case Comfort_TooHot:
comfortStatus = "TooHot";
break;
case Comfort_TooCold:
comfortStatus = "TooCold";
break;
case Comfort_TooDry:
comfortStatus = "TooDry";
break;
case Comfort_TooHumid:
comfortStatus = "TooHumid";
break;
case Comfort_HotAndHumid:
comfortStatus = "Hot&Humid";
break;
case Comfort_HotAndDry:
comfortStatus = "Hot&Dry";
break;
case Comfort_ColdAndHumid:
comfortStatus = "Cold&Humid";
break;
case Comfort_ColdAndDry:
comfortStatus = "Cold&Dry";
break;
default:
comfortStatus = "Unknown";
break;
};
Serial.println(" T:" + String(newValues.temperature) + " H:" + String(newValues.humidity) + " I:" + String(heatIndex) + " D:" + String(dewPoint) + " " + comfortStatus);
display->tempUpdates("Temp " + String(newValues.temperature, 1) + "'C",
"Humidity " + String(newValues.humidity, 0) + "%",
comfortStatus);
return true;
}
void setup() {
Serial.begin(115200);
Serial.println();
Serial.println("DHT ESP32 example with tasks");
initDisplay();
initTemp();
// Signal end of setup() to tasks
tasksEnabled = true;
}
void loop() {
if (!tasksEnabled) {
// Wait 2 seconds to let system settle down
delay(2000);
// Enable task that will read values from the DHT sensor
tasksEnabled = true;
if (tempTaskHandle != NULL) {
vTaskResume(tempTaskHandle);
}
}
yield();
}
void initDisplay() {
display = new Display();
display->initTFT();
display->centerMsg("System Init...");
}
| 5,521 | 1_Network_Class | ino | en | cpp | code | {"qsc_code_num_words": 581, "qsc_code_num_chars": 5521.0, "qsc_code_mean_word_length": 5.82788296, "qsc_code_frac_words_unique": 0.42340792, "qsc_code_frac_chars_top_2grams": 0.02923804, "qsc_code_frac_chars_top_3grams": 0.03780272, "qsc_code_frac_chars_top_4grams": 0.03278204, "qsc_code_frac_chars_dupe_5grams": 0.04311872, "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.01721698, "qsc_code_frac_chars_whitespace": 0.23202318, "qsc_code_size_file_byte": 5521.0, "qsc_code_num_lines": 201.0, "qsc_code_num_chars_line_max": 171.0, "qsc_code_num_chars_line_mean": 27.46766169, "qsc_code_frac_chars_alphabet": 0.78136792, "qsc_code_frac_chars_comments": 0.40862163, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14754098, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08116386, "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.05737705, "qsc_codecpp_frac_lines_func_ratio": 0.09836066, "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.1557377, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/0_ESP32TTGO_DHT11/0_ESP32TTGO_DHT11.ino | /////////////////////////////////////////////////////////////////
/*
ESP32 | Cloud Firestore - Ep 0. Showing temp/humidity from DHT11 on TTGO display [Upgraded Version]
Video Tutorial: https://youtu.be/aAUIlCWs_bc
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
#include "DHTesp.h" // Click here to get the library: http://librarymanager/All#DHTesp
#include <Ticker.h>
#include "Display.h"
#ifndef ESP32
#pragma message(THIS EXAMPLE IS FOR ESP32 ONLY !)
#error Select ESP32 board.
#endif
/**************************************************************/
/* Example how to read DHT sensors from an ESP32 using multi- */
/* tasking. */
/* This example depends on the Ticker library to wake up */
/* the task every 20 seconds */
/**************************************************************/
Display *display;
DHTesp dht;
void tempTask(void *pvParameters);
bool getTemperature();
void triggerGetTemp();
/** Task handle for the light value read task */
TaskHandle_t tempTaskHandle = NULL;
/** Ticker for temperature reading */
Ticker tempTicker;
/** Comfort profile */
ComfortState cf;
/** Flag if task should run */
bool tasksEnabled = false;
/** Pin number for DHT11 data pin */
int dhtPin = 21;
/**
* initTemp
* Setup DHT library
* Setup task and timer for repeated measurement
* @return bool
* true if task and timer are started
* false if task or timer couldn't be started
*/
bool initTemp() {
byte resultValue = 0;
// Initialize temperature sensor
dht.setup(dhtPin, DHTesp::DHT11);
Serial.println("DHT initiated");
// Start task to get temperature
xTaskCreatePinnedToCore(
tempTask, /* Function to implement the task */
"tempTask ", /* Name of the task */
4000, /* Stack size in words */
NULL, /* Task input parameter */
5, /* Priority of the task */
&tempTaskHandle, /* Task handle. */
1); /* Core where the task should run */
if (tempTaskHandle == NULL) {
Serial.println("Failed to start task for temperature update");
return false;
} else {
// Start update of environment data every 20 seconds
tempTicker.attach(20, triggerGetTemp);
}
return true;
}
/**
* triggerGetTemp
* Sets flag dhtUpdated to true for handling in loop()
* called by Ticker getTempTimer
*/
void triggerGetTemp() {
if (tempTaskHandle != NULL) {
xTaskResumeFromISR(tempTaskHandle);
}
}
/**
* Task to reads temperature from DHT11 sensor
* @param pvParameters
* pointer to task parameters
*/
void tempTask(void *pvParameters) {
Serial.println("tempTask loop started");
while (1) // tempTask loop
{
if (tasksEnabled) {
// Get temperature values
getTemperature();
}
// Got sleep again
vTaskSuspend(NULL);
}
}
/**
* getTemperature
* Reads temperature from DHT11 sensor
* @return bool
* true if temperature could be aquired
* false if aquisition failed
*/
bool getTemperature() {
// Reading temperature for humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (it's a very slow sensor)
TempAndHumidity newValues = dht.getTempAndHumidity();
// Check if any reads failed and exit early (to try again).
if (dht.getStatus() != 0) {
Serial.println("DHT11 error status: " + String(dht.getStatusString()));
return false;
}
float heatIndex = dht.computeHeatIndex(newValues.temperature, newValues.humidity);
float dewPoint = dht.computeDewPoint(newValues.temperature, newValues.humidity);
float cr = dht.getComfortRatio(cf, newValues.temperature, newValues.humidity);
String comfortStatus;
switch (cf) {
case Comfort_OK:
comfortStatus = "OK";
break;
case Comfort_TooHot:
comfortStatus = "TooHot";
break;
case Comfort_TooCold:
comfortStatus = "TooCold";
break;
case Comfort_TooDry:
comfortStatus = "TooDry";
break;
case Comfort_TooHumid:
comfortStatus = "TooHumid";
break;
case Comfort_HotAndHumid:
comfortStatus = "Hot&Humid";
break;
case Comfort_HotAndDry:
comfortStatus = "Hot&Dry";
break;
case Comfort_ColdAndHumid:
comfortStatus = "Cold&Humid";
break;
case Comfort_ColdAndDry:
comfortStatus = "Cold&Dry";
break;
default:
comfortStatus = "Unknown";
break;
};
Serial.println(" T:" + String(newValues.temperature) + " H:" + String(newValues.humidity) + " I:" + String(heatIndex) + " D:" + String(dewPoint) + " " + comfortStatus);
display->tempUpdates("Temp " + String(newValues.temperature, 1) + "'C",
"Humidity " + String(newValues.humidity, 0) + "%",
comfortStatus);
return true;
}
void setup() {
Serial.begin(115200);
Serial.println();
Serial.println("DHT ESP32 example with tasks");
initDisplay();
initTemp();
// Signal end of setup() to tasks
tasksEnabled = true;
}
void loop() {
if (!tasksEnabled) {
// Wait 2 seconds to let system settle down
delay(2000);
// Enable task that will read values from the DHT sensor
tasksEnabled = true;
if (tempTaskHandle != NULL) {
vTaskResume(tempTaskHandle);
}
}
yield();
}
void initDisplay() {
display = new Display();
display->initTFT();
display->centerMsg("System Init...");
}
| 5,493 | 0_ESP32TTGO_DHT11 | ino | en | cpp | code | {"qsc_code_num_words": 577, "qsc_code_num_chars": 5493.0, "qsc_code_mean_word_length": 5.8492201, "qsc_code_frac_words_unique": 0.41594454, "qsc_code_frac_chars_top_2grams": 0.02933333, "qsc_code_frac_chars_top_3grams": 0.03792593, "qsc_code_frac_chars_top_4grams": 0.03288889, "qsc_code_frac_chars_dupe_5grams": 0.04325926, "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.01397773, "qsc_code_frac_chars_whitespace": 0.23156745, "qsc_code_size_file_byte": 5493.0, "qsc_code_num_lines": 197.0, "qsc_code_num_chars_line_max": 171.0, "qsc_code_num_chars_line_mean": 27.88324873, "qsc_code_frac_chars_alphabet": 0.78559583, "qsc_code_frac_chars_comments": 0.40578919, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14754098, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08118873, "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.05737705, "qsc_codecpp_frac_lines_func_ratio": 0.09836066, "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.1557377, "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/actors/mobs/Piranha.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.Statistics;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
import com.shatteredpixel.shatteredpixeldungeon.items.food.MysteryMeat;
import com.shatteredpixel.shatteredpixeldungeon.sprites.PiranhaSprite;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Piranha extends Mob {
{
spriteClass = PiranhaSprite.class;
baseSpeed = 2f;
EXP = 0;
loot = MysteryMeat.class;
lootChance = 1f;
SLEEPING = new Sleeping();
WANDERING = new Wandering();
HUNTING = new Hunting();
state = SLEEPING;
properties.add(Property.BLOB_IMMUNE);
}
public Piranha() {
super();
HP = HT = 10 + Dungeon.depth * 5;
defenseSkill = 10 + Dungeon.depth * 2;
}
@Override
protected boolean act() {
if (!Dungeon.level.water[pos]) {
die( null );
sprite.killAndErase();
return true;
} else {
return super.act();
}
}
@Override
public int damageRoll() {
return Random.NormalIntRange( Dungeon.depth, 4 + Dungeon.depth * 2 );
}
@Override
public int attackSkill( Char target ) {
return 20 + Dungeon.depth * 2;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, Dungeon.depth);
}
@Override
public int defenseSkill( Char enemy ) {
enemySeen = state != SLEEPING
&& this.enemy != null
&& fieldOfView != null
&& fieldOfView[this.enemy.pos]
&& this.enemy.invisible == 0;
return super.defenseSkill( enemy );
}
@Override
public void die( Object cause ) {
super.die( cause );
Statistics.piranhasKilled++;
Badges.validatePiranhasKilled();
}
@Override
public boolean reset() {
return true;
}
@Override
protected boolean getCloser( int target ) {
if (rooted) {
return false;
}
int step = Dungeon.findStep( this, pos, target,
Dungeon.level.water,
fieldOfView );
if (step != -1) {
move( step );
return true;
} else {
return false;
}
}
@Override
protected boolean getFurther( int target ) {
int step = Dungeon.flee( this, pos, target,
Dungeon.level.water,
fieldOfView );
if (step != -1) {
move( step );
return true;
} else {
return false;
}
}
{
immunities.add( Burning.class );
immunities.add( Vertigo.class );
}
//if there is not a path to the enemy, piranhas act as if they can't see them
private class Sleeping extends Mob.Sleeping{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
if (enemyInFOV) {
PathFinder.buildDistanceMap(enemy.pos, Dungeon.level.water, viewDistance);
enemyInFOV = PathFinder.distance[pos] != Integer.MAX_VALUE;
}
return super.act(enemyInFOV, justAlerted);
}
}
private class Wandering extends Mob.Wandering{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
if (enemyInFOV) {
PathFinder.buildDistanceMap(enemy.pos, Dungeon.level.water, viewDistance);
enemyInFOV = PathFinder.distance[pos] != Integer.MAX_VALUE;
}
return super.act(enemyInFOV, justAlerted);
}
}
private class Hunting extends Mob.Hunting{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
if (enemyInFOV) {
PathFinder.buildDistanceMap(enemy.pos, Dungeon.level.water, viewDistance);
enemyInFOV = PathFinder.distance[pos] != Integer.MAX_VALUE;
}
return super.act(enemyInFOV, justAlerted);
}
}
}
| 4,515 | Piranha | java | en | java | code | {"qsc_code_num_words": 522, "qsc_code_num_chars": 4515.0, "qsc_code_mean_word_length": 6.09961686, "qsc_code_frac_words_unique": 0.36015326, "qsc_code_frac_chars_top_2grams": 0.02826633, "qsc_code_frac_chars_top_3grams": 0.10741206, "qsc_code_frac_chars_top_4grams": 0.11055276, "qsc_code_frac_chars_dupe_5grams": 0.35584171, "qsc_code_frac_chars_dupe_6grams": 0.33197236, "qsc_code_frac_chars_dupe_7grams": 0.26099246, "qsc_code_frac_chars_dupe_8grams": 0.26099246, "qsc_code_frac_chars_dupe_9grams": 0.26099246, "qsc_code_frac_chars_dupe_10grams": 0.26099246, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00959167, "qsc_code_frac_chars_whitespace": 0.19180509, "qsc_code_size_file_byte": 4515.0, "qsc_code_num_lines": 185.0, "qsc_code_num_chars_line_max": 79.0, "qsc_code_num_chars_line_mean": 24.40540541, "qsc_code_frac_chars_alphabet": 0.86297616, "qsc_code_frac_chars_comments": 0.19003322, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.34090909, "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.09090909, "qsc_codejava_score_lines_no_logic": 0.25, "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/actors/mobs/Skeleton.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MeleeWeapon;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SkeletonSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Skeleton extends Mob {
{
spriteClass = SkeletonSprite.class;
HP = HT = 25;
defenseSkill = 9;
EXP = 5;
maxLvl = 10;
loot = Generator.Category.WEAPON;
lootChance = 0.125f;
properties.add(Property.UNDEAD);
properties.add(Property.INORGANIC);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 2, 10 );
}
@Override
public void die( Object cause ) {
super.die( cause );
if (cause == Chasm.class) return;
boolean heroKilled = false;
for (int i = 0; i < PathFinder.NEIGHBOURS8.length; i++) {
Char ch = findChar( pos + PathFinder.NEIGHBOURS8[i] );
if (ch != null && ch.isAlive()) {
int damage = Random.NormalIntRange(6, 12);
damage = Math.max( 0, damage - (ch.drRoll() + ch.drRoll()) );
ch.damage( damage, this );
if (ch == Dungeon.hero && !ch.isAlive()) {
heroKilled = true;
}
}
}
if (Dungeon.level.heroFOV[pos]) {
Sample.INSTANCE.play( Assets.SND_BONES );
}
if (heroKilled) {
Dungeon.fail( getClass() );
GLog.n( Messages.get(this, "explo_kill") );
}
}
@Override
protected Item createLoot() {
MeleeWeapon loot;
do {
loot = Generator.randomWeapon();
//50% chance of re-rolling tier 4 or 5 melee weapons
} while (loot.tier >= 4 && Random.Int(2) == 0);
loot.level(0);
return loot;
}
@Override
public int attackSkill( Char target ) {
return 12;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
}
| 3,096 | Skeleton | java | en | java | code | {"qsc_code_num_words": 384, "qsc_code_num_chars": 3096.0, "qsc_code_mean_word_length": 5.78385417, "qsc_code_frac_words_unique": 0.48697917, "qsc_code_frac_chars_top_2grams": 0.05267897, "qsc_code_frac_chars_top_3grams": 0.18820351, "qsc_code_frac_chars_top_4grams": 0.19810896, "qsc_code_frac_chars_dupe_5grams": 0.10310671, "qsc_code_frac_chars_dupe_6grams": 0.02521387, "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.01914063, "qsc_code_frac_chars_whitespace": 0.17312661, "qsc_code_size_file_byte": 3096.0, "qsc_code_num_lines": 111.0, "qsc_code_num_chars_line_max": 80.0, "qsc_code_num_chars_line_mean": 27.89189189, "qsc_code_frac_chars_alphabet": 0.8484375, "qsc_code_frac_chars_comments": 0.26905685, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06944444, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00441891, "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.06944444, "qsc_codejava_score_lines_no_logic": 0.30555556, "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": 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/actors/mobs/Senior.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SeniorSprite;
import com.watabou.utils.Random;
public class Senior extends Monk {
{
spriteClass = SeniorSprite.class;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 16, 24 );
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (Random.Int( 10 ) == 0) {
Buff.prolong( enemy, Paralysis.class, 1.1f );
}
return super.attackProc( enemy, damage );
}
}
| 1,557 | Senior | java | en | java | code | {"qsc_code_num_words": 205, "qsc_code_num_chars": 1557.0, "qsc_code_mean_word_length": 5.69268293, "qsc_code_frac_words_unique": 0.56097561, "qsc_code_frac_chars_top_2grams": 0.07283633, "qsc_code_frac_chars_top_3grams": 0.16281063, "qsc_code_frac_chars_top_4grams": 0.15081405, "qsc_code_frac_chars_dupe_5grams": 0.20736932, "qsc_code_frac_chars_dupe_6grams": 0.14224507, "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.0200154, "qsc_code_frac_chars_whitespace": 0.16570328, "qsc_code_size_file_byte": 1557.0, "qsc_code_num_lines": 49.0, "qsc_code_num_chars_line_max": 72.0, "qsc_code_num_chars_line_mean": 31.7755102, "qsc_code_frac_chars_alphabet": 0.87836798, "qsc_code_frac_chars_comments": 0.50160565, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.08695652, "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.08695652, "qsc_codejava_score_lines_no_logic": 0.34782609, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/RotLasher.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.ToxicGas;
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.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.sprites.RotLasherSprite;
import com.watabou.utils.Random;
public class RotLasher extends Mob {
{
spriteClass = RotLasherSprite.class;
HP = HT = 40;
defenseSkill = 0;
EXP = 1;
loot = Generator.Category.SEED;
lootChance = 1f;
state = WANDERING = new Waiting();
properties.add(Property.IMMOVABLE);
properties.add(Property.MINIBOSS);
}
@Override
protected boolean act() {
if (enemy == null || !Dungeon.level.adjacent(pos, enemy.pos)) {
HP = Math.min(HT, HP + 3);
}
return super.act();
}
@Override
public void damage(int dmg, Object src) {
if (src instanceof Burning) {
destroy();
sprite.die();
} else {
super.damage(dmg, src);
}
}
@Override
public int attackProc(Char enemy, int damage) {
damage = super.attackProc( enemy, damage );
Buff.affect( enemy, Cripple.class, 2f );
return super.attackProc(enemy, damage);
}
@Override
public boolean reset() {
return true;
}
@Override
protected boolean getCloser(int target) {
return true;
}
@Override
protected boolean getFurther(int target) {
return true;
}
@Override
public int damageRoll() {
return Random.NormalIntRange(8, 15);
}
@Override
public int attackSkill( Char target ) {
return 15;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 8);
}
{
immunities.add( ToxicGas.class );
}
private class Waiting extends Mob.Wandering{}
}
| 2,758 | RotLasher | java | en | java | code | {"qsc_code_num_words": 340, "qsc_code_num_chars": 2758.0, "qsc_code_mean_word_length": 5.96470588, "qsc_code_frac_words_unique": 0.48529412, "qsc_code_frac_chars_top_2grams": 0.07544379, "qsc_code_frac_chars_top_3grams": 0.16863905, "qsc_code_frac_chars_top_4grams": 0.17357002, "qsc_code_frac_chars_dupe_5grams": 0.22238659, "qsc_code_frac_chars_dupe_6grams": 0.10897436, "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.01348999, "qsc_code_frac_chars_whitespace": 0.16678753, "qsc_code_size_file_byte": 2758.0, "qsc_code_num_lines": 112.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 24.625, "qsc_code_frac_chars_alphabet": 0.86901654, "qsc_code_frac_chars_comments": 0.28317621, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16438356, "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.12328767, "qsc_codejava_score_lines_no_logic": 0.32876712, "qsc_codejava_frac_words_no_modifier": 0.81818182, "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": 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/actors/mobs/CausticSlime.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Ooze;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.GooBlob;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CausticSlimeSprite;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class CausticSlime extends Slime {
{
spriteClass = CausticSlimeSprite.class;
properties.add(Property.ACIDIC);
}
@Override
public int attackProc( Char enemy, int damage ) {
if (Random.Int( 2 ) == 0) {
Buff.affect( enemy, Ooze.class ).set( 20f );
enemy.sprite.burst( 0x000000, 5 );
}
return super.attackProc( enemy, damage );
}
@Override
public void rollToDropLoot() {
if (Dungeon.hero.lvl > maxLvl + 2) return;
super.rollToDropLoot();
int ofs;
do {
ofs = PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!Dungeon.level.passable[pos + ofs]);
Dungeon.level.drop( new GooBlob(), pos + ofs ).sprite.drop( pos );
}
}
| 1,987 | CausticSlime | java | en | java | code | {"qsc_code_num_words": 255, "qsc_code_num_chars": 1987.0, "qsc_code_mean_word_length": 5.80784314, "qsc_code_frac_words_unique": 0.54117647, "qsc_code_frac_chars_top_2grams": 0.0486158, "qsc_code_frac_chars_top_3grams": 0.17960837, "qsc_code_frac_chars_top_4grams": 0.17825793, "qsc_code_frac_chars_dupe_5grams": 0.16340311, "qsc_code_frac_chars_dupe_6grams": 0.11208643, "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.01913876, "qsc_code_frac_chars_whitespace": 0.15853045, "qsc_code_size_file_byte": 1987.0, "qsc_code_num_lines": 63.0, "qsc_code_num_chars_line_max": 76.0, "qsc_code_num_chars_line_mean": 31.53968254, "qsc_code_frac_chars_alphabet": 0.86662679, "qsc_code_frac_chars_comments": 0.39255159, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.06060606, "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.006628, "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.06060606, "qsc_codejava_score_lines_no_logic": 0.36363636, "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": 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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/widgets/my_text_button.dart | import 'package:flutter/material.dart';
import 'package:iot_firestore_flutter_app/const/custom_styles.dart';
class MyTextButton extends StatelessWidget {
const MyTextButton({
Key? key,
required this.buttonName,
required this.onTap,
required this.bgColor,
required this.textColor,
}) : super(key: key);
final String buttonName;
final Function onTap;
final Color bgColor;
final Color textColor;
@override
Widget build(BuildContext context) {
return Container(
height: 60,
width: double.infinity,
decoration: BoxDecoration(
color: bgColor,
borderRadius: BorderRadius.circular(18),
),
child: TextButton(
style: ButtonStyle(
overlayColor: MaterialStateProperty.resolveWith(
(states) => Colors.black12,
),
),
onPressed: () {
onTap();
},
child: Text(
buttonName,
style: kButtonText.copyWith(color: textColor),
),
),
);
}
}
| 1,026 | my_text_button | dart | en | dart | code | {"qsc_code_num_words": 90, "qsc_code_num_chars": 1026.0, "qsc_code_mean_word_length": 6.98888889, "qsc_code_frac_words_unique": 0.64444444, "qsc_code_frac_chars_top_2grams": 0.07631161, "qsc_code_frac_chars_top_3grams": 0.0, "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.00817439, "qsc_code_frac_chars_whitespace": 0.28460039, "qsc_code_size_file_byte": 1026.0, "qsc_code_num_lines": 42.0, "qsc_code_num_chars_line_max": 69.0, "qsc_code_num_chars_line_mean": 24.42857143, "qsc_code_frac_chars_alphabet": 0.84877384, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.08479532, "qsc_code_frac_chars_long_word_length": 0.08479532, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/route/router.dart | import 'package:iot_firestore_flutter_app/route/routing_constants.dart';
import 'package:iot_firestore_flutter_app/screens/dashboard_screen.dart';
import 'package:iot_firestore_flutter_app/screens/signin_screen.dart';
import 'package:iot_firestore_flutter_app/screens/signup_screen.dart';
import 'package:iot_firestore_flutter_app/screens/splash_screen.dart';
import 'package:iot_firestore_flutter_app/screens/undefined_screen.dart';
import 'package:flutter/material.dart';
Route<dynamic> generateRoute(RouteSettings settings) {
switch (settings.name) {
case SplashScreenRoute:
return MaterialPageRoute(builder: (context) => SplashScreen());
case SignInScreenRoute:
return MaterialPageRoute(builder: (context) => SignInScreen());
case SignUpScreenRoute:
return MaterialPageRoute(builder: (context) => SignUpScreen());
case DashboardScreenRoute:
return MaterialPageRoute(builder: (context) => DashboardScreen());
default:
return MaterialPageRoute(
builder: (context) => UndefinedView(
name: settings.name!,
));
}
}
| 1,113 | router | dart | en | dart | code | {"qsc_code_num_words": 110, "qsc_code_num_chars": 1113.0, "qsc_code_mean_word_length": 7.37272727, "qsc_code_frac_words_unique": 0.35454545, "qsc_code_frac_chars_top_2grams": 0.11220715, "qsc_code_frac_chars_top_3grams": 0.11837238, "qsc_code_frac_chars_top_4grams": 0.18495684, "qsc_code_frac_chars_dupe_5grams": 0.35635018, "qsc_code_frac_chars_dupe_6grams": 0.35635018, "qsc_code_frac_chars_dupe_7grams": 0.31319359, "qsc_code_frac_chars_dupe_8grams": 0.31319359, "qsc_code_frac_chars_dupe_9grams": 0.25647349, "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.14375562, "qsc_code_size_file_byte": 1113.0, "qsc_code_num_lines": 29.0, "qsc_code_num_chars_line_max": 74.0, "qsc_code_num_chars_line_mean": 38.37931034, "qsc_code_frac_chars_alphabet": 0.85099685, "qsc_code_frac_chars_comments": 0.0, "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.35669362, "qsc_code_frac_chars_long_word_length": 0.35669362, "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": 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_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/actors/mobs/Thief.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Corruption;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Honeypot;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ThiefSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class Thief extends Mob {
public Item item;
{
spriteClass = ThiefSprite.class;
HP = HT = 20;
defenseSkill = 12;
EXP = 5;
maxLvl = 10;
loot = Random.oneOf(Generator.Category.RING, Generator.Category.ARTIFACT);
lootChance = 0.01f;
WANDERING = new Wandering();
FLEEING = new Fleeing();
properties.add(Property.UNDEAD);
}
private static final String ITEM = "item";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( ITEM, item );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
item = (Item)bundle.get( ITEM );
}
@Override
public float speed() {
if (item != null) return (5*super.speed())/6;
else return super.speed();
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 1, 10 );
}
@Override
protected float attackDelay() {
return super.attackDelay()*0.5f;
}
@Override
public void rollToDropLoot() {
if (item != null) {
Dungeon.level.drop( item, pos ).sprite.drop();
//updates position
if (item instanceof Honeypot.ShatteredPot) ((Honeypot.ShatteredPot)item).dropPot( this, pos );
item = null;
}
super.rollToDropLoot();
}
@Override
public int attackSkill( Char target ) {
return 12;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 3);
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (alignment == Alignment.ENEMY && item == null
&& enemy instanceof Hero && steal( (Hero)enemy )) {
state = FLEEING;
}
return damage;
}
@Override
public int defenseProc(Char enemy, int damage) {
if (state == FLEEING) {
Dungeon.level.drop( new Gold(), pos ).sprite.drop();
}
return super.defenseProc(enemy, damage);
}
protected boolean steal( Hero hero ) {
Item item = hero.belongings.randomUnequipped();
if (item != null && !item.unique && item.level() < 1 ) {
GLog.w( Messages.get(Thief.class, "stole", item.name()) );
if (!item.stackable) {
Dungeon.quickslot.convertToPlaceholder(item);
}
item.updateQuickslot();
if (item instanceof Honeypot){
this.item = ((Honeypot)item).shatter(this, this.pos);
item.detach( hero.belongings.backpack );
} else {
this.item = item.detach( hero.belongings.backpack );
if ( item instanceof Honeypot.ShatteredPot)
((Honeypot.ShatteredPot)item).pickupPot(this);
}
return true;
} else {
return false;
}
}
@Override
public String description() {
String desc = super.description();
if (item != null) {
desc += Messages.get(this, "carries", item.name() );
}
return desc;
}
private class Wandering extends Mob.Wandering {
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
super.act(enemyInFOV, justAlerted);
//if an enemy is just noticed and the thief posses an item, run, don't fight.
if (state == HUNTING && item != null){
state = FLEEING;
}
return true;
}
}
private class Fleeing extends Mob.Fleeing {
@Override
protected void nowhereToRun() {
if (buff( Terror.class ) == null && buff( Corruption.class ) == null) {
if (enemySeen) {
sprite.showStatus(CharSprite.NEGATIVE, Messages.get(Mob.class, "rage"));
state = HUNTING;
} else if (item != null
&& !Dungeon.level.heroFOV[pos]
&& Dungeon.level.distance(Dungeon.hero.pos, pos) >= 6) {
int count = 32;
int newPos;
do {
newPos = Dungeon.level.randomRespawnCell();
if (count-- <= 0) {
break;
}
} while (newPos == -1 || Dungeon.level.heroFOV[newPos] || Dungeon.level.distance(newPos, pos) < (count/3));
if (newPos != -1) {
if (Dungeon.level.heroFOV[pos]) CellEmitter.get(pos).burst(Speck.factory(Speck.WOOL), 6);
pos = newPos;
sprite.place( pos );
sprite.visible = Dungeon.level.heroFOV[pos];
if (Dungeon.level.heroFOV[pos]) CellEmitter.get(pos).burst(Speck.factory(Speck.WOOL), 6);
}
if (item != null) GLog.n( Messages.get(Thief.class, "escapes", item.name()));
item = null;
state = WANDERING;
} else {
state = WANDERING;
}
} else {
super.nowhereToRun();
}
}
}
}
| 6,162 | Thief | java | en | java | code | {"qsc_code_num_words": 718, "qsc_code_num_chars": 6162.0, "qsc_code_mean_word_length": 5.95961003, "qsc_code_frac_words_unique": 0.32590529, "qsc_code_frac_chars_top_2grams": 0.03575602, "qsc_code_frac_chars_top_3grams": 0.14208927, "qsc_code_frac_chars_top_4grams": 0.15424165, "qsc_code_frac_chars_dupe_5grams": 0.258939, "qsc_code_frac_chars_dupe_6grams": 0.09862117, "qsc_code_frac_chars_dupe_7grams": 0.05982706, "qsc_code_frac_chars_dupe_8grams": 0.05982706, "qsc_code_frac_chars_dupe_9grams": 0.03178313, "qsc_code_frac_chars_dupe_10grams": 0.03178313, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00955224, "qsc_code_frac_chars_whitespace": 0.18451801, "qsc_code_size_file_byte": 6162.0, "qsc_code_num_lines": 229.0, "qsc_code_num_chars_line_max": 113.0, "qsc_code_num_chars_line_mean": 26.90829694, "qsc_code_frac_chars_alphabet": 0.84199005, "qsc_code_frac_chars_comments": 0.14216164, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17575758, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00510783, "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.08484848, "qsc_codejava_score_lines_no_logic": 0.25454545, "qsc_codejava_frac_words_no_modifier": 0.82352941, "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/actors/mobs/npcs/Blacksmith.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.items.BrokenSeal;
import com.shatteredpixel.shatteredpixeldungeon.items.EquipableItem;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.DarkGold;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.Pickaxe;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.shatteredpixel.shatteredpixeldungeon.journal.Notes;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.BlacksmithRoom;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.BlacksmithSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndBlacksmith;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndQuest;
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.Random;
import java.util.ArrayList;
public class Blacksmith extends NPC {
{
spriteClass = BlacksmithSprite.class;
properties.add(Property.IMMOVABLE);
}
@Override
protected boolean act() {
throwItem();
return super.act();
}
@Override
public boolean interact() {
sprite.turnTo( pos, Dungeon.hero.pos );
if (!Quest.given) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndQuest( Blacksmith.this,
Quest.alternative ? Messages.get(Blacksmith.this, "blood_1") : Messages.get(Blacksmith.this, "gold_1") ) {
@Override
public void onBackPressed() {
super.onBackPressed();
Quest.given = true;
Quest.completed = false;
Pickaxe pick = new Pickaxe();
if (pick.doPickUp( Dungeon.hero )) {
GLog.i( Messages.get(Dungeon.hero, "you_now_have", pick.name() ));
} else {
Dungeon.level.drop( pick, Dungeon.hero.pos ).sprite.drop();
}
}
} );
}
});
Notes.add( Notes.Landmark.TROLL );
} else if (!Quest.completed) {
if (Quest.alternative) {
Pickaxe pick = Dungeon.hero.belongings.getItem( Pickaxe.class );
if (pick == null) {
tell( Messages.get(this, "lost_pick") );
} else if (!pick.bloodStained) {
tell( Messages.get(this, "blood_2") );
} else {
if (pick.isEquipped( Dungeon.hero )) {
pick.doUnequip( Dungeon.hero, false );
}
pick.detach( Dungeon.hero.belongings.backpack );
tell( Messages.get(this, "completed") );
Quest.completed = true;
Quest.reforged = false;
}
} else {
Pickaxe pick = Dungeon.hero.belongings.getItem( Pickaxe.class );
DarkGold gold = Dungeon.hero.belongings.getItem( DarkGold.class );
if (pick == null) {
tell( Messages.get(this, "lost_pick") );
} else if (gold == null || gold.quantity() < 15) {
tell( Messages.get(this, "gold_2") );
} else {
if (pick.isEquipped( Dungeon.hero )) {
pick.doUnequip( Dungeon.hero, false );
}
pick.detach( Dungeon.hero.belongings.backpack );
gold.detachAll( Dungeon.hero.belongings.backpack );
tell( Messages.get(this, "completed") );
Quest.completed = true;
Quest.reforged = false;
}
}
} else if (!Quest.reforged) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndBlacksmith( Blacksmith.this, Dungeon.hero ) );
}
});
} else {
tell( Messages.get(this, "get_lost") );
}
return false;
}
private void tell( String text ) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndQuest( Blacksmith.this, text ) );
}
});
}
public static String verify( Item item1, Item item2 ) {
if (item1 == item2 && (item1.quantity() == 1 && item2.quantity() == 1)) {
return Messages.get(Blacksmith.class, "same_item");
}
if (item1.getClass() != item2.getClass()) {
return Messages.get(Blacksmith.class, "diff_type");
}
if (!item1.isIdentified() || !item2.isIdentified()) {
return Messages.get(Blacksmith.class, "un_ided");
}
if (item1.cursed || item2.cursed) {
return Messages.get(Blacksmith.class, "cursed");
}
if (item1.level() < 0 || item2.level() < 0) {
return Messages.get(Blacksmith.class, "degraded");
}
if (!item1.isUpgradable() || !item2.isUpgradable()) {
return Messages.get(Blacksmith.class, "cant_reforge");
}
return null;
}
public static void upgrade( Item item1, Item item2 ) {
Item first, second;
if (item2.level() > item1.level()) {
first = item2;
second = item1;
} else {
first = item1;
second = item2;
}
Sample.INSTANCE.play( Assets.SND_EVOKE );
ScrollOfUpgrade.upgrade( Dungeon.hero );
Item.evoke( Dungeon.hero );
if (first.isEquipped( Dungeon.hero )) {
((EquipableItem)first).doUnequip( Dungeon.hero, true );
}
if (first instanceof MissileWeapon && first.quantity() > 1){
first = first.split(1);
}
first.level(first.level()+1); //prevents on-upgrade effects like enchant/glyph removal
if (first instanceof MissileWeapon && !Dungeon.hero.belongings.contains(first)) {
if (!first.collect()){
Dungeon.level.drop( first, Dungeon.hero.pos );
}
}
Dungeon.hero.spendAndNext( 2f );
Badges.validateItemLevelAquired( first );
if (second.isEquipped( Dungeon.hero )) {
((EquipableItem)second).doUnequip( Dungeon.hero, false );
}
second.detach( Dungeon.hero.belongings.backpack );
if (second instanceof Armor){
BrokenSeal seal = ((Armor) second).checkSeal();
if (seal != null){
Dungeon.level.drop( seal, Dungeon.hero.pos );
}
}
Quest.reforged = true;
Notes.remove( Notes.Landmark.TROLL );
}
@Override
public int defenseSkill( Char enemy ) {
return 100_000_000;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean reset() {
return true;
}
public static class Quest {
private static boolean spawned;
private static boolean alternative;
private static boolean given;
private static boolean completed;
private static boolean reforged;
public static void reset() {
spawned = false;
given = false;
completed = false;
reforged = false;
}
private static final String NODE = "blacksmith";
private static final String SPAWNED = "spawned";
private static final String ALTERNATIVE = "alternative";
private static final String GIVEN = "given";
private static final String COMPLETED = "completed";
private static final String REFORGED = "reforged";
public static void storeInBundle( Bundle bundle ) {
Bundle node = new Bundle();
node.put( SPAWNED, spawned );
if (spawned) {
node.put( ALTERNATIVE, alternative );
node.put( GIVEN, given );
node.put( COMPLETED, completed );
node.put( REFORGED, reforged );
}
bundle.put( NODE, node );
}
public static void restoreFromBundle( Bundle bundle ) {
Bundle node = bundle.getBundle( NODE );
if (!node.isNull() && (spawned = node.getBoolean( SPAWNED ))) {
alternative = node.getBoolean( ALTERNATIVE );
given = node.getBoolean( GIVEN );
completed = node.getBoolean( COMPLETED );
reforged = node.getBoolean( REFORGED );
} else {
reset();
}
}
public static ArrayList<Room> spawn( ArrayList<Room> rooms ) {
if (!spawned && Dungeon.depth > 11 && Random.Int( 15 - Dungeon.depth ) == 0) {
rooms.add(new BlacksmithRoom());
spawned = true;
alternative = Random.Int( 2 ) == 0;
given = false;
}
return rooms;
}
}
}
| 9,303 | Blacksmith | java | en | java | code | {"qsc_code_num_words": 1027, "qsc_code_num_chars": 9303.0, "qsc_code_mean_word_length": 6.17526777, "qsc_code_frac_words_unique": 0.25219085, "qsc_code_frac_chars_top_2grams": 0.03831599, "qsc_code_frac_chars_top_3grams": 0.13781142, "qsc_code_frac_chars_top_4grams": 0.15263324, "qsc_code_frac_chars_dupe_5grams": 0.2893409, "qsc_code_frac_chars_dupe_6grams": 0.17123936, "qsc_code_frac_chars_dupe_7grams": 0.12803532, "qsc_code_frac_chars_dupe_8grams": 0.12803532, "qsc_code_frac_chars_dupe_9grams": 0.11274046, "qsc_code_frac_chars_dupe_10grams": 0.11274046, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00949579, "qsc_code_frac_chars_whitespace": 0.19628077, "qsc_code_size_file_byte": 9303.0, "qsc_code_num_lines": 328.0, "qsc_code_num_chars_line_max": 114.0, "qsc_code_num_chars_line_mean": 28.36280488, "qsc_code_frac_chars_alphabet": 0.83870536, "qsc_code_frac_chars_comments": 0.08997098, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19341564, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02161588, "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.06584362, "qsc_codejava_score_lines_no_logic": 0.22633745, "qsc_codejava_frac_words_no_modifier": 0.94117647, "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} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/pubspec.yaml | name: firebase_realtimedb
description: A new Flutter application.
# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.3
firebase_auth: ^0.16.0
firebase_database: ^3.1.3
flutter_animation_progress_bar: ^1.0.0
wave_progress_widget: ^0.0.1
flutter_icons: ^1.1.0
marquee: ^1.3.1
dev_dependencies:
flutter_test:
sdk: flutter
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware.
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages
| 3,067 | pubspec | yaml | en | yaml | data | {"qsc_code_num_words": 451, "qsc_code_num_chars": 3067.0, "qsc_code_mean_word_length": 4.94456763, "qsc_code_frac_words_unique": 0.3902439, "qsc_code_frac_chars_top_2grams": 0.032287, "qsc_code_frac_chars_top_3grams": 0.02286996, "qsc_code_frac_chars_top_4grams": 0.02421525, "qsc_code_frac_chars_dupe_5grams": 0.09327354, "qsc_code_frac_chars_dupe_6grams": 0.05829596, "qsc_code_frac_chars_dupe_7grams": 0.05829596, "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.01557508, "qsc_code_frac_chars_whitespace": 0.183567, "qsc_code_size_file_byte": 3067.0, "qsc_code_num_lines": 82.0, "qsc_code_num_chars_line_max": 133.0, "qsc_code_num_chars_line_mean": 37.40243902, "qsc_code_frac_chars_alphabet": 0.875, "qsc_code_frac_chars_comments": 0.80795566, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19047619, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.03056027, "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": 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_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/actors/mobs/npcs/MirrorImage.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.ToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.CorrosiveGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Invisibility;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.MirrorSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class MirrorImage extends NPC {
{
spriteClass = MirrorSprite.class;
HP = HT = 1;
defenseSkill = 1;
alignment = Alignment.ALLY;
state = HUNTING;
//before other mobs
actPriority = MOB_PRIO + 1;
}
private Hero hero;
private int heroID;
public int armTier;
@Override
protected boolean act() {
if ( hero == null ){
hero = (Hero)Actor.findById(heroID);
if ( hero == null ){
die(null);
sprite.killAndErase();
return true;
}
}
if (hero.tier() != armTier){
armTier = hero.tier();
((MirrorSprite)sprite).updateArmor( armTier );
}
return super.act();
}
private static final String HEROID = "hero_id";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( HEROID, heroID );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
heroID = bundle.getInt( HEROID );
}
public void duplicate( Hero hero ) {
this.hero = hero;
heroID = this.hero.id();
Buff.affect(this, MirrorInvis.class, Short.MAX_VALUE);
}
@Override
public int damageRoll() {
int damage;
if (hero.belongings.weapon != null){
damage = hero.belongings.weapon.damageRoll(this);
} else {
damage = hero.damageRoll(); //handles ring of force
}
return (damage+1)/2; //half hero damage, rounded up
}
@Override
public int attackSkill( Char target ) {
return hero.attackSkill(target);
}
@Override
public int defenseSkill(Char enemy) {
if (hero != null) {
int baseEvasion = 4 + hero.lvl;
int heroEvasion = hero.defenseSkill(enemy);
//if the hero has more/less evasion, 50% of it is applied
return super.defenseSkill(enemy) * (baseEvasion + heroEvasion) / 2;
} else {
return 0;
}
}
@Override
protected float attackDelay() {
return hero.attackDelay(); //handles ring of furor
}
@Override
protected boolean canAttack(Char enemy) {
return super.canAttack(enemy) || (hero.belongings.weapon != null && hero.belongings.weapon.canReach(this, enemy.pos));
}
@Override
public int drRoll() {
if (hero != null && hero.belongings.weapon != null){
return Random.NormalIntRange(0, hero.belongings.weapon.defenseFactor(this)/2);
} else {
return 0;
}
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
MirrorInvis buff = buff(MirrorInvis.class);
if (buff != null){
buff.detach();
}
if (enemy instanceof Mob) {
((Mob)enemy).aggro( this );
}
if (hero.belongings.weapon != null){
return hero.belongings.weapon.proc( this, enemy, damage );
} else {
return damage;
}
}
@Override
public CharSprite sprite() {
CharSprite s = super.sprite();
//pre-0.7.0 saves
if (heroID == 0){
heroID = Dungeon.hero.id();
}
hero = (Hero)Actor.findById(heroID);
if (hero != null) {
armTier = hero.tier();
}
((MirrorSprite)s).updateArmor( armTier );
return s;
}
{
immunities.add( ToxicGas.class );
immunities.add( CorrosiveGas.class );
immunities.add( Burning.class );
}
public static class MirrorInvis extends Invisibility {
{
announced = false;
}
@Override
public int icon() {
return BuffIndicator.NONE;
}
}
} | 5,059 | MirrorImage | java | en | java | code | {"qsc_code_num_words": 596, "qsc_code_num_chars": 5059.0, "qsc_code_mean_word_length": 6.01342282, "qsc_code_frac_words_unique": 0.34395973, "qsc_code_frac_chars_top_2grams": 0.03766741, "qsc_code_frac_chars_top_3grams": 0.1484375, "qsc_code_frac_chars_top_4grams": 0.15959821, "qsc_code_frac_chars_dupe_5grams": 0.2547433, "qsc_code_frac_chars_dupe_6grams": 0.11300223, "qsc_code_frac_chars_dupe_7grams": 0.02064732, "qsc_code_frac_chars_dupe_8grams": 0.02064732, "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.00818882, "qsc_code_frac_chars_whitespace": 0.17928444, "qsc_code_size_file_byte": 5059.0, "qsc_code_num_lines": 199.0, "qsc_code_num_chars_line_max": 121.0, "qsc_code_num_chars_line_mean": 25.42211055, "qsc_code_frac_chars_alphabet": 0.85500963, "qsc_code_frac_chars_comments": 0.18778415, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.19444444, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00170316, "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.09027778, "qsc_codejava_score_lines_no_logic": 0.26388889, "qsc_codejava_frac_words_no_modifier": 0.92857143, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/pubspec.yaml | name: iot_firestore_flutter_app
description: www.that-project.com
# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
firebase_auth: ^3.1.0
firebase_core: ^1.6.0
cloud_firestore: ^2.5.1
google_fonts: ^2.1.0
adaptive_dialog: ^1.1.0
font_awesome_flutter: ^9.1.0
chart_sparkline: ^1.0.5
dev_dependencies:
flutter_test:
sdk: flutter
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
assets:
- assets/images/
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware.
# For details regarding adding assets from package dependencies, see
# https://flutter.dev/assets-and-images/#from-packages
# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages
| 3,112 | pubspec | yaml | en | yaml | data | {"qsc_code_num_words": 460, "qsc_code_num_chars": 3112.0, "qsc_code_mean_word_length": 4.89782609, "qsc_code_frac_words_unique": 0.39565217, "qsc_code_frac_chars_top_2grams": 0.00621394, "qsc_code_frac_chars_top_3grams": 0.02263648, "qsc_code_frac_chars_top_4grams": 0.02396804, "qsc_code_frac_chars_dupe_5grams": 0.09232135, "qsc_code_frac_chars_dupe_6grams": 0.05770084, "qsc_code_frac_chars_dupe_7grams": 0.05770084, "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.01654195, "qsc_code_frac_chars_whitespace": 0.18412596, "qsc_code_size_file_byte": 3112.0, "qsc_code_num_lines": 85.0, "qsc_code_num_chars_line_max": 133.0, "qsc_code_num_chars_line_mean": 36.61176471, "qsc_code_frac_chars_alphabet": 0.87081528, "qsc_code_frac_chars_comments": 0.79627249, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16666667, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02996845, "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": 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_chars_long_word_length": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/2_Firebase_Client/2_Firebase_Client.ino | /////////////////////////////////////////////////////////////////
/*
ESP32 | Cloud Firestore - Ep 2. Firebase Client
Video Tutorial: https://youtu.be/KiF9uGFkA_o
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
// 05-06-2024
// Code Updated - Network Class
// Tested ESP32 Version - 2.0.16
#include "DHTesp.h" // Click here to get the library: http://librarymanager/All#DHTesp
#include <Ticker.h>
#include "Display.h"
#include "Network.h"
#ifndef ESP32
#pragma message(THIS EXAMPLE IS FOR ESP32 ONLY!)
#error Select ESP32 board.
#endif
/**************************************************************/
/* Example how to read DHT sensors from an ESP32 using multi- */
/* tasking. */
/* This example depends on the Ticker library to wake up */
/* the task every 20 seconds */
/**************************************************************/
Display *display;
Network *network;
DHTesp dht;
void tempTask(void *pvParameters);
bool getTemperature();
void triggerGetTemp();
/** Task handle for the light value read task */
TaskHandle_t tempTaskHandle = NULL;
/** Ticker for temperature reading */
Ticker tempTicker;
/** Comfort profile */
ComfortState cf;
/** Flag if task should run */
bool tasksEnabled = false;
/** Pin number for DHT11 data pin */
int dhtPin = 21;
/**
* initTemp
* Setup DHT library
* Setup task and timer for repeated measurement
* @return bool
* true if task and timer are started
* false if task or timer couldn't be started
*/
bool initTemp() {
byte resultValue = 0;
// Initialize temperature sensor
dht.setup(dhtPin, DHTesp::DHT11);
Serial.println("DHT initiated");
// Start task to get temperature
xTaskCreatePinnedToCore(
tempTask, /* Function to implement the task */
"tempTask ", /* Name of the task */
10000, /* Stack size in words */
NULL, /* Task input parameter */
5, /* Priority of the task */
&tempTaskHandle, /* Task handle. */
1); /* Core where the task should run */
if (tempTaskHandle == NULL) {
Serial.println("Failed to start task for temperature update");
return false;
} else {
// Start update of environment data every 20 seconds
tempTicker.attach(20, triggerGetTemp);
}
return true;
}
/**
* triggerGetTemp
* Sets flag dhtUpdated to true for handling in loop()
* called by Ticker getTempTimer
*/
void triggerGetTemp() {
if (tempTaskHandle != NULL) {
xTaskResumeFromISR(tempTaskHandle);
}
}
/**
* Task to reads temperature from DHT11 sensor
* @param pvParameters
* pointer to task parameters
*/
void tempTask(void *pvParameters) {
Serial.println("tempTask loop started");
while (1) // tempTask loop
{
if (tasksEnabled) {
// Get temperature values
getTemperature();
}
// Got sleep again
vTaskSuspend(NULL);
}
}
/**
* getTemperature
* Reads temperature from DHT11 sensor
* @return bool
* true if temperature could be aquired
* false if aquisition failed
*/
bool getTemperature() {
// Reading temperature for humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (it's a very slow sensor)
TempAndHumidity newValues = dht.getTempAndHumidity();
// Check if any reads failed and exit early (to try again).
if (dht.getStatus() != 0) {
Serial.println("DHT11 error status: " + String(dht.getStatusString()));
return false;
}
float heatIndex = dht.computeHeatIndex(newValues.temperature, newValues.humidity);
float dewPoint = dht.computeDewPoint(newValues.temperature, newValues.humidity);
float cr = dht.getComfortRatio(cf, newValues.temperature, newValues.humidity);
String comfortStatus;
switch(cf) {
case Comfort_OK:
comfortStatus = "OK";
break;
case Comfort_TooHot:
comfortStatus = "TooHot";
break;
case Comfort_TooCold:
comfortStatus = "TooCold";
break;
case Comfort_TooDry:
comfortStatus = "TooDry";
break;
case Comfort_TooHumid:
comfortStatus = "TooHumid";
break;
case Comfort_HotAndHumid:
comfortStatus = "Hot&Humid";
break;
case Comfort_HotAndDry:
comfortStatus = "Hot&Dry";
break;
case Comfort_ColdAndHumid:
comfortStatus = "Cold&Humid";
break;
case Comfort_ColdAndDry:
comfortStatus = "Cold&Dry";
break;
default:
comfortStatus = "Unknown";
break;
};
Serial.println(" T:" + String(newValues.temperature) + " H:" + String(newValues.humidity) + " I:" + String(heatIndex) + " D:" + String(dewPoint) + " " + comfortStatus);
display->tempUpdates("Temp " + String(newValues.temperature, 1) +"'C",
"Humidity " + String(newValues.humidity,0) + "%",
comfortStatus);
network->firestoreDataUpdate(newValues.temperature, newValues.humidity);
return true;
}
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println("DHT ESP32 example with tasks");
initDisplay();
initNetwork();
initTemp();
// Signal end of setup() to tasks
tasksEnabled = true;
}
void loop() {
if (!tasksEnabled) {
// Wait 2 seconds to let system settle down
delay(2000);
// Enable task that will read values from the DHT sensor
tasksEnabled = true;
if (tempTaskHandle != NULL) {
vTaskResume(tempTaskHandle);
}
}
yield();
}
void initDisplay(){
display = new Display();
display->initTFT();
display->centerMsg("System Init...");
}
void initNetwork(){
network = new Network();
network->initWiFi();
}
| 5,761 | 2_Firebase_Client | ino | en | cpp | code | {"qsc_code_num_words": 601, "qsc_code_num_chars": 5761.0, "qsc_code_mean_word_length": 5.88519135, "qsc_code_frac_words_unique": 0.41763727, "qsc_code_frac_chars_top_2grams": 0.02798982, "qsc_code_frac_chars_top_3grams": 0.03618886, "qsc_code_frac_chars_top_4grams": 0.04184337, "qsc_code_frac_chars_dupe_5grams": 0.04127792, "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.01650837, "qsc_code_frac_chars_whitespace": 0.23242493, "qsc_code_size_file_byte": 5761.0, "qsc_code_num_lines": 220.0, "qsc_code_num_chars_line_max": 171.0, "qsc_code_num_chars_line_mean": 26.18636364, "qsc_code_frac_chars_alphabet": 0.78335595, "qsc_code_frac_chars_comments": 0.39159868, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.13740458, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.07833047, "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.0610687, "qsc_codecpp_frac_lines_func_ratio": 0.10687023, "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.16793893, "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/actors/mobs/Brute.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.BruteSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class Brute extends Mob {
{
spriteClass = BruteSprite.class;
HP = HT = 40;
defenseSkill = 15;
EXP = 8;
maxLvl = 16;
loot = Gold.class;
lootChance = 0.5f;
}
private boolean enraged = false;
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
enraged = HP < HT / 4;
}
@Override
public int damageRoll() {
return enraged ?
Random.NormalIntRange( 15, 45 ) :
Random.NormalIntRange( 6, 26 );
}
@Override
public int attackSkill( Char target ) {
return 20;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 8);
}
@Override
public void damage( int dmg, Object src ) {
super.damage( dmg, src );
if (isAlive() && !enraged && HP < HT / 4) {
enraged = true;
spend( TICK );
if (Dungeon.level.heroFOV[pos]) {
sprite.showStatus( CharSprite.NEGATIVE, Messages.get(this, "enraged") );
}
}
}
{
immunities.add( Terror.class );
}
}
| 2,340 | Brute | java | en | java | code | {"qsc_code_num_words": 289, "qsc_code_num_chars": 2340.0, "qsc_code_mean_word_length": 5.86851211, "qsc_code_frac_words_unique": 0.52941176, "qsc_code_frac_chars_top_2grams": 0.04775943, "qsc_code_frac_chars_top_3grams": 0.17924528, "qsc_code_frac_chars_top_4grams": 0.18160377, "qsc_code_frac_chars_dupe_5grams": 0.16745283, "qsc_code_frac_chars_dupe_6grams": 0.03301887, "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.02032308, "qsc_code_frac_chars_whitespace": 0.17991453, "qsc_code_size_file_byte": 2340.0, "qsc_code_num_lines": 89.0, "qsc_code_num_chars_line_max": 77.0, "qsc_code_num_chars_line_mean": 26.29213483, "qsc_code_frac_chars_alphabet": 0.86347056, "qsc_code_frac_chars_comments": 0.33376068, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.09090909, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00449006, "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.09090909, "qsc_codejava_score_lines_no_logic": 0.29090909, "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": 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/actors/mobs/OldTengu.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.TomeOfMastery;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.LloydsBeacon;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.OldPrisonBossLevel;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrippingTrap;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.TenguSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
//Exists to support pre-0.7.5 saves
public class OldTengu extends Mob {
{
spriteClass = TenguSprite.class;
HP = HT = 120;
EXP = 20;
defenseSkill = 20;
HUNTING = new Hunting();
flying = true; //doesn't literally fly, but he is fleet-of-foot enough to avoid hazards
properties.add(Property.BOSS);
}
@Override
protected void onAdd() {
//when he's removed and re-added to the fight, his time is always set to now.
spend(-cooldown());
super.onAdd();
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 6, 20 );
}
@Override
public int attackSkill( Char target ) {
return 20;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
@Override
public void damage(int dmg, Object src) {
OldPrisonBossLevel.State state = ((OldPrisonBossLevel)Dungeon.level).state();
int hpBracket;
if (state == OldPrisonBossLevel.State.FIGHT_START){
hpBracket = 12;
} else {
hpBracket = 20;
}
int beforeHitHP = HP;
super.damage(dmg, src);
dmg = beforeHitHP - HP;
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) {
int multiple = state == OldPrisonBossLevel.State.FIGHT_START ? 1 : 4;
lock.addTime(dmg*multiple);
}
//phase 2 of the fight is over
if (HP == 0 && state == OldPrisonBossLevel.State.FIGHT_ARENA) {
//let full attack action complete first
Actor.add(new Actor() {
{
actPriority = VFX_PRIO;
}
@Override
protected boolean act() {
Actor.remove(this);
((OldPrisonBossLevel)Dungeon.level).progress();
return true;
}
});
return;
}
//phase 1 of the fight is over
if (state == OldPrisonBossLevel.State.FIGHT_START && HP <= HT/2){
HP = (HT/2)-1;
yell(Messages.get(this, "interesting"));
((OldPrisonBossLevel)Dungeon.level).progress();
BossHealthBar.bleed(true);
//if tengu has lost a certain amount of hp, jump
} else if (beforeHitHP / hpBracket != HP / hpBracket) {
jump();
}
}
@Override
public boolean isAlive() {
return Dungeon.level.mobs.contains(this); //Tengu has special death rules, see prisonbosslevel.progress()
}
@Override
public void die( Object cause ) {
if (Dungeon.hero.subClass == HeroSubClass.NONE) {
Dungeon.level.drop( new TomeOfMastery(), pos ).sprite.drop();
}
GameScene.bossSlain();
super.die( cause );
Badges.validateBossSlain();
LloydsBeacon beacon = Dungeon.hero.belongings.getItem(LloydsBeacon.class);
if (beacon != null) {
beacon.upgrade();
}
yell( Messages.get(this, "defeated") );
}
@Override
protected boolean canAttack( Char enemy ) {
return new Ballistica( pos, enemy.pos, Ballistica.PROJECTILE).collisionPos == enemy.pos;
}
//tengu's attack is always visible
@Override
protected boolean doAttack(Char enemy) {
sprite.attack( enemy.pos );
spend( attackDelay() );
return false;
}
private void jump() {
Level level = Dungeon.level;
//incase tengu hasn't had a chance to act yet
if (fieldOfView == null || fieldOfView.length != Dungeon.level.length()){
fieldOfView = new boolean[Dungeon.level.length()];
Dungeon.level.updateFieldOfView( this, fieldOfView );
}
if (enemy == null) enemy = chooseEnemy();
if (enemy == null) return;
int newPos;
//if we're in phase 1, want to warp around within the room
if (((OldPrisonBossLevel)Dungeon.level).state() == OldPrisonBossLevel.State.FIGHT_START) {
//place new traps
int tries;
for (int i=0; i < 4; i++) {
int trapPos;
tries = 15;
do {
trapPos = Random.Int( level.length() );
} while (tries-- > 0 && level.map[trapPos] != Terrain.INACTIVE_TRAP
&& level.map[trapPos] != Terrain.TRAP);
if (level.map[trapPos] == Terrain.INACTIVE_TRAP) {
level.setTrap( new GrippingTrap().reveal(), trapPos );
Level.set( trapPos, Terrain.TRAP );
ScrollOfMagicMapping.discover( trapPos );
}
}
tries = 50;
do {
newPos = Random.IntRange(3, 7) + 32*Random.IntRange(26, 30);
} while ( (level.adjacent(newPos, enemy.pos) || Actor.findChar(newPos) != null)
&& --tries > 0);
if (tries <= 0) return;
//otherwise go wherever, as long as it's a little bit away
} else {
do {
newPos = Random.Int(level.length());
} while (
level.solid[newPos] ||
level.distance(newPos, enemy.pos) < 8 ||
Actor.findChar(newPos) != null);
}
if (level.heroFOV[pos]) CellEmitter.get( pos ).burst( Speck.factory( Speck.WOOL ), 6 );
sprite.move( pos, newPos );
move( newPos );
if (level.heroFOV[newPos]) CellEmitter.get( newPos ).burst( Speck.factory( Speck.WOOL ), 6 );
Sample.INSTANCE.play( Assets.SND_PUFF );
spend( 1 / speed() );
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
if (HP <= HT/2) BossHealthBar.bleed(true);
if (HP == HT) {
yell(Messages.get(this, "notice_mine", Dungeon.hero.givenName()));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
} else {
yell(Messages.get(this, "notice_face", Dungeon.hero.givenName()));
}
}
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
BossHealthBar.assignBoss(this);
if (HP <= HT/2) BossHealthBar.bleed(true);
}
//tengu is always hunting
private class Hunting extends Mob.Hunting{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
enemySeen = enemyInFOV;
if (enemyInFOV && !isCharmedBy( enemy ) && canAttack( enemy )) {
return doAttack( enemy );
} else {
if (enemyInFOV) {
target = enemy.pos;
} else {
chooseEnemy();
if (enemy != null) {
target = enemy.pos;
}
}
spend( TICK );
return true;
}
}
}
}
| 8,413 | OldTengu | java | en | java | code | {"qsc_code_num_words": 986, "qsc_code_num_chars": 8413.0, "qsc_code_mean_word_length": 5.96551724, "qsc_code_frac_words_unique": 0.34077079, "qsc_code_frac_chars_top_2grams": 0.03978239, "qsc_code_frac_chars_top_3grams": 0.1550493, "qsc_code_frac_chars_top_4grams": 0.17205032, "qsc_code_frac_chars_dupe_5grams": 0.22645359, "qsc_code_frac_chars_dupe_6grams": 0.09010541, "qsc_code_frac_chars_dupe_7grams": 0.03230194, "qsc_code_frac_chars_dupe_8grams": 0.01904114, "qsc_code_frac_chars_dupe_9grams": 0.01904114, "qsc_code_frac_chars_dupe_10grams": 0.01904114, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01013025, "qsc_code_frac_chars_whitespace": 0.17865209, "qsc_code_size_file_byte": 8413.0, "qsc_code_num_lines": 297.0, "qsc_code_num_chars_line_max": 108.0, "qsc_code_num_chars_line_mean": 28.32659933, "qsc_code_frac_chars_alphabet": 0.84109986, "qsc_code_frac_chars_comments": 0.16783549, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.14553991, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00614198, "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.07042254, "qsc_codejava_score_lines_no_logic": 0.24413146, "qsc_codejava_frac_words_no_modifier": 0.82352941, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/2_Firebase_Client/Network.cpp | #include "Network.h"
#include "addons/TokenHelper.h"
#define WIFI_SSID "<YOUR_WIFI_SSID>"
#define WIFI_PASSWORD "<YOUR_WIFI_PASSWORD>"
#define API_KEY "<YOUR_WEB_API_KEY>"
#define FIREBASE_PROJECT_ID "<YOUR_PROJECT_ID>"
#define USER_EMAIL "<YOUR_USER_EMAIL>"
#define USER_PASSWORD "<YOUR_USER_PASSWORD>"
static Network *instance = NULL;
Network::Network(){
instance = this;
}
void WiFiEventConnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("WIFI CONNECTED! BUT WAIT FOR THE LOCAL IP ADDR");
}
void WiFiEventGotIP(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.print("LOCAL IP ADDRESS: ");
Serial.println(WiFi.localIP());
instance->firebaseInit();
}
void WiFiEventDisconnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("WIFI DISCONNECTED!");
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
}
void FirestoreTokenStatusCallback(TokenInfo info){
Serial.printf("Token Info: type = %s, status = %s\n", getTokenType(info), getTokenStatus(info));
}
void Network::initWiFi(){
WiFi.disconnect();
WiFi.onEvent(WiFiEventConnected, ARDUINO_EVENT_WIFI_STA_CONNECTED);
WiFi.onEvent(WiFiEventGotIP, ARDUINO_EVENT_WIFI_STA_GOT_IP);
WiFi.onEvent(WiFiEventDisconnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
}
void Network::firebaseInit(){
config.api_key = API_KEY;
auth.user.email = USER_EMAIL;
auth.user.password = USER_PASSWORD;
config.token_status_callback = FirestoreTokenStatusCallback;
Firebase.begin(&config, &auth);
}
void Network::firestoreDataUpdate(double temp, double humi){
if(WiFi.status() == WL_CONNECTED && Firebase.ready()){
String documentPath = "House/Room_1";
FirebaseJson content;
content.set("fields/temperature/doubleValue", String(temp).c_str());
content.set("fields/humidity/doubleValue", String(humi).c_str());
if(Firebase.Firestore.patchDocument(&fbdo, FIREBASE_PROJECT_ID, "", documentPath.c_str(), content.raw(), "temperature,humidity")){
Serial.printf("ok\n%s\n\n", fbdo.payload().c_str());
return;
}else{
Serial.println(fbdo.errorReason());
}
if(Firebase.Firestore.createDocument(&fbdo, FIREBASE_PROJECT_ID, "", documentPath.c_str(), content.raw())){
Serial.printf("ok\n%s\n\n", fbdo.payload().c_str());
return;
}else{
Serial.println(fbdo.errorReason());
}
}
}
| 2,383 | Network | cpp | en | cpp | code | {"qsc_code_num_words": 290, "qsc_code_num_chars": 2383.0, "qsc_code_mean_word_length": 5.79310345, "qsc_code_frac_words_unique": 0.33448276, "qsc_code_frac_chars_top_2grams": 0.01428571, "qsc_code_frac_chars_top_3grams": 0.03035714, "qsc_code_frac_chars_top_4grams": 0.05, "qsc_code_frac_chars_dupe_5grams": 0.27678571, "qsc_code_frac_chars_dupe_6grams": 0.27678571, "qsc_code_frac_chars_dupe_7grams": 0.27678571, "qsc_code_frac_chars_dupe_8grams": 0.25357143, "qsc_code_frac_chars_dupe_9grams": 0.2, "qsc_code_frac_chars_dupe_10grams": 0.08452381, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.000481, "qsc_code_frac_chars_whitespace": 0.12757029, "qsc_code_size_file_byte": 2383.0, "qsc_code_num_lines": 92.0, "qsc_code_num_chars_line_max": 135.0, "qsc_code_num_chars_line_mean": 25.90217391, "qsc_code_frac_chars_alphabet": 0.80759981, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16393443, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.1535865, "qsc_code_frac_chars_long_word_length": 0.02405063, "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.13114754, "qsc_codecpp_frac_lines_func_ratio": 0.06557377, "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.13114754, "qsc_codecpp_frac_lines_print": 0.04918033} | 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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/3_Display_Done/Display.cpp | #include "Display.h"
static Display* instance = NULL;
Display::Display(){
instance = this;
tft = new TFT_eSPI();
}
Display::~Display(){
delete tft;
}
bool tft_output(int16_t x, int16_t y, uint16_t w, uint16_t h, uint16_t * bitmap){
if (y >= instance->tft->height()) return 0;
instance->tft->pushImage(x, y, w, h, bitmap);
return 1;
}
void Display::initTFT(){
tft->init();
tft->fillScreen(TFT_BLACK);
tft->setRotation(1);
tft->setTextColor(TFT_WHITE, TFT_BLACK);
tft->setTextDatum(MC_DATUM);
tft->setFreeFont(&Orbitron_Light_24);
TJpgDec.setJpgScale(1);
TJpgDec.setSwapBytes(true);
TJpgDec.setCallback(tft_output);
if(!SPIFFS.begin()){
while(1) yield();
}
}
void Display::centerMsg(String text){
tft->drawString(text, tft->width()/2, 60);
}
void Display::tempUpdates(String temp, String hum, String status){
tft->setTextPadding(tft->width());
tft->drawString(temp, tft->width()/2, 40);
tft->drawString(hum, tft->width()/2, 70);
tft->drawString(status, tft->width()/2, 110);
}
void Display::showWiFiIcon(bool isOn){
tft->fillRect(tft->width() -30, 0, 30, 30, TFT_BLACK);
TJpgDec.drawFsJpg(tft->width() -30, 0, isOn ? "/icon_wifi_on.jpg" : "/icon_wifi_off.jpg");
}
void Display::showFirebaseIcon(bool isOn){
tft->fillRect(tft->width() -60, 0, 30, 30, TFT_BLACK);
TJpgDec.drawFsJpg(tft->width() -60, 0, isOn ? "/icon_firebase_on.jpg" : "/icon_firebase_off.jpg");
}
| 1,438 | Display | cpp | en | cpp | code | {"qsc_code_num_words": 203, "qsc_code_num_chars": 1438.0, "qsc_code_mean_word_length": 4.62068966, "qsc_code_frac_words_unique": 0.37931034, "qsc_code_frac_chars_top_2grams": 0.07675906, "qsc_code_frac_chars_top_3grams": 0.03837953, "qsc_code_frac_chars_top_4grams": 0.04051173, "qsc_code_frac_chars_dupe_5grams": 0.13646055, "qsc_code_frac_chars_dupe_6grams": 0.13646055, "qsc_code_frac_chars_dupe_7grams": 0.07889126, "qsc_code_frac_chars_dupe_8grams": 0.07889126, "qsc_code_frac_chars_dupe_9grams": 0.07889126, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.04042037, "qsc_code_frac_chars_whitespace": 0.13977747, "qsc_code_size_file_byte": 1438.0, "qsc_code_num_lines": 66.0, "qsc_code_num_chars_line_max": 101.0, "qsc_code_num_chars_line_mean": 21.78787879, "qsc_code_frac_chars_alphabet": 0.7178658, "qsc_code_frac_chars_comments": 0.0, "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.06092437, "qsc_code_frac_chars_long_word_length": 0.03011204, "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.02222222, "qsc_codecpp_frac_lines_func_ratio": 0.04444444, "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.08888889, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/3_Display_Done/3_Display_Done.ino | /////////////////////////////////////////////////////////////////
/*
ESP32 | Cloud Firestore - Ep 3. Status Icons on Display
Video Tutorial: https://youtu.be/LR_FgObfuCw
Created by Eric N. (ThatProject)
*/
/////////////////////////////////////////////////////////////////
// 05-06-2024
// Code Updated - Network Class
// Tested ESP32 Version - 2.0.16
#include "DHTesp.h" // Click here to get the library: http://librarymanager/All#DHTesp
#include <Ticker.h>
#include "Display.h"
#include "Network.h"
#ifndef ESP32
#pragma message(THIS EXAMPLE IS FOR ESP32 ONLY!)
#error Select ESP32 board.
#endif
/**************************************************************/
/* Example how to read DHT sensors from an ESP32 using multi- */
/* tasking. */
/* This example depends on the Ticker library to wake up */
/* the task every 20 seconds */
/**************************************************************/
Display *display;
Network *network;
DHTesp dht;
void tempTask(void *pvParameters);
bool getTemperature();
void triggerGetTemp();
/** Task handle for the light value read task */
TaskHandle_t tempTaskHandle = NULL;
/** Ticker for temperature reading */
Ticker tempTicker;
/** Comfort profile */
ComfortState cf;
/** Flag if task should run */
bool tasksEnabled = false;
/** Pin number for DHT11 data pin */
int dhtPin = 21;
/**
* initTemp
* Setup DHT library
* Setup task and timer for repeated measurement
* @return bool
* true if task and timer are started
* false if task or timer couldn't be started
*/
bool initTemp() {
byte resultValue = 0;
// Initialize temperature sensor
dht.setup(dhtPin, DHTesp::DHT11);
Serial.println("DHT initiated");
// Start task to get temperature
xTaskCreatePinnedToCore(
tempTask, /* Function to implement the task */
"tempTask ", /* Name of the task */
10000, /* Stack size in words */
NULL, /* Task input parameter */
5, /* Priority of the task */
&tempTaskHandle, /* Task handle. */
1); /* Core where the task should run */
if (tempTaskHandle == NULL) {
Serial.println("Failed to start task for temperature update");
return false;
} else {
// Start update of environment data every 20 seconds
tempTicker.attach(20, triggerGetTemp);
}
return true;
}
/**
* triggerGetTemp
* Sets flag dhtUpdated to true for handling in loop()
* called by Ticker getTempTimer
*/
void triggerGetTemp() {
if (tempTaskHandle != NULL) {
xTaskResumeFromISR(tempTaskHandle);
}
}
/**
* Task to reads temperature from DHT11 sensor
* @param pvParameters
* pointer to task parameters
*/
void tempTask(void *pvParameters) {
Serial.println("tempTask loop started");
while (1) // tempTask loop
{
if (tasksEnabled) {
// Get temperature values
getTemperature();
}
// Got sleep again
vTaskSuspend(NULL);
}
}
/**
* getTemperature
* Reads temperature from DHT11 sensor
* @return bool
* true if temperature could be aquired
* false if aquisition failed
*/
bool getTemperature() {
// Reading temperature for humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (it's a very slow sensor)
TempAndHumidity newValues = dht.getTempAndHumidity();
// Check if any reads failed and exit early (to try again).
if (dht.getStatus() != 0) {
Serial.println("DHT11 error status: " + String(dht.getStatusString()));
return false;
}
float heatIndex = dht.computeHeatIndex(newValues.temperature, newValues.humidity);
float dewPoint = dht.computeDewPoint(newValues.temperature, newValues.humidity);
float cr = dht.getComfortRatio(cf, newValues.temperature, newValues.humidity);
String comfortStatus;
switch(cf) {
case Comfort_OK:
comfortStatus = "OK";
break;
case Comfort_TooHot:
comfortStatus = "TooHot";
break;
case Comfort_TooCold:
comfortStatus = "TooCold";
break;
case Comfort_TooDry:
comfortStatus = "TooDry";
break;
case Comfort_TooHumid:
comfortStatus = "TooHumid";
break;
case Comfort_HotAndHumid:
comfortStatus = "Hot&Humid";
break;
case Comfort_HotAndDry:
comfortStatus = "Hot&Dry";
break;
case Comfort_ColdAndHumid:
comfortStatus = "Cold&Humid";
break;
case Comfort_ColdAndDry:
comfortStatus = "Cold&Dry";
break;
default:
comfortStatus = "Unknown";
break;
};
Serial.println(" T:" + String(newValues.temperature) + " H:" + String(newValues.humidity) + " I:" + String(heatIndex) + " D:" + String(dewPoint) + " " + comfortStatus);
display->tempUpdates("Temp " + String(newValues.temperature, 1) +"'C",
"Humidity " + String(newValues.humidity,0) + "%",
comfortStatus);
network->firestoreDataUpdate(newValues.temperature, newValues.humidity);
return true;
}
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.println("DHT ESP32 example with tasks");
initDisplay();
initNetwork();
initTemp();
// Signal end of setup() to tasks
tasksEnabled = true;
}
void loop() {
if (!tasksEnabled) {
// Wait 2 seconds to let system settle down
delay(2000);
// Enable task that will read values from the DHT sensor
tasksEnabled = true;
if (tempTaskHandle != NULL) {
vTaskResume(tempTaskHandle);
}
}
yield();
}
void initDisplay(){
display = new Display();
display->initTFT();
display->showWiFiIcon(false);
display->showFirebaseIcon(false);
display->centerMsg("System Init...");
}
void initNetwork(){
void (*ptr)(Network_State_t) = &networkEvent;
network = new Network(ptr);
network->initWiFi();
}
void networkEvent(Network_State_t event){
switch(event){
case NETWORK_CONNECTED:
display->showWiFiIcon(true);
break;
case NETWORK_DISCONNECTED:
display->showWiFiIcon(false);
break;
case FIREBASE_CONNECTED:
display->showFirebaseIcon(true);
break;
case FIREBASE_DISCONNECTED:
display->showFirebaseIcon(false);
break;
default: break;
}
}
| 6,312 | 3_Display_Done | ino | en | cpp | code | {"qsc_code_num_words": 654, "qsc_code_num_chars": 6312.0, "qsc_code_mean_word_length": 5.9587156, "qsc_code_frac_words_unique": 0.39755352, "qsc_code_frac_chars_top_2grams": 0.02540416, "qsc_code_frac_chars_top_3grams": 0.03284578, "qsc_code_frac_chars_top_4grams": 0.03797793, "qsc_code_frac_chars_dupe_5grams": 0.03746472, "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.01485761, "qsc_code_frac_chars_whitespace": 0.23225602, "qsc_code_size_file_byte": 6312.0, "qsc_code_num_lines": 252.0, "qsc_code_num_chars_line_max": 171.0, "qsc_code_num_chars_line_mean": 25.04761905, "qsc_code_frac_chars_alphabet": 0.78931077, "qsc_code_frac_chars_comments": 0.35868188, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17218543, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.06799007, "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.05298013, "qsc_codecpp_frac_lines_func_ratio": 0.09933775, "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.15231788, "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} |
0015/ThatProject | FIREBASE/Cloud_Firestore_Application/3_Display_Done/Network.cpp | #include "Network.h"
#include "addons/TokenHelper.h"
#define WIFI_SSID "<YOUR_WIFI_SSID>"
#define WIFI_PASSWORD "<YOUR_WIFI_PASSWORD>"
#define API_KEY "<YOUR_WEB_API_KEY>"
#define FIREBASE_PROJECT_ID "<YOUR_PROJECT_ID>"
#define USER_EMAIL "<YOUR_USER_EMAIL>"
#define USER_PASSWORD "<YOUR_USER_PASSWORD>"
static Network *instance = NULL;
Network::Network(){}
Network::Network(FuncPtrInt f){
instance = this;
callBackEvent = f;
}
void WiFiEventConnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("WIFI CONNECTED! BUT WAIT FOR THE LOCAL IP ADDR");
}
void WiFiEventGotIP(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.print("LOCAL IP ADDRESS: ");
Serial.println(WiFi.localIP());
instance->callBackEvent(NETWORK_CONNECTED);
instance->firebaseInit();
}
void WiFiEventDisconnected(WiFiEvent_t event, WiFiEventInfo_t info){
Serial.println("WIFI DISCONNECTED!");
instance->callBackEvent(NETWORK_DISCONNECTED);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
}
void FirestoreTokenStatusCallback(TokenInfo info){
Serial.printf("Token Info: type = %s, status = %s\n", getTokenType(info), getTokenStatus(info));
if(info.status == token_status_ready){
instance->callBackEvent(FIREBASE_CONNECTED);
}else{
instance->callBackEvent(FIREBASE_DISCONNECTED);
}
}
void Network::initWiFi(){
WiFi.disconnect();
WiFi.onEvent(WiFiEventConnected, ARDUINO_EVENT_WIFI_STA_CONNECTED);
WiFi.onEvent(WiFiEventGotIP, ARDUINO_EVENT_WIFI_STA_GOT_IP);
WiFi.onEvent(WiFiEventDisconnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
}
void Network::firebaseInit(){
config.api_key = API_KEY;
auth.user.email = USER_EMAIL;
auth.user.password = USER_PASSWORD;
config.token_status_callback = FirestoreTokenStatusCallback;
Firebase.begin(&config, &auth);
}
void Network::firestoreDataUpdate(double temp, double humi){
if(WiFi.status() == WL_CONNECTED && Firebase.ready()){
String documentPath = "House/Room_1";
FirebaseJson content;
content.set("fields/temperature/doubleValue", String(temp).c_str());
content.set("fields/humidity/doubleValue", String(humi).c_str());
if(Firebase.Firestore.patchDocument(&fbdo, FIREBASE_PROJECT_ID, "", documentPath.c_str(), content.raw(), "temperature,humidity")){
Serial.printf("ok\n%s\n\n", fbdo.payload().c_str());
return;
}else{
Serial.println(fbdo.errorReason());
}
if(Firebase.Firestore.createDocument(&fbdo, FIREBASE_PROJECT_ID, "", documentPath.c_str(), content.raw())){
Serial.printf("ok\n%s\n\n", fbdo.payload().c_str());
return;
}else{
Serial.println(fbdo.errorReason());
}
}
}
| 2,688 | Network | cpp | en | cpp | code | {"qsc_code_num_words": 319, "qsc_code_num_chars": 2688.0, "qsc_code_mean_word_length": 5.97805643, "qsc_code_frac_words_unique": 0.31347962, "qsc_code_frac_chars_top_2grams": 0.01258521, "qsc_code_frac_chars_top_3grams": 0.02674358, "qsc_code_frac_chars_top_4grams": 0.04404824, "qsc_code_frac_chars_dupe_5grams": 0.24383849, "qsc_code_frac_chars_dupe_6grams": 0.24383849, "qsc_code_frac_chars_dupe_7grams": 0.24383849, "qsc_code_frac_chars_dupe_8grams": 0.22338752, "qsc_code_frac_chars_dupe_9grams": 0.17619297, "qsc_code_frac_chars_dupe_10grams": 0.07446251, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00042571, "qsc_code_frac_chars_whitespace": 0.12611607, "qsc_code_size_file_byte": 2688.0, "qsc_code_num_lines": 102.0, "qsc_code_num_chars_line_max": 135.0, "qsc_code_num_chars_line_mean": 26.35294118, "qsc_code_frac_chars_alphabet": 0.81140911, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15714286, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.13607477, "qsc_code_frac_chars_long_word_length": 0.02130841, "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.11428571, "qsc_codecpp_frac_lines_func_ratio": 0.05714286, "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.11428571, "qsc_codecpp_frac_lines_print": 0.04285714} | 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/actors/mobs/npcs/Imp.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Golem;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Monk;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.DwarfToken;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.Ring;
import com.shatteredpixel.shatteredpixeldungeon.journal.Notes;
import com.shatteredpixel.shatteredpixeldungeon.levels.CityLevel;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ImpSprite;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndImp;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndQuest;
import com.watabou.noosa.Game;
import com.watabou.utils.Bundle;
import com.watabou.utils.Callback;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Imp extends NPC {
{
spriteClass = ImpSprite.class;
properties.add(Property.IMMOVABLE);
}
private boolean seenBefore = false;
@Override
protected boolean act() {
if (!Quest.given && Dungeon.level.heroFOV[pos]) {
if (!seenBefore) {
yell( Messages.get(this, "hey", Dungeon.hero.givenName() ) );
}
seenBefore = true;
} else {
seenBefore = false;
}
throwItem();
return super.act();
}
@Override
public int defenseSkill( Char enemy ) {
return 100_000_000;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean reset() {
return true;
}
@Override
public boolean interact() {
sprite.turnTo( pos, Dungeon.hero.pos );
if (Quest.given) {
DwarfToken tokens = Dungeon.hero.belongings.getItem( DwarfToken.class );
if (tokens != null && (tokens.quantity() >= 8 || (!Quest.alternative && tokens.quantity() >= 6))) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndImp( Imp.this, tokens ) );
}
});
} else {
tell( Quest.alternative ?
Messages.get(this, "monks_2", Dungeon.hero.givenName())
: Messages.get(this, "golems_2", Dungeon.hero.givenName()) );
}
} else {
tell( Quest.alternative ? Messages.get(this, "monks_1") : Messages.get(this, "golems_1") );
Quest.given = true;
Quest.completed = false;
Notes.add( Notes.Landmark.IMP );
}
return false;
}
private void tell( String text ) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndQuest( Imp.this, text ));
}
});
}
public void flee() {
yell( Messages.get(this, "cya", Dungeon.hero.givenName()) );
destroy();
sprite.die();
}
public static class Quest {
private static boolean alternative;
private static boolean spawned;
private static boolean given;
private static boolean completed;
public static Ring reward;
public static void reset() {
spawned = false;
reward = null;
}
private static final String NODE = "demon";
private static final String ALTERNATIVE = "alternative";
private static final String SPAWNED = "spawned";
private static final String GIVEN = "given";
private static final String COMPLETED = "completed";
private static final String REWARD = "reward";
public static void storeInBundle( Bundle bundle ) {
Bundle node = new Bundle();
node.put( SPAWNED, spawned );
if (spawned) {
node.put( ALTERNATIVE, alternative );
node.put( GIVEN, given );
node.put( COMPLETED, completed );
node.put( REWARD, reward );
}
bundle.put( NODE, node );
}
public static void restoreFromBundle( Bundle bundle ) {
Bundle node = bundle.getBundle( NODE );
if (!node.isNull() && (spawned = node.getBoolean( SPAWNED ))) {
alternative = node.getBoolean( ALTERNATIVE );
given = node.getBoolean( GIVEN );
completed = node.getBoolean( COMPLETED );
reward = (Ring)node.get( REWARD );
}
}
public static void spawn( CityLevel level ) {
if (!spawned && Dungeon.depth > 16 && Random.Int( 20 - Dungeon.depth ) == 0) {
Imp npc = new Imp();
do {
npc.pos = level.randomRespawnCell();
} while (
npc.pos == -1 ||
level.heaps.get( npc.pos ) != null ||
level.traps.get( npc.pos) != null ||
level.findMob( npc.pos ) != null ||
//The imp doesn't move, so he cannot obstruct a passageway
!(level.passable[npc.pos + PathFinder.CIRCLE4[0]] && level.passable[npc.pos + PathFinder.CIRCLE4[2]]) ||
!(level.passable[npc.pos + PathFinder.CIRCLE4[1]] && level.passable[npc.pos + PathFinder.CIRCLE4[3]]));
level.mobs.add( npc );
spawned = true;
alternative = Random.Int( 2 ) == 0;
given = false;
do {
reward = (Ring)Generator.random( Generator.Category.RING );
} while (reward.cursed);
reward.upgrade( 2 );
reward.cursed = true;
}
}
public static void process( Mob mob ) {
if (spawned && given && !completed) {
if ((alternative && mob instanceof Monk) ||
(!alternative && mob instanceof Golem)) {
Dungeon.level.drop( new DwarfToken(), mob.pos ).sprite.drop();
}
}
}
public static void complete() {
reward = null;
completed = true;
Notes.remove( Notes.Landmark.IMP );
}
public static boolean isCompleted() {
return completed;
}
}
}
| 6,632 | Imp | java | en | java | code | {"qsc_code_num_words": 760, "qsc_code_num_chars": 6632.0, "qsc_code_mean_word_length": 5.94868421, "qsc_code_frac_words_unique": 0.30131579, "qsc_code_frac_chars_top_2grams": 0.04180491, "qsc_code_frac_chars_top_3grams": 0.14288874, "qsc_code_frac_chars_top_4grams": 0.15571776, "qsc_code_frac_chars_dupe_5grams": 0.23202831, "qsc_code_frac_chars_dupe_6grams": 0.1305021, "qsc_code_frac_chars_dupe_7grams": 0.05043132, "qsc_code_frac_chars_dupe_8grams": 0.05043132, "qsc_code_frac_chars_dupe_9grams": 0.0309666, "qsc_code_frac_chars_dupe_10grams": 0.0309666, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00923831, "qsc_code_frac_chars_whitespace": 0.20024125, "qsc_code_size_file_byte": 6632.0, "qsc_code_num_lines": 242.0, "qsc_code_num_chars_line_max": 111.0, "qsc_code_num_chars_line_mean": 27.40495868, "qsc_code_frac_chars_alphabet": 0.84313725, "qsc_code_frac_chars_comments": 0.12650784, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.12352941, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01363715, "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.1, "qsc_codejava_score_lines_no_logic": 0.28235294, "qsc_codejava_frac_words_no_modifier": 0.94444444, "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/actors/mobs/npcs/Wandmaker.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CeremonialCandle;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CorpseDust;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.Embers;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
import com.shatteredpixel.shatteredpixeldungeon.journal.Notes;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.Room;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.MassGraveRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.special.RotGardenRoom;
import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.RitualSiteRoom;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Rotberry;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.WandmakerSprite;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndQuest;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndWandmaker;
import com.watabou.noosa.Game;
import com.watabou.utils.Bundle;
import com.watabou.utils.Callback;
import com.watabou.utils.Random;
import java.util.ArrayList;
public class Wandmaker extends NPC {
{
spriteClass = WandmakerSprite.class;
properties.add(Property.IMMOVABLE);
}
@Override
protected boolean act() {
throwItem();
return super.act();
}
@Override
public int defenseSkill( Char enemy ) {
return 100_000_000;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean reset() {
return true;
}
@Override
public boolean interact() {
sprite.turnTo( pos, Dungeon.hero.pos );
if (Quest.given) {
Item item;
switch (Quest.type) {
case 1:
default:
item = Dungeon.hero.belongings.getItem(CorpseDust.class);
break;
case 2:
item = Dungeon.hero.belongings.getItem(Embers.class);
break;
case 3:
item = Dungeon.hero.belongings.getItem(Rotberry.Seed.class);
break;
}
if (item != null) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndWandmaker( Wandmaker.this, item ) );
}
});
} else {
String msg;
switch(Quest.type){
case 1: default:
msg = Messages.get(this, "reminder_dust", Dungeon.hero.givenName());
break;
case 2:
msg = Messages.get(this, "reminder_ember", Dungeon.hero.givenName());
break;
case 3:
msg = Messages.get(this, "reminder_berry", Dungeon.hero.givenName());
break;
}
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show(new WndQuest(Wandmaker.this, msg));
}
});
}
} else {
String msg1 = "";
String msg2 = "";
switch(Dungeon.hero.heroClass){
case WARRIOR:
msg1 += Messages.get(this, "intro_warrior");
break;
case ROGUE:
msg1 += Messages.get(this, "intro_rogue");
break;
case MAGE:
msg1 += Messages.get(this, "intro_mage", Dungeon.hero.givenName());
break;
case HUNTRESS:
msg1 += Messages.get(this, "intro_huntress");
break;
}
msg1 += Messages.get(this, "intro_1");
switch (Quest.type){
case 1:
msg2 += Messages.get(this, "intro_dust");
break;
case 2:
msg2 += Messages.get(this, "intro_ember");
break;
case 3:
msg2 += Messages.get(this, "intro_berry");
break;
}
msg2 += Messages.get(this, "intro_2");
final String msg1Final = msg1;
final String msg2Final = msg2;
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show(new WndQuest(Wandmaker.this, msg1Final){
@Override
public void hide() {
super.hide();
GameScene.show(new WndQuest(Wandmaker.this, msg2Final));
}
});
}
});
Notes.add( Notes.Landmark.WANDMAKER );
Quest.given = true;
}
return false;
}
public static class Quest {
private static int type;
// 1 = corpse dust quest
// 2 = elemental embers quest
// 3 = rotberry quest
private static boolean spawned;
private static boolean given;
public static Wand wand1;
public static Wand wand2;
public static void reset() {
spawned = false;
type = 0;
wand1 = null;
wand2 = null;
}
private static final String NODE = "wandmaker";
private static final String SPAWNED = "spawned";
private static final String TYPE = "type";
private static final String GIVEN = "given";
private static final String WAND1 = "wand1";
private static final String WAND2 = "wand2";
private static final String RITUALPOS = "ritualpos";
public static void storeInBundle( Bundle bundle ) {
Bundle node = new Bundle();
node.put( SPAWNED, spawned );
if (spawned) {
node.put( TYPE, type );
node.put( GIVEN, given );
node.put( WAND1, wand1 );
node.put( WAND2, wand2 );
if (type == 2){
node.put( RITUALPOS, CeremonialCandle.ritualPos );
}
}
bundle.put( NODE, node );
}
public static void restoreFromBundle( Bundle bundle ) {
Bundle node = bundle.getBundle( NODE );
if (!node.isNull() && (spawned = node.getBoolean( SPAWNED ))) {
type = node.getInt(TYPE);
given = node.getBoolean( GIVEN );
wand1 = (Wand)node.get( WAND1 );
wand2 = (Wand)node.get( WAND2 );
if (type == 2){
CeremonialCandle.ritualPos = node.getInt( RITUALPOS );
}
} else {
reset();
}
}
private static boolean questRoomSpawned;
public static void spawnWandmaker( Level level, Room room ) {
if (questRoomSpawned) {
questRoomSpawned = false;
Wandmaker npc = new Wandmaker();
do {
npc.pos = level.pointToCell(room.random());
} while (npc.pos == level.entrance);
level.mobs.add( npc );
spawned = true;
given = false;
wand1 = (Wand) Generator.random(Generator.Category.WAND);
wand1.cursed = false;
wand1.upgrade();
do {
wand2 = (Wand) Generator.random(Generator.Category.WAND);
} while (wand2.getClass().equals(wand1.getClass()));
wand2.cursed = false;
wand2.upgrade();
}
}
public static ArrayList<Room> spawnRoom( ArrayList<Room> rooms) {
questRoomSpawned = false;
if (!spawned && (type != 0 || (Dungeon.depth > 6 && Random.Int( 10 - Dungeon.depth ) == 0))) {
// decide between 1,2, or 3 for quest type.
if (type == 0) type = Random.Int(3)+1;
switch (type){
case 1: default:
rooms.add(new MassGraveRoom());
break;
case 2:
rooms.add(new RitualSiteRoom());
break;
case 3:
rooms.add(new RotGardenRoom());
break;
}
questRoomSpawned = true;
}
return rooms;
}
public static void complete() {
wand1 = null;
wand2 = null;
Notes.remove( Notes.Landmark.WANDMAKER );
}
}
}
| 8,286 | Wandmaker | java | en | java | code | {"qsc_code_num_words": 932, "qsc_code_num_chars": 8286.0, "qsc_code_mean_word_length": 5.95922747, "qsc_code_frac_words_unique": 0.25429185, "qsc_code_frac_chars_top_2grams": 0.04051134, "qsc_code_frac_chars_top_3grams": 0.15052215, "qsc_code_frac_chars_top_4grams": 0.16636658, "qsc_code_frac_chars_dupe_5grams": 0.32355059, "qsc_code_frac_chars_dupe_6grams": 0.15754411, "qsc_code_frac_chars_dupe_7grams": 0.06769896, "qsc_code_frac_chars_dupe_8grams": 0.0453727, "qsc_code_frac_chars_dupe_9grams": 0.0453727, "qsc_code_frac_chars_dupe_10grams": 0.0453727, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01538462, "qsc_code_frac_chars_whitespace": 0.21554429, "qsc_code_size_file_byte": 8286.0, "qsc_code_num_lines": 327.0, "qsc_code_num_chars_line_max": 98.0, "qsc_code_num_chars_line_mean": 25.33944954, "qsc_code_frac_chars_alphabet": 0.83907692, "qsc_code_frac_chars_comments": 0.10837557, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.26890756, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.02422848, "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.06302521, "qsc_codejava_score_lines_no_logic": 0.22689076, "qsc_codejava_frac_words_no_modifier": 0.9375, "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/actors/mobs/npcs/Ghost.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.actors.mobs.npcs;
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.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Roots;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.FetidRat;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.GnollTrickster;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.GreatCrab;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.LeatherArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.MailArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.PlateArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.ScaleArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.Weapon;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MeleeWeapon;
import com.shatteredpixel.shatteredpixeldungeon.journal.Notes;
import com.shatteredpixel.shatteredpixeldungeon.levels.SewerLevel;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GhostSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndQuest;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndSadGhost;
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.Random;
import com.watabou.utils.Reflection;
public class Ghost extends NPC {
{
spriteClass = GhostSprite.class;
flying = true;
state = WANDERING;
}
public Ghost() {
super();
Sample.INSTANCE.load( Assets.SND_GHOST );
}
@Override
protected boolean act() {
if (Quest.processed())
target = Dungeon.hero.pos;
return super.act();
}
@Override
public int defenseSkill( Char enemy ) {
return 100_000_000;
}
@Override
public float speed() {
return Quest.processed() ? 2f : 0.5f;
}
@Override
protected Char chooseEnemy() {
return null;
}
@Override
public void damage( int dmg, Object src ) {
}
@Override
public void add( Buff buff ) {
}
@Override
public boolean reset() {
return true;
}
@Override
public boolean interact() {
sprite.turnTo( pos, Dungeon.hero.pos );
Sample.INSTANCE.play( Assets.SND_GHOST );
if (Quest.given) {
if (Quest.weapon != null) {
if (Quest.processed) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show(new WndSadGhost(Ghost.this, Quest.type));
}
});
} else {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
switch (Quest.type) {
case 1:
default:
GameScene.show(new WndQuest(Ghost.this, Messages.get(Ghost.this, "rat_2")));
break;
case 2:
GameScene.show(new WndQuest(Ghost.this, Messages.get(Ghost.this, "gnoll_2")));
break;
case 3:
GameScene.show(new WndQuest(Ghost.this, Messages.get(Ghost.this, "crab_2")));
break;
}
}
});
int newPos = -1;
for (int i = 0; i < 10; i++) {
newPos = Dungeon.level.randomRespawnCell();
if (newPos != -1) {
break;
}
}
if (newPos != -1) {
CellEmitter.get(pos).start(Speck.factory(Speck.LIGHT), 0.2f, 3);
pos = newPos;
sprite.place(pos);
sprite.visible = Dungeon.level.heroFOV[pos];
}
}
}
} else {
Mob questBoss;
String txt_quest;
switch (Quest.type){
case 1: default:
questBoss = new FetidRat();
txt_quest = Messages.get(this, "rat_1", Dungeon.hero.givenName()); break;
case 2:
questBoss = new GnollTrickster();
txt_quest = Messages.get(this, "gnoll_1", Dungeon.hero.givenName()); break;
case 3:
questBoss = new GreatCrab();
txt_quest = Messages.get(this, "crab_1", Dungeon.hero.givenName()); break;
}
questBoss.pos = Dungeon.level.randomRespawnCell();
if (questBoss.pos != -1) {
GameScene.add(questBoss);
Quest.given = true;
Notes.add( Notes.Landmark.GHOST );
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndQuest( Ghost.this, txt_quest ) );
}
});
}
}
return false;
}
{
immunities.add( Paralysis.class );
immunities.add( Roots.class );
}
public static class Quest {
private static boolean spawned;
private static int type;
private static boolean given;
private static boolean processed;
private static int depth;
public static Weapon weapon;
public static Armor armor;
public static void reset() {
spawned = false;
weapon = null;
armor = null;
}
private static final String NODE = "sadGhost";
private static final String SPAWNED = "spawned";
private static final String TYPE = "type";
private static final String GIVEN = "given";
private static final String PROCESSED = "processed";
private static final String DEPTH = "depth";
private static final String WEAPON = "weapon";
private static final String ARMOR = "armor";
public static void storeInBundle( Bundle bundle ) {
Bundle node = new Bundle();
node.put( SPAWNED, spawned );
if (spawned) {
node.put( TYPE, type );
node.put( GIVEN, given );
node.put( DEPTH, depth );
node.put( PROCESSED, processed);
node.put( WEAPON, weapon );
node.put( ARMOR, armor );
}
bundle.put( NODE, node );
}
public static void restoreFromBundle( Bundle bundle ) {
Bundle node = bundle.getBundle( NODE );
if (!node.isNull() && (spawned = node.getBoolean( SPAWNED ))) {
type = node.getInt(TYPE);
given = node.getBoolean( GIVEN );
processed = node.getBoolean( PROCESSED );
depth = node.getInt( DEPTH );
weapon = (Weapon)node.get( WEAPON );
armor = (Armor)node.get( ARMOR );
} else {
reset();
}
}
public static void spawn( SewerLevel level ) {
if (!spawned && Dungeon.depth > 1 && Random.Int( 5 - Dungeon.depth ) == 0) {
Ghost ghost = new Ghost();
do {
ghost.pos = level.randomRespawnCell();
} while (ghost.pos == -1);
level.mobs.add( ghost );
spawned = true;
//dungeon depth determines type of quest.
//depth2=fetid rat, 3=gnoll trickster, 4=great crab
type = Dungeon.depth-1;
given = false;
processed = false;
depth = Dungeon.depth;
//50%:tier2, 30%:tier3, 15%:tier4, 5%:tier5
float itemTierRoll = Random.Float();
int wepTier;
if (itemTierRoll < 0.5f) {
wepTier = 2;
armor = new LeatherArmor();
} else if (itemTierRoll < 0.8f) {
wepTier = 3;
armor = new MailArmor();
} else if (itemTierRoll < 0.95f) {
wepTier = 4;
armor = new ScaleArmor();
} else {
wepTier = 5;
armor = new PlateArmor();
}
Generator.Category c = Generator.wepTiers[wepTier - 1];
weapon = (MeleeWeapon) Reflection.newInstance(c.classes[Random.chances(c.probs)]);
//50%:+0, 30%:+1, 15%:+2, 5%:+3
float itemLevelRoll = Random.Float();
int itemLevel;
if (itemLevelRoll < 0.5f){
itemLevel = 0;
} else if (itemLevelRoll < 0.8f){
itemLevel = 1;
} else if (itemLevelRoll < 0.95f){
itemLevel = 2;
} else {
itemLevel = 3;
}
weapon.upgrade(itemLevel);
armor.upgrade(itemLevel);
//10% to be enchanted
if (Random.Int(10) == 0){
weapon.enchant();
armor.inscribe();
}
}
}
public static void process() {
if (spawned && given && !processed && (depth == Dungeon.depth)) {
GLog.n( Messages.get(Ghost.class, "find_me") );
Sample.INSTANCE.play( Assets.SND_GHOST );
processed = true;
}
}
public static void complete() {
weapon = null;
armor = null;
Notes.remove( Notes.Landmark.GHOST );
}
public static boolean processed(){
return spawned && processed;
}
public static boolean completed(){
return processed() && weapon == null && armor == null;
}
}
}
| 9,581 | Ghost | java | en | java | code | {"qsc_code_num_words": 1089, "qsc_code_num_chars": 9581.0, "qsc_code_mean_word_length": 5.91735537, "qsc_code_frac_words_unique": 0.24609734, "qsc_code_frac_chars_top_2grams": 0.04748603, "qsc_code_frac_chars_top_3grams": 0.17101179, "qsc_code_frac_chars_top_4grams": 0.1911856, "qsc_code_frac_chars_dupe_5grams": 0.29314091, "qsc_code_frac_chars_dupe_6grams": 0.21182495, "qsc_code_frac_chars_dupe_7grams": 0.05477964, "qsc_code_frac_chars_dupe_8grams": 0.05477964, "qsc_code_frac_chars_dupe_9grams": 0.04639975, "qsc_code_frac_chars_dupe_10grams": 0.04639975, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01439704, "qsc_code_frac_chars_whitespace": 0.20979021, "qsc_code_size_file_byte": 9581.0, "qsc_code_num_lines": 356.0, "qsc_code_num_chars_line_max": 88.0, "qsc_code_num_chars_line_mean": 26.91292135, "qsc_code_frac_chars_alphabet": 0.83674548, "qsc_code_frac_chars_comments": 0.1010333, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.16104869, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.01068153, "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.07490637, "qsc_codejava_score_lines_no_logic": 0.26217228, "qsc_codejava_frac_words_no_modifier": 0.9047619, "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/actors/mobs/npcs/PrismaticImage.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.CorrosiveGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.ToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Corruption;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.PrismaticGuard;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.NPC;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs.AntiMagic;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs.Brimstone;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.PrismaticSprite;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
public class PrismaticImage extends NPC {
{
spriteClass = PrismaticSprite.class;
HP = HT = 8;
defenseSkill = 1;
alignment = Alignment.ALLY;
intelligentAlly = true;
state = HUNTING;
WANDERING = new Wandering();
//before other mobs
actPriority = MOB_PRIO + 1;
}
private Hero hero;
private int heroID;
public int armTier;
private int deathTimer = -1;
@Override
protected boolean act() {
if (!isAlive()){
deathTimer--;
if (deathTimer > 0) {
sprite.alpha((deathTimer + 3) / 8f);
spend(TICK);
} else {
destroy();
sprite.die();
}
return true;
}
if (deathTimer != -1){
if (paralysed == 0) sprite.remove(CharSprite.State.PARALYSED);
deathTimer = -1;
sprite.resetColor();
}
if ( hero == null ){
hero = (Hero) Actor.findById(heroID);
if ( hero == null ){
destroy();
sprite.die();
return true;
}
}
if (hero.tier() != armTier){
armTier = hero.tier();
((PrismaticSprite)sprite).updateArmor( armTier );
}
return super.act();
}
@Override
public void die(Object cause) {
if (deathTimer == -1) {
if (cause == Chasm.class){
super.die( cause );
} else {
deathTimer = 5;
sprite.add(CharSprite.State.PARALYSED);
}
}
}
private static final String HEROID = "hero_id";
private static final String TIMER = "timer";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( HEROID, heroID );
bundle.put( TIMER, deathTimer );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
heroID = bundle.getInt( HEROID );
deathTimer = bundle.getInt( TIMER );
}
public void duplicate( Hero hero, int HP ) {
this.hero = hero;
heroID = this.hero.id();
this.HP = HP;
HT = PrismaticGuard.maxHP( hero );
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 1 + hero.lvl/8, 4 + hero.lvl/2 );
}
@Override
public int attackSkill( Char target ) {
return hero.attackSkill(target);
}
@Override
public int defenseSkill(Char enemy) {
if (hero != null) {
int baseEvasion = 4 + hero.lvl;
int heroEvasion = hero.defenseSkill(enemy);
//if the hero has more/less evasion, 50% of it is applied
return super.defenseSkill(enemy) * (baseEvasion + heroEvasion) / 2;
} else {
return 0;
}
}
@Override
public int drRoll() {
if (hero != null){
return hero.drRoll();
} else {
return 0;
}
}
@Override
public int defenseProc(Char enemy, int damage) {
damage = super.defenseProc(enemy, damage);
if (hero.belongings.armor != null){
return hero.belongings.armor.proc( enemy, this, damage );
} else {
return damage;
}
}
@Override
public void damage(int dmg, Object src) {
//TODO improve this when I have proper damage source logic
if (hero.belongings.armor != null && hero.belongings.armor.hasGlyph(AntiMagic.class, this)
&& AntiMagic.RESISTS.contains(src.getClass())){
dmg -= AntiMagic.drRoll(hero.belongings.armor.level());
}
super.damage(dmg, src);
}
@Override
public float speed() {
if (hero.belongings.armor != null){
return hero.belongings.armor.speedFactor(this, super.speed());
}
return super.speed();
}
@Override
public int attackProc( Char enemy, int damage ) {
if (enemy instanceof Mob) {
((Mob)enemy).aggro( this );
}
return super.attackProc( enemy, damage );
}
@Override
public CharSprite sprite() {
CharSprite s = super.sprite();
hero = (Hero)Actor.findById(heroID);
if (hero != null) {
armTier = hero.tier();
}
((PrismaticSprite)s).updateArmor( armTier );
return s;
}
@Override
public boolean isImmune(Class effect) {
if (effect == Burning.class
&& hero != null
&& hero.belongings.armor != null
&& hero.belongings.armor.hasGlyph(Brimstone.class, this)){
return true;
}
return super.isImmune(effect);
}
{
immunities.add( ToxicGas.class );
immunities.add( CorrosiveGas.class );
immunities.add( Burning.class );
immunities.add( Corruption.class );
}
private class Wandering extends Mob.Wandering{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
if (!enemyInFOV){
Buff.affect(hero, PrismaticGuard.class).set( HP );
destroy();
CellEmitter.get(pos).start( Speck.factory(Speck.LIGHT), 0.2f, 3 );
sprite.die();
Sample.INSTANCE.play( Assets.SND_TELEPORT );
return true;
} else {
return super.act(enemyInFOV, justAlerted);
}
}
}
}
| 6,830 | PrismaticImage | java | en | java | code | {"qsc_code_num_words": 791, "qsc_code_num_chars": 6830.0, "qsc_code_mean_word_length": 6.07964602, "qsc_code_frac_words_unique": 0.30847029, "qsc_code_frac_chars_top_2grams": 0.0411728, "qsc_code_frac_chars_top_3grams": 0.15803701, "qsc_code_frac_chars_top_4grams": 0.17384072, "qsc_code_frac_chars_dupe_5grams": 0.29902267, "qsc_code_frac_chars_dupe_6grams": 0.21958827, "qsc_code_frac_chars_dupe_7grams": 0.08192972, "qsc_code_frac_chars_dupe_8grams": 0.0569765, "qsc_code_frac_chars_dupe_9grams": 0.02079434, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00749064, "qsc_code_frac_chars_whitespace": 0.17906296, "qsc_code_size_file_byte": 6830.0, "qsc_code_num_lines": 266.0, "qsc_code_num_chars_line_max": 93.0, "qsc_code_num_chars_line_mean": 25.67669173, "qsc_code_frac_chars_alphabet": 0.85018727, "qsc_code_frac_chars_comments": 0.13382138, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0020284, "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.0037594, "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.255, "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} | 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} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Podfile | # Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def parse_KV_file(file, separator='=')
file_abs_path = File.expand_path(file)
if !File.exists? file_abs_path
return [];
end
generated_key_values = {}
skip_line_start_symbols = ["#", "/"]
File.foreach(file_abs_path) do |line|
next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
plugin = line.split(pattern=separator)
if plugin.length == 2
podname = plugin[0].strip()
path = plugin[1].strip()
podpath = File.expand_path("#{path}", file_abs_path)
generated_key_values[podname] = podpath
else
puts "Invalid plugin specification: #{line}"
end
end
generated_key_values
end
target 'Runner' do
# Flutter Pod
copied_flutter_dir = File.join(__dir__, 'Flutter')
copied_framework_path = File.join(copied_flutter_dir, 'Flutter.framework')
copied_podspec_path = File.join(copied_flutter_dir, 'Flutter.podspec')
unless File.exist?(copied_framework_path) && File.exist?(copied_podspec_path)
# Copy Flutter.framework and Flutter.podspec to Flutter/ to have something to link against if the xcode backend script has not run yet.
# That script will copy the correct debug/profile/release version of the framework based on the currently selected Xcode configuration.
# CocoaPods will not embed the framework on pod install (before any build phases can generate) if the dylib does not exist.
generated_xcode_build_settings_path = File.join(copied_flutter_dir, 'Generated.xcconfig')
unless File.exist?(generated_xcode_build_settings_path)
raise "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
generated_xcode_build_settings = parse_KV_file(generated_xcode_build_settings_path)
cached_framework_dir = generated_xcode_build_settings['FLUTTER_FRAMEWORK_DIR'];
unless File.exist?(copied_framework_path)
FileUtils.cp_r(File.join(cached_framework_dir, 'Flutter.framework'), copied_flutter_dir)
end
unless File.exist?(copied_podspec_path)
FileUtils.cp(File.join(cached_framework_dir, 'Flutter.podspec'), copied_flutter_dir)
end
end
# Keep pod path relative so it can be checked into Podfile.lock.
pod 'Flutter', :path => 'Flutter'
# Plugin Pods
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
# referring to absolute paths on developers' machines.
system('rm -rf .symlinks')
system('mkdir -p .symlinks/plugins')
plugin_pods = parse_KV_file('../.flutter-plugins')
plugin_pods.each do |name, path|
symlink = File.join('.symlinks', 'plugins', name)
File.symlink(path, symlink)
pod name, :path => File.join(symlink, 'ios')
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
| 3,218 | Podfile | en | ruby | code | {"qsc_code_num_words": 439, "qsc_code_num_chars": 3218.0, "qsc_code_mean_word_length": 5.17539863, "qsc_code_frac_words_unique": 0.38041002, "qsc_code_frac_chars_top_2grams": 0.02816901, "qsc_code_frac_chars_top_3grams": 0.04225352, "qsc_code_frac_chars_top_4grams": 0.05941901, "qsc_code_frac_chars_dupe_5grams": 0.16857394, "qsc_code_frac_chars_dupe_6grams": 0.13204225, "qsc_code_frac_chars_dupe_7grams": 0.03080986, "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.00186012, "qsc_code_frac_chars_whitespace": 0.16469857, "qsc_code_size_file_byte": 3218.0, "qsc_code_num_lines": 84.0, "qsc_code_num_chars_line_max": 140.0, "qsc_code_num_chars_line_mean": 38.30952381, "qsc_code_frac_chars_alphabet": 0.84337798, "qsc_code_frac_chars_comments": 0.24362958, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20967742, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.01612903, "qsc_code_frac_chars_string_length": 0.18036154, "qsc_code_frac_chars_long_word_length": 0.01807724, "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} | |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/lib/singlepage_app.dart | import 'dart:async';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_database/firebase_database.dart';
import 'package:flutter/material.dart';
import 'package:flutter_animation_progress_bar/flutter_animation_progress_bar.dart';
import 'package:flutter_icons/flutter_icons.dart';
import 'package:marquee/marquee.dart';
import 'package:wave_progress_widget/wave_progress.dart';
import './dht.dart';
class SinglePageApp extends StatefulWidget {
@override
_SinglePageAppState createState() => _SinglePageAppState();
}
class _SinglePageAppState extends State<SinglePageApp>
with SingleTickerProviderStateMixin {
TabController _tabController;
int tabIndex = 0;
final FirebaseAuth _auth = FirebaseAuth.instance;
DatabaseReference _dhtRef =
FirebaseDatabase.instance.reference().child('DHT');
bool _signIn;
String heatIndexText;
Timer _timer;
@override
void initState() {
super.initState();
_tabController = TabController(length: 2, vsync: this);
_signIn = false;
heatIndexText = "Showing Heat Index Here Soon ...";
_timer = Timer.periodic(Duration(seconds: 10), (timer) {
if (_signIn) {
setState(() {});
}
});
_signInAnonymously();
}
@override
void dispose() {
_tabController.dispose();
_timer.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
return _signIn ? mainScaffold() : signInScaffold();
}
Widget mainScaffold() {
return Scaffold(
appBar: AppBar(
title: Text("FIREBASE REALTIME DB"),
bottom: TabBar(
controller: _tabController,
onTap: (int index) {
setState(() {
tabIndex = index;
});
},
tabs: [
Tab(
icon: Icon(MaterialCommunityIcons.temperature_fahrenheit),
),
Tab(
icon: Icon(MaterialCommunityIcons.water_percent),
)
],
),
),
body: Column(
children: [
Container(
height: 30,
child: _buildMarquee(),
),
Expanded(
child: StreamBuilder(
stream: _dhtRef.onValue,
builder: (context, snapshot) {
if (snapshot.hasData &&
!snapshot.hasError &&
snapshot.data.snapshot.value != null) {
var _dht =
DHT.fromJson(snapshot.data.snapshot.value['Json']);
print(
"DHT: ${_dht.temp} / ${_dht.humidity} / ${_dht.heatIndex}");
_setMarqueeText(_dht);
return IndexedStack(
index: tabIndex,
children: [
_temperatureLayout(_dht),
_humidityLayout(_dht)
],
);
} else {
return Center(
child: Text("NO DATA YET"),
);
}
}),
),
],
),
);
}
Widget _temperatureLayout(DHT _dht) {
return Center(
child: Column(
children: [
Container(
padding: const EdgeInsets.only(top: 40),
child: Text(
"TEMPERATURE",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 24),
),
),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 20),
child: FAProgressBar(
progressColor: Colors.green,
direction: Axis.vertical,
verticalDirection: VerticalDirection.up,
size: 100,
currentValue: _dht.temp.round(),
changeColorValue: 100,
changeProgressColor: Colors.red,
maxValue: 150,
displayText: "°F",
borderRadius: 16,
animatedDuration: Duration(milliseconds: 500),
),
),
),
Container(
padding: const EdgeInsets.only(bottom: 40),
child: Text(
"${_dht.temp.toStringAsFixed(2)} °F",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 28),
),
)
],
));
}
Widget _humidityLayout(DHT _dht) {
return Center(
child: Column(
children: [
Container(
padding: const EdgeInsets.only(top: 40),
child: Text(
"HUMIDITY",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 24),
),
),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 50),
child: WaveProgress(
180.0, Colors.blue, Colors.blueAccent, _dht.humidity)),
),
Container(
padding: const EdgeInsets.only(bottom: 40),
child: Text(
"${_dht.humidity.toStringAsFixed(2)} %",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 28),
),
)
],
));
}
_setMarqueeText(DHT _dht) {
heatIndexText = "Heat Index: ${_dht.heatIndex.toStringAsFixed(2)} °F, ";
if (_dht.heatIndex > 80 && _dht.heatIndex <= 90) {
heatIndexText +=
"Caution: fatigue is possible with prolonged exposure and activity. Continuing activity could result in heat cramps. ";
} else if (_dht.heatIndex > 90 && _dht.heatIndex <= 105) {
heatIndexText +=
"Extreme caution: heat cramps and heat exhaustion are possible. Continuing activity could result in heat stroke. ";
} else if (_dht.heatIndex > 105 && _dht.heatIndex <= 130) {
heatIndexText +=
"Danger: heat cramps and heat exhaustion are likely; heat stroke is probable with continued activity. ";
} else if (_dht.heatIndex > 130) {
heatIndexText += "Extreme danger: heat stroke is imminent. ";
} else {
heatIndexText += "Normal. ";
}
}
Widget _buildMarquee() {
return Marquee(
text: heatIndexText,
style: TextStyle(fontStyle: FontStyle.italic, fontSize: 20),
);
}
Widget signInScaffold() {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"SIMPLE FIREBASE FLUTTER APP",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20),
),
SizedBox(
height: 50,
),
RaisedButton(
textColor: Colors.white,
color: Colors.red,
shape: new RoundedRectangleBorder(
borderRadius: new BorderRadius.circular(20),
side: BorderSide(color: Colors.red)),
onPressed: () async {
_signInAnonymously();
},
child: Text(
"ANONYMOUS SIGN-IN",
style: TextStyle(fontSize: 14),
),
),
],
),
),
);
}
void _signInAnonymously() async {
final FirebaseUser user = (await _auth.signInAnonymously()).user;
print("*** user isAnonymous: ${user.isAnonymous}");
print("*** user uid: ${user.uid}");
setState(() {
if (user != null) {
_signIn = true;
} else {
_signIn = false;
}
});
}
}
| 7,505 | singlepage_app | dart | en | dart | code | {"qsc_code_num_words": 595, "qsc_code_num_chars": 7505.0, "qsc_code_mean_word_length": 6.6302521, "qsc_code_frac_words_unique": 0.37478992, "qsc_code_frac_chars_top_2grams": 0.02737643, "qsc_code_frac_chars_top_3grams": 0.02585551, "qsc_code_frac_chars_top_4grams": 0.04309252, "qsc_code_frac_chars_dupe_5grams": 0.19467681, "qsc_code_frac_chars_dupe_6grams": 0.19467681, "qsc_code_frac_chars_dupe_7grams": 0.15006337, "qsc_code_frac_chars_dupe_8grams": 0.12572877, "qsc_code_frac_chars_dupe_9grams": 0.12572877, "qsc_code_frac_chars_dupe_10grams": 0.12572877, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01557632, "qsc_code_frac_chars_whitespace": 0.35842771, "qsc_code_size_file_byte": 7505.0, "qsc_code_num_lines": 256.0, "qsc_code_num_chars_line_max": 130.0, "qsc_code_num_chars_line_mean": 29.31640625, "qsc_code_frac_chars_alphabet": 0.80311526, "qsc_code_frac_chars_comments": 0.0, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.38818565, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.14457029, "qsc_code_frac_chars_long_word_length": 0.05436376, "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} |
0015/ThatProject | FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/index.html | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A new Flutter application.">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="firebase_realtimedb">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<title>firebase_realtimedb</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
<!-- This script installs service_worker.js to provide PWA functionality to
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('flutter_service_worker.js');
});
}
</script>
<script src="main.dart.js" type="application/javascript"></script>
</body>
</html>
| 1,148 | index | html | en | html | code | {"qsc_code_num_words": 145, "qsc_code_num_chars": 1148.0, "qsc_code_mean_word_length": 5.36551724, "qsc_code_frac_words_unique": 0.5862069, "qsc_code_frac_chars_top_2grams": 0.04113111, "qsc_code_frac_chars_top_3grams": 0.05012853, "qsc_code_frac_chars_top_4grams": 0.07326478, "qsc_code_frac_chars_dupe_5grams": 0.09640103, "qsc_code_frac_chars_dupe_6grams": 0.09640103, "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.00405268, "qsc_code_frac_chars_whitespace": 0.1402439, "qsc_code_size_file_byte": 1148.0, "qsc_code_num_lines": 33.0, "qsc_code_num_chars_line_max": 82.0, "qsc_code_num_chars_line_mean": 34.78787879, "qsc_code_frac_chars_alphabet": 0.78419453, "qsc_code_frac_chars_comments": 0.21777003, "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.38530067, "qsc_code_frac_chars_long_word_length": 0.15367483, "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_codehtml_cate_ast": 1.0, "qsc_codehtml_frac_words_text": 0.03571429, "qsc_codehtml_num_chars_text": 41.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_cate_xml_start": 0, "qsc_code_frac_lines_dupe_lines": 0, "qsc_code_cate_autogen": 0, "qsc_code_cate_encoded_data": 0, "qsc_code_frac_chars_hex_words": 0, "qsc_codehtml_cate_ast": 0, "qsc_codehtml_frac_words_text": 1, "qsc_codehtml_num_chars_text": 1} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Shopkeeper.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.actors.mobs.npcs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ElmoParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ShopkeeperSprite;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndBag;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndTradeItem;
import com.watabou.noosa.Game;
import com.watabou.utils.Callback;
public class Shopkeeper extends NPC {
{
spriteClass = ShopkeeperSprite.class;
properties.add(Property.IMMOVABLE);
}
@Override
protected boolean act() {
throwItem();
sprite.turnTo( pos, Dungeon.hero.pos );
spend( TICK );
return true;
}
@Override
public void damage( int dmg, Object src ) {
flee();
}
@Override
public void add( Buff buff ) {
flee();
}
public void flee() {
destroy();
sprite.killAndErase();
CellEmitter.get( pos ).burst( ElmoParticle.FACTORY, 6 );
}
@Override
public void destroy() {
super.destroy();
for (Heap heap: Dungeon.level.heaps.valueList()) {
if (heap.type == Heap.Type.FOR_SALE) {
CellEmitter.get( heap.pos ).burst( ElmoParticle.FACTORY, 4 );
heap.destroy();
}
}
}
@Override
public boolean reset() {
return true;
}
public static WndBag sell() {
return GameScene.selectItem( itemSelector, WndBag.Mode.FOR_SALE, Messages.get(Shopkeeper.class, "sell"));
}
private static WndBag.Listener itemSelector = new WndBag.Listener() {
@Override
public void onSelect( Item item ) {
if (item != null) {
WndBag parentWnd = sell();
GameScene.show( new WndTradeItem( item, parentWnd ) );
}
}
};
@Override
public boolean interact() {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
sell();
}
});
return false;
}
}
| 3,031 | Shopkeeper | java | en | java | code | {"qsc_code_num_words": 355, "qsc_code_num_chars": 3031.0, "qsc_code_mean_word_length": 6.29577465, "qsc_code_frac_words_unique": 0.47042254, "qsc_code_frac_chars_top_2grams": 0.05234899, "qsc_code_frac_chars_top_3grams": 0.20402685, "qsc_code_frac_chars_top_4grams": 0.21655481, "qsc_code_frac_chars_dupe_5grams": 0.17181208, "qsc_code_frac_chars_dupe_6grams": 0.02505593, "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.00746855, "qsc_code_frac_chars_whitespace": 0.16067305, "qsc_code_size_file_byte": 3031.0, "qsc_code_num_lines": 112.0, "qsc_code_num_chars_line_max": 108.0, "qsc_code_num_chars_line_mean": 27.0625, "qsc_code_frac_chars_alphabet": 0.87106918, "qsc_code_frac_chars_comments": 0.25767074, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.15789474, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00177778, "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.13157895, "qsc_codejava_score_lines_no_logic": 0.35526316, "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": 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/actors/hero/Belongings.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.actors.hero;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress;
import com.shatteredpixel.shatteredpixeldungeon.items.EquipableItem;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.KindOfWeapon;
import com.shatteredpixel.shatteredpixeldungeon.items.KindofMisc;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.Bag;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.Key;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Iterator;
public class Belongings implements Iterable<Item> {
public static final int BACKPACK_SIZE = 20;
private Hero owner;
public Bag backpack;
public KindOfWeapon weapon = null;
public Armor armor = null;
public KindofMisc misc1 = null;
public KindofMisc misc2 = null;
public Belongings( Hero owner ) {
this.owner = owner;
backpack = new Bag() {{
name = Messages.get(Bag.class, "name");
size = BACKPACK_SIZE;
}};
backpack.owner = owner;
}
private static final String WEAPON = "weapon";
private static final String ARMOR = "armor";
private static final String MISC1 = "misc1";
private static final String MISC2 = "misc2";
public void storeInBundle( Bundle bundle ) {
backpack.storeInBundle( bundle );
bundle.put( WEAPON, weapon );
bundle.put( ARMOR, armor );
bundle.put( MISC1, misc1);
bundle.put( MISC2, misc2);
}
public void restoreFromBundle( Bundle bundle ) {
backpack.clear();
backpack.restoreFromBundle( bundle );
weapon = (KindOfWeapon) bundle.get(WEAPON);
if (weapon != null) {
weapon.activate(owner);
}
armor = (Armor)bundle.get( ARMOR );
if (armor != null){
armor.activate( owner );
}
misc1 = (KindofMisc)bundle.get(MISC1);
if (misc1 != null) {
misc1.activate( owner );
}
misc2 = (KindofMisc)bundle.get(MISC2);
if (misc2 != null) {
misc2.activate( owner );
}
}
public static void preview( GamesInProgress.Info info, Bundle bundle ) {
if (bundle.contains( ARMOR )){
info.armorTier = ((Armor)bundle.get( ARMOR )).tier;
} else {
info.armorTier = 0;
}
}
@SuppressWarnings("unchecked")
public<T extends Item> T getItem( Class<T> itemClass ) {
for (Item item : this) {
if (itemClass.isInstance( item )) {
return (T)item;
}
}
return null;
}
public boolean contains( Item contains ){
for (Item item : this) {
if (contains == item ) {
return true;
}
}
return false;
}
public Item getSimilar( Item similar ){
for (Item item : this) {
if (similar != item && similar.isSimilar(item)) {
return item;
}
}
return null;
}
public ArrayList<Item> getAllSimilar( Item similar ){
ArrayList<Item> result = new ArrayList<>();
for (Item item : this) {
if (item != similar && similar.isSimilar(item)) {
result.add(item);
}
}
return result;
}
public void identify() {
for (Item item : this) {
item.identify();
}
}
public void observe() {
if (weapon != null) {
weapon.identify();
Badges.validateItemLevelAquired( weapon );
}
if (armor != null) {
armor.identify();
Badges.validateItemLevelAquired( armor );
}
if (misc1 != null) {
misc1.identify();
Badges.validateItemLevelAquired(misc1);
}
if (misc2 != null) {
misc2.identify();
Badges.validateItemLevelAquired(misc2);
}
for (Item item : backpack) {
if (item instanceof EquipableItem || item instanceof Wand) {
item.cursedKnown = true;
}
}
}
public void uncurseEquipped() {
ScrollOfRemoveCurse.uncurse( owner, armor, weapon, misc1, misc2);
}
public Item randomUnequipped() {
return Random.element( backpack.items );
}
public void resurrect( int depth ) {
for (Item item : backpack.items.toArray( new Item[0])) {
if (item instanceof Key) {
if (((Key)item).depth == depth) {
item.detachAll( backpack );
}
} else if (item.unique) {
item.detachAll(backpack);
//you keep the bag itself, not its contents.
if (item instanceof Bag){
((Bag)item).resurrect();
}
item.collect();
} else if (!item.isEquipped( owner )) {
item.detachAll( backpack );
}
}
if (weapon != null) {
weapon.cursed = false;
weapon.activate( owner );
}
if (armor != null) {
armor.cursed = false;
armor.activate( owner );
}
if (misc1 != null) {
misc1.cursed = false;
misc1.activate( owner );
}
if (misc2 != null) {
misc2.cursed = false;
misc2.activate( owner );
}
}
public int charge( float charge ) {
int count = 0;
for (Wand.Charger charger : owner.buffs(Wand.Charger.class)){
charger.gainCharge(charge);
count++;
}
return count;
}
@Override
public Iterator<Item> iterator() {
return new ItemIterator();
}
private class ItemIterator implements Iterator<Item> {
private int index = 0;
private Iterator<Item> backpackIterator = backpack.iterator();
private Item[] equipped = {weapon, armor, misc1, misc2};
private int backpackIndex = equipped.length;
@Override
public boolean hasNext() {
for (int i=index; i < backpackIndex; i++) {
if (equipped[i] != null) {
return true;
}
}
return backpackIterator.hasNext();
}
@Override
public Item next() {
while (index < backpackIndex) {
Item item = equipped[index++];
if (item != null) {
return item;
}
}
return backpackIterator.next();
}
@Override
public void remove() {
switch (index) {
case 0:
equipped[0] = weapon = null;
break;
case 1:
equipped[1] = armor = null;
break;
case 2:
equipped[2] = misc1 = null;
break;
case 3:
equipped[3] = misc2 = null;
break;
default:
backpackIterator.remove();
}
}
}
}
| 7,036 | Belongings | java | en | java | code | {"qsc_code_num_words": 793, "qsc_code_num_chars": 7036.0, "qsc_code_mean_word_length": 5.92433796, "qsc_code_frac_words_unique": 0.25851198, "qsc_code_frac_chars_top_2grams": 0.02681992, "qsc_code_frac_chars_top_3grams": 0.10515113, "qsc_code_frac_chars_top_4grams": 0.11238825, "qsc_code_frac_chars_dupe_5grams": 0.12579821, "qsc_code_frac_chars_dupe_6grams": 0.01191997, "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.0121267, "qsc_code_frac_chars_whitespace": 0.2147527, "qsc_code_size_file_byte": 7036.0, "qsc_code_num_lines": 307.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 22.91856678, "qsc_code_frac_chars_alphabet": 0.83819005, "qsc_code_frac_chars_comments": 0.11725412, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.18340611, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00547416, "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.06113537, "qsc_codejava_score_lines_no_logic": 0.18777293, "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/actors/hero/Hero.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.actors.hero;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Bones;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.GamesInProgress;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.Statistics;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Alchemy;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.AdrenalineSurge;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Amok;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Awareness;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Barkskin;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Berserk;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Bless;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Combo;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Drowsy;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.FlavourBuff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Foresight;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Fury;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Invisibility;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.MindVision;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Momentum;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Regeneration;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.SnipersMark;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Weakness;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Mob;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.CheckedCell;
import com.shatteredpixel.shatteredpixeldungeon.effects.Flare;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.Amulet;
import com.shatteredpixel.shatteredpixeldungeon.items.Ankh;
import com.shatteredpixel.shatteredpixeldungeon.items.Dewdrop;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap.Type;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.KindOfWeapon;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs.AntiMagic;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs.Brimstone;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.glyphs.Viscosity;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.AlchemistsToolkit;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.CapeOfThorns;
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.keys.CrystalKey;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.GoldenKey;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.IronKey;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.Key;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfExperience;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfStrength;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.elixirs.ElixirOfMight;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfAccuracy;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfEvasion;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfForce;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfFuror;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfHaste;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfMight;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfTenacity;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.Scroll;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfLivingEarth;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfWarding;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.SpiritBow;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.Weapon;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Blocking;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Flail;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.MissileWeapon;
import com.shatteredpixel.shatteredpixeldungeon.journal.Notes;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain;
import com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.Trap;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Earthroot;
import com.shatteredpixel.shatteredpixeldungeon.plants.Swiftthistle;
import com.shatteredpixel.shatteredpixeldungeon.scenes.AlchemyScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.InterlevelScene;
import com.shatteredpixel.shatteredpixeldungeon.scenes.SurfaceScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.HeroSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.AttackIndicator;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.shatteredpixel.shatteredpixeldungeon.ui.QuickSlotButton;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndMessage;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndResurrect;
import com.shatteredpixel.shatteredpixeldungeon.windows.WndTradeItem;
import com.watabou.noosa.Camera;
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.GameMath;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Collections;
public class Hero extends Char {
{
actPriority = HERO_PRIO;
alignment = Alignment.ALLY;
}
public static final int MAX_LEVEL = 30;
public static final int STARTING_STR = 10;
private static final float TIME_TO_REST = 1f;
private static final float TIME_TO_SEARCH = 2f;
private static final float HUNGER_FOR_SEARCH = 6f;
public HeroClass heroClass = HeroClass.ROGUE;
public HeroSubClass subClass = HeroSubClass.NONE;
private int attackSkill = 10;
private int defenseSkill = 5;
public boolean ready = false;
private boolean damageInterrupt = true;
public HeroAction curAction = null;
public HeroAction lastAction = null;
private Char enemy;
public boolean resting = false;
public Belongings belongings;
public int STR;
public float awareness;
public int lvl = 1;
public int exp = 0;
public int HTBoost = 0;
private ArrayList<Mob> visibleEnemies;
//This list is maintained so that some logic checks can be skipped
// for enemies we know we aren't seeing normally, resultign in better performance
public ArrayList<Mob> mindVisionEnemies = new ArrayList<>();
public Hero() {
super();
name = Messages.get(this, "name");
HP = HT = 20;
STR = STARTING_STR;
belongings = new Belongings( this );
visibleEnemies = new ArrayList<>();
}
public void updateHT( boolean boostHP ){
int curHT = HT;
HT = 20 + 5*(lvl-1) + HTBoost;
float multiplier = RingOfMight.HTMultiplier(this);
HT = Math.round(multiplier * HT);
if (buff(ElixirOfMight.HTBoost.class) != null){
HT += buff(ElixirOfMight.HTBoost.class).boost();
}
if (boostHP){
HP += Math.max(HT - curHT, 0);
}
HP = Math.min(HP, HT);
}
public int STR() {
int STR = this.STR;
STR += RingOfMight.strengthBonus( this );
AdrenalineSurge buff = buff(AdrenalineSurge.class);
if (buff != null){
STR += buff.boost();
}
return (buff(Weakness.class) != null) ? STR - 2 : STR;
}
private static final String ATTACK = "attackSkill";
private static final String DEFENSE = "defenseSkill";
private static final String STRENGTH = "STR";
private static final String LEVEL = "lvl";
private static final String EXPERIENCE = "exp";
private static final String HTBOOST = "htboost";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
heroClass.storeInBundle( bundle );
subClass.storeInBundle( bundle );
bundle.put( ATTACK, attackSkill );
bundle.put( DEFENSE, defenseSkill );
bundle.put( STRENGTH, STR );
bundle.put( LEVEL, lvl );
bundle.put( EXPERIENCE, exp );
bundle.put( HTBOOST, HTBoost );
belongings.storeInBundle( bundle );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
heroClass = HeroClass.restoreInBundle( bundle );
subClass = HeroSubClass.restoreInBundle( bundle );
attackSkill = bundle.getInt( ATTACK );
defenseSkill = bundle.getInt( DEFENSE );
STR = bundle.getInt( STRENGTH );
lvl = bundle.getInt( LEVEL );
exp = bundle.getInt( EXPERIENCE );
HTBoost = bundle.getInt(HTBOOST);
belongings.restoreFromBundle( bundle );
}
public static void preview( GamesInProgress.Info info, Bundle bundle ) {
info.level = bundle.getInt( LEVEL );
info.str = bundle.getInt( STRENGTH );
info.exp = bundle.getInt( EXPERIENCE );
info.hp = bundle.getInt( Char.TAG_HP );
info.ht = bundle.getInt( Char.TAG_HT );
info.shld = bundle.getInt( Char.TAG_SHLD );
info.heroClass = HeroClass.restoreInBundle( bundle );
info.subClass = HeroSubClass.restoreInBundle( bundle );
Belongings.preview( info, bundle );
}
public String className() {
return subClass == null || subClass == HeroSubClass.NONE ? heroClass.title() : subClass.title();
}
public String givenName(){
return name.equals(Messages.get(this, "name")) ? className() : name;
}
public void live() {
Buff.affect( this, Regeneration.class );
Buff.affect( this, Hunger.class );
}
public int tier() {
return belongings.armor == null ? 0 : belongings.armor.tier;
}
public boolean shoot( Char enemy, MissileWeapon wep ) {
//temporarily set the hero's weapon to the missile weapon being used
KindOfWeapon equipped = belongings.weapon;
belongings.weapon = wep;
boolean hit = attack( enemy );
Invisibility.dispel();
belongings.weapon = equipped;
if (subClass == HeroSubClass.GLADIATOR){
if (hit) {
Buff.affect( this, Combo.class ).hit( enemy );
} else {
Combo combo = buff(Combo.class);
if (combo != null) combo.miss( enemy );
}
}
return hit;
}
@Override
public int attackSkill( Char target ) {
KindOfWeapon wep = belongings.weapon;
float accuracy = 1;
accuracy *= RingOfAccuracy.accuracyMultiplier( this );
if (wep instanceof MissileWeapon){
if (Dungeon.level.adjacent( pos, target.pos )) {
accuracy *= 0.5f;
} else {
accuracy *= 1.5f;
}
}
if (wep != null) {
return (int)(attackSkill * accuracy * wep.accuracyFactor( this ));
} else {
return (int)(attackSkill * accuracy);
}
}
@Override
public int defenseSkill( Char enemy ) {
float evasion = defenseSkill;
evasion *= RingOfEvasion.evasionMultiplier( this );
if (paralysed > 0) {
evasion /= 2;
}
if (belongings.armor != null) {
evasion = belongings.armor.evasionFactor(this, evasion);
}
return Math.round(evasion);
}
@Override
public int drRoll() {
int dr = 0;
if (belongings.armor != null) {
int armDr = Random.NormalIntRange( belongings.armor.DRMin(), belongings.armor.DRMax());
if (STR() < belongings.armor.STRReq()){
armDr -= 2*(belongings.armor.STRReq() - STR());
}
if (armDr > 0) dr += armDr;
}
if (belongings.weapon != null) {
int wepDr = Random.NormalIntRange( 0 , belongings.weapon.defenseFactor( this ) );
if (STR() < ((Weapon)belongings.weapon).STRReq()){
wepDr -= 2*(((Weapon)belongings.weapon).STRReq() - STR());
}
if (wepDr > 0) dr += wepDr;
}
Barkskin bark = buff(Barkskin.class);
if (bark != null) dr += Random.NormalIntRange( 0 , bark.level() );
Blocking.BlockBuff block = buff(Blocking.BlockBuff.class);
if (block != null) dr += block.blockingRoll();
return dr;
}
@Override
public int damageRoll() {
KindOfWeapon wep = belongings.weapon;
int dmg;
if (wep != null) {
dmg = wep.damageRoll( this );
if (!(wep instanceof MissileWeapon)) dmg += RingOfForce.armedDamageBonus(this);
} else {
dmg = RingOfForce.damageRoll(this);
}
if (dmg < 0) dmg = 0;
Berserk berserk = buff(Berserk.class);
if (berserk != null) dmg = berserk.damageFactor(dmg);
return buff( Fury.class ) != null ? (int)(dmg * 1.5f) : dmg;
}
@Override
public float speed() {
float speed = super.speed();
speed *= RingOfHaste.speedMultiplier(this);
if (belongings.armor != null) {
speed = belongings.armor.speedFactor(this, speed);
}
Momentum momentum = buff(Momentum.class);
if (momentum != null){
((HeroSprite)sprite).sprint( 1f + 0.05f*momentum.stacks());
speed *= momentum.speedMultiplier();
}
return speed;
}
public boolean canSurpriseAttack(){
if (belongings.weapon == null || !(belongings.weapon instanceof Weapon)) return true;
if (STR() < ((Weapon)belongings.weapon).STRReq()) return false;
if (belongings.weapon instanceof Flail) return false;
return true;
}
public boolean canAttack(Char enemy){
if (enemy == null || pos == enemy.pos) {
return false;
}
//can always attack adjacent enemies
if (Dungeon.level.adjacent(pos, enemy.pos)) {
return true;
}
KindOfWeapon wep = Dungeon.hero.belongings.weapon;
if (wep != null){
return wep.canReach(this, enemy.pos);
} else {
return false;
}
}
public float attackDelay() {
if (belongings.weapon != null) {
return belongings.weapon.speedFactor( this );
} else {
//Normally putting furor speed on unarmed attacks would be unnecessary
//But there's going to be that one guy who gets a furor+force ring combo
//This is for that one guy, you shall get your fists of fury!
return RingOfFuror.attackDelayMultiplier(this);
}
}
@Override
public void spend( float time ) {
justMoved = false;
TimekeepersHourglass.timeFreeze freeze = buff(TimekeepersHourglass.timeFreeze.class);
if (freeze != null) {
freeze.processTime(time);
return;
}
Swiftthistle.TimeBubble bubble = buff(Swiftthistle.TimeBubble.class);
if (bubble != null){
bubble.processTime(time);
return;
}
super.spend(time);
}
public void spendAndNext( float time ) {
busy();
spend( time );
next();
}
@Override
public boolean act() {
//calls to dungeon.observe will also update hero's local FOV.
fieldOfView = Dungeon.level.heroFOV;
if (!ready) {
//do a full observe (including fog update) if not resting.
if (!resting || buff(MindVision.class) != null || buff(Awareness.class) != null) {
Dungeon.observe();
} else {
//otherwise just directly re-calculate FOV
Dungeon.level.updateFieldOfView(this, fieldOfView);
}
}
checkVisibleMobs();
if (buff(FlavourBuff.class) != null) {
BuffIndicator.refreshHero();
}
if (paralysed > 0) {
curAction = null;
spendAndNext( TICK );
return false;
}
boolean actResult;
if (curAction == null) {
if (resting) {
spend( TIME_TO_REST );
next();
} else {
ready();
}
actResult = false;
} else {
resting = false;
ready = false;
if (curAction instanceof HeroAction.Move) {
actResult = actMove( (HeroAction.Move)curAction );
} else if (curAction instanceof HeroAction.Interact) {
actResult = actInteract( (HeroAction.Interact)curAction );
} else if (curAction instanceof HeroAction.Buy) {
actResult = actBuy( (HeroAction.Buy)curAction );
}else if (curAction instanceof HeroAction.PickUp) {
actResult = actPickUp( (HeroAction.PickUp)curAction );
} else if (curAction instanceof HeroAction.OpenChest) {
actResult = actOpenChest( (HeroAction.OpenChest)curAction );
} else if (curAction instanceof HeroAction.Unlock) {
actResult = actUnlock((HeroAction.Unlock) curAction);
} else if (curAction instanceof HeroAction.Descend) {
actResult = actDescend( (HeroAction.Descend)curAction );
} else if (curAction instanceof HeroAction.Ascend) {
actResult = actAscend( (HeroAction.Ascend)curAction );
} else if (curAction instanceof HeroAction.Attack) {
actResult = actAttack( (HeroAction.Attack)curAction );
} else if (curAction instanceof HeroAction.Alchemy) {
actResult = actAlchemy( (HeroAction.Alchemy)curAction );
} else {
actResult = false;
}
}
if( subClass == HeroSubClass.WARDEN && Dungeon.level.map[pos] == Terrain.FURROWED_GRASS){
Buff.affect(this, Barkskin.class).set( lvl + 5, 1 );
}
return actResult;
}
public void busy() {
ready = false;
}
private void ready() {
if (sprite.looping()) sprite.idle();
curAction = null;
damageInterrupt = true;
ready = true;
AttackIndicator.updateState();
GameScene.ready();
}
public void interrupt() {
if (isAlive() && curAction != null &&
((curAction instanceof HeroAction.Move && curAction.dst != pos) ||
(curAction instanceof HeroAction.Ascend || curAction instanceof HeroAction.Descend))) {
lastAction = curAction;
}
curAction = null;
}
public void resume() {
curAction = lastAction;
lastAction = null;
damageInterrupt = false;
next();
}
//FIXME this is a fairly crude way to track this, really it would be nice to have a short
//history of hero actions
public boolean justMoved = false;
private boolean actMove( HeroAction.Move action ) {
if (getCloser( action.dst )) {
justMoved = true;
return true;
} else {
ready();
return false;
}
}
private boolean actInteract( HeroAction.Interact action ) {
Char ch = action.ch;
if (ch.canInteract(this)) {
ready();
sprite.turnTo( pos, ch.pos );
return ch.interact();
} else {
if (fieldOfView[ch.pos] && getCloser( ch.pos )) {
return true;
} else {
ready();
return false;
}
}
}
private boolean actBuy( HeroAction.Buy action ) {
int dst = action.dst;
if (pos == dst || Dungeon.level.adjacent( pos, dst )) {
ready();
Heap heap = Dungeon.level.heaps.get( dst );
if (heap != null && heap.type == Type.FOR_SALE && heap.size() == 1) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndTradeItem( heap, true ) );
}
});
}
return false;
} else if (getCloser( dst )) {
return true;
} else {
ready();
return false;
}
}
private boolean actAlchemy( HeroAction.Alchemy action ) {
int dst = action.dst;
if (Dungeon.level.distance(dst, pos) <= 1) {
ready();
AlchemistsToolkit.kitEnergy kit = buff(AlchemistsToolkit.kitEnergy.class);
if (kit != null && kit.isCursed()){
GLog.w( Messages.get(AlchemistsToolkit.class, "cursed"));
return false;
}
Alchemy alch = (Alchemy) Dungeon.level.blobs.get(Alchemy.class);
//TODO logic for a well having dried up?
if (alch != null) {
alch.alchPos = dst;
AlchemyScene.setProvider( alch );
}
ShatteredPixelDungeon.switchScene(AlchemyScene.class);
return false;
} else if (getCloser( dst )) {
return true;
} else {
ready();
return false;
}
}
private boolean actPickUp( HeroAction.PickUp action ) {
int dst = action.dst;
if (pos == dst) {
Heap heap = Dungeon.level.heaps.get( pos );
if (heap != null) {
Item item = heap.peek();
if (item.doPickUp( this )) {
heap.pickUp();
if (item instanceof Dewdrop
|| item instanceof TimekeepersHourglass.sandBag
|| item instanceof DriedRose.Petal
|| item instanceof Key) {
//Do Nothing
} else {
boolean important =
(item instanceof ScrollOfUpgrade && ((Scroll)item).isKnown()) ||
(item instanceof PotionOfStrength && ((Potion)item).isKnown());
if (important) {
GLog.p( Messages.get(this, "you_now_have", item.name()) );
} else {
GLog.i( Messages.get(this, "you_now_have", item.name()) );
}
}
curAction = null;
} else {
heap.sprite.drop();
ready();
}
} else {
ready();
}
return false;
} else if (getCloser( dst )) {
return true;
} else {
ready();
return false;
}
}
private boolean actOpenChest( HeroAction.OpenChest action ) {
int dst = action.dst;
if (Dungeon.level.adjacent( pos, dst ) || pos == dst) {
Heap heap = Dungeon.level.heaps.get( dst );
if (heap != null && (heap.type != Type.HEAP && heap.type != Type.FOR_SALE)) {
if ((heap.type == Type.LOCKED_CHEST && Notes.keyCount(new GoldenKey(Dungeon.depth)) < 1)
|| (heap.type == Type.CRYSTAL_CHEST && Notes.keyCount(new CrystalKey(Dungeon.depth)) < 1)){
GLog.w( Messages.get(this, "locked_chest") );
ready();
return false;
}
switch (heap.type) {
case TOMB:
Sample.INSTANCE.play( Assets.SND_TOMB );
Camera.main.shake( 1, 0.5f );
break;
case SKELETON:
case REMAINS:
break;
default:
Sample.INSTANCE.play( Assets.SND_UNLOCK );
}
sprite.operate( dst );
} else {
ready();
}
return false;
} else if (getCloser( dst )) {
return true;
} else {
ready();
return false;
}
}
private boolean actUnlock( HeroAction.Unlock action ) {
int doorCell = action.dst;
if (Dungeon.level.adjacent( pos, doorCell )) {
boolean hasKey = false;
int door = Dungeon.level.map[doorCell];
if (door == Terrain.LOCKED_DOOR
&& Notes.keyCount(new IronKey(Dungeon.depth)) > 0) {
hasKey = true;
} else if (door == Terrain.LOCKED_EXIT
&& Notes.keyCount(new SkeletonKey(Dungeon.depth)) > 0) {
hasKey = true;
}
if (hasKey) {
sprite.operate( doorCell );
Sample.INSTANCE.play( Assets.SND_UNLOCK );
} else {
GLog.w( Messages.get(this, "locked_door") );
ready();
}
return false;
} else if (getCloser( doorCell )) {
return true;
} else {
ready();
return false;
}
}
private boolean actDescend( HeroAction.Descend action ) {
int stairs = action.dst;
if (pos == stairs) {
curAction = null;
Buff buff = buff(TimekeepersHourglass.timeFreeze.class);
if (buff != null) buff.detach();
buff = Dungeon.hero.buff(Swiftthistle.TimeBubble.class);
if (buff != null) buff.detach();
InterlevelScene.mode = InterlevelScene.Mode.DESCEND;
Game.switchScene( InterlevelScene.class );
return false;
} else if (getCloser( stairs )) {
return true;
} else {
ready();
return false;
}
}
private boolean actAscend( HeroAction.Ascend action ) {
int stairs = action.dst;
if (pos == stairs) {
if (Dungeon.depth == 1) {
if (belongings.getItem( Amulet.class ) == null) {
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndMessage( Messages.get(Hero.this, "leave") ) );
}
});
ready();
} else {
Badges.silentValidateHappyEnd();
Dungeon.win( Amulet.class );
Dungeon.deleteGame( GamesInProgress.curSlot, true );
Game.switchScene( SurfaceScene.class );
}
} else {
curAction = null;
Buff buff = buff(TimekeepersHourglass.timeFreeze.class);
if (buff != null) buff.detach();
buff = Dungeon.hero.buff(Swiftthistle.TimeBubble.class);
if (buff != null) buff.detach();
InterlevelScene.mode = InterlevelScene.Mode.ASCEND;
Game.switchScene( InterlevelScene.class );
}
return false;
} else if (getCloser( stairs )) {
return true;
} else {
ready();
return false;
}
}
private boolean actAttack( HeroAction.Attack action ) {
enemy = action.target;
if (enemy.isAlive() && canAttack( enemy ) && !isCharmedBy( enemy )) {
sprite.attack( enemy.pos );
return false;
} else {
if (fieldOfView[enemy.pos] && getCloser( enemy.pos )) {
return true;
} else {
ready();
return false;
}
}
}
public Char enemy(){
return enemy;
}
public void rest( boolean fullRest ) {
spendAndNext( TIME_TO_REST );
if (!fullRest) {
sprite.showStatus( CharSprite.DEFAULT, Messages.get(this, "wait") );
}
resting = fullRest;
}
@Override
public int attackProc( final Char enemy, int damage ) {
KindOfWeapon wep = belongings.weapon;
if (wep != null) damage = wep.proc( this, enemy, damage );
switch (subClass) {
case SNIPER:
if (wep instanceof MissileWeapon && !(wep instanceof SpiritBow.SpiritArrow)) {
Actor.add(new Actor() {
{
actPriority = VFX_PRIO;
}
@Override
protected boolean act() {
if (enemy.isAlive()) {
Buff.prolong(Hero.this, SnipersMark.class, 2f).object = enemy.id();
}
Actor.remove(this);
return true;
}
});
}
break;
default:
}
return damage;
}
@Override
public int defenseProc( Char enemy, int damage ) {
if (damage > 0 && subClass == HeroSubClass.BERSERKER){
Berserk berserk = Buff.affect(this, Berserk.class);
berserk.damage(damage);
}
if (belongings.armor != null) {
damage = belongings.armor.proc( enemy, this, damage );
}
Earthroot.Armor armor = buff( Earthroot.Armor.class );
if (armor != null) {
damage = armor.absorb( damage );
}
WandOfLivingEarth.RockArmor rockArmor = buff(WandOfLivingEarth.RockArmor.class);
if (rockArmor != null) {
damage = rockArmor.absorb(damage);
}
return damage;
}
@Override
public void damage( int dmg, Object src ) {
if (buff(TimekeepersHourglass.timeStasis.class) != null)
return;
if (!(src instanceof Hunger || src instanceof Viscosity.DeferedDamage) && damageInterrupt) {
interrupt();
resting = false;
}
if (this.buff(Drowsy.class) != null){
Buff.detach(this, Drowsy.class);
GLog.w( Messages.get(this, "pain_resist") );
}
CapeOfThorns.Thorns thorns = buff( CapeOfThorns.Thorns.class );
if (thorns != null) {
dmg = thorns.proc(dmg, (src instanceof Char ? (Char)src : null), this);
}
dmg = (int)Math.ceil(dmg * RingOfTenacity.damageMultiplier( this ));
//TODO improve this when I have proper damage source logic
if (belongings.armor != null && belongings.armor.hasGlyph(AntiMagic.class, this)
&& AntiMagic.RESISTS.contains(src.getClass())){
dmg -= AntiMagic.drRoll(belongings.armor.level());
}
super.damage( dmg, src );
}
public void checkVisibleMobs() {
ArrayList<Mob> visible = new ArrayList<>();
boolean newMob = false;
Mob target = null;
for (Mob m : Dungeon.level.mobs.toArray(new Mob[0])) {
if (fieldOfView[ m.pos ] && m.alignment == Alignment.ENEMY) {
visible.add(m);
if (!visibleEnemies.contains( m )) {
newMob = true;
}
if (!mindVisionEnemies.contains(m) && QuickSlotButton.autoAim(m) != -1){
if (target == null){
target = m;
} else if (distance(target) > distance(m)) {
target = m;
}
}
}
}
Char lastTarget = QuickSlotButton.lastTarget;
if (target != null && (lastTarget == null ||
!lastTarget.isAlive() ||
!fieldOfView[lastTarget.pos]) ||
(lastTarget instanceof WandOfWarding.Ward && mindVisionEnemies.contains(lastTarget))){
QuickSlotButton.target(target);
}
if (newMob) {
interrupt();
resting = false;
}
visibleEnemies = visible;
}
public int visibleEnemies() {
return visibleEnemies.size();
}
public Mob visibleEnemy( int index ) {
return visibleEnemies.get(index % visibleEnemies.size());
}
private boolean walkingToVisibleTrapInFog = false;
private boolean getCloser( final int target ) {
if (target == pos)
return false;
if (rooted) {
Camera.main.shake( 1, 1f );
return false;
}
int step = -1;
if (Dungeon.level.adjacent( pos, target )) {
path = null;
if (Actor.findChar( target ) == null) {
if (Dungeon.level.pit[target] && !flying && !Dungeon.level.solid[target]) {
if (!Chasm.jumpConfirmed){
Chasm.heroJump(this);
interrupt();
} else {
Chasm.heroFall(target);
}
return false;
}
if (Dungeon.level.passable[target] || Dungeon.level.avoid[target]) {
step = target;
}
if (walkingToVisibleTrapInFog
&& Dungeon.level.traps.get(target) != null
&& Dungeon.level.traps.get(target).visible){
return false;
}
}
} else {
boolean newPath = false;
if (path == null || path.isEmpty() || !Dungeon.level.adjacent(pos, path.getFirst()))
newPath = true;
else if (path.getLast() != target)
newPath = true;
else {
//looks ahead for path validity, up to length-1 or 2.
//Note that this is shorter than for mobs, so that mobs usually yield to the hero
int lookAhead = (int) GameMath.gate(0, path.size()-1, 2);
for (int i = 0; i < lookAhead; i++){
int cell = path.get(i);
if (!Dungeon.level.passable[cell] || (fieldOfView[cell] && Actor.findChar(cell) != null)) {
newPath = true;
break;
}
}
}
if (newPath) {
int len = Dungeon.level.length();
boolean[] p = Dungeon.level.passable;
boolean[] v = Dungeon.level.visited;
boolean[] m = Dungeon.level.mapped;
boolean[] passable = new boolean[len];
for (int i = 0; i < len; i++) {
passable[i] = p[i] && (v[i] || m[i]);
}
path = Dungeon.findPath(this, pos, target, passable, fieldOfView);
}
if (path == null) return false;
step = path.removeFirst();
}
if (step != -1) {
float speed = speed();
sprite.move(pos, step);
move(step);
spend( 1 / speed );
search(false);
if (subClass == HeroSubClass.FREERUNNER){
Buff.affect(this, Momentum.class).gainStack();
}
//FIXME this is a fairly sloppy fix for a crash involving pitfall traps.
//really there should be a way for traps to specify whether action should continue or
//not when they are pressed.
return InterlevelScene.mode != InterlevelScene.Mode.FALL;
} else {
return false;
}
}
public boolean handle( int cell ) {
if (cell == -1) {
return false;
}
Char ch;
Heap heap;
if (Dungeon.level.map[cell] == Terrain.ALCHEMY && cell != pos) {
curAction = new HeroAction.Alchemy( cell );
} else if (fieldOfView[cell] && (ch = Actor.findChar( cell )) instanceof Mob) {
if (ch.alignment != Alignment.ENEMY && ch.buff(Amok.class) == null) {
curAction = new HeroAction.Interact( ch );
} else {
curAction = new HeroAction.Attack( ch );
}
} else if ((heap = Dungeon.level.heaps.get( cell )) != null
//moving to an item doesn't auto-pickup when enemies are near...
&& (visibleEnemies.size() == 0 || cell == pos ||
//...but only for standard heaps, chests and similar open as normal.
(heap.type != Type.HEAP && heap.type != Type.FOR_SALE))) {
switch (heap.type) {
case HEAP:
curAction = new HeroAction.PickUp( cell );
break;
case FOR_SALE:
curAction = heap.size() == 1 && heap.peek().price() > 0 ?
new HeroAction.Buy( cell ) :
new HeroAction.PickUp( cell );
break;
default:
curAction = new HeroAction.OpenChest( cell );
}
} else if (Dungeon.level.map[cell] == Terrain.LOCKED_DOOR || Dungeon.level.map[cell] == Terrain.LOCKED_EXIT) {
curAction = new HeroAction.Unlock( cell );
} else if ((cell == Dungeon.level.exit || Dungeon.level.map[cell] == Terrain.EXIT || Dungeon.level.map[cell] == Terrain.UNLOCKED_EXIT)
&& Dungeon.depth < 26) {
curAction = new HeroAction.Descend( cell );
} else if (cell == Dungeon.level.entrance || Dungeon.level.map[cell] == Terrain.ENTRANCE) {
curAction = new HeroAction.Ascend( cell );
} else {
if (!Dungeon.level.visited[cell] && !Dungeon.level.mapped[cell]
&& Dungeon.level.traps.get(cell) != null && Dungeon.level.traps.get(cell).visible) {
walkingToVisibleTrapInFog = true;
} else {
walkingToVisibleTrapInFog = false;
}
curAction = new HeroAction.Move( cell );
lastAction = null;
}
return true;
}
public void earnExp( int exp, Class source ) {
this.exp += exp;
float percent = exp/(float)maxExp();
EtherealChains.chainsRecharge chains = buff(EtherealChains.chainsRecharge.class);
if (chains != null) chains.gainExp(percent);
HornOfPlenty.hornRecharge horn = buff(HornOfPlenty.hornRecharge.class);
if (horn != null) horn.gainCharge(percent);
AlchemistsToolkit.kitEnergy kit = buff(AlchemistsToolkit.kitEnergy.class);
if (kit != null) kit.gainCharge(percent);
Berserk berserk = buff(Berserk.class);
if (berserk != null) berserk.recover(percent);
if (source != PotionOfExperience.class) {
for (Item i : belongings) {
i.onHeroGainExp(percent, this);
}
}
boolean levelUp = false;
while (this.exp >= maxExp()) {
this.exp -= maxExp();
if (lvl < MAX_LEVEL) {
lvl++;
levelUp = true;
if (buff(ElixirOfMight.HTBoost.class) != null){
buff(ElixirOfMight.HTBoost.class).onLevelUp();
}
updateHT( true );
attackSkill++;
defenseSkill++;
} else {
Buff.prolong(this, Bless.class, 30f);
this.exp = 0;
GLog.p( Messages.get(this, "level_cap"));
Sample.INSTANCE.play( Assets.SND_LEVELUP );
}
}
if (levelUp) {
if (sprite != null) {
GLog.p( Messages.get(this, "new_level"), lvl );
sprite.showStatus( CharSprite.POSITIVE, Messages.get(Hero.class, "level_up") );
Sample.INSTANCE.play( Assets.SND_LEVELUP );
}
Item.updateQuickslot();
Badges.validateLevelReached();
}
}
public int maxExp() {
return maxExp( lvl );
}
public static int maxExp( int lvl ){
return 5 + lvl * 5;
}
public boolean isStarving() {
return Buff.affect(this, Hunger.class).isStarving();
}
@Override
public void add( Buff buff ) {
if (buff(TimekeepersHourglass.timeStasis.class) != null)
return;
super.add( buff );
if (sprite != null) {
String msg = buff.heroMessage();
if (msg != null){
GLog.w(msg);
}
if (buff instanceof Paralysis || buff instanceof Vertigo) {
interrupt();
}
}
BuffIndicator.refreshHero();
}
@Override
public void remove( Buff buff ) {
super.remove( buff );
BuffIndicator.refreshHero();
}
@Override
public float stealth() {
float stealth = super.stealth();
if (belongings.armor != null){
stealth = belongings.armor.stealthFactor(this, stealth);
}
return stealth;
}
@Override
public void die( Object cause ) {
curAction = null;
Ankh ankh = null;
//look for ankhs in player inventory, prioritize ones which are blessed.
for (Item item : belongings){
if (item instanceof Ankh) {
if (ankh == null || ((Ankh) item).isBlessed()) {
ankh = (Ankh) item;
}
}
}
if (ankh != null && ankh.isBlessed()) {
this.HP = HT/4;
//ensures that you'll get to act first in almost any case, to prevent reviving and then instantly dieing again.
PotionOfHealing.cure(this);
Buff.detach(this, Paralysis.class);
spend(-cooldown());
new Flare(8, 32).color(0xFFFF66, true).show(sprite, 2f);
CellEmitter.get(this.pos).start(Speck.factory(Speck.LIGHT), 0.2f, 3);
ankh.detach(belongings.backpack);
Sample.INSTANCE.play( Assets.SND_TELEPORT );
GLog.w( Messages.get(this, "revive") );
Statistics.ankhsUsed++;
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
((DriedRose.GhostHero) ch).sayAnhk();
return;
}
}
return;
}
Actor.fixTime();
super.die( cause );
if (ankh == null) {
reallyDie( cause );
} else {
Dungeon.deleteGame( GamesInProgress.curSlot, false );
final Ankh finalAnkh = ankh;
Game.runOnRenderThread(new Callback() {
@Override
public void call() {
GameScene.show( new WndResurrect( finalAnkh, cause ) );
}
});
}
}
public static void reallyDie( Object cause ) {
int length = Dungeon.level.length();
int[] map = Dungeon.level.map;
boolean[] visited = Dungeon.level.visited;
boolean[] discoverable = Dungeon.level.discoverable;
for (int i=0; i < length; i++) {
int terr = map[i];
if (discoverable[i]) {
visited[i] = true;
if ((Terrain.flags[terr] & Terrain.SECRET) != 0) {
Dungeon.level.discover( i );
}
}
}
Bones.leave();
Dungeon.observe();
GameScene.updateFog();
Dungeon.hero.belongings.identify();
int pos = Dungeon.hero.pos;
ArrayList<Integer> passable = new ArrayList<>();
for (Integer ofs : PathFinder.NEIGHBOURS8) {
int cell = pos + ofs;
if ((Dungeon.level.passable[cell] || Dungeon.level.avoid[cell]) && Dungeon.level.heaps.get( cell ) == null) {
passable.add( cell );
}
}
Collections.shuffle( passable );
ArrayList<Item> items = new ArrayList<>(Dungeon.hero.belongings.backpack.items);
for (Integer cell : passable) {
if (items.isEmpty()) {
break;
}
Item item = Random.element( items );
Dungeon.level.drop( item, cell ).sprite.drop( pos );
items.remove( item );
}
GameScene.gameOver();
if (cause instanceof Hero.Doom) {
((Hero.Doom)cause).onDeath();
}
Dungeon.deleteGame( GamesInProgress.curSlot, true );
}
//effectively cache this buff to prevent having to call buff(Berserk.class) a bunch.
//This is relevant because we call isAlive during drawing, which has both performance
//and concurrent modification implications if that method calls buff(Berserk.class)
private Berserk berserk;
@Override
public boolean isAlive() {
if (HP <= 0){
if (berserk == null) berserk = buff(Berserk.class);
return berserk != null && berserk.berserking();
} else {
berserk = null;
return super.isAlive();
}
}
@Override
public void move( int step ) {
super.move( step );
if (!flying) {
if (Dungeon.level.water[pos]) {
Sample.INSTANCE.play( Assets.SND_WATER, 1, 1, Random.Float( 0.8f, 1.25f ) );
} else {
Sample.INSTANCE.play( Assets.SND_STEP );
}
}
}
@Override
public void onMotionComplete() {
Dungeon.observe();
search( false );
GameScene.checkKeyHold();
}
@Override
public void onAttackComplete() {
AttackIndicator.target(enemy);
boolean hit = attack( enemy );
if (subClass == HeroSubClass.GLADIATOR){
if (hit) {
Buff.affect( this, Combo.class ).hit( enemy );
} else {
Combo combo = buff(Combo.class);
if (combo != null) combo.miss( enemy );
}
}
Invisibility.dispel();
spend( attackDelay() );
curAction = null;
super.onAttackComplete();
}
@Override
public void onOperateComplete() {
if (curAction instanceof HeroAction.Unlock) {
int doorCell = ((HeroAction.Unlock)curAction).dst;
int door = Dungeon.level.map[doorCell];
if (Dungeon.level.distance(pos, doorCell) <= 1) {
boolean hasKey = true;
if (door == Terrain.LOCKED_DOOR) {
hasKey = Notes.remove(new IronKey(Dungeon.depth));
if (hasKey) Level.set(doorCell, Terrain.DOOR);
} else {
hasKey = Notes.remove(new SkeletonKey(Dungeon.depth));
if (hasKey) Level.set(doorCell, Terrain.UNLOCKED_EXIT);
}
if (hasKey) {
GameScene.updateKeyDisplay();
Level.set(doorCell, door == Terrain.LOCKED_DOOR ? Terrain.DOOR : Terrain.UNLOCKED_EXIT);
GameScene.updateMap(doorCell);
spend(Key.TIME_TO_UNLOCK);
}
}
} else if (curAction instanceof HeroAction.OpenChest) {
Heap heap = Dungeon.level.heaps.get( ((HeroAction.OpenChest)curAction).dst );
if (Dungeon.level.distance(pos, heap.pos) <= 1){
boolean hasKey = true;
if (heap.type == Type.SKELETON || heap.type == Type.REMAINS) {
Sample.INSTANCE.play( Assets.SND_BONES );
} else if (heap.type == Type.LOCKED_CHEST){
hasKey = Notes.remove(new GoldenKey(Dungeon.depth));
} else if (heap.type == Type.CRYSTAL_CHEST){
hasKey = Notes.remove(new CrystalKey(Dungeon.depth));
}
if (hasKey) {
GameScene.updateKeyDisplay();
heap.open(this);
spend(Key.TIME_TO_UNLOCK);
}
}
}
curAction = null;
super.onOperateComplete();
}
@Override
public boolean isImmune(Class effect) {
if (effect == Burning.class
&& belongings.armor != null
&& belongings.armor.hasGlyph(Brimstone.class, this)){
return true;
}
return super.isImmune(effect);
}
public boolean search( boolean intentional ) {
if (!isAlive()) return false;
boolean smthFound = false;
int distance = heroClass == HeroClass.ROGUE ? 2 : 1;
boolean foresight = buff(Foresight.class) != null;
if (foresight) distance++;
int cx = pos % Dungeon.level.width();
int cy = pos / Dungeon.level.width();
int ax = cx - distance;
if (ax < 0) {
ax = 0;
}
int bx = cx + distance;
if (bx >= Dungeon.level.width()) {
bx = Dungeon.level.width() - 1;
}
int ay = cy - distance;
if (ay < 0) {
ay = 0;
}
int by = cy + distance;
if (by >= Dungeon.level.height()) {
by = Dungeon.level.height() - 1;
}
TalismanOfForesight.Foresight talisman = buff( TalismanOfForesight.Foresight.class );
boolean cursed = talisman != null && talisman.isCursed();
for (int y = ay; y <= by; y++) {
for (int x = ax, p = ax + y * Dungeon.level.width(); x <= bx; x++, p++) {
if (fieldOfView[p] && p != pos) {
if (intentional) {
sprite.parent.addToBack( new CheckedCell( p ) );
}
if (Dungeon.level.secret[p]){
Trap trap = Dungeon.level.traps.get( p );
if (trap != null && !trap.canBeSearched){
continue;
}
float chance;
//intentional searches always succeed
if (intentional){
chance = 1f;
//unintentional searches always fail with a cursed talisman
} else if (cursed) {
chance = 0f;
//..and always succeed when affected by foresight buff
} else if (foresight){
chance = 1f;
//unintentional trap detection scales from 40% at floor 0 to 30% at floor 25
} else if (Dungeon.level.map[p] == Terrain.SECRET_TRAP) {
chance = 0.4f - (Dungeon.depth / 250f);
//unintentional door detection scales from 20% at floor 0 to 0% at floor 20
} else {
chance = 0.2f - (Dungeon.depth / 100f);
}
if (Random.Float() < chance) {
int oldValue = Dungeon.level.map[p];
GameScene.discoverTile( p, oldValue );
Dungeon.level.discover( p );
ScrollOfMagicMapping.discover( p );
smthFound = true;
if (talisman != null && !talisman.isCursed())
talisman.charge();
}
}
}
}
}
if (intentional) {
sprite.showStatus( CharSprite.DEFAULT, Messages.get(this, "search") );
sprite.operate( pos );
if (!Dungeon.level.locked) {
if (cursed) {
GLog.n(Messages.get(this, "search_distracted"));
Buff.affect(this, Hunger.class).reduceHunger(TIME_TO_SEARCH - (2 * HUNGER_FOR_SEARCH));
} else {
Buff.affect(this, Hunger.class).reduceHunger(TIME_TO_SEARCH - HUNGER_FOR_SEARCH);
}
}
spendAndNext(TIME_TO_SEARCH);
}
if (smthFound) {
GLog.w( Messages.get(this, "noticed_smth") );
Sample.INSTANCE.play( Assets.SND_SECRET );
interrupt();
}
return smthFound;
}
public void resurrect( int resetLevel ) {
HP = HT;
Dungeon.gold = 0;
exp = 0;
belongings.resurrect( resetLevel );
live();
}
@Override
public void next() {
if (isAlive())
super.next();
}
public static interface Doom {
public void onDeath();
}
}
| 46,451 | Hero | java | en | java | code | {"qsc_code_num_words": 5111, "qsc_code_num_chars": 46451.0, "qsc_code_mean_word_length": 6.10252397, "qsc_code_frac_words_unique": 0.15789474, "qsc_code_frac_chars_top_2grams": 0.03174094, "qsc_code_frac_chars_top_3grams": 0.12548894, "qsc_code_frac_chars_top_4grams": 0.14389227, "qsc_code_frac_chars_dupe_5grams": 0.33799295, "qsc_code_frac_chars_dupe_6grams": 0.24026932, "qsc_code_frac_chars_dupe_7grams": 0.09268996, "qsc_code_frac_chars_dupe_8grams": 0.07592177, "qsc_code_frac_chars_dupe_9grams": 0.05662071, "qsc_code_frac_chars_dupe_10grams": 0.05161911, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00437341, "qsc_code_frac_chars_whitespace": 0.20255753, "qsc_code_size_file_byte": 46451.0, "qsc_code_num_lines": 1769.0, "qsc_code_num_chars_line_max": 137.0, "qsc_code_num_chars_line_mean": 26.25833804, "qsc_code_frac_chars_alphabet": 0.83764376, "qsc_code_frac_chars_comments": 0.06040774, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.22797527, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00428457, "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.0001833, "qsc_code_frac_lines_prompt_comments": 0.00056529, "qsc_code_frac_lines_assert": 0.0, "qsc_codejava_cate_var_zero": 0.0, "qsc_codejava_frac_lines_func_ratio": 0.05486862, "qsc_codejava_score_lines_no_logic": 0.19629057, "qsc_codejava_frac_words_no_modifier": 0.94444444, "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} |
01bps/WiFi-Auto-Auth | CONTRIBUTING.md | # Contributing to WiFi-Auto-Auth
Welcome! We're excited to have you contribute to this project. Don't worry if you're new to open source - we're here to help!
## First Things First - Star This Repo!
Click the ⭐ button at the top right of this page. It helps others find this project!
---
## Quick Start (5 Simple Steps)
### Step 1: Pick an Issue
- Go to the [Issues tab](../../issues)
- Look for `good first issue` label if you're new
- Comment "I'd like to work on this!" on the issue
### Step 2: Set Up Your Workspace
```bash
# Fork this repo (click Fork button on GitHub), then:
git clone https://github.com/01bps/WiFi-Auto-Auth.git
cd WiFi-Auto-Auth
git checkout -b my-new-feature
```
### Step 3: Make Your Changes
Write your code
Test it locally
Make sure it works!
### Step 4: Document What You Did
Open [HACKTOBERFEST.md](HACKTOBERFEST.md) and add your contribution at the bottom:
## What I Added/Fixed
**Contributor:** @your-github-username
**Issue:** #issue-number
### What I Changed:
- Added/Fixed/Improved [describe in simple words]
- Modified these files: `filename.py`
---
### Step 5: Submit Your Work
```bash
git add .
git commit -m "Added [brief description] (fixes #issue-number)"
git push origin my-new-feature
```
Then go to GitHub and click "Create Pull Request"
| 1,299 | CONTRIBUTING | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.20679012, "qsc_doc_num_sentences": 16.0, "qsc_doc_num_words": 218, "qsc_doc_num_chars": 1299.0, "qsc_doc_num_lines": 49.0, "qsc_doc_mean_word_length": 4.2293578, "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.58256881, "qsc_doc_entropy_unigram": 4.63154882, "qsc_doc_frac_words_all_caps": 0.0154321, "qsc_doc_frac_lines_dupe_lines": 0.16216216, "qsc_doc_frac_chars_dupe_lines": 0.02086677, "qsc_doc_frac_chars_top_2grams": 0.02603037, "qsc_doc_frac_chars_top_3grams": 0.03904555, "qsc_doc_frac_chars_top_4grams": 0.02169197, "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": 18.11764706, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.85009311, "qsc_doc_frac_chars_digital": 0.00744879, "qsc_doc_frac_chars_whitespace": 0.17321016, "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} |
01bps/WiFi-Auto-Auth | HACKTOBERFEST.md | # Hacktoberfest 2025 - Our Contributors
This page celebrates everyone who contributed to WiFi-Auto-Auth during Hacktoberfest!
## ⭐ Star This Repo!
Show your support by starring this repository!
---
## 📊 Stats
- **Contributors:** 0
- **Issues Fixed:** 0
- **PRs Merged:** 0
---
## 🏆 All Contributions
Keep Adding your contribution in the below template,One after the other:
## Implement Password Encryption
**Contributor ID:** AnikethBhosale
**Issue reference No.:** #4
### What I Changed:
- Integrated Fernet symmetric encryption for WiFi and dashboard passwords in `config.json` for enhanced security
- Passwords are now automatically encrypted on first run and stored securely in both config and database
- Added logic to prevent multiple encryption of already encrypted passwords
- Passwords are only decrypted in memory for login/authentication, never stored or logged in plaintext
- Updated README with an 'Updated Security Notes' section describing the new encryption workflow
- Added `cryptography` to `requirements.txt` to document the new dependency
**Files Changed:** `wifi_auto_login.py`, `dashboard.py`, `config.example.json`, `requirements.txt`, `readme.md`
---
## Professional Logging System Implementation
**Contributor ID:** cmarchena
**Issue reference No.:** #6
### What I Changed:
- Implemented comprehensive professional logging system with configurable log levels
- Added CLI arguments for logging configuration (--log-level, --view-logs, etc.)
- Created logging configuration module with environment variable support
- Added log rotation for automatic file management
- Updated README with detailed logging options documentation
- Created .gitignore file to exclude logs, cache, and sensitive files
**Files Changed:** `wifi_auto_login.py`, `config/logging_config.py`, `readme.md`, `.gitignore`
---
## Internet Connectivity Check
**Contributor ID:** singhxabhijeet
**Issue reference No.:** #11
**What I Changed:**
- Implemented an internet connectivity check to prevent unnecessary login attempts.
- Added a `check_connectivity()` function to verify internet access before running the login logic.
- Updated the script to notify the user and exit gracefully if a connection is already active.
- Improved user feedback regarding the network status.
**Files Changed:** `wifi_auto_login.py`
---
## 🙏 Thank You!
Every contribution makes this project better. We appreciate you!
**Don't forget to ⭐ star this repository!**
---
*Updated: October 2025*
| 2,492 | HACKTOBERFEST | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.0, "qsc_doc_frac_words_redpajama_stop": 0.164859, "qsc_doc_num_sentences": 30.0, "qsc_doc_num_words": 327, "qsc_doc_num_chars": 2492.0, "qsc_doc_num_lines": 77.0, "qsc_doc_mean_word_length": 5.80428135, "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.56574924, "qsc_doc_entropy_unigram": 4.99166645, "qsc_doc_frac_words_all_caps": 0.01952278, "qsc_doc_frac_lines_dupe_lines": 0.15686275, "qsc_doc_frac_chars_dupe_lines": 0.02319801, "qsc_doc_frac_chars_top_2grams": 0.01685985, "qsc_doc_frac_chars_top_3grams": 0.02528978, "qsc_doc_frac_chars_top_4grams": 0.03161222, "qsc_doc_frac_chars_dupe_5grams": 0.0426765, "qsc_doc_frac_chars_dupe_6grams": 0.0426765, "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": 22.29906542, "qsc_doc_frac_chars_hyperlink_html_tag": 0.0, "qsc_doc_frac_chars_alphabet": 0.88169014, "qsc_doc_frac_chars_digital": 0.00704225, "qsc_doc_frac_chars_whitespace": 0.14526485, "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} |
01bps/WiFi-Auto-Auth | dashboard.py | """
WiFi Auto Auth Dashboard - Web-based monitoring interface for WiFi login attempts
"""
import sqlite3
import json
import os
from datetime import datetime, timedelta
from typing import List, Dict, Optional
from fastapi import FastAPI, Request, Depends, HTTPException, status, Form
from fastapi.templating import Jinja2Templates
from fastapi.staticfiles import StaticFiles
from fastapi.responses import HTMLResponse, RedirectResponse
from fastapi.security import HTTPBasic, HTTPBasicCredentials
from pydantic import BaseModel
import uvicorn
import secrets
from pathlib import Path
from cryptography.fernet import Fernet
# Import existing logging configuration
try:
from config.logging_config import get_logger
logger = get_logger(__name__)
except ImportError:
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# --- CONFIGURATION ---
CONFIG_PATH = "config.json"
DB_NAME = "wifi_log.db"
SECRET_KEY_PATH = "config/secret.key"
def get_or_create_secret_key():
if os.path.exists(SECRET_KEY_PATH):
with open(SECRET_KEY_PATH, "rb") as f:
return f.read()
key = Fernet.generate_key()
os.makedirs(os.path.dirname(SECRET_KEY_PATH), exist_ok=True)
with open(SECRET_KEY_PATH, "wb") as f:
f.write(key)
return key
def decrypt_if_encrypted(value, fernet):
try:
return fernet.decrypt(value.encode()).decode()
except Exception:
return value
def load_dashboard_config():
"""Load dashboard configuration from config.json and decrypt password if needed"""
if not os.path.exists(CONFIG_PATH):
# Use default configuration if config.json doesn't exist
return {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123",
"secret_key": secrets.token_urlsafe(32)
}
try:
with open(CONFIG_PATH, "r") as f:
config = json.load(f)
dash = config.get("dashboard", {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123",
"secret_key": secrets.token_urlsafe(32)
})
key = get_or_create_secret_key()
fernet = Fernet(key)
dash["password"] = decrypt_if_encrypted(dash["password"], fernet)
return dash
except (json.JSONDecodeError, KeyError):
logger.warning("Invalid config.json, using default dashboard configuration")
return {
"host": "127.0.0.1",
"port": 8000,
"username": "admin",
"password": "admin123",
"secret_key": secrets.token_urlsafe(32)
}
# Dashboard configuration
DASHBOARD_CONFIG = load_dashboard_config()
# --- PYDANTIC MODELS ---
class LoginAttempt(BaseModel):
id: int
timestamp: str
network_name: Optional[str] = None
network_ssid: Optional[str] = None
username: str
a: str
response_status: str
response_message: str
class DashboardStats(BaseModel):
total_attempts: int
successful_attempts: int
failed_attempts: int
success_rate: float
last_attempt: Optional[str]
class FilterParams(BaseModel):
start_date: Optional[str] = None
end_date: Optional[str] = None
status_filter: Optional[str] = None
network_filter: Optional[str] = None
limit: int = 50
# --- FASTAPI APP SETUP ---
app = FastAPI(title="WiFi Auto Auth Dashboard", version="1.0.0")
# Setup templates and static files
templates = Jinja2Templates(directory="templates")
# Create static directory if it doesn't exist
static_dir = Path("static")
static_dir.mkdir(exist_ok=True)
app.mount("/static", StaticFiles(directory="static"), name="static")
# Simple authentication
security = HTTPBasic()
def authenticate(credentials: HTTPBasicCredentials = Depends(security)):
"""Simple HTTP Basic Authentication"""
correct_username = secrets.compare_digest(credentials.username, DASHBOARD_CONFIG["username"])
correct_password = secrets.compare_digest(credentials.password, DASHBOARD_CONFIG["password"])
if not (correct_username and correct_password):
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid credentials",
headers={"WWW-Authenticate": "Basic"},
)
return credentials.username
# --- DATABASE FUNCTIONS ---
def get_db_connection():
"""Get database connection"""
conn = sqlite3.connect(DB_NAME)
if not os.path.exists(DB_NAME):
logger.warning(f"Database {DB_NAME} not found. Creating new database.")
# Ensure table exists with multi-network support
cursor = conn.cursor()
# Check if table exists and get its schema
cursor.execute("PRAGMA table_info(login_attempts)")
columns = [row[1] for row in cursor.fetchall()]
if not columns:
# Create new table with network support
cursor.execute("""
CREATE TABLE login_attempts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT,
network_name TEXT,
network_ssid TEXT,
username TEXT,
password TEXT,
a TEXT,
response_status TEXT,
response_message TEXT
)
""")
logger.info("Created new login_attempts table with network support")
else:
# Check if we need to add network columns to existing table
if 'network_name' not in columns:
cursor.execute("ALTER TABLE login_attempts ADD COLUMN network_name TEXT")
logger.info("Added network_name column to existing table")
if 'network_ssid' not in columns:
cursor.execute("ALTER TABLE login_attempts ADD COLUMN network_ssid TEXT")
logger.info("Added network_ssid column to existing table")
conn.commit()
return conn
def get_login_attempts(filters: FilterParams, network_filter: Optional[str] = None) -> List[Dict]:
"""Get login attempts with filters"""
conn = get_db_connection()
cursor = conn.cursor()
# Check if table has network columns
cursor.execute("PRAGMA table_info(login_attempts)")
columns = [row[1] for row in cursor.fetchall()]
has_network_columns = 'network_name' in columns and 'network_ssid' in columns
if has_network_columns:
query = """
SELECT id, timestamp, network_name, network_ssid, username, a, response_status, response_message
FROM login_attempts
WHERE 1=1
"""
else:
query = """
SELECT id, timestamp, username, a, response_status, response_message
FROM login_attempts
WHERE 1=1
"""
params = []
if filters.start_date:
query += " AND timestamp >= ?"
params.append(filters.start_date)
if filters.end_date:
query += " AND timestamp <= ?"
params.append(filters.end_date)
if filters.status_filter:
if filters.status_filter == "success":
query += " AND response_status = '200'"
elif filters.status_filter == "failed":
query += " AND response_status != '200'"
if network_filter and has_network_columns:
query += " AND network_name = ?"
params.append(network_filter)
query += " ORDER BY timestamp DESC LIMIT ?"
params.append(filters.limit)
cursor.execute(query, params)
rows = cursor.fetchall()
conn.close()
if has_network_columns:
return [
{
"id": row[0],
"timestamp": row[1],
"network_name": row[2],
"network_ssid": row[3],
"username": row[4],
"a": row[5],
"response_status": row[6],
"response_message": row[7]
}
for row in rows
]
else:
return [
{
"id": row[0],
"timestamp": row[1],
"network_name": "Legacy",
"network_ssid": "Unknown",
"username": row[2],
"a": row[3],
"response_status": row[4],
"response_message": row[5]
}
for row in rows
]
def get_dashboard_stats() -> DashboardStats:
"""Get dashboard statistics"""
conn = get_db_connection()
cursor = conn.cursor()
# Total attempts
cursor.execute("SELECT COUNT(*) FROM login_attempts")
total_attempts = cursor.fetchone()[0]
# Successful attempts (assuming 200 is success)
cursor.execute("SELECT COUNT(*) FROM login_attempts WHERE response_status = '200'")
successful_attempts = cursor.fetchone()[0]
# Failed attempts
failed_attempts = total_attempts - successful_attempts
# Success rate
success_rate = (successful_attempts / total_attempts * 100) if total_attempts > 0 else 0
# Last attempt
cursor.execute("SELECT timestamp FROM login_attempts ORDER BY timestamp DESC LIMIT 1")
last_attempt_row = cursor.fetchone()
last_attempt = last_attempt_row[0] if last_attempt_row else None
conn.close()
return DashboardStats(
total_attempts=total_attempts,
successful_attempts=successful_attempts,
failed_attempts=failed_attempts,
success_rate=round(success_rate, 2),
last_attempt=last_attempt
)
def get_network_stats() -> List[Dict]:
"""Get statistics per network profile"""
conn = get_db_connection()
cursor = conn.cursor()
# Check if table has network columns
cursor.execute("PRAGMA table_info(login_attempts)")
columns = [row[1] for row in cursor.fetchall()]
has_network_columns = 'network_name' in columns and 'network_ssid' in columns
if not has_network_columns:
return []
query = """
SELECT
network_name,
network_ssid,
COUNT(*) as total_attempts,
SUM(CASE WHEN response_status = '200' THEN 1 ELSE 0 END) as successful_attempts,
MAX(timestamp) as last_attempt
FROM login_attempts
WHERE network_name IS NOT NULL
GROUP BY network_name, network_ssid
ORDER BY total_attempts DESC
"""
cursor.execute(query)
rows = cursor.fetchall()
conn.close()
stats = []
for row in rows:
network_name, network_ssid, total, successful, last_attempt = row
failed = total - successful
success_rate = (successful / total * 100) if total > 0 else 0
stats.append({
"network_name": network_name,
"network_ssid": network_ssid,
"total_attempts": total,
"successful_attempts": successful,
"failed_attempts": failed,
"success_rate": round(success_rate, 2),
"last_attempt": last_attempt
})
return stats
def get_hourly_stats(days: int = 7) -> List[Dict]:
"""Get hourly login attempt statistics for the last N days"""
conn = get_db_connection()
cursor = conn.cursor()
start_date = datetime.now() - timedelta(days=days)
query = """
SELECT
strftime('%Y-%m-%d %H', timestamp) as hour,
COUNT(*) as total_attempts,
SUM(CASE WHEN response_status = '200' THEN 1 ELSE 0 END) as successful_attempts
FROM login_attempts
WHERE timestamp >= ?
GROUP BY strftime('%Y-%m-%d %H', timestamp)
ORDER BY hour
"""
cursor.execute(query, (start_date.isoformat(),))
rows = cursor.fetchall()
conn.close()
return [
{
"hour": row[0],
"total_attempts": row[1],
"successful_attempts": row[2],
"failed_attempts": row[1] - row[2]
}
for row in rows
]
# --- ROUTES ---
@app.get("/", response_class=HTMLResponse)
async def dashboard(request: Request, username: str = Depends(authenticate)):
"""Main dashboard page"""
logger.info(f"Dashboard accessed by user: {username}")
# Get recent login attempts
filters = FilterParams(limit=10)
recent_attempts = get_login_attempts(filters)
# Get statistics
stats = get_dashboard_stats()
network_stats = get_network_stats()
return templates.TemplateResponse("dashboard.html", {
"request": request,
"recent_attempts": recent_attempts,
"stats": stats,
"network_stats": network_stats,
"username": username
})
@app.get("/api/attempts")
async def get_attempts_api(
start_date: Optional[str] = None,
end_date: Optional[str] = None,
status_filter: Optional[str] = None,
network_filter: Optional[str] = None,
limit: int = 50,
username: str = Depends(authenticate)
):
"""API endpoint to get login attempts with filters"""
filters = FilterParams(
start_date=start_date,
end_date=end_date,
status_filter=status_filter,
network_filter=network_filter,
limit=limit
)
attempts = get_login_attempts(filters, network_filter)
logger.info(f"API call: Retrieved {len(attempts)} login attempts")
return {"attempts": attempts}
@app.get("/api/stats")
async def get_stats_api(username: str = Depends(authenticate)):
"""API endpoint to get dashboard statistics"""
stats = get_dashboard_stats()
logger.info("API call: Retrieved dashboard statistics")
return {"stats": stats}
@app.get("/api/network-stats")
async def get_network_stats_api(username: str = Depends(authenticate)):
"""API endpoint to get network-specific statistics"""
network_stats = get_network_stats()
logger.info("API call: Retrieved network statistics")
return {"network_stats": network_stats}
return stats
@app.get("/api/hourly-stats")
async def get_hourly_stats_api(days: int = 7, username: str = Depends(authenticate)):
"""API endpoint to get hourly statistics"""
stats = get_hourly_stats(days)
logger.info(f"API call: Retrieved hourly statistics for last {days} days")
return {"hourly_stats": stats}
@app.get("/login", response_class=HTMLResponse)
async def login_page(request: Request):
"""Login page (for custom authentication if needed)"""
return templates.TemplateResponse("login.html", {"request": request})
@app.get("/health")
async def health_check():
"""Health check endpoint"""
return {"status": "healthy", "timestamp": datetime.now().isoformat()}
# --- SERVER MANAGEMENT ---
def start_dashboard_server(host: str = None, port: int = None, debug: bool = False):
"""Start the dashboard server"""
host = host or DASHBOARD_CONFIG["host"]
port = port or DASHBOARD_CONFIG["port"]
logger.info(f"Starting WiFi Auto Auth Dashboard on http://{host}:{port}")
logger.info(f"Username: {DASHBOARD_CONFIG['username']}")
logger.info(f"Password: {DASHBOARD_CONFIG['password']}")
uvicorn.run(
"dashboard:app",
host=host,
port=port,
reload=debug,
log_level="info"
)
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description="WiFi Auto Auth Dashboard")
parser.add_argument("--host", default="127.0.0.1", help="Host to bind the server")
parser.add_argument("--port", type=int, default=8000, help="Port to bind the server")
parser.add_argument("--debug", action="store_true", help="Enable debug mode")
args = parser.parse_args()
start_dashboard_server(args.host, args.port, args.debug) | 15,744 | dashboard | py | en | python | code | {"qsc_code_num_words": 1812, "qsc_code_num_chars": 15744.0, "qsc_code_mean_word_length": 5.33333333, "qsc_code_frac_words_unique": 0.16721854, "qsc_code_frac_chars_top_2grams": 0.02959437, "qsc_code_frac_chars_top_3grams": 0.01707368, "qsc_code_frac_chars_top_4grams": 0.01086507, "qsc_code_frac_chars_dupe_5grams": 0.31012003, "qsc_code_frac_chars_dupe_6grams": 0.22837334, "qsc_code_frac_chars_dupe_7grams": 0.20912666, "qsc_code_frac_chars_dupe_8grams": 0.17849752, "qsc_code_frac_chars_dupe_9grams": 0.16897765, "qsc_code_frac_chars_dupe_10grams": 0.16152732, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01177785, "qsc_code_frac_chars_whitespace": 0.26117886, "qsc_code_size_file_byte": 15744.0, "qsc_code_num_lines": 487.0, "qsc_code_num_chars_line_max": 110.0, "qsc_code_num_chars_line_mean": 32.32854209, "qsc_code_frac_chars_alphabet": 0.8190337, "qsc_code_frac_chars_comments": 0.07272612, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.23497268, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.25992831, "qsc_code_frac_chars_long_word_length": 0.00969987, "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.0273224, "qsc_codepython_cate_var_zero": false, "qsc_codepython_frac_lines_pass": 0.02185792, "qsc_codepython_frac_lines_import": 0.05191257, "qsc_codepython_frac_lines_simplefunc": 0.0, "qsc_codepython_score_lines_no_logic": 0.19945355, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.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.actors.hero;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.items.BrokenSeal;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.armor.ClothArmor;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.CloakOfShadows;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.PotionBandolier;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.ScrollHolder;
import com.shatteredpixel.shatteredpixeldungeon.items.bags.VelvetPouch;
import com.shatteredpixel.shatteredpixeldungeon.items.food.Food;
import com.shatteredpixel.shatteredpixeldungeon.items.food.SmallRation;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfInvisibility;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfMindVision;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfIdentify;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfLullaby;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRage;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfMagicMissile;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.SpiritBow;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Dagger;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.Gloves;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MagesStaff;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.WornShortsword;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingKnife;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.ThrowingStone;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.watabou.utils.Bundle;
import com.watabou.utils.DeviceCompat;
public enum HeroClass {
WARRIOR( "warrior", HeroSubClass.BERSERKER, HeroSubClass.GLADIATOR ),
MAGE( "mage", HeroSubClass.BATTLEMAGE, HeroSubClass.WARLOCK ),
ROGUE( "rogue", HeroSubClass.ASSASSIN, HeroSubClass.FREERUNNER ),
HUNTRESS( "huntress", HeroSubClass.SNIPER, HeroSubClass.WARDEN );
private String title;
private HeroSubClass[] subClasses;
HeroClass( String title, HeroSubClass...subClasses ) {
this.title = title;
this.subClasses = subClasses;
}
public void initHero( Hero hero ) {
hero.heroClass = this;
initCommon( hero );
switch (this) {
case WARRIOR:
initWarrior( hero );
break;
case MAGE:
initMage( hero );
break;
case ROGUE:
initRogue( hero );
break;
case HUNTRESS:
initHuntress( hero );
break;
}
}
private static void initCommon( Hero hero ) {
Item i = new ClothArmor().identify();
if (!Challenges.isItemBlocked(i)) hero.belongings.armor = (ClothArmor)i;
i = new Food();
if (!Challenges.isItemBlocked(i)) i.collect();
if (Dungeon.isChallenged(Challenges.NO_FOOD)){
new SmallRation().collect();
}
new ScrollOfIdentify().identify();
}
public Badges.Badge masteryBadge() {
switch (this) {
case WARRIOR:
return Badges.Badge.MASTERY_WARRIOR;
case MAGE:
return Badges.Badge.MASTERY_MAGE;
case ROGUE:
return Badges.Badge.MASTERY_ROGUE;
case HUNTRESS:
return Badges.Badge.MASTERY_HUNTRESS;
}
return null;
}
private static void initWarrior( Hero hero ) {
(hero.belongings.weapon = new WornShortsword()).identify();
ThrowingStone stones = new ThrowingStone();
stones.quantity(3).collect();
Dungeon.quickslot.setSlot(0, stones);
if (hero.belongings.armor != null){
hero.belongings.armor.affixSeal(new BrokenSeal());
}
new PotionBandolier().collect();
Dungeon.LimitedDrops.POTION_BANDOLIER.drop();
new PotionOfHealing().identify();
new ScrollOfRage().identify();
}
private static void initMage( Hero hero ) {
MagesStaff staff;
staff = new MagesStaff(new WandOfMagicMissile());
(hero.belongings.weapon = staff).identify();
hero.belongings.weapon.activate(hero);
Dungeon.quickslot.setSlot(0, staff);
new ScrollHolder().collect();
Dungeon.LimitedDrops.SCROLL_HOLDER.drop();
new ScrollOfUpgrade().identify();
new PotionOfLiquidFlame().identify();
}
private static void initRogue( Hero hero ) {
(hero.belongings.weapon = new Dagger()).identify();
CloakOfShadows cloak = new CloakOfShadows();
(hero.belongings.misc1 = cloak).identify();
hero.belongings.misc1.activate( hero );
ThrowingKnife knives = new ThrowingKnife();
knives.quantity(3).collect();
Dungeon.quickslot.setSlot(0, cloak);
Dungeon.quickslot.setSlot(1, knives);
new VelvetPouch().collect();
Dungeon.LimitedDrops.VELVET_POUCH.drop();
new ScrollOfMagicMapping().identify();
new PotionOfInvisibility().identify();
}
private static void initHuntress( Hero hero ) {
(hero.belongings.weapon = new Gloves()).identify();
SpiritBow bow = new SpiritBow();
bow.identify().collect();
Dungeon.quickslot.setSlot(0, bow);
new VelvetPouch().collect();
Dungeon.LimitedDrops.VELVET_POUCH.drop();
new PotionOfMindVision().identify();
new ScrollOfLullaby().identify();
}
public String title() {
return Messages.get(HeroClass.class, title);
}
public HeroSubClass[] subClasses() {
return subClasses;
}
public String spritesheet() {
switch (this) {
case WARRIOR: default:
return Assets.WARRIOR;
case MAGE:
return Assets.MAGE;
case ROGUE:
return Assets.ROGUE;
case HUNTRESS:
return Assets.HUNTRESS;
}
}
public String[] perks() {
switch (this) {
case WARRIOR: default:
return new String[]{
Messages.get(HeroClass.class, "warrior_perk1"),
Messages.get(HeroClass.class, "warrior_perk2"),
Messages.get(HeroClass.class, "warrior_perk3"),
Messages.get(HeroClass.class, "warrior_perk4"),
Messages.get(HeroClass.class, "warrior_perk5"),
};
case MAGE:
return new String[]{
Messages.get(HeroClass.class, "mage_perk1"),
Messages.get(HeroClass.class, "mage_perk2"),
Messages.get(HeroClass.class, "mage_perk3"),
Messages.get(HeroClass.class, "mage_perk4"),
Messages.get(HeroClass.class, "mage_perk5"),
};
case ROGUE:
return new String[]{
Messages.get(HeroClass.class, "rogue_perk1"),
Messages.get(HeroClass.class, "rogue_perk2"),
Messages.get(HeroClass.class, "rogue_perk3"),
Messages.get(HeroClass.class, "rogue_perk4"),
Messages.get(HeroClass.class, "rogue_perk5"),
};
case HUNTRESS:
return new String[]{
Messages.get(HeroClass.class, "huntress_perk1"),
Messages.get(HeroClass.class, "huntress_perk2"),
Messages.get(HeroClass.class, "huntress_perk3"),
Messages.get(HeroClass.class, "huntress_perk4"),
Messages.get(HeroClass.class, "huntress_perk5"),
};
}
}
public boolean isUnlocked(){
//always unlock on debug builds
if (DeviceCompat.isDebug()) return true;
switch (this){
case WARRIOR: default:
return true;
case MAGE:
return Badges.isUnlocked(Badges.Badge.UNLOCK_MAGE);
case ROGUE:
return Badges.isUnlocked(Badges.Badge.UNLOCK_ROGUE);
case HUNTRESS:
return Badges.isUnlocked(Badges.Badge.UNLOCK_HUNTRESS);
}
}
public String unlockMsg() {
switch (this){
case WARRIOR: default:
return "";
case MAGE:
return Messages.get(HeroClass.class, "mage_unlock");
case ROGUE:
return Messages.get(HeroClass.class, "rogue_unlock");
case HUNTRESS:
return Messages.get(HeroClass.class, "huntress_unlock");
}
}
private static final String CLASS = "class";
public void storeInBundle( Bundle bundle ) {
bundle.put( CLASS, toString() );
}
public static HeroClass restoreInBundle( Bundle bundle ) {
String value = bundle.getString( CLASS );
return value.length() > 0 ? valueOf( value ) : ROGUE;
}
}
| 9,194 | HeroClass | java | en | java | code | {"qsc_code_num_words": 992, "qsc_code_num_chars": 9194.0, "qsc_code_mean_word_length": 6.88205645, "qsc_code_frac_words_unique": 0.22379032, "qsc_code_frac_chars_top_2grams": 0.04350374, "qsc_code_frac_chars_top_3grams": 0.1781163, "qsc_code_frac_chars_top_4grams": 0.19979493, "qsc_code_frac_chars_dupe_5grams": 0.4495386, "qsc_code_frac_chars_dupe_6grams": 0.28445877, "qsc_code_frac_chars_dupe_7grams": 0.10575655, "qsc_code_frac_chars_dupe_8grams": 0.01699136, "qsc_code_frac_chars_dupe_9grams": 0.01699136, "qsc_code_frac_chars_dupe_10grams": 0.0, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.00595691, "qsc_code_frac_chars_whitespace": 0.14183163, "qsc_code_size_file_byte": 9194.0, "qsc_code_num_lines": 293.0, "qsc_code_num_chars_line_max": 85.0, "qsc_code_num_chars_line_mean": 31.37883959, "qsc_code_frac_chars_alphabet": 0.85931559, "qsc_code_frac_chars_comments": 0.08831847, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.20720721, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.0366261, "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.11711712, "qsc_codejava_score_lines_no_logic": 0.29279279, "qsc_codejava_frac_words_no_modifier": 0.46153846, "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": null, "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/actors/blobs/Blizzard.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.actors.blobs;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
public class Blizzard extends Blob {
@Override
protected void evolve() {
super.evolve();
int cell;
Fire fire = (Fire)Dungeon.level.blobs.get( Fire.class );
Freezing freeze = (Freezing)Dungeon.level.blobs.get( Freezing.class );
Inferno inf = (Inferno)Dungeon.level.blobs.get( Inferno.class );
for (int i = area.left; i < area.right; i++) {
for (int j = area.top; j < area.bottom; j++) {
cell = i + j * Dungeon.level.width();
if (cur[cell] > 0) {
if (fire != null) fire.clear(cell);
if (freeze != null) freeze.clear(cell);
if (inf != null && inf.volume > 0 && inf.cur[cell] > 0){
inf.clear(cell);
off[cell] = cur[cell] = 0;
continue;
}
Freezing.freeze(cell);
Freezing.freeze(cell);
}
}
}
}
@Override
public void use( BlobEmitter emitter ) {
super.use( emitter );
emitter.pour( Speck.factory( Speck.BLIZZARD, true ), 0.4f );
}
@Override
public String tileDesc() {
return Messages.get(this, "desc");
}
}
| 2,146 | Blizzard | java | en | java | code | {"qsc_code_num_words": 282, "qsc_code_num_chars": 2146.0, "qsc_code_mean_word_length": 5.20212766, "qsc_code_frac_words_unique": 0.46808511, "qsc_code_frac_chars_top_2grams": 0.05794138, "qsc_code_frac_chars_top_3grams": 0.12951602, "qsc_code_frac_chars_top_4grams": 0.11997273, "qsc_code_frac_chars_dupe_5grams": 0.12542604, "qsc_code_frac_chars_dupe_6grams": 0.03817314, "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.01348183, "qsc_code_frac_chars_whitespace": 0.20503262, "qsc_code_size_file_byte": 2146.0, "qsc_code_num_lines": 76.0, "qsc_code_num_chars_line_max": 73.0, "qsc_code_num_chars_line_mean": 28.23684211, "qsc_code_frac_chars_alphabet": 0.84642438, "qsc_code_frac_chars_comments": 0.36346692, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.125, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00292826, "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.075, "qsc_codejava_score_lines_no_logic": 0.225, "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} |
01bps/WiFi-Auto-Auth | readme.md | # **WiFi-Auto-Auth**
Tired of entering the same Wi-Fi credentials every time you join the network? So was I! At my institute, logging into Wi-Fi manually was a hassle, so I built this Auto WiFi Login Script to automate the process with the help of Python,SQLite and Crontab!
This script automatically logs into Wi-Fi networks using pre-saved credentials and now comes with SQLite integration to store login attempts and all payload parameters. It keeps track of all login activities, captures dynamic session parameters (a), and provides a user-friendly log display for debugging.
Ideal for schools, workplaces, or any location with recurring Wi-Fi logins, this script eliminates manual re-authentication and ensures effortless connectivity. It's fully customizable, works across different networks, and can even be automated on startup for a seamless experience.
## **🚀 New: Web Dashboard**
**Beautiful web-based monitoring interface with real-time statistics and interactive charts!**
### **Dashboard Features**
- 📊 Real-time statistics & success rates
- 📈 Interactive time-based visualizations
- 🔍 Advanced filtering & search
- 📱 Mobile-responsive design
- 🔒 Secure authentication
- ⚡ Auto-refresh every 30 seconds
### **Quick Start**
```bash
# Install dependencies
pip install -r requirements.txt
# Start dashboard
python wifi_auto_login.py --dashboard
# Access: http://127.0.0.1:8000 (admin/admin123)
```
**📖 Full documentation: [DASHBOARD.md](DASHBOARD.md)**
## **🌐 NEW: Multi-Network Support**
**Automatically handle multiple WiFi networks with intelligent auto-detection!**
### **Multi-Network Features**
- 🏠 **Multiple Profiles**: Configure home, work, school networks
- 🔍 **Auto-Detection**: Automatically detects current SSID
- 📱 **Smart Selection**: Chooses appropriate credentials
- 📊 **Network Analytics**: Per-network statistics in dashboard
- 🔄 **Seamless Switching**: No manual intervention needed
- 📋 **Easy Management**: List, detect, and filter by network
### **Quick Multi-Network Setup**
```bash
# Copy and configure multi-network template
cp config.example.json config.json
# List configured networks
python wifi_auto_login.py --list-networks
# Auto-detect current network
python wifi_auto_login.py --detect-network
# Login with auto-detection
python wifi_auto_login.py --login
# Use specific network profile
python wifi_auto_login.py --login --network work
```
**📖 Complete guide: [MULTI_NETWORK.md](MULTI_NETWORK.md)**
## **Logging Options**
This application features a comprehensive professional logging system that provides detailed insights into login attempts, debugging information, and system status. The logging system supports multiple output destinations, configurable log levels, and automatic log rotation.
### **Command Line Arguments**
The script accepts various logging-related command line arguments:
- `--log-level {DEBUG,INFO,WARNING,ERROR,CRITICAL}`: Set the logging level (default: INFO)
- `--log-file` / `--no-log-file`: Enable or disable file logging (default: enabled)
- `--log-dir DIR`: Directory for log files (default: ./logs)
- `--console-logging` / `--no-console-logging`: Enable or disable console logging (default: enabled)
- `--view-logs N`: View last N login attempts instead of performing login
- `--max-attempts N`: Maximum number of login attempts to show (default: 5)
**Usage Examples:**
```bash
# Run with debug logging
python wifi_auto_login.py --log-level DEBUG
# View recent login attempts
python wifi_auto_login.py --view-logs 10
# Start the web dashboard
python wifi_auto_login.py --dashboard
# Disable file logging, only console output
python wifi_auto_login.py --no-log-file
# Custom log directory
python wifi_auto_login.py --log-dir /var/log/wifi-auth
```
### **Environment Variables**
Configure logging behavior using environment variables:
- `LOG_LEVEL`: Overall logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
- `CONSOLE_LOG_LEVEL`: Separate level for console output
- `CONSOLE_LOGGING_ENABLED`: Enable/disable console logging (true/false)
- `LOG_FILE_ENABLED`: Enable/disable file logging (true/false)
- `LOG_DIR`: Directory for log files (default: ./logs)
- `LOG_MAX_BYTES`: Maximum log file size before rotation (default: 10485760 = 10MB)
- `LOG_BACKUP_COUNT`: Number of backup log files to keep (default: 5)
**Example:**
```bash
export LOG_LEVEL=DEBUG
export LOG_DIR=/home/user/logs
python wifi_auto_login.py
```
### **Log Rotation**
The application automatically rotates log files when they reach the maximum size (default 10MB). It keeps up to 5 backup files, ensuring logs don't consume excessive disk space while maintaining historical data.
Log files are stored in the configured log directory with the name `wifi_auto_auth.log`, and rotated files are named `wifi_auto_auth.log.1`, `wifi_auto_auth.log.2`, etc.
### **For step-by-step setup instructions, please refer to [setup.md](https://github.com/01bps/WiFi-Auto-Auth/blob/main/setup.md)**
## **Security Notes**
- Credentials are securely stored in an SQLite database within your home directory.
- No sensitive data is transmitted except during the login request.
- Passwords are masked in logs for security.
- Login attempts are logged in SQLite, and old logs are automatically deleted after reboot
## **Updated Security Notes**
- Passwords in `config.json` (WiFi and dashboard) are now automatically encrypted using Fernet symmetric encryption on first run. Plaintext passwords are replaced with encrypted values; already encrypted passwords are left unchanged.
- The encryption key is stored in `config/secret.key` and is used for both encryption and decryption.
- Passwords are only decrypted in memory for login/authentication; they remain encrypted in the config file and database.
- The script never re-encrypts already encrypted passwords, preventing multiple encryption layers.
- Encryption is triggered when you run any command that loads the config (e.g., `--login`, `--dashboard`).
# **License:**
This project is licensed under the [MIT License](LICENSE), which allows for free use, modification, and distribution.
🔧 **Need help?** Open an issue on GitHub!
| 6,159 | readme | md | en | markdown | text | {"qsc_doc_frac_chars_curly_bracket": 0.00032473, "qsc_doc_frac_words_redpajama_stop": 0.14746172, "qsc_doc_num_sentences": 62.0, "qsc_doc_num_words": 883, "qsc_doc_num_chars": 6159.0, "qsc_doc_num_lines": 146.0, "qsc_doc_mean_word_length": 5.30917327, "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.41562854, "qsc_doc_entropy_unigram": 5.39327847, "qsc_doc_frac_words_all_caps": 0.03062047, "qsc_doc_frac_lines_dupe_lines": 0.0990099, "qsc_doc_frac_chars_dupe_lines": 0.0189747, "qsc_doc_frac_chars_top_2grams": 0.02730375, "qsc_doc_frac_chars_top_3grams": 0.03284983, "qsc_doc_frac_chars_top_4grams": 0.04458191, "qsc_doc_frac_chars_dupe_5grams": 0.09001706, "qsc_doc_frac_chars_dupe_6grams": 0.07209898, "qsc_doc_frac_chars_dupe_7grams": 0.03114334, "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": 1.0, "qsc_doc_num_chars_sentence_length_mean": 28.47368421, "qsc_doc_frac_chars_hyperlink_html_tag": 0.00974184, "qsc_doc_frac_chars_alphabet": 0.87255271, "qsc_doc_frac_chars_digital": 0.00677711, "qsc_doc_frac_chars_whitespace": 0.13752233, "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} |
0015/ThatProject | ESP8266_Twitter_Hash_Search/Web_Fetch.h | //https://github.com/Bodmer/TJpg_Decoder
// Fetch a file from the URL given and save it in SPIFFS
// Return 1 if a web fetch was needed or 0 if file already exists
bool getFile(String url, String filename) {
// If it exists then no need to fetch it
// if (SPIFFS.exists(filename) == true) {
// Serial.println("Found " + filename);
// return 0;
// }
Serial.println("Downloading " + filename + " from " + url);
// Check WiFi connection
if ((WiFi.status() == WL_CONNECTED)) {
HTTPClient http;
Serial.print("[HTTP] begin...\n");
// Configure server and url
http.begin(url);
Serial.print("[HTTP] GET...\n");
// Start connection and send HTTP header
int httpCode = http.GET();
if (httpCode > 0) {
fs::File f = SPIFFS.open(filename, "w+");
if (!f) {
Serial.println("file open failed");
return 0;
}
// HTTP header has been send and Server response header has been handled
Serial.printf("[HTTP] GET... code: %d\n", httpCode);
// File found at server
if (httpCode == HTTP_CODE_OK) {
// Get length of document (is -1 when Server sends no Content-Length header)
int total = http.getSize();
int len = total;
// Create buffer for read
uint8_t buff[128] = { 0 };
// Get tcp stream
WiFiClient * stream = http.getStreamPtr();
// Read all data from server
while (http.connected() && (len > 0 || len == -1)) {
// Get available data size
size_t size = stream->available();
if (size) {
// Read up to 128 bytes
int c = stream->readBytes(buff, ((size > sizeof(buff)) ? sizeof(buff) : size));
// Write it to file
f.write(buff, c);
// Calculate remaining bytes
if (len > 0) {
len -= c;
}
}
yield();
}
Serial.println();
Serial.print("[HTTP] connection closed or file end.\n");
}
f.close();
}
else {
Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
}
http.end();
}
return 1; // File was fetched from web
}
| 2,223 | Web_Fetch | h | en | c | code | {"qsc_code_num_words": 277, "qsc_code_num_chars": 2223.0, "qsc_code_mean_word_length": 4.38628159, "qsc_code_frac_words_unique": 0.42960289, "qsc_code_frac_chars_top_2grams": 0.04279835, "qsc_code_frac_chars_top_3grams": 0.03703704, "qsc_code_frac_chars_top_4grams": 0.03127572, "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.01176471, "qsc_code_frac_chars_whitespace": 0.31174089, "qsc_code_size_file_byte": 2223.0, "qsc_code_num_lines": 78.0, "qsc_code_num_chars_line_max": 96.0, "qsc_code_num_chars_line_mean": 28.5, "qsc_code_frac_chars_alphabet": 0.78235294, "qsc_code_frac_chars_comments": 0.35222672, "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.11388889, "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.02380952, "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.04761905, "qsc_codec_frac_lines_print": 0.04761905, "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} |
00-Evan/shattered-pixel-dungeon-gdx | core/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewTengu.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
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.Electricity;
import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Fire;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Blindness;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroSubClass;
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.FloatingText;
import com.shatteredpixel.shatteredpixeldungeon.effects.Lightning;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.BlastParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.FlameParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.SmokeParticle;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.SparkParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.TomeOfMastery;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.LloydsBeacon;
import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.shatteredpixel.shatteredpixeldungeon.levels.NewPrisonBossLevel;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Languages;
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.MissileSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.TenguSprite;
import com.shatteredpixel.shatteredpixeldungeon.tiles.DungeonTilemap;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.audio.Sample;
import com.watabou.noosa.particles.Emitter;
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;
import java.util.HashSet;
public class NewTengu extends Mob {
{
spriteClass = TenguSprite.class;
HP = HT = 160;
EXP = 20;
defenseSkill = 15;
HUNTING = new Hunting();
flying = true; //doesn't literally fly, but he is fleet-of-foot enough to avoid hazards
properties.add(Property.BOSS);
viewDistance = 12;
}
@Override
protected void onAdd() {
//when he's removed and re-added to the fight, his time is always set to now.
spend(-cooldown());
super.onAdd();
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 6, 12 );
}
@Override
public int attackSkill( Char target ) {
return 18;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
@Override
public void damage(int dmg, Object src) {
NewPrisonBossLevel.State state = ((NewPrisonBossLevel)Dungeon.level).state();
int hpBracket = 20;
int beforeHitHP = HP;
super.damage(dmg, src);
dmg = beforeHitHP - HP;
//tengu cannot be hit through multiple brackets at a time
if ((beforeHitHP/hpBracket - HP/hpBracket) >= 2){
HP = hpBracket * ((beforeHitHP/hpBracket)-1);
}
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) {
int multiple = state == NewPrisonBossLevel.State.FIGHT_START ? 1 : 4;
lock.addTime(dmg*multiple);
}
//phase 2 of the fight is over
if (HP == 0 && state == NewPrisonBossLevel.State.FIGHT_ARENA) {
//let full attack action complete first
Actor.add(new Actor() {
{
actPriority = VFX_PRIO;
}
@Override
protected boolean act() {
Actor.remove(this);
((NewPrisonBossLevel)Dungeon.level).progress();
return true;
}
});
return;
}
//phase 1 of the fight is over
if (state == NewPrisonBossLevel.State.FIGHT_START && HP <= HT/2){
HP = (HT/2);
yell(Messages.get(this, "interesting"));
((NewPrisonBossLevel)Dungeon.level).progress();
BossHealthBar.bleed(true);
//if tengu has lost a certain amount of hp, jump
} else if (beforeHitHP / hpBracket != HP / hpBracket) {
jump();
}
}
@Override
public boolean isAlive() {
return HP > 0 || Dungeon.level.mobs.contains(this); //Tengu has special death rules, see prisonbosslevel.progress()
}
@Override
public void die( Object cause ) {
if (Dungeon.hero.subClass == HeroSubClass.NONE) {
Dungeon.level.drop( new TomeOfMastery(), pos ).sprite.drop();
}
GameScene.bossSlain();
super.die( cause );
Badges.validateBossSlain();
LloydsBeacon beacon = Dungeon.hero.belongings.getItem(LloydsBeacon.class);
if (beacon != null) {
beacon.upgrade();
}
yell( Messages.get(this, "defeated") );
}
@Override
protected boolean canAttack( Char enemy ) {
return new Ballistica( pos, enemy.pos, Ballistica.PROJECTILE).collisionPos == enemy.pos;
}
//tengu's attack is always visible
@Override
protected boolean doAttack(Char enemy) {
sprite.attack( enemy.pos );
spend( attackDelay() );
return false;
}
private void jump() {
//in case tengu hasn't had a chance to act yet
if (fieldOfView == null || fieldOfView.length != Dungeon.level.length()){
fieldOfView = new boolean[Dungeon.level.length()];
Dungeon.level.updateFieldOfView( this, fieldOfView );
}
if (enemy == null) enemy = chooseEnemy();
if (enemy == null) return;
int newPos;
if (Dungeon.level instanceof NewPrisonBossLevel){
NewPrisonBossLevel level = (NewPrisonBossLevel) Dungeon.level;
//if we're in phase 1, want to warp around within the room
if (level.state() == NewPrisonBossLevel.State.FIGHT_START) {
level.cleanTenguCell();
do {
newPos = ((NewPrisonBossLevel)Dungeon.level).randomTenguCellPos();
} while ( (level.distance(newPos, enemy.pos) < 3 || Actor.findChar(newPos) != null));
if (level.heroFOV[pos]) CellEmitter.get( pos ).burst( Speck.factory( Speck.WOOL ), 6 );
sprite.move( pos, newPos );
move( newPos );
if (level.heroFOV[newPos]) CellEmitter.get( newPos ).burst( Speck.factory( Speck.WOOL ), 6 );
Sample.INSTANCE.play( Assets.SND_PUFF );
float fill = 0.9f - 0.5f*((HP-80)/80f);
level.placeTrapsInTenguCell(fill);
//otherwise, jump in a larger possible area, as the room is bigger
} else {
do {
newPos = Random.Int(level.length());
} while (
level.solid[newPos] ||
level.distance(newPos, enemy.pos) < 5 ||
level.distance(newPos, enemy.pos) > 7 ||
level.distance(newPos, pos) < 6 ||
Actor.findChar(newPos) != null ||
Dungeon.level.heaps.get(newPos) != null);
if (level.heroFOV[pos]) CellEmitter.get( pos ).burst( Speck.factory( Speck.WOOL ), 6 );
sprite.move( pos, newPos );
move( newPos );
if (arenaJumps < 4) arenaJumps++;
if (level.heroFOV[newPos]) CellEmitter.get( newPos ).burst( Speck.factory( Speck.WOOL ), 6 );
Sample.INSTANCE.play( Assets.SND_PUFF );
}
//if we're on another type of level
} else {
Level level = Dungeon.level;
newPos = level.randomRespawnCell();
if (level.heroFOV[pos]) CellEmitter.get( pos ).burst( Speck.factory( Speck.WOOL ), 6 );
sprite.move( pos, newPos );
move( newPos );
if (level.heroFOV[newPos]) CellEmitter.get( newPos ).burst( Speck.factory( Speck.WOOL ), 6 );
Sample.INSTANCE.play( Assets.SND_PUFF );
}
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
if (HP <= HT/2) BossHealthBar.bleed(true);
if (HP == HT) {
yell(Messages.get(this, "notice_gotcha", Dungeon.hero.givenName()));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
} else {
yell(Messages.get(this, "notice_have", Dungeon.hero.givenName()));
}
}
}
{
immunities.add( Blindness.class );
}
private static final String LAST_ABILITY = "last_ability";
private static final String ABILITIES_USED = "abilities_used";
private static final String ARENA_JUMPS = "arena_jumps";
private static final String ABILITY_COOLDOWN = "ability_cooldown";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( LAST_ABILITY, lastAbility );
bundle.put( ABILITIES_USED, abilitiesUsed );
bundle.put( ARENA_JUMPS, arenaJumps );
bundle.put( ABILITY_COOLDOWN, abilityCooldown );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
lastAbility = bundle.getInt( LAST_ABILITY );
abilitiesUsed = bundle.getInt( ABILITIES_USED );
arenaJumps = bundle.getInt( ARENA_JUMPS );
abilityCooldown = bundle.getInt( ABILITY_COOLDOWN );
BossHealthBar.assignBoss(this);
if (HP <= HT/2) BossHealthBar.bleed(true);
}
//don't bother bundling this, as its purely cosmetic
private boolean yelledCoward = false;
//tengu is always hunting
private class Hunting extends Mob.Hunting{
@Override
public boolean act(boolean enemyInFOV, boolean justAlerted) {
enemySeen = enemyInFOV;
if (enemyInFOV && !isCharmedBy( enemy ) && canAttack( enemy )) {
if (canUseAbility()){
return useAbility();
}
return doAttack( enemy );
} else {
if (enemyInFOV) {
target = enemy.pos;
} else {
chooseEnemy();
if (enemy == null){
//if nothing else can be targeted, target hero
enemy = Dungeon.hero;
}
target = enemy.pos;
}
//if not charmed, attempt to use an ability, even if the enemy can't be seen
if (canUseAbility()){
return useAbility();
}
spend( TICK );
return true;
}
}
}
//*****************************************************************************************
//***** Tengu abilities. These are expressed in game logic as buffs, blobs, and items *****
//*****************************************************************************************
//so that mobs can also use this
private static Char throwingChar;
private int lastAbility = -1;
private int abilitiesUsed = 0;
private int arenaJumps = 0;
//starts at 2, so one turn and then first ability
private int abilityCooldown = 2;
private static final int BOMB_ABILITY = 0;
private static final int FIRE_ABILITY = 1;
private static final int SHOCKER_ABILITY = 2;
//expects to be called once per turn;
public boolean canUseAbility(){
if (HP > HT/2) return false;
if (abilitiesUsed >= targetAbilityUses()){
return false;
} else {
abilityCooldown--;
if (targetAbilityUses() - abilitiesUsed >= 4){
//Very behind in ability uses, use one right away!
abilityCooldown = 0;
} else if (targetAbilityUses() - abilitiesUsed >= 3){
//moderately behind in uses, use one every other action.
if (abilityCooldown == -1 || abilityCooldown > 1) abilityCooldown = 1;
} else {
//standard delay before ability use, 1-4 turns
if (abilityCooldown == -1) abilityCooldown = Random.IntRange(1, 4);
}
if (abilityCooldown == 0){
return true;
} else {
return false;
}
}
}
private int targetAbilityUses(){
//1 base ability use, plus 2 uses per jump
int targetAbilityUses = 1 + 2*arenaJumps;
//and ane extra 2 use for jumps 3 and 4
targetAbilityUses += Math.max(0, arenaJumps-2);
return targetAbilityUses;
}
public boolean useAbility(){
boolean abilityUsed = false;
int abilityToUse = -1;
while (!abilityUsed){
if (abilitiesUsed == 0){
abilityToUse = BOMB_ABILITY;
} else if (abilitiesUsed == 1){
abilityToUse = SHOCKER_ABILITY;
} else {
abilityToUse = Random.Int(3);
}
//If we roll the same ability as last time, 9/10 chance to reroll
if (abilityToUse != lastAbility || Random.Int(10) == 0){
switch (abilityToUse){
case BOMB_ABILITY : default:
abilityUsed = throwBomb(NewTengu.this, enemy);
//if Tengu cannot use his bomb ability first, use fire instead.
if (abilitiesUsed == 0 && !abilityUsed){
abilityToUse = FIRE_ABILITY;
abilityUsed = throwFire(NewTengu.this, enemy);
}
break;
case FIRE_ABILITY:
abilityUsed = throwFire(NewTengu.this, enemy);
break;
case SHOCKER_ABILITY:
abilityUsed = throwShocker(NewTengu.this, enemy);
//if Tengu cannot use his shocker ability second, use fire instead.
if (abilitiesUsed == 1 && !abilityUsed){
abilityToUse = FIRE_ABILITY;
abilityUsed = throwFire(NewTengu.this, enemy);
}
break;
}
}
}
//spend only 1 turn if seriously behind on ability uses
if (targetAbilityUses() - abilitiesUsed >= 4){
spend(TICK);
} else {
spend(2 * TICK);
}
lastAbility = abilityToUse;
abilitiesUsed++;
return lastAbility == FIRE_ABILITY;
}
//******************
//***Bomb Ability***
//******************
//returns true if bomb was thrown
public static boolean throwBomb(final Char thrower, final Char target){
int targetCell = -1;
//Targets closest cell which is adjacent to target, and at least 3 tiles away
for (int i : PathFinder.NEIGHBOURS8){
int cell = target.pos + i;
if (Dungeon.level.distance(cell, thrower.pos) >= 3){
if (targetCell == -1 ||
Dungeon.level.trueDistance(cell, thrower.pos) < Dungeon.level.trueDistance(targetCell, thrower.pos)){
targetCell = cell;
}
}
}
if (targetCell == -1){
return false;
}
final int finalTargetCell = targetCell;
throwingChar = thrower;
final BombAbility.BombItem item = new BombAbility.BombItem();
thrower.sprite.zap(finalTargetCell);
((MissileSprite) thrower.sprite.parent.recycle(MissileSprite.class)).
reset(thrower.sprite,
finalTargetCell,
item,
new Callback() {
@Override
public void call() {
item.onThrow(finalTargetCell);
thrower.next();
}
});
return true;
}
public static class BombAbility extends Buff {
public int bombPos;
private int timer = 3;
@Override
public boolean act() {
PointF p = DungeonTilemap.raisedTileCenterToWorld(bombPos);
if (timer == 3) {
FloatingText.show(p.x, p.y, bombPos, "3...", CharSprite.NEUTRAL);
PathFinder.buildDistanceMap( bombPos, BArray.not( Dungeon.level.solid, null ), 2 );
for (int i = 0; i < PathFinder.distance.length; i++) {
if (PathFinder.distance[i] < Integer.MAX_VALUE) {
GameScene.add(Blob.seed(i, 4, BombBlob.class));
}
}
} else if (timer == 2){
FloatingText.show(p.x, p.y, bombPos, "2...", CharSprite.WARNING);
} else if (timer == 1){
FloatingText.show(p.x, p.y, bombPos, "1...", CharSprite.NEGATIVE);
} else {
Heap h = Dungeon.level.heaps.get(bombPos);
if (h != null){
for (Item i : h.items.toArray(new Item[0])){
if (i instanceof BombItem){
h.remove(i);
}
}
}
detach();
return true;
}
timer--;
spend(TICK);
return true;
}
private static final String BOMB_POS = "bomb_pos";
private static final String TIMER = "timer";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( BOMB_POS, bombPos );
bundle.put( TIMER, timer );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
bombPos = bundle.getInt( BOMB_POS );
timer = bundle.getInt( TIMER );
}
public static class BombBlob extends Blob {
{
actPriority = BUFF_PRIO - 1;
alwaysVisible = true;
}
@Override
protected void evolve() {
boolean exploded = false;
int cell;
for (int i = area.left; i < area.right; i++){
for (int j = area.top; j < area.bottom; j++){
cell = i + j* Dungeon.level.width();
off[cell] = cur[cell] > 0 ? cur[cell] - 1 : 0;
if (off[cell] > 0) {
volume += off[cell];
}
if (cur[cell] > 0 && off[cell] == 0){
Char ch = Actor.findChar(cell);
if (ch != null && !(ch instanceof NewTengu)){
int dmg = Random.NormalIntRange(5 + Dungeon.depth, 10 + Dungeon.depth*2);
dmg -= ch.drRoll();
if (dmg > 0) {
ch.damage(dmg, Bomb.class);
}
if (ch == Dungeon.hero && !ch.isAlive()) {
Dungeon.fail(NewTengu.class);
}
}
exploded = true;
CellEmitter.center(cell).burst(BlastParticle.FACTORY, 2);
}
}
}
if (exploded){
Sample.INSTANCE.play(Assets.SND_BLAST);
}
}
@Override
public void use(BlobEmitter emitter) {
super.use(emitter);
emitter.pour( SmokeParticle.FACTORY, 0.25f );
}
@Override
public String tileDesc() {
return Messages.get(this, "desc");
}
}
public static class BombItem extends Item {
{
dropsDownHeap = true;
unique = true;
image = ItemSpriteSheet.TENGU_BOMB;
}
@Override
public boolean doPickUp( Hero hero ) {
GLog.w( Messages.get(this, "cant_pickup") );
return false;
}
@Override
protected void onThrow(int cell) {
super.onThrow(cell);
if (throwingChar != null){
Buff.append(throwingChar, BombAbility.class).bombPos = cell;
throwingChar = null;
} else {
Buff.append(curUser, BombAbility.class).bombPos = cell;
}
}
@Override
public Emitter emitter() {
Emitter emitter = new Emitter();
emitter.pos(7.5f, 3.5f);
emitter.fillTarget = false;
emitter.pour(SmokeParticle.SPEW, 0.05f);
return emitter;
}
}
}
//******************
//***Fire Ability***
//******************
public static boolean throwFire(final Char thrower, final Char target){
Ballistica aim = new Ballistica(thrower.pos, target.pos, Ballistica.WONT_STOP);
for (int i = 0; i < PathFinder.CIRCLE8.length; i++){
if (aim.sourcePos+PathFinder.CIRCLE8[i] == aim.path.get(1)){
thrower.sprite.zap(target.pos);
Buff.append(thrower, NewTengu.FireAbility.class).direction = i;
thrower.sprite.emitter().start(Speck.factory(Speck.STEAM), .03f, 10);
return true;
}
}
return false;
}
public static class FireAbility extends Buff {
public int direction;
private int[] curCells;
HashSet<Integer> toCells = new HashSet<>();
@Override
public boolean act() {
if (curCells == null){
curCells = new int[1];
curCells[0] = target.pos;
}
toCells.clear();
for (Integer c : curCells){
spreadFromCell( c );
}
for (Integer c : curCells){
toCells.remove(c);
}
if (toCells.isEmpty()){
detach();
} else {
curCells = new int[toCells.size()];
int i = 0;
for (Integer c : toCells){
GameScene.add(Blob.seed(c, 2, FireBlob.class));
curCells[i] = c;
i++;
}
}
spend(TICK);
return true;
}
private void spreadFromCell( int cell ){
if (!Dungeon.level.solid[cell + PathFinder.CIRCLE8[left(direction)]]){
toCells.add(cell + PathFinder.CIRCLE8[left(direction)]);
}
if (!Dungeon.level.solid[cell + PathFinder.CIRCLE8[direction]]){
toCells.add(cell + PathFinder.CIRCLE8[direction]);
}
if (!Dungeon.level.solid[cell + PathFinder.CIRCLE8[right(direction)]]){
toCells.add(cell + PathFinder.CIRCLE8[right(direction)]);
}
}
private int left(int direction){
return direction == 0 ? 7 : direction-1;
}
private int right(int direction){
return direction == 7 ? 0 : direction+1;
}
private static final String DIRECTION = "direction";
private static final String CUR_CELLS = "cur_cells";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( DIRECTION, direction );
bundle.put( CUR_CELLS, curCells );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
direction = bundle.getInt( DIRECTION );
curCells = bundle.getIntArray( CUR_CELLS );
}
public static class FireBlob extends Blob {
{
actPriority = BUFF_PRIO - 1;
alwaysVisible = true;
}
@Override
protected void evolve() {
boolean observe = false;
boolean burned = false;
int cell;
for (int i = area.left; i < area.right; i++){
for (int j = area.top; j < area.bottom; j++){
cell = i + j* Dungeon.level.width();
off[cell] = cur[cell] > 0 ? cur[cell] - 1 : 0;
if (off[cell] > 0) {
volume += off[cell];
}
if (cur[cell] > 0 && off[cell] == 0){
Char ch = Actor.findChar( cell );
if (ch != null && !ch.isImmune(Fire.class) && !(ch instanceof NewTengu)) {
Buff.affect( ch, Burning.class ).reignite( ch );
}
if (Dungeon.level.flamable[cell]){
Dungeon.level.destroy( cell );
observe = true;
GameScene.updateMap( cell );
}
burned = true;
CellEmitter.get(cell).start(FlameParticle.FACTORY, 0.03f, 10);
}
}
}
if (observe) {
Dungeon.observe();
}
if (burned){
Sample.INSTANCE.play(Assets.SND_BURNING);
}
}
@Override
public void use(BlobEmitter emitter) {
super.use(emitter);
emitter.pour( Speck.factory( Speck.STEAM ), 0.2f );
}
@Override
public String tileDesc() {
return Messages.get(this, "desc");
}
}
}
//*********************
//***Shocker Ability***
//*********************
//returns true if shocker was thrown
public static boolean throwShocker(final Char thrower, final Char target){
int targetCell = -1;
//Targets closest cell which is adjacent to target, and not adjacent to thrower or another shocker
for (int i : PathFinder.NEIGHBOURS8){
int cell = target.pos + i;
if (Dungeon.level.distance(cell, thrower.pos) >= 2){
boolean validTarget = true;
for (ShockerAbility s : thrower.buffs(ShockerAbility.class)){
if (Dungeon.level.distance(cell, s.shockerPos) < 2){
validTarget = false;
break;
}
}
if (validTarget && Dungeon.level.trueDistance(cell, thrower.pos) < Dungeon.level.trueDistance(targetCell, thrower.pos)){
targetCell = cell;
}
}
}
if (targetCell == -1){
return false;
}
final int finalTargetCell = targetCell;
throwingChar = thrower;
final ShockerAbility.ShockerItem item = new ShockerAbility.ShockerItem();
thrower.sprite.zap(finalTargetCell);
((MissileSprite) thrower.sprite.parent.recycle(MissileSprite.class)).
reset(thrower.sprite,
finalTargetCell,
item,
new Callback() {
@Override
public void call() {
item.onThrow(finalTargetCell);
thrower.next();
}
});
return true;
}
public static class ShockerAbility extends Buff {
public int shockerPos;
private Boolean shockingOrdinals = null;
@Override
public boolean act() {
if (shockingOrdinals == null){
shockingOrdinals = Random.Int(2) == 1;
spreadblob();
} else if (shockingOrdinals){
target.sprite.parent.add(new Lightning(shockerPos - 1 - Dungeon.level.width(), shockerPos + 1 + Dungeon.level.width(), null));
target.sprite.parent.add(new Lightning(shockerPos - 1 + Dungeon.level.width(), shockerPos + 1 - Dungeon.level.width(), null));
if (Dungeon.level.distance(Dungeon.hero.pos, shockerPos) <= 1){
Sample.INSTANCE.play( Assets.SND_LIGHTNING );
}
shockingOrdinals = false;
spreadblob();
} else {
target.sprite.parent.add(new Lightning(shockerPos - Dungeon.level.width(), shockerPos + Dungeon.level.width(), null));
target.sprite.parent.add(new Lightning(shockerPos - 1, shockerPos + 1, null));
if (Dungeon.level.distance(Dungeon.hero.pos, shockerPos) <= 1){
Sample.INSTANCE.play( Assets.SND_LIGHTNING );
}
shockingOrdinals = true;
spreadblob();
}
spend(TICK);
return true;
}
private void spreadblob(){
GameScene.add(Blob.seed(shockerPos, 1, ShockerBlob.class));
for (int i = shockingOrdinals ? 0 : 1; i < PathFinder.CIRCLE8.length; i += 2){
if (!Dungeon.level.solid[shockerPos+PathFinder.CIRCLE8[i]]) {
GameScene.add(Blob.seed(shockerPos + PathFinder.CIRCLE8[i], 2, ShockerBlob.class));
}
}
}
private static final String SHOCKER_POS = "shocker_pos";
private static final String SHOCKING_ORDINALS = "shocking_ordinals";
@Override
public void storeInBundle(Bundle bundle) {
super.storeInBundle(bundle);
bundle.put( SHOCKER_POS, shockerPos );
bundle.put( SHOCKING_ORDINALS, shockingOrdinals );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
shockerPos = bundle.getInt( SHOCKER_POS );
shockingOrdinals = bundle.getBoolean( SHOCKING_ORDINALS );
}
public static class ShockerBlob extends Blob {
{
actPriority = BUFF_PRIO - 1;
alwaysVisible = true;
}
@Override
protected void evolve() {
int cell;
for (int i = area.left; i < area.right; i++){
for (int j = area.top; j < area.bottom; j++){
cell = i + j* Dungeon.level.width();
off[cell] = cur[cell] > 0 ? cur[cell] - 1 : 0;
if (off[cell] > 0) {
volume += off[cell];
}
if (cur[cell] > 0 && off[cell] == 0){
Char ch = Actor.findChar(cell);
if (ch != null && !(ch instanceof NewTengu)){
ch.damage(2 + Dungeon.depth, Electricity.class);
if (ch == Dungeon.hero && !ch.isAlive()) {
Dungeon.fail(NewTengu.class);
}
}
}
}
}
}
@Override
public void use(BlobEmitter emitter) {
super.use(emitter);
emitter.pour( SparkParticle.STATIC, 0.10f );
}
@Override
public String tileDesc() {
return Messages.get(this, "desc");
}
}
public static class ShockerItem extends Item {
{
dropsDownHeap = true;
unique = true;
image = ItemSpriteSheet.TENGU_SHOCKER;
}
@Override
public boolean doPickUp( Hero hero ) {
GLog.w( Messages.get(this, "cant_pickup") );
return false;
}
@Override
protected void onThrow(int cell) {
super.onThrow(cell);
if (throwingChar != null){
Buff.append(throwingChar, ShockerAbility.class).shockerPos = cell;
throwingChar = null;
} else {
Buff.append(curUser, ShockerAbility.class).shockerPos = cell;
}
}
@Override
public Emitter emitter() {
Emitter emitter = new Emitter();
emitter.pos(5, 5);
emitter.fillTarget = false;
emitter.pour(SparkParticle.FACTORY, 0.1f);
return emitter;
}
}
}
}
| 28,952 | NewTengu | java | en | java | code | {"qsc_code_num_words": 3208, "qsc_code_num_chars": 28952.0, "qsc_code_mean_word_length": 5.85380299, "qsc_code_frac_words_unique": 0.17362843, "qsc_code_frac_chars_top_2grams": 0.02396294, "qsc_code_frac_chars_top_3grams": 0.08903562, "qsc_code_frac_chars_top_4grams": 0.10075084, "qsc_code_frac_chars_dupe_5grams": 0.45886362, "qsc_code_frac_chars_dupe_6grams": 0.35289419, "qsc_code_frac_chars_dupe_7grams": 0.28952553, "qsc_code_frac_chars_dupe_8grams": 0.27642579, "qsc_code_frac_chars_dupe_9grams": 0.26737313, "qsc_code_frac_chars_dupe_10grams": 0.2386176, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01009609, "qsc_code_frac_chars_whitespace": 0.2199848, "qsc_code_size_file_byte": 28952.0, "qsc_code_num_lines": 1055.0, "qsc_code_num_chars_line_max": 131.0, "qsc_code_num_chars_line_mean": 27.44265403, "qsc_code_frac_chars_alphabet": 0.82145862, "qsc_code_frac_chars_comments": 0.10158193, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.33504493, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00780439, "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.07188703, "qsc_codejava_score_lines_no_logic": 0.17971759, "qsc_codejava_frac_words_no_modifier": 0.87931034, "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/actors/mobs/Goo.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.actors.mobs;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Badges;
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.GooWarn;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Ooze;
import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ElmoParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.GooBlob;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.GooSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.BArray;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.noosa.Camera;
import com.watabou.noosa.audio.Sample;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
public class Goo extends Mob {
{
HP = HT = 100;
EXP = 10;
defenseSkill = 8;
spriteClass = GooSprite.class;
properties.add(Property.BOSS);
properties.add(Property.DEMONIC);
properties.add(Property.ACIDIC);
}
private int pumpedUp = 0;
@Override
public int damageRoll() {
int min = 1;
int max = (HP*2 <= HT) ? 12 : 8;
if (pumpedUp > 0) {
pumpedUp = 0;
PathFinder.buildDistanceMap( pos, BArray.not( Dungeon.level.solid, null ), 2 );
for (int i = 0; i < PathFinder.distance.length; i++) {
if (PathFinder.distance[i] < Integer.MAX_VALUE)
CellEmitter.get(i).burst(ElmoParticle.FACTORY, 10);
}
Sample.INSTANCE.play( Assets.SND_BURNING );
return Random.NormalIntRange( min*3, max*3 );
} else {
return Random.NormalIntRange( min, max );
}
}
@Override
public int attackSkill( Char target ) {
int attack = 10;
if (HP*2 <= HT) attack = 15;
if (pumpedUp > 0) attack *= 2;
return attack;
}
@Override
public int defenseSkill(Char enemy) {
return (int)(super.defenseSkill(enemy) * ((HP*2 <= HT)? 1.5 : 1));
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 2);
}
@Override
public boolean act() {
if (Dungeon.level.water[pos] && HP < HT) {
sprite.emitter().burst( Speck.factory( Speck.HEALING ), 1 );
if (HP*2 == HT) {
BossHealthBar.bleed(false);
((GooSprite)sprite).spray(false);
}
HP++;
}
if (state != SLEEPING){
Dungeon.level.seal();
}
return super.act();
}
@Override
protected boolean canAttack( Char enemy ) {
return (pumpedUp > 0) ? distance( enemy ) <= 2 : super.canAttack(enemy);
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (Random.Int( 3 ) == 0) {
Buff.affect( enemy, Ooze.class ).set( 20f );
enemy.sprite.burst( 0x000000, 5 );
}
if (pumpedUp > 0) {
Camera.main.shake( 3, 0.2f );
}
return damage;
}
@Override
protected boolean doAttack( Char enemy ) {
if (pumpedUp == 1) {
((GooSprite)sprite).pumpUp();
PathFinder.buildDistanceMap( pos, BArray.not( Dungeon.level.solid, null ), 2 );
for (int i = 0; i < PathFinder.distance.length; i++) {
if (PathFinder.distance[i] < Integer.MAX_VALUE)
GameScene.add(Blob.seed(i, 2, GooWarn.class));
}
pumpedUp++;
spend( attackDelay() );
return true;
} else if (pumpedUp >= 2 || Random.Int( (HP*2 <= HT) ? 2 : 5 ) > 0) {
boolean visible = Dungeon.level.heroFOV[pos];
if (visible) {
if (pumpedUp >= 2) {
((GooSprite) sprite).pumpAttack();
}
else
sprite.attack( enemy.pos );
} else {
attack( enemy );
}
spend( attackDelay() );
return !visible;
} else {
pumpedUp++;
((GooSprite)sprite).pumpUp();
for (int i=0; i < PathFinder.NEIGHBOURS9.length; i++) {
int j = pos + PathFinder.NEIGHBOURS9[i];
if (!Dungeon.level.solid[j]) {
GameScene.add(Blob.seed(j, 2, GooWarn.class));
}
}
if (Dungeon.level.heroFOV[pos]) {
sprite.showStatus( CharSprite.NEGATIVE, Messages.get(this, "!!!") );
GLog.n( Messages.get(this, "pumpup") );
}
spend( attackDelay() );
return true;
}
}
@Override
public boolean attack( Char enemy ) {
boolean result = super.attack( enemy );
pumpedUp = 0;
return result;
}
@Override
protected boolean getCloser( int target ) {
pumpedUp = 0;
return super.getCloser( target );
}
@Override
public void damage(int dmg, Object src) {
boolean bleeding = (HP*2 <= HT);
super.damage(dmg, src);
if ((HP*2 <= HT) && !bleeding){
BossHealthBar.bleed(true);
sprite.showStatus(CharSprite.NEGATIVE, Messages.get(this, "enraged"));
((GooSprite)sprite).spray(true);
yell(Messages.get(this, "gluuurp"));
}
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) lock.addTime(dmg*2);
}
@Override
public void die( Object cause ) {
super.die( cause );
Dungeon.level.unseal();
GameScene.bossSlain();
Dungeon.level.drop( new SkeletonKey( Dungeon.depth ), pos ).sprite.drop();
//60% chance of 2 blobs, 30% chance of 3, 10% chance for 4. Average of 2.5
int blobs = Random.chances(new float[]{0, 0, 6, 3, 1});
for (int i = 0; i < blobs; i++){
int ofs;
do {
ofs = PathFinder.NEIGHBOURS8[Random.Int(8)];
} while (!Dungeon.level.passable[pos + ofs]);
Dungeon.level.drop( new GooBlob(), pos + ofs ).sprite.drop( pos );
}
Badges.validateBossSlain();
yell( Messages.get(this, "defeated") );
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
yell(Messages.get(this, "notice"));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
}
}
private final String PUMPEDUP = "pumpedup";
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle( bundle );
bundle.put( PUMPEDUP , pumpedUp );
}
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
pumpedUp = bundle.getInt( PUMPEDUP );
if (state != SLEEPING) BossHealthBar.assignBoss(this);
if ((HP*2 <= HT)) BossHealthBar.bleed(true);
}
}
| 7,802 | Goo | java | en | java | code | {"qsc_code_num_words": 939, "qsc_code_num_chars": 7802.0, "qsc_code_mean_word_length": 5.77316294, "qsc_code_frac_words_unique": 0.28753994, "qsc_code_frac_chars_top_2grams": 0.04648589, "qsc_code_frac_chars_top_3grams": 0.16823464, "qsc_code_frac_chars_top_4grams": 0.18668142, "qsc_code_frac_chars_dupe_5grams": 0.26950747, "qsc_code_frac_chars_dupe_6grams": 0.1398266, "qsc_code_frac_chars_dupe_7grams": 0.06603948, "qsc_code_frac_chars_dupe_8grams": 0.04796163, "qsc_code_frac_chars_dupe_9grams": 0.04796163, "qsc_code_frac_chars_dupe_10grams": 0.04796163, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01686784, "qsc_code_frac_chars_whitespace": 0.17175083, "qsc_code_size_file_byte": 7802.0, "qsc_code_num_lines": 286.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 27.27972028, "qsc_code_frac_chars_alphabet": 0.82203652, "qsc_code_frac_chars_comments": 0.10958729, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.17757009, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00676551, "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.00115158, "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.07009346, "qsc_codejava_score_lines_no_logic": 0.23364486, "qsc_codejava_frac_words_no_modifier": 0.9375, "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/actors/mobs/Elemental.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.actors.mobs;
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.Chill;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Frost;
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfFireblast;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Blazing;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ElementalSprite;
import com.watabou.utils.Random;
public class Elemental extends Mob {
{
spriteClass = ElementalSprite.class;
HP = HT = 65;
defenseSkill = 20;
EXP = 10;
maxLvl = 20;
flying = true;
loot = new PotionOfLiquidFlame();
lootChance = 0.1f;
properties.add(Property.FIERY);
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 16, 26 );
}
@Override
public int attackSkill( Char target ) {
return 25;
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 5);
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (Random.Int( 2 ) == 0) {
Buff.affect( enemy, Burning.class ).reignite( enemy );
}
return damage;
}
@Override
public void add( Buff buff ) {
if (buff instanceof Frost || buff instanceof Chill) {
if (Dungeon.level.water[this.pos])
damage( Random.NormalIntRange( HT / 2, HT ), buff );
else
damage( Random.NormalIntRange( 1, HT * 2 / 3 ), buff );
} else {
super.add( buff );
}
}
}
| 2,688 | Elemental | java | en | java | code | {"qsc_code_num_words": 326, "qsc_code_num_chars": 2688.0, "qsc_code_mean_word_length": 6.11656442, "qsc_code_frac_words_unique": 0.47852761, "qsc_code_frac_chars_top_2grams": 0.10230692, "qsc_code_frac_chars_top_3grams": 0.22868606, "qsc_code_frac_chars_top_4grams": 0.24272818, "qsc_code_frac_chars_dupe_5grams": 0.25025075, "qsc_code_frac_chars_dupe_6grams": 0.13841525, "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.01826281, "qsc_code_frac_chars_whitespace": 0.16480655, "qsc_code_size_file_byte": 2688.0, "qsc_code_num_lines": 92.0, "qsc_code_num_chars_line_max": 83.0, "qsc_code_num_chars_line_mean": 29.2173913, "qsc_code_frac_chars_alphabet": 0.86993318, "qsc_code_frac_chars_comments": 0.2905506, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.0877193, "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.0877193, "qsc_codejava_score_lines_no_logic": 0.35087719, "qsc_codejava_frac_words_no_modifier": 0.83333333, "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/actors/mobs/Slime.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.actors.mobs;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.items.Generator;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MeleeWeapon;
import com.shatteredpixel.shatteredpixeldungeon.sprites.SlimeSprite;
import com.watabou.utils.Random;
import com.watabou.utils.Reflection;
public class Slime extends Mob {
{
spriteClass = SlimeSprite.class;
HP = HT = 20;
defenseSkill = 5;
EXP = 4;
maxLvl = 9;
lootChance = 0.1f;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 2, 5 );
}
@Override
public int attackSkill( Char target ) {
return 12;
}
@Override
public void damage(int dmg, Object src) {
if (dmg >= 5){
//takes 5/6/7/8/9/10 dmg at 5/7/10/14/19/25 incoming dmg
dmg = 4 + (int)(Math.sqrt(8*(dmg - 4) + 1) - 1)/2;
}
super.damage(dmg, src);
}
@Override
protected Item createLoot() {
Generator.Category c = Generator.Category.WEP_T2;
MeleeWeapon w = (MeleeWeapon) Reflection.newInstance(c.classes[Random.chances(c.probs)]);
w.random();
w.level(0);
return w;
}
}
| 2,079 | Slime | java | en | java | code | {"qsc_code_num_words": 285, "qsc_code_num_chars": 2079.0, "qsc_code_mean_word_length": 5.32280702, "qsc_code_frac_words_unique": 0.55087719, "qsc_code_frac_chars_top_2grams": 0.0474621, "qsc_code_frac_chars_top_3grams": 0.15029664, "qsc_code_frac_chars_top_4grams": 0.14502307, "qsc_code_frac_chars_dupe_5grams": 0.15095583, "qsc_code_frac_chars_dupe_6grams": 0.03691496, "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.03125, "qsc_code_frac_chars_whitespace": 0.16883117, "qsc_code_size_file_byte": 2079.0, "qsc_code_num_lines": 74.0, "qsc_code_num_chars_line_max": 92.0, "qsc_code_num_chars_line_mean": 28.09459459, "qsc_code_frac_chars_alphabet": 0.84664352, "qsc_code_frac_chars_comments": 0.4021164, "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.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.0952381, "qsc_codejava_score_lines_no_logic": 0.35714286, "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/actors/mobs/Yog.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.actors.mobs;
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.blobs.ToxicGas;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Amok;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Buff;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Charm;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.LockedFloor;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Ooze;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Sleep;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
import com.shatteredpixel.shatteredpixeldungeon.effects.Pushing;
import com.shatteredpixel.shatteredpixeldungeon.effects.particles.ShadowParticle;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.DriedRose;
import com.shatteredpixel.shatteredpixeldungeon.items.keys.SkeletonKey;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRetribution;
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.exotic.ScrollOfPsionicBlast;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Grim;
import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GrimTrap;
import com.shatteredpixel.shatteredpixeldungeon.mechanics.Ballistica;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
import com.shatteredpixel.shatteredpixeldungeon.sprites.BurningFistSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.LarvaSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.RottingFistSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.YogSprite;
import com.shatteredpixel.shatteredpixeldungeon.ui.BossHealthBar;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.PathFinder;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.HashSet;
public class Yog extends Mob {
{
spriteClass = YogSprite.class;
HP = HT = 300;
EXP = 50;
state = PASSIVE;
properties.add(Property.BOSS);
properties.add(Property.IMMOVABLE);
properties.add(Property.DEMONIC);
}
public Yog() {
super();
}
public void spawnFists() {
RottingFist fist1 = new RottingFist();
BurningFist fist2 = new BurningFist();
do {
fist1.pos = pos + PathFinder.NEIGHBOURS8[Random.Int( 8 )];
fist2.pos = pos + PathFinder.NEIGHBOURS8[Random.Int( 8 )];
} while (!Dungeon.level.passable[fist1.pos] || !Dungeon.level.passable[fist2.pos] || fist1.pos == fist2.pos);
GameScene.add( fist1 );
GameScene.add( fist2 );
notice();
}
@Override
protected boolean act() {
//heals 1 health per turn
HP = Math.min( HT, HP+1 );
return super.act();
}
@Override
public void damage( int dmg, Object src ) {
HashSet<Mob> fists = new HashSet<>();
for (Mob mob : Dungeon.level.mobs)
if (mob instanceof RottingFist || mob instanceof BurningFist)
fists.add( mob );
dmg >>= fists.size();
super.damage( dmg, src );
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) lock.addTime(dmg*0.5f);
}
@Override
public int defenseProc( Char enemy, int damage ) {
ArrayList<Integer> spawnPoints = new ArrayList<>();
for (int i=0; i < PathFinder.NEIGHBOURS8.length; i++) {
int p = pos + PathFinder.NEIGHBOURS8[i];
if (Actor.findChar( p ) == null && (Dungeon.level.passable[p] || Dungeon.level.avoid[p])) {
spawnPoints.add( p );
}
}
if (spawnPoints.size() > 0) {
Larva larva = new Larva();
larva.pos = Random.element( spawnPoints );
GameScene.add( larva );
Actor.addDelayed( new Pushing( larva, pos, larva.pos ), -1 );
}
for (Mob mob : Dungeon.level.mobs) {
if (mob instanceof BurningFist || mob instanceof RottingFist || mob instanceof Larva) {
mob.aggro( enemy );
}
}
return super.defenseProc(enemy, damage);
}
@Override
public void beckon( int cell ) {
}
@SuppressWarnings("unchecked")
@Override
public void die( Object cause ) {
for (Mob mob : (Iterable<Mob>)Dungeon.level.mobs.clone()) {
if (mob instanceof BurningFist || mob instanceof RottingFist) {
mob.die( cause );
}
}
GameScene.bossSlain();
Dungeon.level.drop( new SkeletonKey( Dungeon.depth ), pos ).sprite.drop();
super.die( cause );
yell( Messages.get(this, "defeated") );
}
@Override
public void notice() {
super.notice();
if (!BossHealthBar.isAssigned()) {
BossHealthBar.assignBoss(this);
yell(Messages.get(this, "notice"));
for (Char ch : Actor.chars()){
if (ch instanceof DriedRose.GhostHero){
GLog.n("\n");
((DriedRose.GhostHero) ch).sayBoss();
}
}
}
}
{
immunities.add( Grim.class );
immunities.add( GrimTrap.class );
immunities.add( Terror.class );
immunities.add( Amok.class );
immunities.add( Charm.class );
immunities.add( Sleep.class );
immunities.add( Burning.class );
immunities.add( ToxicGas.class );
immunities.add( ScrollOfRetribution.class );
immunities.add( ScrollOfPsionicBlast.class );
immunities.add( Vertigo.class );
}
@Override
public void restoreFromBundle(Bundle bundle) {
super.restoreFromBundle(bundle);
BossHealthBar.assignBoss(this);
}
public static class RottingFist extends Mob {
private static final int REGENERATION = 4;
{
spriteClass = RottingFistSprite.class;
HP = HT = 300;
defenseSkill = 25;
EXP = 0;
state = WANDERING;
properties.add(Property.BOSS);
properties.add(Property.DEMONIC);
properties.add(Property.ACIDIC);
}
@Override
public int attackSkill( Char target ) {
return 36;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 20, 50 );
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 15);
}
@Override
public int attackProc( Char enemy, int damage ) {
damage = super.attackProc( enemy, damage );
if (Random.Int( 3 ) == 0) {
Buff.affect( enemy, Ooze.class ).set( 20f );
enemy.sprite.burst( 0xFF000000, 5 );
}
return damage;
}
@Override
public boolean act() {
if (Dungeon.level.water[pos] && HP < HT) {
sprite.emitter().burst( ShadowParticle.UP, 2 );
HP += REGENERATION;
}
return super.act();
}
@Override
public void damage(int dmg, Object src) {
super.damage(dmg, src);
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) lock.addTime(dmg*0.5f);
}
{
immunities.add( Paralysis.class );
immunities.add( Amok.class );
immunities.add( Sleep.class );
immunities.add( Terror.class );
immunities.add( Poison.class );
immunities.add( Vertigo.class );
}
}
public static class BurningFist extends Mob {
{
spriteClass = BurningFistSprite.class;
HP = HT = 200;
defenseSkill = 25;
EXP = 0;
state = WANDERING;
properties.add(Property.BOSS);
properties.add(Property.DEMONIC);
properties.add(Property.FIERY);
}
@Override
public int attackSkill( Char target ) {
return 36;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 26, 32 );
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 15);
}
@Override
protected boolean canAttack( Char enemy ) {
return new Ballistica( pos, enemy.pos, Ballistica.MAGIC_BOLT).collisionPos == enemy.pos;
}
//used so resistances can differentiate between melee and magical attacks
public static class DarkBolt{}
@Override
public boolean attack( Char enemy ) {
if (!Dungeon.level.adjacent( pos, enemy.pos )) {
spend( attackDelay() );
if (hit( this, enemy, true )) {
int dmg = damageRoll();
enemy.damage( dmg, new DarkBolt() );
enemy.sprite.bloodBurstA( sprite.center(), dmg );
enemy.sprite.flash();
if (!enemy.isAlive() && enemy == Dungeon.hero) {
Dungeon.fail( getClass() );
GLog.n( Messages.get(Char.class, "kill", name) );
}
return true;
} else {
enemy.sprite.showStatus( CharSprite.NEUTRAL, enemy.defenseVerb() );
return false;
}
} else {
return super.attack( enemy );
}
}
@Override
public boolean act() {
for (int i=0; i < PathFinder.NEIGHBOURS9.length; i++) {
GameScene.add( Blob.seed( pos + PathFinder.NEIGHBOURS9[i], 2, Fire.class ) );
}
return super.act();
}
@Override
public void damage(int dmg, Object src) {
super.damage(dmg, src);
LockedFloor lock = Dungeon.hero.buff(LockedFloor.class);
if (lock != null) lock.addTime(dmg*0.5f);
}
{
immunities.add( Amok.class );
immunities.add( Sleep.class );
immunities.add( Terror.class );
immunities.add( Vertigo.class );
}
}
public static class Larva extends Mob {
{
spriteClass = LarvaSprite.class;
HP = HT = 25;
defenseSkill = 20;
EXP = 0;
maxLvl = -2;
state = HUNTING;
properties.add(Property.DEMONIC);
}
@Override
public int attackSkill( Char target ) {
return 30;
}
@Override
public int damageRoll() {
return Random.NormalIntRange( 22, 30 );
}
@Override
public int drRoll() {
return Random.NormalIntRange(0, 8);
}
}
}
| 10,805 | Yog | java | en | java | code | {"qsc_code_num_words": 1213, "qsc_code_num_chars": 10805.0, "qsc_code_mean_word_length": 6.25803792, "qsc_code_frac_words_unique": 0.25721352, "qsc_code_frac_chars_top_2grams": 0.04505335, "qsc_code_frac_chars_top_3grams": 0.18021341, "qsc_code_frac_chars_top_4grams": 0.20287182, "qsc_code_frac_chars_dupe_5grams": 0.45185088, "qsc_code_frac_chars_dupe_6grams": 0.36042682, "qsc_code_frac_chars_dupe_7grams": 0.23185351, "qsc_code_frac_chars_dupe_8grams": 0.18877618, "qsc_code_frac_chars_dupe_9grams": 0.1601897, "qsc_code_frac_chars_dupe_10grams": 0.1496509, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01252963, "qsc_code_frac_chars_whitespace": 0.1801018, "qsc_code_size_file_byte": 10805.0, "qsc_code_num_lines": 412.0, "qsc_code_num_chars_line_max": 112.0, "qsc_code_num_chars_line_mean": 26.22572816, "qsc_code_frac_chars_alphabet": 0.84433909, "qsc_code_frac_chars_comments": 0.08135123, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.28239203, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.00292162, "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.00100746, "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.07973422, "qsc_codejava_score_lines_no_logic": 0.2358804, "qsc_codejava_frac_words_no_modifier": 0.96, "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/actors/mobs/Bestiary.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.actors.mobs;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.watabou.utils.Random;
import java.util.ArrayList;
import java.util.Arrays;
public class Bestiary {
public static ArrayList<Class<? extends Mob>> getMobRotation(int depth ){
ArrayList<Class<? extends Mob>> mobs = standardMobRotation( depth );
addRareMobs(depth, mobs);
swapMobAlts(mobs);
Random.shuffle(mobs);
return mobs;
}
//returns a rotation of standard mobs, unshuffled.
private static ArrayList<Class<? extends Mob>> standardMobRotation( int depth ){
switch(depth){
// Sewers
case 1: default:
//3x rat, 1x snake
return new ArrayList<>(Arrays.asList(
Rat.class, Rat.class, Rat.class,
Snake.class));
case 2:
//2x rat, 1x snake, 2x gnoll
return new ArrayList<>(Arrays.asList(Rat.class, Rat.class,
Snake.class,
Gnoll.class, Gnoll.class));
case 3:
//1x rat, 1x snake, 3x gnoll, 1x swarm, 1x crab
return new ArrayList<>(Arrays.asList(Rat.class,
Snake.class,
Gnoll.class, Gnoll.class, Gnoll.class,
Swarm.class,
Crab.class));
case 4: case 5:
//1x gnoll, 1x swarm, 2x crab, 2x slime
return new ArrayList<>(Arrays.asList(Gnoll.class,
Swarm.class,
Crab.class, Crab.class,
Slime.class, Slime.class));
// Prison
case 6:
//3x skeleton, 1x thief, 1x swarm
return new ArrayList<>(Arrays.asList(Skeleton.class, Skeleton.class, Skeleton.class,
Thief.class,
Swarm.class));
case 7:
//3x skeleton, 1x thief, 1x shaman, 1x guard
return new ArrayList<>(Arrays.asList(Skeleton.class, Skeleton.class, Skeleton.class,
Thief.class,
Shaman.class,
Guard.class));
case 8:
//2x skeleton, 1x thief, 2x shaman, 2x guard, 1x necromancer
return new ArrayList<>(Arrays.asList(Skeleton.class, Skeleton.class,
Thief.class,
Shaman.class, Shaman.class,
Guard.class, Guard.class,
Necromancer.class));
case 9: case 10:
//1x skeleton, 1x thief, 2x shaman, 2x guard, 2x necromancer
return new ArrayList<>(Arrays.asList(Skeleton.class,
Thief.class,
Shaman.class, Shaman.class,
Guard.class, Guard.class,
Necromancer.class, Necromancer.class));
// Caves
case 11:
//5x bat, 1x brute
return new ArrayList<>(Arrays.asList(
Bat.class, Bat.class, Bat.class, Bat.class, Bat.class,
Brute.class));
case 12:
//5x bat, 5x brute, 1x spinner
return new ArrayList<>(Arrays.asList(
Bat.class, Bat.class, Bat.class, Bat.class, Bat.class,
Brute.class, Brute.class, Brute.class, Brute.class, Brute.class,
Spinner.class));
case 13:
//1x bat, 3x brute, 1x shaman, 1x spinner
return new ArrayList<>(Arrays.asList(
Bat.class,
Brute.class, Brute.class, Brute.class,
Shaman.class,
Spinner.class));
case 14: case 15:
//1x bat, 3x brute, 1x shaman, 4x spinner
return new ArrayList<>(Arrays.asList(
Bat.class,
Brute.class, Brute.class, Brute.class,
Shaman.class,
Spinner.class, Spinner.class, Spinner.class, Spinner.class));
// City
case 16:
//5x elemental, 5x warlock, 1x monk
return new ArrayList<>(Arrays.asList(
Elemental.class, Elemental.class, Elemental.class, Elemental.class, Elemental.class,
Warlock.class, Warlock.class, Warlock.class, Warlock.class, Warlock.class,
Monk.class));
case 17:
//2x elemental, 2x warlock, 2x monk
return new ArrayList<>(Arrays.asList(
Elemental.class, Elemental.class,
Warlock.class, Warlock.class,
Monk.class, Monk.class));
case 18:
//1x elemental, 1x warlock, 2x monk, 1x golem
return new ArrayList<>(Arrays.asList(
Elemental.class,
Warlock.class,
Monk.class, Monk.class,
Golem.class));
case 19: case 20:
//1x elemental, 1x warlock, 2x monk, 3x golem
return new ArrayList<>(Arrays.asList(
Elemental.class,
Warlock.class,
Monk.class, Monk.class,
Golem.class, Golem.class, Golem.class));
// Halls
case 21: case 22:
//3x succubus, 3x evil eye
return new ArrayList<>(Arrays.asList(
Succubus.class, Succubus.class, Succubus.class,
Eye.class, Eye.class, Eye.class));
case 23:
//2x succubus, 4x evil eye, 2x scorpio
return new ArrayList<>(Arrays.asList(
Succubus.class, Succubus.class,
Eye.class, Eye.class, Eye.class, Eye.class,
Scorpio.class, Scorpio.class));
case 24: case 25: case 26:
//1x succubus, 2x evil eye, 3x scorpio
return new ArrayList<>(Arrays.asList(
Succubus.class,
Eye.class, Eye.class,
Scorpio.class, Scorpio.class, Scorpio.class));
}
}
//has a chance to add a rarely spawned mobs to the rotation
public static void addRareMobs( int depth, ArrayList<Class<?extends Mob>> rotation ){
switch (depth){
// Sewers
default:
return;
case 4:
if (Random.Float() < 0.025f) rotation.add(Thief.class);
return;
// Prison
case 8:
if (Random.Float() < 0.02f) rotation.add(Bat.class);
return;
case 9:
if (Random.Float() < 0.02f) rotation.add(Bat.class);
if (Random.Float() < 0.01f) rotation.add(Brute.class);
return;
// Caves
case 13:
if (Random.Float() < 0.02f) rotation.add(Elemental.class);
return;
case 14:
if (Random.Float() < 0.02f) rotation.add(Elemental.class);
if (Random.Float() < 0.01f) rotation.add(Monk.class);
return;
// City
case 19:
if (Random.Float() < 0.02f) rotation.add(Succubus.class);
return;
}
}
//switches out regular mobs for their alt versions when appropriate
private static void swapMobAlts(ArrayList<Class<?extends Mob>> rotation){
for (int i = 0; i < rotation.size(); i++){
if (Random.Int( 50 ) == 0) {
Class<? extends Mob> cl = rotation.get(i);
if (cl == Rat.class) {
cl = Albino.class;
} else if (cl == Slime.class) {
cl = CausticSlime.class;
} else if (cl == Thief.class) {
cl = Bandit.class;
} else if (cl == Brute.class) {
cl = Shielded.class;
} else if (cl == Monk.class) {
cl = Senior.class;
} else if (cl == Scorpio.class) {
cl = Acidic.class;
}
rotation.set(i, cl);
}
}
}
}
| 7,190 | Bestiary | java | en | java | code | {"qsc_code_num_words": 958, "qsc_code_num_chars": 7190.0, "qsc_code_mean_word_length": 4.89874739, "qsc_code_frac_words_unique": 0.21816284, "qsc_code_frac_chars_top_2grams": 0.03643725, "qsc_code_frac_chars_top_3grams": 0.07287449, "qsc_code_frac_chars_top_4grams": 0.09716599, "qsc_code_frac_chars_dupe_5grams": 0.56253995, "qsc_code_frac_chars_dupe_6grams": 0.51225229, "qsc_code_frac_chars_dupe_7grams": 0.4508843, "qsc_code_frac_chars_dupe_8grams": 0.41231622, "qsc_code_frac_chars_dupe_9grams": 0.34839122, "qsc_code_frac_chars_dupe_10grams": 0.22970381, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02943288, "qsc_code_frac_chars_whitespace": 0.22503477, "qsc_code_size_file_byte": 7190.0, "qsc_code_num_lines": 232.0, "qsc_code_num_chars_line_max": 91.0, "qsc_code_num_chars_line_mean": 30.99137931, "qsc_code_frac_chars_alphabet": 0.81281407, "qsc_code_frac_chars_comments": 0.24367177, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.36809816, "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.01226994, "qsc_codejava_score_lines_no_logic": 0.09815951, "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} |
0015/ThatProject | ESPNOW/ESPNOW_ESP8266_MASTER_ESP32_SLAVE/ESPNOW_ESP8266_MASTER/ESPNOW_ESP8266_MASTER.ino | #include <ESP8266WiFi.h>
#include <espnow.h>
typedef struct esp_now_peer_info {
u8 peer_addr[6];
uint8_t channel;
uint8_t encrypt;
}esp_now_peer_info_t;
// Global copy of slave
#define NUMSLAVES 20
esp_now_peer_info_t slaves[NUMSLAVES] = {};
int SlaveCnt = 0;
#define CHANNEL 3
#define PRINTSCANRESULTS 0
// Init ESP Now with fallback
void InitESPNow() {
WiFi.disconnect();
if (esp_now_init() == 0) {
Serial.println("ESPNow Init Success");
}
else {
Serial.println("ESPNow Init Failed");
ESP.restart();
}
esp_now_set_self_role(ESP_NOW_ROLE_CONTROLLER);
}
// Scan for slaves in AP mode
void ScanForSlave() {
int8_t scanResults = WiFi.scanNetworks();
//reset slaves
memset(slaves, 0, sizeof(slaves));
SlaveCnt = 0;
Serial.println("");
if (scanResults == 0) {
Serial.println("No WiFi devices in AP Mode found");
} else {
Serial.print("Found "); Serial.print(scanResults); Serial.println(" devices ");
for (int i = 0; i < scanResults; ++i) {
// Print SSID and RSSI for each device found
String SSID = WiFi.SSID(i);
int32_t RSSI = WiFi.RSSI(i);
String BSSIDstr = WiFi.BSSIDstr(i);
if (PRINTSCANRESULTS) {
Serial.print(i + 1); Serial.print(": "); Serial.print(SSID); Serial.print(" ["); Serial.print(BSSIDstr); Serial.print("]"); Serial.print(" ("); Serial.print(RSSI); Serial.print(")"); Serial.println("");
}
delay(10);
// Check if the current device starts with `Slave`
if (SSID.indexOf("Slave") == 0) {
// SSID of interest
Serial.print(i + 1); Serial.print(": "); Serial.print(SSID); Serial.print(" ["); Serial.print(BSSIDstr); Serial.print("]"); Serial.print(" ("); Serial.print(RSSI); Serial.print(")"); Serial.println("");
// Get BSSID => Mac Address of the Slave
int mac[6];
if ( 6 == sscanf(BSSIDstr.c_str(), "%x:%x:%x:%x:%x:%x", &mac[0], &mac[1], &mac[2], &mac[3], &mac[4], &mac[5] ) ) {
for (int ii = 0; ii < 6; ++ii ) {
slaves[SlaveCnt].peer_addr[ii] = (uint8_t) mac[ii];
}
}
slaves[SlaveCnt].channel = CHANNEL; // pick a channel
slaves[SlaveCnt].encrypt = 0; // no encryption
SlaveCnt++;
}
}
}
if (SlaveCnt > 0) {
Serial.print(SlaveCnt); Serial.println(" Slave(s) found, processing..");
} else {
Serial.println("No Slave Found, trying again.");
}
// clean up ram
WiFi.scanDelete();
}
// Check if the slave is already paired with the master.
// If not, pair the slave with master
void manageSlave() {
if (SlaveCnt > 0) {
for (int i = 0; i < SlaveCnt; i++) {
const esp_now_peer_info_t *peer = &slaves[i];
u8 *peer_addr = slaves[i].peer_addr;
Serial.print("Processing: ");
for (int ii = 0; ii < 6; ++ii ) {
Serial.print((uint8_t) slaves[i].peer_addr[ii], HEX);
if (ii != 5) Serial.print(":");
}
Serial.print(" Status: ");
// check if the peer exists
bool exists = esp_now_is_peer_exist((u8*)peer_addr);
if (exists) {
// Slave already paired.
Serial.println("Already Paired");
} else {
// Slave not paired, attempt pair
int addStatus = esp_now_add_peer((u8*)peer_addr, ESP_NOW_ROLE_CONTROLLER, CHANNEL, NULL, 0);
if (addStatus == 0) {
// Pair success
Serial.println("Pair success");
} else {
Serial.println("Pair failed");
}
delay(100);
}
}
} else {
// No slave found to process
Serial.println("No Slave found to process");
}
}
uint8_t data = 0;
// send data
void sendData() {
data++;
for (int i = 0; i < SlaveCnt; i++) {
u8 *peer_addr = slaves[i].peer_addr;
if (i == 0) { // print only for first slave
Serial.print("Sending: ");
Serial.println(data);
}
int result = esp_now_send(peer_addr, &data, sizeof(data));
Serial.print("Send Status: ");
if (result == 0) {
Serial.println("Success");
} else {
Serial.println("Failed");
}
delay(100);
}
}
// callback when data is sent from Master to Slave
esp_now_send_cb_t OnDataSent([](uint8_t *mac_addr, uint8_t status) {
char macStr[18];
snprintf(macStr, sizeof(macStr), "%02x:%02x:%02x:%02x:%02x:%02x",
mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]);
Serial.print("Last Packet Sent to: "); Serial.println(macStr);
Serial.print("Last Packet Send Status: "); Serial.println(status == 0 ? "Delivery Success" : "Delivery Fail");
});
void setup() {
Serial.begin(115200);
//Set device in STA mode to begin with
WiFi.mode(WIFI_STA);
Serial.println("ESPNow/Multi-Slave/Master Example");
// This is the mac address of the Master in Station Mode
Serial.print("STA MAC: "); Serial.println(WiFi.macAddress());
// Init ESPNow with a fallback logic
InitESPNow();
// Once ESPNow is successfully Init, we will register for Send CB to
// get the status of Trasnmitted packet
esp_now_register_send_cb(OnDataSent);
}
void loop() {
// In the loop we scan for slave
ScanForSlave();
// If Slave is found, it would be populate in `slave` variable
// We will check if `slave` is defined and then we proceed further
if (SlaveCnt > 0) { // check if slave channel is defined
// `slave` is defined
// Add slave as peer if it has not been added already
manageSlave();
// pair success or already paired
// Send data to device
sendData();
} else {
// No slave found to process
}
// wait for 1 second to run the logic again
delay(1000);
}
| 5,610 | ESPNOW_ESP8266_MASTER | ino | en | cpp | code | {"qsc_code_num_words": 767, "qsc_code_num_chars": 5610.0, "qsc_code_mean_word_length": 4.39113429, "qsc_code_frac_words_unique": 0.23728814, "qsc_code_frac_chars_top_2grams": 0.097981, "qsc_code_frac_chars_top_3grams": 0.05552257, "qsc_code_frac_chars_top_4grams": 0.0587886, "qsc_code_frac_chars_dupe_5grams": 0.16686461, "qsc_code_frac_chars_dupe_6grams": 0.12618765, "qsc_code_frac_chars_dupe_7grams": 0.11134204, "qsc_code_frac_chars_dupe_8grams": 0.09263658, "qsc_code_frac_chars_dupe_9grams": 0.07719715, "qsc_code_frac_chars_dupe_10grams": 0.07719715, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.02260545, "qsc_code_frac_chars_whitespace": 0.23511586, "qsc_code_size_file_byte": 5610.0, "qsc_code_num_lines": 181.0, "qsc_code_num_chars_line_max": 211.0, "qsc_code_num_chars_line_mean": 30.99447514, "qsc_code_frac_chars_alphabet": 0.76229317, "qsc_code_frac_chars_comments": 0.22745098, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.1484375, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.10267651, "qsc_code_frac_chars_long_word_length": 0.01245962, "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.046875, "qsc_codecpp_frac_lines_func_ratio": 0.0546875, "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.0703125, "qsc_codecpp_frac_lines_print": 0.0078125} | 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} |
0000cd/wolf-set | themes/bluf/static/js/APlayer.min.js | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("APlayer",[],t):"object"==typeof exports?exports.APlayer=t():e.APlayer=t()}(window,function(){return function(e){var t={};function n(i){if(t[i])return t[i].exports;var a=t[i]={i:i,l:!1,exports:{}};return e[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},n.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=41)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=/mobile/i.test(window.navigator.userAgent),a={secondToTime:function(e){var t=Math.floor(e/3600),n=Math.floor((e-3600*t)/60),i=Math.floor(e-3600*t-60*n);return(t>0?[t,n,i]:[n,i]).map(function(e){return e<10?"0"+e:""+e}).join(":")},getElementViewLeft:function(e){var t=e.offsetLeft,n=e.offsetParent,i=document.body.scrollLeft+document.documentElement.scrollLeft;if(document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement)for(;null!==n&&n!==e;)t+=n.offsetLeft,n=n.offsetParent;else for(;null!==n;)t+=n.offsetLeft,n=n.offsetParent;return t-i},getElementViewTop:function(e,t){for(var n,i=e.offsetTop,a=e.offsetParent;null!==a;)i+=a.offsetTop,a=a.offsetParent;return n=document.body.scrollTop+document.documentElement.scrollTop,t?i:i-n},isMobile:i,storage:{set:function(e,t){localStorage.setItem(e,t)},get:function(e){return localStorage.getItem(e)}},nameMap:{dragStart:i?"touchstart":"mousedown",dragMove:i?"touchmove":"mousemove",dragEnd:i?"touchend":"mouseup"},randomOrder:function(e){return function(e){for(var t=e.length-1;t>=0;t--){var n=Math.floor(Math.random()*(t+1)),i=e[n];e[n]=e[t],e[t]=i}return e}([].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(Array(e))).map(function(e,t){return t}))}};t.default=a},function(e,t,n){var i=n(2);e.exports=function(e){"use strict";e=e||{};var t="",n=i.$each,a=e.audio,r=(e.$value,e.$index,i.$escape),o=e.theme,s=e.index;return n(a,function(e,n){t+='\n<li>\n <span class="aplayer-list-cur" style="background-color: ',t+=r(e.theme||o),t+=';"></span>\n <span class="aplayer-list-index">',t+=r(n+s),t+='</span>\n <span class="aplayer-list-title">',t+=r(e.name),t+='</span>\n <span class="aplayer-list-author">',t+=r(e.artist),t+="</span>\n</li>\n"}),t}},function(e,t,n){"use strict";e.exports=n(15)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=g(n(33)),a=g(n(32)),r=g(n(31)),o=g(n(30)),s=g(n(29)),l=g(n(28)),u=g(n(27)),c=g(n(26)),p=g(n(25)),d=g(n(24)),h=g(n(23)),y=g(n(22)),f=g(n(21)),v=g(n(20)),m=g(n(19));function g(e){return e&&e.__esModule?e:{default:e}}var w={play:i.default,pause:a.default,volumeUp:r.default,volumeDown:o.default,volumeOff:s.default,orderRandom:l.default,orderList:u.default,menu:c.default,loopAll:p.default,loopOne:d.default,loopNone:h.default,loading:y.default,right:f.default,skip:v.default,lrc:m.default};t.default=w},function(e,t,n){"use strict";var i,a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};i=function(){return this}();try{i=i||Function("return this")()||(0,eval)("this")}catch(e){"object"===("undefined"==typeof window?"undefined":a(window))&&(i=window)}e.exports=i},function(e,t,n){"use strict";var i,a,r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};void 0===(a="function"==typeof(i=function(){if("object"===("undefined"==typeof window?"undefined":r(window))&&void 0!==document.querySelectorAll&&void 0!==window.pageYOffset&&void 0!==history.pushState){var e=function(e,t,n,i){return n>i?t:e+(t-e)*((a=n/i)<.5?4*a*a*a:(a-1)*(2*a-2)*(2*a-2)+1);var a},t=function(t,n,i,a){n=n||500;var r=(a=a||window).scrollTop||window.pageYOffset;if("number"==typeof t)var o=parseInt(t);else var o=function(e,t){return"HTML"===e.nodeName?-t:e.getBoundingClientRect().top+t}(t,r);var s=Date.now(),l=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(e){window.setTimeout(e,15)};!function u(){var c=Date.now()-s;a!==window?a.scrollTop=e(r,o,c,n):window.scroll(0,e(r,o,c,n)),c>n?"function"==typeof i&&i(t):l(u)}()},n=function(e){if(!e.defaultPrevented){e.preventDefault(),location.hash!==this.hash&&window.history.pushState(null,null,this.hash);var n=document.getElementById(this.hash.substring(1));if(!n)return;t(n,500,function(e){location.replace("#"+e.id)})}};return document.addEventListener("DOMContentLoaded",function(){for(var e,t=document.querySelectorAll('a[href^="#"]:not([href="#"])'),i=t.length;e=t[--i];)e.addEventListener("click",n,!1)}),t}})?i.call(t,n,t,e):i)||(e.exports=a)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=s(n(1)),r=s(n(0)),o=s(n(5));function s(e){return e&&e.__esModule?e:{default:e}}var l=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.player=t,this.index=0,this.audios=this.player.options.audio,this.bindEvents()}return i(e,[{key:"bindEvents",value:function(){var e=this;this.player.template.list.addEventListener("click",function(t){var n=void 0;n="LI"===t.target.tagName.toUpperCase()?t.target:t.target.parentElement;var i=parseInt(n.getElementsByClassName("aplayer-list-index")[0].innerHTML)-1;i!==e.index?(e.switch(i),e.player.play()):e.player.toggle()})}},{key:"show",value:function(){this.player.events.trigger("listshow"),this.player.template.list.classList.remove("aplayer-list-hide"),this.player.template.listOl.scrollTop=33*this.index}},{key:"hide",value:function(){this.player.events.trigger("listhide"),this.player.template.list.classList.add("aplayer-list-hide")}},{key:"toggle",value:function(){this.player.template.list.classList.contains("aplayer-list-hide")?this.show():this.hide()}},{key:"add",value:function(e){this.player.events.trigger("listadd",{audios:e}),"[object Array]"!==Object.prototype.toString.call(e)&&(e=[e]),e.map(function(e){return e.name=e.name||e.title||"Audio name",e.artist=e.artist||e.author||"Audio artist",e.cover=e.cover||e.pic,e.type=e.type||"normal",e});var t=!(this.audios.length>1),n=0===this.audios.length;this.player.template.listOl.innerHTML+=(0,a.default)({theme:this.player.options.theme,audio:e,index:this.audios.length+1}),this.audios=this.audios.concat(e),t&&this.audios.length>1&&this.player.container.classList.add("aplayer-withlist"),this.player.randomOrder=r.default.randomOrder(this.audios.length),this.player.template.listCurs=this.player.container.querySelectorAll(".aplayer-list-cur"),this.player.template.listCurs[this.audios.length-1].style.backgroundColor=e.theme||this.player.options.theme,n&&("random"===this.player.options.order?this.switch(this.player.randomOrder[0]):this.switch(0))}},{key:"remove",value:function(e){if(this.player.events.trigger("listremove",{index:e}),this.audios[e])if(this.audios.length>1){var t=this.player.container.querySelectorAll(".aplayer-list li");t[e].remove(),this.audios.splice(e,1),this.player.lrc&&this.player.lrc.remove(e),e===this.index&&(this.audios[e]?this.switch(e):this.switch(e-1)),this.index>e&&this.index--;for(var n=e;n<t.length;n++)t[n].getElementsByClassName("aplayer-list-index")[0].textContent=n;1===this.audios.length&&this.player.container.classList.remove("aplayer-withlist"),this.player.template.listCurs=this.player.container.querySelectorAll(".aplayer-list-cur")}else this.clear()}},{key:"switch",value:function(e){if(this.player.events.trigger("listswitch",{index:e}),void 0!==e&&this.audios[e]){this.index=e;var t=this.audios[this.index];this.player.template.pic.style.backgroundImage=t.cover?"url('"+t.cover+"')":"",this.player.theme(this.audios[this.index].theme||this.player.options.theme,this.index,!1),this.player.template.title.innerHTML=t.name,this.player.template.author.innerHTML=t.artist?" - "+t.artist:"";var n=this.player.container.getElementsByClassName("aplayer-list-light")[0];n&&n.classList.remove("aplayer-list-light"),this.player.container.querySelectorAll(".aplayer-list li")[this.index].classList.add("aplayer-list-light"),(0,o.default)(33*this.index,500,null,this.player.template.listOl),this.player.setAudio(t),this.player.lrc&&this.player.lrc.switch(this.index),this.player.lrc&&this.player.lrc.update(0),1!==this.player.duration&&(this.player.template.dtime.innerHTML=r.default.secondToTime(this.player.duration))}}},{key:"clear",value:function(){this.player.events.trigger("listclear"),this.index=0,this.player.container.classList.remove("aplayer-withlist"),this.player.pause(),this.audios=[],this.player.lrc&&this.player.lrc.clear(),this.player.audio.src="",this.player.template.listOl.innerHTML="",this.player.template.pic.style.backgroundImage="",this.player.theme(this.player.options.theme,this.index,!1),this.player.template.title.innerHTML="No audio",this.player.template.author.innerHTML="",this.player.bar.set("loaded",0,"width"),this.player.template.dtime.innerHTML=r.default.secondToTime(0)}}]),e}();t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();var a=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.events={},this.audioEvents=["abort","canplay","canplaythrough","durationchange","emptied","ended","error","loadeddata","loadedmetadata","loadstart","mozaudioavailable","pause","play","playing","progress","ratechange","seeked","seeking","stalled","suspend","timeupdate","volumechange","waiting"],this.playerEvents=["destroy","listshow","listhide","listadd","listremove","listswitch","listclear","noticeshow","noticehide","lrcshow","lrchide"]}return i(e,[{key:"on",value:function(e,t){this.type(e)&&"function"==typeof t&&(this.events[e]||(this.events[e]=[]),this.events[e].push(t))}},{key:"trigger",value:function(e,t){if(this.events[e]&&this.events[e].length)for(var n=0;n<this.events[e].length;n++)this.events[e][n](t)}},{key:"type",value:function(e){return-1!==this.playerEvents.indexOf(e)?"player":-1!==this.audioEvents.indexOf(e)?"audio":(console.error("Unknown event name: "+e),null)}}]),e}();t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();var a=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.player=t,window.requestAnimationFrame=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)},this.types=["loading"],this.init()}return i(e,[{key:"init",value:function(){var e=this;this.types.forEach(function(t){e["init"+t+"Checker"]()})}},{key:"initloadingChecker",value:function(){var e=this,t=0,n=0,i=!1;this.loadingChecker=setInterval(function(){e.enableloadingChecker&&(n=e.player.audio.currentTime,i||n!==t||e.player.audio.paused||(e.player.container.classList.add("aplayer-loading"),i=!0),i&&n>t&&!e.player.audio.paused&&(e.player.container.classList.remove("aplayer-loading"),i=!1),t=n)},100)}},{key:"enable",value:function(e){this["enable"+e+"Checker"]=!0,"fps"===e&&this.initfpsChecker()}},{key:"disable",value:function(e){this["enable"+e+"Checker"]=!1}},{key:"destroy",value:function(){var e=this;this.types.forEach(function(t){e["enable"+t+"Checker"]=!1,e[t+"Checker"]&&clearInterval(e[t+"Checker"])})}}]),e}();t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=o(n(0)),r=o(n(3));function o(e){return e&&e.__esModule?e:{default:e}}var s=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.player=t,this.initPlayButton(),this.initPlayBar(),this.initOrderButton(),this.initLoopButton(),this.initMenuButton(),a.default.isMobile||this.initVolumeButton(),this.initMiniSwitcher(),this.initSkipButton(),this.initLrcButton()}return i(e,[{key:"initPlayButton",value:function(){var e=this;this.player.template.pic.addEventListener("click",function(){e.player.toggle()})}},{key:"initPlayBar",value:function(){var e=this,t=function(t){var n=((t.clientX||t.changedTouches[0].clientX)-a.default.getElementViewLeft(e.player.template.barWrap))/e.player.template.barWrap.clientWidth;n=Math.max(n,0),n=Math.min(n,1),e.player.bar.set("played",n,"width"),e.player.lrc&&e.player.lrc.update(n*e.player.duration),e.player.template.ptime.innerHTML=a.default.secondToTime(n*e.player.duration)},n=function n(i){document.removeEventListener(a.default.nameMap.dragEnd,n),document.removeEventListener(a.default.nameMap.dragMove,t);var r=((i.clientX||i.changedTouches[0].clientX)-a.default.getElementViewLeft(e.player.template.barWrap))/e.player.template.barWrap.clientWidth;r=Math.max(r,0),r=Math.min(r,1),e.player.bar.set("played",r,"width"),e.player.seek(e.player.bar.get("played","width")*e.player.duration),e.player.disableTimeupdate=!1};this.player.template.barWrap.addEventListener(a.default.nameMap.dragStart,function(){e.player.disableTimeupdate=!0,document.addEventListener(a.default.nameMap.dragMove,t),document.addEventListener(a.default.nameMap.dragEnd,n)})}},{key:"initVolumeButton",value:function(){var e=this;this.player.template.volumeButton.addEventListener("click",function(){e.player.audio.muted?(e.player.audio.muted=!1,e.player.switchVolumeIcon(),e.player.bar.set("volume",e.player.volume(),"height")):(e.player.audio.muted=!0,e.player.switchVolumeIcon(),e.player.bar.set("volume",0,"height"))});var t=function(t){var n=1-((t.clientY||t.changedTouches[0].clientY)-a.default.getElementViewTop(e.player.template.volumeBar,e.player.options.fixed))/e.player.template.volumeBar.clientHeight;n=Math.max(n,0),n=Math.min(n,1),e.player.volume(n)},n=function n(i){e.player.template.volumeBarWrap.classList.remove("aplayer-volume-bar-wrap-active"),document.removeEventListener(a.default.nameMap.dragEnd,n),document.removeEventListener(a.default.nameMap.dragMove,t);var r=1-((i.clientY||i.changedTouches[0].clientY)-a.default.getElementViewTop(e.player.template.volumeBar,e.player.options.fixed))/e.player.template.volumeBar.clientHeight;r=Math.max(r,0),r=Math.min(r,1),e.player.volume(r)};this.player.template.volumeBarWrap.addEventListener(a.default.nameMap.dragStart,function(){e.player.template.volumeBarWrap.classList.add("aplayer-volume-bar-wrap-active"),document.addEventListener(a.default.nameMap.dragMove,t),document.addEventListener(a.default.nameMap.dragEnd,n)})}},{key:"initOrderButton",value:function(){var e=this;this.player.template.order.addEventListener("click",function(){"list"===e.player.options.order?(e.player.options.order="random",e.player.template.order.innerHTML=r.default.orderRandom):"random"===e.player.options.order&&(e.player.options.order="list",e.player.template.order.innerHTML=r.default.orderList)})}},{key:"initLoopButton",value:function(){var e=this;this.player.template.loop.addEventListener("click",function(){e.player.list.audios.length>1?"one"===e.player.options.loop?(e.player.options.loop="none",e.player.template.loop.innerHTML=r.default.loopNone):"none"===e.player.options.loop?(e.player.options.loop="all",e.player.template.loop.innerHTML=r.default.loopAll):"all"===e.player.options.loop&&(e.player.options.loop="one",e.player.template.loop.innerHTML=r.default.loopOne):"one"===e.player.options.loop||"all"===e.player.options.loop?(e.player.options.loop="none",e.player.template.loop.innerHTML=r.default.loopNone):"none"===e.player.options.loop&&(e.player.options.loop="all",e.player.template.loop.innerHTML=r.default.loopAll)})}},{key:"initMenuButton",value:function(){var e=this;this.player.template.menu.addEventListener("click",function(){e.player.list.toggle()})}},{key:"initMiniSwitcher",value:function(){var e=this;this.player.template.miniSwitcher.addEventListener("click",function(){e.player.setMode("mini"===e.player.mode?"normal":"mini")})}},{key:"initSkipButton",value:function(){var e=this;this.player.template.skipBackButton.addEventListener("click",function(){e.player.skipBack()}),this.player.template.skipForwardButton.addEventListener("click",function(){e.player.skipForward()}),this.player.template.skipPlayButton.addEventListener("click",function(){e.player.toggle()})}},{key:"initLrcButton",value:function(){var e=this;this.player.template.lrcButton.addEventListener("click",function(){e.player.template.lrcButton.classList.contains("aplayer-icon-lrc-inactivity")?(e.player.template.lrcButton.classList.remove("aplayer-icon-lrc-inactivity"),e.player.lrc&&e.player.lrc.show()):(e.player.template.lrcButton.classList.add("aplayer-icon-lrc-inactivity"),e.player.lrc&&e.player.lrc.hide())})}}]),e}();t.default=s},function(e,t,n){var i=n(2);e.exports=function(e){"use strict";e=e||{};var t="",n=i.$each,a=e.lyrics,r=(e.$value,e.$index,i.$escape);return n(a,function(e,n){t+="\n <p",0===n&&(t+=' class="aplayer-lrc-current"'),t+=">",t+=r(e[1]),t+="</p>\n"}),t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i,a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),r=n(10),o=(i=r)&&i.__esModule?i:{default:i};var s=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.container=t.container,this.async=t.async,this.player=t.player,this.parsed=[],this.index=0,this.current=[]}return a(e,[{key:"show",value:function(){this.player.events.trigger("lrcshow"),this.player.template.lrcWrap.classList.remove("aplayer-lrc-hide")}},{key:"hide",value:function(){this.player.events.trigger("lrchide"),this.player.template.lrcWrap.classList.add("aplayer-lrc-hide")}},{key:"toggle",value:function(){this.player.template.lrcWrap.classList.contains("aplayer-lrc-hide")?this.show():this.hide()}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.player.audio.currentTime;if(this.index>this.current.length-1||e<this.current[this.index][0]||!this.current[this.index+1]||e>=this.current[this.index+1][0])for(var t=0;t<this.current.length;t++)e>=this.current[t][0]&&(!this.current[t+1]||e<this.current[t+1][0])&&(this.index=t,this.container.style.transform="translateY("+16*-this.index+"px)",this.container.style.webkitTransform="translateY("+16*-this.index+"px)",this.container.getElementsByClassName("aplayer-lrc-current")[0].classList.remove("aplayer-lrc-current"),this.container.getElementsByTagName("p")[t].classList.add("aplayer-lrc-current"))}},{key:"switch",value:function(e){var t=this;if(!this.parsed[e])if(this.async){this.parsed[e]=[["00:00","Loading"]];var n=new XMLHttpRequest;n.onreadystatechange=function(){e===t.player.list.index&&4===n.readyState&&(n.status>=200&&n.status<300||304===n.status?t.parsed[e]=t.parse(n.responseText):(t.player.notice("LRC file request fails: status "+n.status),t.parsed[e]=[["00:00","Not available"]]),t.container.innerHTML=(0,o.default)({lyrics:t.parsed[e]}),t.update(0),t.current=t.parsed[e])};var i=this.player.list.audios[e].lrc;n.open("get",i,!0),n.send(null)}else this.player.list.audios[e].lrc?this.parsed[e]=this.parse(this.player.list.audios[e].lrc):this.parsed[e]=[["00:00","Not available"]];this.container.innerHTML=(0,o.default)({lyrics:this.parsed[e]}),this.update(0),this.current=this.parsed[e]}},{key:"parse",value:function(e){if(e){for(var t=(e=e.replace(/([^\]^\n])\[/g,function(e,t){return t+"\n["})).split("\n"),n=[],i=t.length,a=0;a<i;a++){var r=t[a].match(/\[(\d{2}):(\d{2})(\.(\d{2,3}))?]/g),o=t[a].replace(/.*\[(\d{2}):(\d{2})(\.(\d{2,3}))?]/g,"").replace(/<(\d{2}):(\d{2})(\.(\d{2,3}))?>/g,"").replace(/^\s+|\s+$/g,"");if(r)for(var s=r.length,l=0;l<s;l++){var u=/\[(\d{2}):(\d{2})(\.(\d{2,3}))?]/.exec(r[l]),c=60*u[1]+parseInt(u[2])+(u[4]?parseInt(u[4])/(2===(u[4]+"").length?100:1e3):0);n.push([c,o])}}return(n=n.filter(function(e){return e[1]})).sort(function(e,t){return e[0]-t[0]}),n}return[]}},{key:"remove",value:function(e){this.parsed.splice(e,1)}},{key:"clear",value:function(){this.parsed=[],this.container.innerHTML=""}}]),e}();t.default=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i,a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),r=n(0),o=(i=r)&&i.__esModule?i:{default:i};var s=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.storageName=t.options.storageName,this.data=JSON.parse(o.default.storage.get(this.storageName)),this.data||(this.data={}),this.data.volume=this.data.volume||t.options.volume}return a(e,[{key:"get",value:function(e){return this.data[e]}},{key:"set",value:function(e,t){this.data[e]=t,o.default.storage.set(this.storageName,JSON.stringify(this.data))}}]),e}();t.default=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();var a=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.elements={},this.elements.volume=t.volume,this.elements.played=t.played,this.elements.loaded=t.loaded}return i(e,[{key:"set",value:function(e,t,n){t=Math.max(t,0),t=Math.min(t,1),this.elements[e].style[n]=100*t+"%"}},{key:"get",value:function(e,t){return parseFloat(this.elements[e].style[t])/100}}]),e}();t.default=a},function(e,t,n){"use strict";(function(t){e.exports=!1;try{e.exports="[object process]"===Object.prototype.toString.call(t.process)}catch(e){}}).call(this,n(4))},function(e,t,n){"use strict";(function(t){var i=n(14),a=Object.create(i?t:window),r=/["&'<>]/;a.$escape=function(e){return function(e){var t=""+e,n=r.exec(t);if(!n)return e;var i="",a=void 0,o=void 0,s=void 0;for(a=n.index,o=0;a<t.length;a++){switch(t.charCodeAt(a)){case 34:s=""";break;case 38:s="&";break;case 39:s="'";break;case 60:s="<";break;case 62:s=">";break;default:continue}o!==a&&(i+=t.substring(o,a)),o=a+1,i+=s}return o!==a?i+t.substring(o,a):i}(function e(t){"string"!=typeof t&&(t=void 0===t||null===t?"":"function"==typeof t?e(t.call(t)):JSON.stringify(t));return t}(e))},a.$each=function(e,t){if(Array.isArray(e))for(var n=0,i=e.length;n<i;n++)t(e[n],n);else for(var a in e)t(e[a],a)},e.exports=a}).call(this,n(4))},function(e,t,n){var i=n(2);e.exports=function(e){"use strict";var t="",a=(e=e||{}).options,r=e.cover,o=i.$escape,s=e.icons,l=(arguments[1],function(e){return t+=e}),u=e.getObject;e.theme,e.audio,e.index;return a.fixed?(t+='\n<div class="aplayer-list',a.listFolded&&(t+=" aplayer-list-hide"),t+='"',a.listMaxHeight&&(t+=' style="max-height: ',t+=o(a.listMaxHeight),t+='"'),t+=">\n <ol",a.listMaxHeight&&(t+=' style="max-height: ',t+=o(a.listMaxHeight),t+='"'),t+=">\n ",l(n(1)(u({theme:a.theme,audio:a.audio,index:1}))),t+='\n </ol>\n</div>\n<div class="aplayer-body">\n <div class="aplayer-pic" style="',r&&(t+="background-image: url("",t+=o(r),t+="");"),t+="background-color: ",t+=o(a.theme),t+=';">\n <div class="aplayer-button aplayer-play">',t+=s.play,t+='</div>\n </div>\n <div class="aplayer-info" style="display: none;">\n <div class="aplayer-music">\n <span class="aplayer-title">No audio</span>\n <span class="aplayer-author"></span>\n </div>\n <div class="aplayer-controller">\n <div class="aplayer-bar-wrap">\n <div class="aplayer-bar">\n <div class="aplayer-loaded" style="width: 0"></div>\n <div class="aplayer-played" style="width: 0; background: ',t+=o(a.theme),t+=';">\n <span class="aplayer-thumb" style="background: ',t+=o(a.theme),t+=';">\n <span class="aplayer-loading-icon">',t+=s.loading,t+='</span>\n </span>\n </div>\n </div>\n </div>\n <div class="aplayer-time">\n <span class="aplayer-time-inner">\n <span class="aplayer-ptime">00:00</span> / <span class="aplayer-dtime">00:00</span>\n </span>\n <span class="aplayer-icon aplayer-icon-back">\n ',t+=s.skip,t+='\n </span>\n <span class="aplayer-icon aplayer-icon-play">\n ',t+=s.play,t+='\n </span>\n <span class="aplayer-icon aplayer-icon-forward">\n ',t+=s.skip,t+='\n </span>\n <div class="aplayer-volume-wrap">\n <button type="button" class="aplayer-icon aplayer-icon-volume-down">\n ',t+=s.volumeDown,t+='\n </button>\n <div class="aplayer-volume-bar-wrap">\n <div class="aplayer-volume-bar">\n <div class="aplayer-volume" style="height: 80%; background: ',t+=o(a.theme),t+=';"></div>\n </div>\n </div>\n </div>\n <button type="button" class="aplayer-icon aplayer-icon-order">\n ',"list"===a.order?t+=s.orderList:"random"===a.order&&(t+=s.orderRandom),t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-loop">\n ',"one"===a.loop?t+=s.loopOne:"all"===a.loop?t+=s.loopAll:"none"===a.loop&&(t+=s.loopNone),t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-menu">\n ',t+=s.menu,t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-lrc">\n ',t+=s.lrc,t+='\n </button>\n </div>\n </div>\n </div>\n <div class="aplayer-notice"></div>\n <div class="aplayer-miniswitcher"><button class="aplayer-icon">',t+=s.right,t+='</button></div>\n</div>\n<div class="aplayer-lrc">\n <div class="aplayer-lrc-contents" style="transform: translateY(0); -webkit-transform: translateY(0);"></div>\n</div>\n'):(t+='\n<div class="aplayer-body">\n <div class="aplayer-pic" style="',r&&(t+="background-image: url("",t+=o(r),t+="");"),t+="background-color: ",t+=o(a.theme),t+=';">\n <div class="aplayer-button aplayer-play">',t+=s.play,t+='</div>\n </div>\n <div class="aplayer-info">\n <div class="aplayer-music">\n <span class="aplayer-title">No audio</span>\n <span class="aplayer-author"></span>\n </div>\n <div class="aplayer-lrc">\n <div class="aplayer-lrc-contents" style="transform: translateY(0); -webkit-transform: translateY(0);"></div>\n </div>\n <div class="aplayer-controller">\n <div class="aplayer-bar-wrap">\n <div class="aplayer-bar">\n <div class="aplayer-loaded" style="width: 0"></div>\n <div class="aplayer-played" style="width: 0; background: ',t+=o(a.theme),t+=';">\n <span class="aplayer-thumb" style="background: ',t+=o(a.theme),t+=';">\n <span class="aplayer-loading-icon">',t+=s.loading,t+='</span>\n </span>\n </div>\n </div>\n </div>\n <div class="aplayer-time">\n <span class="aplayer-time-inner">\n <span class="aplayer-ptime">00:00</span> / <span class="aplayer-dtime">00:00</span>\n </span>\n <span class="aplayer-icon aplayer-icon-back">\n ',t+=s.skip,t+='\n </span>\n <span class="aplayer-icon aplayer-icon-play">\n ',t+=s.play,t+='\n </span>\n <span class="aplayer-icon aplayer-icon-forward">\n ',t+=s.skip,t+='\n </span>\n <div class="aplayer-volume-wrap">\n <button type="button" class="aplayer-icon aplayer-icon-volume-down">\n ',t+=s.volumeDown,t+='\n </button>\n <div class="aplayer-volume-bar-wrap">\n <div class="aplayer-volume-bar">\n <div class="aplayer-volume" style="height: 80%; background: ',t+=o(a.theme),t+=';"></div>\n </div>\n </div>\n </div>\n <button type="button" class="aplayer-icon aplayer-icon-order">\n ',"list"===a.order?t+=s.orderList:"random"===a.order&&(t+=s.orderRandom),t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-loop">\n ',"one"===a.loop?t+=s.loopOne:"all"===a.loop?t+=s.loopAll:"none"===a.loop&&(t+=s.loopNone),t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-menu">\n ',t+=s.menu,t+='\n </button>\n <button type="button" class="aplayer-icon aplayer-icon-lrc">\n ',t+=s.lrc,t+='\n </button>\n </div>\n </div>\n </div>\n <div class="aplayer-notice"></div>\n <div class="aplayer-miniswitcher"><button class="aplayer-icon">',t+=s.right,t+='</button></div>\n</div>\n<div class="aplayer-list',a.listFolded&&(t+=" aplayer-list-hide"),t+='"',a.listMaxHeight&&(t+=' style="max-height: ',t+=o(a.listMaxHeight),t+='"'),t+=">\n <ol",a.listMaxHeight&&(t+=' style="max-height: ',t+=o(a.listMaxHeight),t+='"'),t+=">\n ",l(n(1)(u({theme:a.theme,audio:a.audio,index:1}))),t+="\n </ol>\n</div>\n"),t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=o(n(3)),r=o(n(16));function o(e){return e&&e.__esModule?e:{default:e}}var s=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.container=t.container,this.options=t.options,this.randomOrder=t.randomOrder,this.init()}return i(e,[{key:"init",value:function(){var e="";this.options.audio.length&&(e="random"===this.options.order?this.options.audio[this.randomOrder[0]].cover:this.options.audio[0].cover),this.container.innerHTML=(0,r.default)({options:this.options,icons:a.default,cover:e,getObject:function(e){return e}}),this.lrc=this.container.querySelector(".aplayer-lrc-contents"),this.lrcWrap=this.container.querySelector(".aplayer-lrc"),this.ptime=this.container.querySelector(".aplayer-ptime"),this.info=this.container.querySelector(".aplayer-info"),this.time=this.container.querySelector(".aplayer-time"),this.barWrap=this.container.querySelector(".aplayer-bar-wrap"),this.button=this.container.querySelector(".aplayer-button"),this.body=this.container.querySelector(".aplayer-body"),this.list=this.container.querySelector(".aplayer-list"),this.listOl=this.container.querySelector(".aplayer-list ol"),this.listCurs=this.container.querySelectorAll(".aplayer-list-cur"),this.played=this.container.querySelector(".aplayer-played"),this.loaded=this.container.querySelector(".aplayer-loaded"),this.thumb=this.container.querySelector(".aplayer-thumb"),this.volume=this.container.querySelector(".aplayer-volume"),this.volumeBar=this.container.querySelector(".aplayer-volume-bar"),this.volumeButton=this.container.querySelector(".aplayer-time button"),this.volumeBarWrap=this.container.querySelector(".aplayer-volume-bar-wrap"),this.loop=this.container.querySelector(".aplayer-icon-loop"),this.order=this.container.querySelector(".aplayer-icon-order"),this.menu=this.container.querySelector(".aplayer-icon-menu"),this.pic=this.container.querySelector(".aplayer-pic"),this.title=this.container.querySelector(".aplayer-title"),this.author=this.container.querySelector(".aplayer-author"),this.dtime=this.container.querySelector(".aplayer-dtime"),this.notice=this.container.querySelector(".aplayer-notice"),this.miniSwitcher=this.container.querySelector(".aplayer-miniswitcher"),this.skipBackButton=this.container.querySelector(".aplayer-icon-back"),this.skipForwardButton=this.container.querySelector(".aplayer-icon-forward"),this.skipPlayButton=this.container.querySelector(".aplayer-icon-play"),this.lrcButton=this.container.querySelector(".aplayer-icon-lrc")}}]),e}();t.default=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t={container:e.element||document.getElementsByClassName("aplayer")[0],mini:e.narrow||e.fixed||!1,fixed:!1,autoplay:!1,mutex:!0,lrcType:e.showlrc||e.lrc||0,preload:"auto",theme:"#b7daff",loop:"all",order:"list",volume:.7,listFolded:e.fixed,listMaxHeight:e.listmaxheight||"250px",audio:e.music||[],storageName:"aplayer-setting"};for(var n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n]);return"[object Array]"!==Object.prototype.toString.call(e.audio)&&(e.audio=[e.audio]),e.audio.map(function(e){return e.name=e.name||e.title||"Audio name",e.artist=e.artist||e.author||"Audio artist",e.cover=e.cover||e.pic,e.type=e.type||"normal",e}),e.audio.length<=1&&"one"===e.loop&&(e.loop="all"),e}},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M26.667 5.333h-21.333c-0 0-0.001 0-0.001 0-1.472 0-2.666 1.194-2.666 2.666 0 0 0 0.001 0 0.001v-0 16c0 0 0 0.001 0 0.001 0 1.472 1.194 2.666 2.666 2.666 0 0 0.001 0 0.001 0h21.333c0 0 0.001 0 0.001 0 1.472 0 2.666-1.194 2.666-2.666 0-0 0-0.001 0-0.001v0-16c0-0 0-0.001 0-0.001 0-1.472-1.194-2.666-2.666-2.666-0 0-0.001 0-0.001 0h0zM5.333 16h5.333v2.667h-5.333v-2.667zM18.667 24h-13.333v-2.667h13.333v2.667zM26.667 24h-5.333v-2.667h5.333v2.667zM26.667 18.667h-13.333v-2.667h13.333v2.667z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M25.468 6.947c-0.326-0.172-0.724-0.151-1.030 0.057l-6.438 4.38v-3.553c0-0.371-0.205-0.71-0.532-0.884-0.326-0.172-0.724-0.151-1.030 0.057l-12 8.164c-0.274 0.186-0.438 0.496-0.438 0.827s0.164 0.641 0.438 0.827l12 8.168c0.169 0.115 0.365 0.174 0.562 0.174 0.16 0 0.321-0.038 0.468-0.116 0.327-0.173 0.532-0.514 0.532-0.884v-3.556l6.438 4.382c0.169 0.115 0.365 0.174 0.562 0.174 0.16 0 0.321-0.038 0.468-0.116 0.327-0.173 0.532-0.514 0.532-0.884v-16.333c0-0.371-0.205-0.71-0.532-0.884z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M22 16l-10.105-10.6-1.895 1.987 8.211 8.613-8.211 8.612 1.895 1.988 8.211-8.613z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M4 16c0-6.6 5.4-12 12-12s12 5.4 12 12c0 1.2-0.8 2-2 2s-2-0.8-2-2c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8c1.2 0 2 0.8 2 2s-0.8 2-2 2c-6.6 0-12-5.4-12-12z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 29 32"><path d="M2.667 7.027l1.707-1.693 22.293 22.293-1.693 1.707-4-4h-11.64v4l-5.333-5.333 5.333-5.333v4h8.973l-8.973-8.973v0.973h-2.667v-3.64l-4-4zM22.667 17.333h2.667v5.573l-2.667-2.667v-2.907zM22.667 6.667v-4l5.333 5.333-5.333 5.333v-4h-10.907l-2.667-2.667h13.573z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 33 32"><path d="M9.333 9.333h13.333v4l5.333-5.333-5.333-5.333v4h-16v8h2.667v-5.333zM22.667 22.667h-13.333v-4l-5.333 5.333 5.333 5.333v-4h16v-8h-2.667v5.333zM17.333 20v-8h-1.333l-2.667 1.333v1.333h2v5.333h2z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 29 32"><path d="M9.333 9.333h13.333v4l5.333-5.333-5.333-5.333v4h-16v8h2.667v-5.333zM22.667 22.667h-13.333v-4l-5.333 5.333 5.333 5.333v-4h16v-8h-2.667v5.333z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 22 32"><path d="M20.8 14.4q0.704 0 1.152 0.48t0.448 1.12-0.48 1.12-1.12 0.48h-19.2q-0.64 0-1.12-0.48t-0.48-1.12 0.448-1.12 1.152-0.48h19.2zM1.6 11.2q-0.64 0-1.12-0.48t-0.48-1.12 0.448-1.12 1.152-0.48h19.2q0.704 0 1.152 0.48t0.448 1.12-0.48 1.12-1.12 0.48h-19.2zM20.8 20.8q0.704 0 1.152 0.48t0.448 1.12-0.48 1.12-1.12 0.48h-19.2q-0.64 0-1.12-0.48t-0.48-1.12 0.448-1.12 1.152-0.48h19.2z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M0.622 18.334h19.54v7.55l11.052-9.412-11.052-9.413v7.549h-19.54v3.725z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32"><path d="M22.667 4l7 6-7 6 7 6-7 6v-4h-3.653l-3.76-3.76 2.827-2.827 2.587 2.587h2v-8h-2l-12 12h-6v-4h4.347l12-12h3.653v-4zM2.667 8h6l3.76 3.76-2.827 2.827-2.587-2.587h-4.347v-4z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 28 32"><path d="M13.728 6.272v19.456q0 0.448-0.352 0.8t-0.8 0.32-0.8-0.32l-5.952-5.952h-4.672q-0.48 0-0.8-0.352t-0.352-0.8v-6.848q0-0.48 0.352-0.8t0.8-0.352h4.672l5.952-5.952q0.32-0.32 0.8-0.32t0.8 0.32 0.352 0.8z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 28 32"><path d="M13.728 6.272v19.456q0 0.448-0.352 0.8t-0.8 0.32-0.8-0.32l-5.952-5.952h-4.672q-0.48 0-0.8-0.352t-0.352-0.8v-6.848q0-0.48 0.352-0.8t0.8-0.352h4.672l5.952-5.952q0.32-0.32 0.8-0.32t0.8 0.32 0.352 0.8zM20.576 16q0 1.344-0.768 2.528t-2.016 1.664q-0.16 0.096-0.448 0.096-0.448 0-0.8-0.32t-0.32-0.832q0-0.384 0.192-0.64t0.544-0.448 0.608-0.384 0.512-0.64 0.192-1.024-0.192-1.024-0.512-0.64-0.608-0.384-0.544-0.448-0.192-0.64q0-0.48 0.32-0.832t0.8-0.32q0.288 0 0.448 0.096 1.248 0.48 2.016 1.664t0.768 2.528z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 28 32"><path d="M13.728 6.272v19.456q0 0.448-0.352 0.8t-0.8 0.32-0.8-0.32l-5.952-5.952h-4.672q-0.48 0-0.8-0.352t-0.352-0.8v-6.848q0-0.48 0.352-0.8t0.8-0.352h4.672l5.952-5.952q0.32-0.32 0.8-0.32t0.8 0.32 0.352 0.8zM20.576 16q0 1.344-0.768 2.528t-2.016 1.664q-0.16 0.096-0.448 0.096-0.448 0-0.8-0.32t-0.32-0.832q0-0.384 0.192-0.64t0.544-0.448 0.608-0.384 0.512-0.64 0.192-1.024-0.192-1.024-0.512-0.64-0.608-0.384-0.544-0.448-0.192-0.64q0-0.48 0.32-0.832t0.8-0.32q0.288 0 0.448 0.096 1.248 0.48 2.016 1.664t0.768 2.528zM25.152 16q0 2.72-1.536 5.056t-4 3.36q-0.256 0.096-0.448 0.096-0.48 0-0.832-0.352t-0.32-0.8q0-0.704 0.672-1.056 1.024-0.512 1.376-0.8 1.312-0.96 2.048-2.4t0.736-3.104-0.736-3.104-2.048-2.4q-0.352-0.288-1.376-0.8-0.672-0.352-0.672-1.056 0-0.448 0.32-0.8t0.8-0.352q0.224 0 0.48 0.096 2.496 1.056 4 3.36t1.536 5.056zM29.728 16q0 4.096-2.272 7.552t-6.048 5.056q-0.224 0.096-0.448 0.096-0.48 0-0.832-0.352t-0.32-0.8q0-0.64 0.704-1.056 0.128-0.064 0.384-0.192t0.416-0.192q0.8-0.448 1.44-0.896 2.208-1.632 3.456-4.064t1.216-5.152-1.216-5.152-3.456-4.064q-0.64-0.448-1.44-0.896-0.128-0.096-0.416-0.192t-0.384-0.192q-0.704-0.416-0.704-1.056 0-0.448 0.32-0.8t0.832-0.352q0.224 0 0.448 0.096 3.776 1.632 6.048 5.056t2.272 7.552z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17 32"><path d="M14.080 4.8q2.88 0 2.88 2.048v18.24q0 2.112-2.88 2.112t-2.88-2.112v-18.24q0-2.048 2.88-2.048zM2.88 4.8q2.88 0 2.88 2.048v18.24q0 2.112-2.88 2.112t-2.88-2.112v-18.24q0-2.048 2.88-2.048z"></path></svg>'},function(e,t){e.exports='<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 31"><path d="M15.552 15.168q0.448 0.32 0.448 0.832 0 0.448-0.448 0.768l-13.696 8.512q-0.768 0.512-1.312 0.192t-0.544-1.28v-16.448q0-0.96 0.544-1.28t1.312 0.192z"></path></svg>'},function(e,t,n){"use strict";var i,a,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function l(e){if(i===setTimeout)return setTimeout(e,0);if((i===o||!i)&&setTimeout)return i=setTimeout,setTimeout(e,0);try{return i(e,0)}catch(t){try{return i.call(null,e,0)}catch(t){return i.call(this,e,0)}}}!function(){try{i="function"==typeof setTimeout?setTimeout:o}catch(e){i=o}try{a="function"==typeof clearTimeout?clearTimeout:s}catch(e){a=s}}();var u,c=[],p=!1,d=-1;function h(){p&&u&&(p=!1,u.length?c=u.concat(c):d=-1,c.length&&y())}function y(){if(!p){var e=l(h);p=!0;for(var t=c.length;t;){for(u=c,c=[];++d<t;)u&&u[d].run();d=-1,t=c.length}u=null,p=!1,function(e){if(a===clearTimeout)return clearTimeout(e);if((a===s||!a)&&clearTimeout)return a=clearTimeout,clearTimeout(e);try{a(e)}catch(t){try{return a.call(null,e)}catch(t){return a.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function v(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];c.push(new f(e,t)),1!==c.length||p||l(y)},f.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=v,r.addListener=v,r.once=v,r.off=v,r.removeListener=v,r.removeAllListeners=v,r.emit=v,r.prependListener=v,r.prependOnceListener=v,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},function(e,t,n){"use strict";(function(e,t){!function(e,n){if(!e.setImmediate){var i,a,r,o,s,l=1,u={},c=!1,p=e.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(e);d=d&&d.setTimeout?d:e,"[object process]"==={}.toString.call(e.process)?i=function(e){t.nextTick(function(){y(e)})}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?e.MessageChannel?((r=new MessageChannel).port1.onmessage=function(e){y(e.data)},i=function(e){r.port2.postMessage(e)}):p&&"onreadystatechange"in p.createElement("script")?(a=p.documentElement,i=function(e){var t=p.createElement("script");t.onreadystatechange=function(){y(e),t.onreadystatechange=null,a.removeChild(t),t=null},a.appendChild(t)}):i=function(e){setTimeout(y,0,e)}:(o="setImmediate$"+Math.random()+"$",s=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(o)&&y(+t.data.slice(o.length))},e.addEventListener?e.addEventListener("message",s,!1):e.attachEvent("onmessage",s),i=function(t){e.postMessage(o+t,"*")}),d.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var a={callback:e,args:t};return u[l]=a,i(l),l++},d.clearImmediate=h}function h(e){delete u[e]}function y(e){if(c)setTimeout(y,0,e);else{var t=u[e];if(t){c=!0;try{!function(e){var t=e.callback,i=e.args;switch(i.length){case 0:t();break;case 1:t(i[0]);break;case 2:t(i[0],i[1]);break;case 3:t(i[0],i[1],i[2]);break;default:t.apply(n,i)}}(t)}finally{h(e),c=!1}}}}}("undefined"==typeof self?void 0===e?void 0:e:self)}).call(this,n(4),n(34))},function(e,t,n){"use strict";var i=Function.prototype.apply;function a(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new a(i.call(setTimeout,window,arguments),clearTimeout)},t.setInterval=function(){return new a(i.call(setInterval,window,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},a.prototype.unref=a.prototype.ref=function(){},a.prototype.close=function(){this._clearFn.call(window,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},n(35),t.setImmediate=setImmediate,t.clearImmediate=clearImmediate},function(e,t,n){"use strict";(function(t){var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=setTimeout;function a(){}function r(e){if(!(this instanceof r))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],c(e,this)}function o(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,r._immediateFn(function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var i;try{i=n(e._value)}catch(e){return void l(t.promise,e)}s(t.promise,i)}else(1===e._state?s:l)(t.promise,e._value)})):e._deferreds.push(t)}function s(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"===(void 0===t?"undefined":n(t))||"function"==typeof t)){var i=t.then;if(t instanceof r)return e._state=3,e._value=t,void u(e);if("function"==typeof i)return void c((a=i,o=t,function(){a.apply(o,arguments)}),e)}e._state=1,e._value=t,u(e)}catch(t){l(e,t)}var a,o}function l(e,t){e._state=2,e._value=t,u(e)}function u(e){2===e._state&&0===e._deferreds.length&&r._immediateFn(function(){e._handled||r._unhandledRejectionFn(e._value)});for(var t=0,n=e._deferreds.length;t<n;t++)o(e,e._deferreds[t]);e._deferreds=null}function c(e,t){var n=!1;try{e(function(e){n||(n=!0,s(t,e))},function(e){n||(n=!0,l(t,e))})}catch(e){if(n)return;n=!0,l(t,e)}}r.prototype.catch=function(e){return this.then(null,e)},r.prototype.then=function(e,t){var n=new this.constructor(a);return o(this,new function(e,t,n){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=n}(e,t,n)),n},r.prototype.finally=function(e){var t=this.constructor;return this.then(function(n){return t.resolve(e()).then(function(){return n})},function(n){return t.resolve(e()).then(function(){return t.reject(n)})})},r.all=function(e){return new r(function(t,i){if(!e||void 0===e.length)throw new TypeError("Promise.all accepts an array");var a=Array.prototype.slice.call(e);if(0===a.length)return t([]);var r=a.length;function o(e,s){try{if(s&&("object"===(void 0===s?"undefined":n(s))||"function"==typeof s)){var l=s.then;if("function"==typeof l)return void l.call(s,function(t){o(e,t)},i)}a[e]=s,0==--r&&t(a)}catch(e){i(e)}}for(var s=0;s<a.length;s++)o(s,a[s])})},r.resolve=function(e){return e&&"object"===(void 0===e?"undefined":n(e))&&e.constructor===r?e:new r(function(t){t(e)})},r.reject=function(e){return new r(function(t,n){n(e)})},r.race=function(e){return new r(function(t,n){for(var i=0,a=e.length;i<a;i++)e[i].then(t,n)})},r._immediateFn="function"==typeof t&&function(e){t(e)}||function(e){i(e,0)},r._unhandledRejectionFn=function(e){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},e.exports=r}).call(this,n(36).setImmediate)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=v(n(37)),r=v(n(0)),o=v(n(3)),s=v(n(18)),l=v(n(17)),u=v(n(13)),c=v(n(12)),p=v(n(11)),d=v(n(9)),h=v(n(8)),y=v(n(7)),f=v(n(6));function v(e){return e&&e.__esModule?e:{default:e}}var m=[],g=function(){function e(t){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options=(0,s.default)(t),this.container=this.options.container,this.paused=!0,this.playedPromise=a.default.resolve(),this.mode="normal",this.randomOrder=r.default.randomOrder(this.options.audio.length),this.container.classList.add("aplayer"),this.options.lrcType&&!this.options.fixed&&this.container.classList.add("aplayer-withlrc"),this.options.audio.length>1&&this.container.classList.add("aplayer-withlist"),r.default.isMobile&&this.container.classList.add("aplayer-mobile"),this.arrow=this.container.offsetWidth<=300,this.arrow&&this.container.classList.add("aplayer-arrow"),this.container=this.options.container,2===this.options.lrcType||!0===this.options.lrcType)for(var n=this.container.getElementsByClassName("aplayer-lrc-content"),i=0;i<n.length;i++)this.options.audio[i]&&(this.options.audio[i].lrc=n[i].innerHTML);this.template=new l.default({container:this.container,options:this.options,randomOrder:this.randomOrder}),this.options.fixed&&(this.container.classList.add("aplayer-fixed"),this.template.body.style.width=this.template.body.offsetWidth-18+"px"),this.options.mini&&(this.setMode("mini"),this.template.info.style.display="block"),this.template.info.offsetWidth<200&&this.template.time.classList.add("aplayer-time-narrow"),this.options.lrcType&&(this.lrc=new p.default({container:this.template.lrc,async:3===this.options.lrcType,player:this})),this.events=new y.default,this.storage=new c.default(this),this.bar=new u.default(this.template),this.controller=new d.default(this),this.timer=new h.default(this),this.list=new f.default(this),this.initAudio(),this.bindEvents(),"random"===this.options.order?this.list.switch(this.randomOrder[0]):this.list.switch(0),this.options.autoplay&&this.play(),m.push(this)}return i(e,[{key:"initAudio",value:function(){var e=this;this.audio=document.createElement("audio"),this.audio.preload=this.options.preload;for(var t=function(t){e.audio.addEventListener(e.events.audioEvents[t],function(n){e.events.trigger(e.events.audioEvents[t],n)})},n=0;n<this.events.audioEvents.length;n++)t(n);this.volume(this.storage.get("volume"),!0)}},{key:"bindEvents",value:function(){var e=this;this.on("play",function(){e.paused&&e.setUIPlaying()}),this.on("pause",function(){e.paused||e.setUIPaused()}),this.on("timeupdate",function(){if(!e.disableTimeupdate){e.bar.set("played",e.audio.currentTime/e.duration,"width"),e.lrc&&e.lrc.update();var t=r.default.secondToTime(e.audio.currentTime);e.template.ptime.innerHTML!==t&&(e.template.ptime.innerHTML=t)}}),this.on("durationchange",function(){1!==e.duration&&(e.template.dtime.innerHTML=r.default.secondToTime(e.duration))}),this.on("progress",function(){var t=e.audio.buffered.length?e.audio.buffered.end(e.audio.buffered.length-1)/e.duration:0;e.bar.set("loaded",t,"width")});var t=void 0;this.on("error",function(){e.list.audios.length>1?(e.notice("An audio error has occurred, player will skip forward in 2 seconds."),t=setTimeout(function(){e.skipForward(),e.paused||e.play()},2e3)):1===e.list.audios.length&&e.notice("An audio error has occurred.")}),this.events.on("listswitch",function(){t&&clearTimeout(t)}),this.on("ended",function(){"none"===e.options.loop?"list"===e.options.order?e.list.index<e.list.audios.length-1?(e.list.switch((e.list.index+1)%e.list.audios.length),e.play()):(e.list.switch((e.list.index+1)%e.list.audios.length),e.pause()):"random"===e.options.order&&(e.randomOrder.indexOf(e.list.index)<e.randomOrder.length-1?(e.list.switch(e.nextIndex()),e.play()):(e.list.switch(e.nextIndex()),e.pause())):"one"===e.options.loop?(e.list.switch(e.list.index),e.play()):"all"===e.options.loop&&(e.skipForward(),e.play())})}},{key:"setAudio",value:function(e){this.hls&&(this.hls.destroy(),this.hls=null);var t=e.type;this.options.customAudioType&&this.options.customAudioType[t]?"[object Function]"===Object.prototype.toString.call(this.options.customAudioType[t])?this.options.customAudioType[t](this.audio,e,this):console.error("Illegal customType: "+t):(t&&"auto"!==t||(t=/m3u8(#|\?|$)/i.exec(e.url)?"hls":"normal"),"hls"===t?Hls.isSupported()?(this.hls=new Hls,this.hls.loadSource(e.url),this.hls.attachMedia(this.audio)):this.audio.canPlayType("application/x-mpegURL")||this.audio.canPlayType("application/vnd.apple.mpegURL")?this.audio.src=e.url:this.notice("Error: HLS is not supported."):"normal"===t&&(this.audio.src=e.url)),this.seek(0),this.paused||this.audio.play()}},{key:"theme",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.list.audios[this.list.index].theme||this.options.theme,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.list.index;(!(arguments.length>2&&void 0!==arguments[2])||arguments[2])&&this.list.audios[t]&&(this.list.audios[t].theme=e),this.template.listCurs[t]&&(this.template.listCurs[t].style.backgroundColor=e),t===this.list.index&&(this.template.pic.style.backgroundColor=e,this.template.played.style.background=e,this.template.thumb.style.background=e,this.template.volume.style.background=e)}},{key:"seek",value:function(e){e=Math.max(e,0),e=Math.min(e,this.duration),this.audio.currentTime=e,this.bar.set("played",e/this.duration,"width"),this.template.ptime.innerHTML=r.default.secondToTime(e)}},{key:"setUIPlaying",value:function(){var e=this;if(this.paused&&(this.paused=!1,this.template.button.classList.remove("aplayer-play"),this.template.button.classList.add("aplayer-pause"),this.template.button.innerHTML="",setTimeout(function(){e.template.button.innerHTML=o.default.pause},100),this.template.skipPlayButton.innerHTML=o.default.pause),this.timer.enable("loading"),this.options.mutex)for(var t=0;t<m.length;t++)this!==m[t]&&m[t].pause()}},{key:"play",value:function(){var e=this;this.setUIPlaying();var t=this.audio.play();t&&t.catch(function(t){console.warn(t),"NotAllowedError"===t.name&&e.setUIPaused()})}},{key:"setUIPaused",value:function(){var e=this;this.paused||(this.paused=!0,this.template.button.classList.remove("aplayer-pause"),this.template.button.classList.add("aplayer-play"),this.template.button.innerHTML="",setTimeout(function(){e.template.button.innerHTML=o.default.play},100),this.template.skipPlayButton.innerHTML=o.default.play),this.container.classList.remove("aplayer-loading"),this.timer.disable("loading")}},{key:"pause",value:function(){this.setUIPaused(),this.audio.pause()}},{key:"switchVolumeIcon",value:function(){this.volume()>=.95?this.template.volumeButton.innerHTML=o.default.volumeUp:this.volume()>0?this.template.volumeButton.innerHTML=o.default.volumeDown:this.template.volumeButton.innerHTML=o.default.volumeOff}},{key:"volume",value:function(e,t){return e=parseFloat(e),isNaN(e)||(e=Math.max(e,0),e=Math.min(e,1),this.bar.set("volume",e,"height"),t||this.storage.set("volume",e),this.audio.volume=e,this.audio.muted&&(this.audio.muted=!1),this.switchVolumeIcon()),this.audio.muted?0:this.audio.volume}},{key:"on",value:function(e,t){this.events.on(e,t)}},{key:"toggle",value:function(){this.template.button.classList.contains("aplayer-play")?this.play():this.template.button.classList.contains("aplayer-pause")&&this.pause()}},{key:"switchAudio",value:function(e){this.list.switch(e)}},{key:"addAudio",value:function(e){this.list.add(e)}},{key:"removeAudio",value:function(e){this.list.remove(e)}},{key:"destroy",value:function(){m.splice(m.indexOf(this),1),this.pause(),this.container.innerHTML="",this.audio.src="",this.timer.destroy(),this.events.trigger("destroy")}},{key:"setMode",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"normal";this.mode=e,"mini"===e?this.container.classList.add("aplayer-narrow"):"normal"===e&&this.container.classList.remove("aplayer-narrow")}},{key:"notice",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2e3,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:.8;this.template.notice.innerHTML=e,this.template.notice.style.opacity=i,this.noticeTime&&clearTimeout(this.noticeTime),this.events.trigger("noticeshow",{text:e}),n&&(this.noticeTime=setTimeout(function(){t.template.notice.style.opacity=0,t.events.trigger("noticehide")},n))}},{key:"prevIndex",value:function(){if(!(this.list.audios.length>1))return 0;if("list"===this.options.order)return this.list.index-1<0?this.list.audios.length-1:this.list.index-1;if("random"===this.options.order){var e=this.randomOrder.indexOf(this.list.index);return 0===e?this.randomOrder[this.randomOrder.length-1]:this.randomOrder[e-1]}}},{key:"nextIndex",value:function(){if(!(this.list.audios.length>1))return 0;if("list"===this.options.order)return(this.list.index+1)%this.list.audios.length;if("random"===this.options.order){var e=this.randomOrder.indexOf(this.list.index);return e===this.randomOrder.length-1?this.randomOrder[0]:this.randomOrder[e+1]}}},{key:"skipBack",value:function(){this.list.switch(this.prevIndex())}},{key:"skipForward",value:function(){this.list.switch(this.nextIndex())}},{key:"duration",get:function(){return isNaN(this.audio.duration)?0:this.audio.duration}}],[{key:"version",get:function(){return"1.10.1"}}]),e}();t.default=g},,function(e,t,n){},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n(40);var i,a=n(38),r=(i=a)&&i.__esModule?i:{default:i};console.log("\n %c APlayer v1.10.1 af84efb %c http://aplayer.js.org \n","color: #fadfa3; background: #030307; padding:5px 0;","background: #fadfa3; padding:5px 0;"),t.default=r.default}]).default});
//# sourceMappingURL=APlayer.min.js.map | 59,325 | APlayer.min | js | en | javascript | code | {"qsc_code_num_words": 10571, "qsc_code_num_chars": 59325.0, "qsc_code_mean_word_length": 3.87560306, "qsc_code_frac_words_unique": 0.08258443, "qsc_code_frac_chars_top_2grams": 0.0415192, "qsc_code_frac_chars_top_3grams": 0.02050331, "qsc_code_frac_chars_top_4grams": 0.01562157, "qsc_code_frac_chars_dupe_5grams": 0.54194635, "qsc_code_frac_chars_dupe_6grams": 0.45817569, "qsc_code_frac_chars_dupe_7grams": 0.40530645, "qsc_code_frac_chars_dupe_8grams": 0.37901828, "qsc_code_frac_chars_dupe_9grams": 0.34482169, "qsc_code_frac_chars_dupe_10grams": 0.32754034, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.06552615, "qsc_code_frac_chars_whitespace": 0.05410872, "qsc_code_size_file_byte": 59325.0, "qsc_code_num_lines": 2.0, "qsc_code_num_chars_line_max": 59286.0, "qsc_code_num_chars_line_mean": 29662.5, "qsc_code_frac_chars_alphabet": 0.66456384, "qsc_code_frac_chars_comments": 0.0006574, "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": 100.0, "qsc_code_frac_chars_string_length": 0.4715705, "qsc_code_frac_chars_long_word_length": 0.32381466, "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_codejavascript_cate_ast": 1.0, "qsc_codejavascript_cate_var_zero": 0.0, "qsc_codejavascript_frac_lines_func_ratio": 50.0, "qsc_codejavascript_num_statement_line": 1.0, "qsc_codejavascript_score_lines_no_logic": 139.0, "qsc_codejavascript_frac_words_legal_var_name": 1.0, "qsc_codejavascript_frac_words_legal_func_name": 1.0, "qsc_codejavascript_frac_words_legal_class_name": null, "qsc_codejavascript_frac_lines_print": 1.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": 1, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "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": 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_codejavascript_cate_ast": 0, "qsc_codejavascript_cate_var_zero": 0, "qsc_codejavascript_frac_lines_func_ratio": 1, "qsc_codejavascript_score_lines_no_logic": 1, "qsc_codejavascript_frac_lines_print": 1} |
000haoji/deep-student | src/components/KnowledgeGraphManagement.tsx | import React, { useState, useEffect } from 'react';
import { invoke } from '@tauri-apps/api/core';
import {
ProblemCard,
SearchRequest,
SearchResult,
CreateCardRequest,
GraphConfig,
Recommendation,
RecommendationRequest,
Tag
} from '../types/cogni-graph';
import GraphVisualization from './GraphVisualization';
import TagManagement from './TagManagement';
import './KnowledgeGraphManagement.css';
const KnowledgeGraphManagement: React.FC = () => {
const [isInitialized, setIsInitialized] = useState(false);
const [config, setConfig] = useState<GraphConfig>({
neo4j: {
uri: 'neo4j://127.0.0.1:7687',
username: 'neo4j',
password: '',
database: undefined
},
vector_dimensions: 1536,
similarity_threshold: 0.7,
max_search_results: 100,
recommendation_limit: 10
});
const [searchQuery, setSearchQuery] = useState('');
const [searchResults, setSearchResults] = useState<SearchResult[]>([]);
const [selectedCard, setSelectedCard] = useState<ProblemCard | null>(null);
const [recommendations, setRecommendations] = useState<Recommendation[]>([]);
const [allTags, setAllTags] = useState<Tag[]>([]);
const [activeTab, setActiveTab] = useState<'cards' | 'visualization' | 'tags'>('cards');
const [newCard, setNewCard] = useState<CreateCardRequest>({
content_problem: '',
content_insight: '',
tags: [],
source_excalidraw_path: undefined
});
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
// Initialize knowledge graph
const initializeGraph = async () => {
try {
setLoading(true);
setError(null);
const result = await invoke<string>('initialize_knowledge_graph', { config });
console.log('Graph initialized:', result);
setIsInitialized(true);
// Load initial data
await loadAllTags();
} catch (err) {
setError(`Failed to initialize: ${err}`);
console.error('Initialization error:', err);
} finally {
setLoading(false);
}
};
// Test Neo4j connection
const testConnection = async () => {
try {
setLoading(true);
setError(null);
const result = await invoke<string>('test_neo4j_connection', { config });
alert(`连接测试成功: ${result}`);
} catch (err) {
const errorMsg = `连接失败: ${err}`;
setError(errorMsg);
// Provide helpful error guidance
if (String(err).includes('authentication failure')) {
setError(errorMsg + '\n\n请检查:\n1. Neo4j是否正在运行\n2. 用户名和密码是否正确\n3. 默认密码可能需要重置');
} else if (String(err).includes('Connection refused')) {
setError(errorMsg + '\n\n请检查:\n1. Neo4j服务是否启动\n2. 端口7687是否开放\n3. 连接地址是否正确');
}
} finally {
setLoading(false);
}
};
// Create new problem card
const createCard = async () => {
if (!newCard.content_problem.trim() || !newCard.content_insight.trim()) {
setError('Please fill in both problem and insight fields');
return;
}
try {
setLoading(true);
setError(null);
const cardId = await invoke<string>('create_problem_card', { request: newCard });
console.log('Card created:', cardId);
// Reset form
setNewCard({
content_problem: '',
content_insight: '',
tags: [],
source_excalidraw_path: undefined
});
// Refresh tags
await loadAllTags();
alert(`Card created successfully with ID: ${cardId}`);
} catch (err) {
setError(`Failed to create card: ${err}`);
} finally {
setLoading(false);
}
};
// Search knowledge graph
const searchGraph = async () => {
if (!searchQuery.trim()) return;
try {
setLoading(true);
setError(null);
const request: SearchRequest = {
query: searchQuery,
limit: 20
};
const results = await invoke<SearchResult[]>('search_knowledge_graph', { request });
setSearchResults(results);
} catch (err) {
setError(`Search failed: ${err}`);
} finally {
setLoading(false);
}
};
// Get card details and recommendations
const selectCard = async (card: ProblemCard) => {
try {
setSelectedCard(card);
setLoading(true);
setError(null);
// Get AI recommendations
const request: RecommendationRequest = {
card_id: card.id,
limit: 5
};
const recs = await invoke<Recommendation[]>('get_ai_recommendations', { request });
setRecommendations(recs);
} catch (err) {
setError(`Failed to get recommendations: ${err}`);
} finally {
setLoading(false);
}
};
// Load all tags
const loadAllTags = async () => {
try {
const tags = await invoke<Tag[]>('get_all_tags');
setAllTags(tags);
} catch (err) {
console.error('Failed to load tags:', err);
}
};
return (
<div className="knowledge-graph-management">
<h2>CogniGraph 知识图谱管理</h2>
{error && (
<div className="error-message">
错误: {error}
</div>
)}
{!isInitialized ? (
<div className="initialization-section">
<h3>Neo4j 配置</h3>
<div className="setup-help">
<h4>快速设置 Neo4j</h4>
<div className="help-option">
<strong>Neo4j Desktop (当前推荐):</strong>
<div>1. URI: <code>neo4j://127.0.0.1:7687</code> 或 <code>bolt://127.0.0.1:7687</code></div>
<div>2. 用户名: <code>neo4j</code></div>
<div>3. 密码: 你设置的数据库密码</div>
</div>
<div className="help-option">
<strong>Docker方式:</strong>
<code>
docker run --name neo4j-cogni --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=neo4j/password neo4j:latest
</code>
</div>
<div className="help-option">
<strong>下载 Neo4j Desktop:</strong>
<a href="https://neo4j.com/download/" target="_blank" rel="noopener noreferrer">
https://neo4j.com/download/
</a>
</div>
</div>
<div className="config-form">
<div className="form-group">
<label>数据库地址:</label>
<input
type="text"
value={config.neo4j.uri}
onChange={(e) => setConfig({
...config,
neo4j: { ...config.neo4j, uri: e.target.value }
})}
placeholder="neo4j://127.0.0.1:7687"
/>
</div>
<div className="form-group">
<label>用户名:</label>
<input
type="text"
value={config.neo4j.username}
onChange={(e) => setConfig({
...config,
neo4j: { ...config.neo4j, username: e.target.value }
})}
/>
</div>
<div className="form-group">
<label>密码:</label>
<input
type="password"
value={config.neo4j.password}
onChange={(e) => setConfig({
...config,
neo4j: { ...config.neo4j, password: e.target.value }
})}
placeholder="输入你在Neo4j Desktop中设置的密码"
/>
</div>
<div className="button-group">
<button onClick={testConnection} disabled={loading}>
测试连接
</button>
<button onClick={initializeGraph} disabled={loading}>
初始化图谱
</button>
</div>
</div>
</div>
) : (
<div className="main-interface">
{/* Tab navigation */}
<div className="tab-navigation">
<button
className={`tab-button ${activeTab === 'cards' ? 'active' : ''}`}
onClick={() => setActiveTab('cards')}
>
📋 问题卡片管理
</button>
<button
className={`tab-button ${activeTab === 'visualization' ? 'active' : ''}`}
onClick={() => setActiveTab('visualization')}
>
🔍 图谱可视化
</button>
<button
className={`tab-button ${activeTab === 'tags' ? 'active' : ''}`}
onClick={() => setActiveTab('tags')}
>
🏷️ 标签管理
</button>
</div>
{/* Tab content */}
{activeTab === 'cards' && (
<div className="tab-content">
{/* Create new card section */}
<div className="create-card-section">
<h3>创建新题目卡片</h3>
<div className="form-group">
<label>题目描述:</label>
<textarea
value={newCard.content_problem}
onChange={(e) => setNewCard({
...newCard,
content_problem: e.target.value
})}
placeholder="请输入题目内容..."
rows={3}
/>
</div>
<div className="form-group">
<label>解题灵感/方法:</label>
<textarea
value={newCard.content_insight}
onChange={(e) => setNewCard({
...newCard,
content_insight: e.target.value
})}
placeholder="请输入解题思路和关键洞察..."
rows={3}
/>
</div>
<div className="form-group">
<label>标签 (用逗号分隔):</label>
<input
type="text"
value={newCard.tags.join(', ')}
onChange={(e) => setNewCard({
...newCard,
tags: e.target.value.split(',').map(tag => tag.trim()).filter(tag => tag)
})}
placeholder="例如: 微积分, 求导, 高等数学"
/>
</div>
<button onClick={createCard} disabled={loading}>
创建卡片
</button>
</div>
{/* Search section */}
<div className="search-section">
<h3>搜索知识图谱</h3>
<div className="search-form">
<input
type="text"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
placeholder="输入搜索关键词..."
onKeyPress={(e) => e.key === 'Enter' && searchGraph()}
/>
<button onClick={searchGraph} disabled={loading || !searchQuery.trim()}>
搜索
</button>
</div>
{searchResults.length > 0 && (
<div className="search-results">
<h4>搜索结果 ({searchResults.length})</h4>
{searchResults.map((result, index) => (
<div
key={result.card.id}
className="search-result-item"
onClick={() => selectCard(result.card)}
>
<div className="result-score">
相似度: {(result.score * 100).toFixed(1)}%
</div>
<div className="result-content">
<strong>题目:</strong> {result.card.content_problem.substring(0, 100)}...
</div>
<div className="result-insight">
<strong>解法:</strong> {result.card.content_insight.substring(0, 100)}...
</div>
<div className="result-meta">
匹配方式: {result.matched_by.join(', ')} |
访问次数: {result.card.access_count} |
状态: {result.card.status}
</div>
</div>
))}
</div>
)}
</div>
{/* Selected card and recommendations */}
{selectedCard && (
<div className="selected-card-section">
<h3>卡片详情</h3>
<div className="card-details">
<div className="card-problem">
<strong>题目:</strong>
<p>{selectedCard.content_problem}</p>
</div>
<div className="card-insight">
<strong>解题洞察:</strong>
<p>{selectedCard.content_insight}</p>
</div>
<div className="card-meta">
<span>状态: {selectedCard.status}</span>
<span>访问次数: {selectedCard.access_count}</span>
<span>创建时间: {new Date(selectedCard.created_at).toLocaleString()}</span>
</div>
</div>
{recommendations.length > 0 && (
<div className="recommendations">
<h4>AI 推荐的相关题目</h4>
{recommendations.map((rec, index) => (
<div key={rec.card.id} className="recommendation-item">
<div className="rec-header">
<span className="rec-type">{rec.relationship_type}</span>
<span className="rec-confidence">
置信度: {(rec.confidence * 100).toFixed(1)}%
</span>
</div>
<div className="rec-content">
<strong>题目:</strong> {rec.card.content_problem.substring(0, 150)}...
</div>
<div className="rec-reasoning">
<strong>推荐理由:</strong> {rec.reasoning}
</div>
</div>
))}
</div>
)}
</div>
)}
{/* Tags overview */}
{allTags.length > 0 && (
<div className="tags-section">
<h3>标签概览 ({allTags.length})</h3>
<div className="tags-list">
{allTags.map((tag, index) => (
<span key={index} className={`tag tag-${tag.tag_type}`}>
{tag.name}
</span>
))}
</div>
</div>
)}
</div>
)}
{/* Graph Visualization Tab */}
{activeTab === 'visualization' && (
<div className="tab-content">
{!isInitialized ? (
<div className="visualization-setup-hint">
<h3>📊 图谱可视化</h3>
<div className="setup-message">
<p>🔧 要使用图谱可视化功能,请先完成以下步骤:</p>
<ol>
<li>返回 <strong>"问题卡片管理"</strong> 标签页</li>
<li>完成 Neo4j 数据库配置</li>
<li>点击 <strong>"测试连接"</strong> 确保连接成功</li>
<li>点击 <strong>"初始化图谱"</strong> 完成设置</li>
</ol>
<p>💡 <strong>Neo4j 快速设置:</strong></p>
<ul>
<li>下载 Neo4j Desktop: <a href="https://neo4j.com/download/" target="_blank" rel="noopener noreferrer">https://neo4j.com/download/</a></li>
<li>创建数据库,设置密码</li>
<li>使用 URI: <code>neo4j://127.0.0.1:7687</code></li>
</ul>
</div>
<div className="nav-hint">
<button
onClick={() => setActiveTab('cards')}
className="nav-button"
>
⬅️ 前往配置 Neo4j
</button>
</div>
</div>
) : (
<GraphVisualization
config={config}
isInitialized={isInitialized}
/>
)}
</div>
)}
{/* Tag Management Tab */}
{activeTab === 'tags' && (
<div className="tab-content">
<TagManagement
isInitialized={isInitialized}
/>
</div>
)}
</div>
)}
{loading && (
<div className="loading-overlay">
<div className="loading-spinner">处理中...</div>
</div>
)}
</div>
);
};
export default KnowledgeGraphManagement; | 16,604 | KnowledgeGraphManagement | tsx | en | tsx | code | {"qsc_code_num_words": 1339, "qsc_code_num_chars": 16604.0, "qsc_code_mean_word_length": 5.71321882, "qsc_code_frac_words_unique": 0.24570575, "qsc_code_frac_chars_top_2grams": 0.06901961, "qsc_code_frac_chars_top_3grams": 0.03333333, "qsc_code_frac_chars_top_4grams": 0.01647059, "qsc_code_frac_chars_dupe_5grams": 0.20575163, "qsc_code_frac_chars_dupe_6grams": 0.14431373, "qsc_code_frac_chars_dupe_7grams": 0.11267974, "qsc_code_frac_chars_dupe_8grams": 0.06875817, "qsc_code_frac_chars_dupe_9grams": 0.05986928, "qsc_code_frac_chars_dupe_10grams": 0.03712418, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.01741467, "qsc_code_frac_chars_whitespace": 0.39478439, "qsc_code_size_file_byte": 16604.0, "qsc_code_num_lines": 502.0, "qsc_code_num_chars_line_max": 161.0, "qsc_code_num_chars_line_mean": 33.07569721, "qsc_code_frac_chars_alphabet": 0.7429595, "qsc_code_frac_chars_comments": 0.03655746, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.43721973, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.0, "qsc_code_frac_chars_string_length": 0.09538692, "qsc_code_frac_chars_long_word_length": 0.01612702, "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} |
0000cd/wolf-set | themes/bluf/static/js/js-confetti.js | var JSConfetti=function(){"use strict";function t(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function e(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function i(t,i,n){return i&&e(t.prototype,i),n&&e(t,n),t}function n(t){return+t.replace(/px/,"")}function s(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=Math.random()*(e-t)+t;return Math.floor(n*Math.pow(10,i))/Math.pow(10,i)}function o(t){return t[s(0,t.length)]}var a=["#fcf403","#62fc03","#f4fc03","#03e7fc","#03fca5","#a503fc","#fc03ad","#fc03c2"];function r(t){return Math.log(t)/Math.log(1920)}var h=function(){function e(i){t(this,e);var n=i.initialPosition,a=i.direction,h=i.confettiRadius,c=i.confettiColors,u=i.emojis,l=i.emojiSize,d=i.canvasWidth,f=s(.9,1.7,3)*r(d);this.confettiSpeed={x:f,y:f},this.finalConfettiSpeedX=s(.2,.6,3),this.rotationSpeed=u.length?.01:s(.03,.07,3)*r(d),this.dragForceCoefficient=s(5e-4,9e-4,6),this.radius={x:h,y:h},this.initialRadius=h,this.rotationAngle="left"===a?s(0,.2,3):s(-.2,0,3),this.emojiSize=l,this.emojiRotationAngle=s(0,2*Math.PI),this.radiusYUpdateDirection="down";var m="left"===a?s(82,15)*Math.PI/180:s(-15,-82)*Math.PI/180;this.absCos=Math.abs(Math.cos(m)),this.absSin=Math.abs(Math.sin(m));var v=s(-150,0),p={x:n.x+("left"===a?-v:v)*this.absCos,y:n.y-v*this.absSin};this.currentPosition=Object.assign({},p),this.initialPosition=Object.assign({},p),this.color=u.length?null:o(c),this.emoji=u.length?o(u):null,this.createdAt=(new Date).getTime(),this.direction=a}return i(e,[{key:"draw",value:function(t){var e=this.currentPosition,i=this.radius,n=this.color,s=this.emoji,o=this.rotationAngle,a=this.emojiRotationAngle,r=this.emojiSize,h=window.devicePixelRatio;n?(t.fillStyle=n,t.beginPath(),t.ellipse(e.x*h,e.y*h,i.x*h,i.y*h,o,0,2*Math.PI),t.fill()):s&&(t.font="".concat(r,"px serif"),t.save(),t.translate(h*e.x,h*e.y),t.rotate(a),t.textAlign="center",t.fillText(s,0,0),t.restore())}},{key:"updatePosition",value:function(t,e){var i=this.confettiSpeed,n=this.dragForceCoefficient,s=this.finalConfettiSpeedX,o=this.radiusYUpdateDirection,a=this.rotationSpeed,r=this.createdAt,h=this.direction,c=e-r;i.x>s&&(this.confettiSpeed.x-=n*t),this.currentPosition.x+=i.x*("left"===h?-this.absCos:this.absCos)*t,this.currentPosition.y=this.initialPosition.y-i.y*this.absSin*c+.00125*Math.pow(c,2)/2,this.rotationSpeed-=this.emoji?1e-4:1e-5*t,this.rotationSpeed<0&&(this.rotationSpeed=0),this.emoji?this.emojiRotationAngle+=this.rotationSpeed*t%(2*Math.PI):"down"===o?(this.radius.y-=t*a,this.radius.y<=0&&(this.radius.y=0,this.radiusYUpdateDirection="up")):(this.radius.y+=t*a,this.radius.y>=this.initialRadius&&(this.radius.y=this.initialRadius,this.radiusYUpdateDirection="down"))}},{key:"getIsVisibleOnCanvas",value:function(t){return this.currentPosition.y<t+100}}]),e}();function c(){var t=document.createElement("canvas");return t.style.position="fixed",t.style.width="100%",t.style.height="100%",t.style.top="0",t.style.left="0",t.style.zIndex="1000",t.style.pointerEvents="none",document.body.appendChild(t),t}function u(t){var e=t.confettiRadius,i=void 0===e?6:e,n=t.confettiNumber,s=void 0===n?t.confettiesNumber||(t.emojis?40:250):n,o=t.confettiColors,r=void 0===o?a:o,h=t.emojis,c=void 0===h?t.emojies||[]:h,u=t.emojiSize,l=void 0===u?80:u;return t.emojies&&console.error("emojies argument is deprecated, please use emojis instead"),t.confettiesNumber&&console.error("confettiesNumber argument is deprecated, please use confettiNumber instead"),{confettiRadius:i,confettiNumber:s,confettiColors:r,emojis:c,emojiSize:l}}var l=function(){function e(i){var n=this;t(this,e),this.canvasContext=i,this.shapes=[],this.promise=new Promise((function(t){return n.resolvePromise=t}))}return i(e,[{key:"getBatchCompletePromise",value:function(){return this.promise}},{key:"addShapes",value:function(){var t;(t=this.shapes).push.apply(t,arguments)}},{key:"complete",value:function(){var t;return!this.shapes.length&&(null===(t=this.resolvePromise)||void 0===t||t.call(this),!0)}},{key:"processShapes",value:function(t,e,i){var n=this,s=t.timeDelta,o=t.currentTime;this.shapes=this.shapes.filter((function(t){return t.updatePosition(s,o),t.draw(n.canvasContext),!i||t.getIsVisibleOnCanvas(e)}))}}]),e}();return function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.activeConfettiBatches=[],this.canvas=i.canvas||c(),this.canvasContext=this.canvas.getContext("2d"),this.requestAnimationFrameRequested=!1,this.lastUpdated=(new Date).getTime(),this.iterationIndex=0,this.loop=this.loop.bind(this),requestAnimationFrame(this.loop)}return i(e,[{key:"loop",value:function(){var t,e,i,s,o;this.requestAnimationFrameRequested=!1,t=this.canvas,e=window.devicePixelRatio,i=getComputedStyle(t),s=n(i.getPropertyValue("width")),o=n(i.getPropertyValue("height")),t.setAttribute("width",(s*e).toString()),t.setAttribute("height",(o*e).toString());var a=(new Date).getTime(),r=a-this.lastUpdated,h=this.canvas.offsetHeight,c=this.iterationIndex%10==0;this.activeConfettiBatches=this.activeConfettiBatches.filter((function(t){return t.processShapes({timeDelta:r,currentTime:a},h,c),!c||!t.complete()})),this.iterationIndex++,this.queueAnimationFrameIfNeeded(a)}},{key:"queueAnimationFrameIfNeeded",value:function(t){this.requestAnimationFrameRequested||this.activeConfettiBatches.length<1||(this.requestAnimationFrameRequested=!0,this.lastUpdated=t||(new Date).getTime(),requestAnimationFrame(this.loop))}},{key:"addConfetti",value:function(){for(var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=u(t),i=e.confettiRadius,n=e.confettiNumber,s=e.confettiColors,o=e.emojis,a=e.emojiSize,r=this.canvas.getBoundingClientRect(),c=r.width,d=r.height,f=5*d/7,m={x:0,y:f},v={x:c,y:f},p=new l(this.canvasContext),y=0;y<n/2;y++){var g=new h({initialPosition:m,direction:"right",confettiRadius:i,confettiColors:s,confettiNumber:n,emojis:o,emojiSize:a,canvasWidth:c}),C=new h({initialPosition:v,direction:"left",confettiRadius:i,confettiColors:s,confettiNumber:n,emojis:o,emojiSize:a,canvasWidth:c});p.addShapes(g,C)}return this.activeConfettiBatches.push(p),this.queueAnimationFrameIfNeeded(),p.getBatchCompletePromise()}},{key:"clearCanvas",value:function(){this.activeConfettiBatches=[]}},{key:"destroyCanvas",value:function(){this.canvas.remove()}}]),e}()}();
| 6,469 | js-confetti | js | en | javascript | code | {"qsc_code_num_words": 1100, "qsc_code_num_chars": 6469.0, "qsc_code_mean_word_length": 4.39363636, "qsc_code_frac_words_unique": 0.18272727, "qsc_code_frac_chars_top_2grams": 0.03227809, "qsc_code_frac_chars_top_3grams": 0.01365611, "qsc_code_frac_chars_top_4grams": 0.00682806, "qsc_code_frac_chars_dupe_5grams": 0.10366232, "qsc_code_frac_chars_dupe_6grams": 0.06765984, "qsc_code_frac_chars_dupe_7grams": 0.05752121, "qsc_code_frac_chars_dupe_8grams": 0.05752121, "qsc_code_frac_chars_dupe_9grams": 0.04758949, "qsc_code_frac_chars_dupe_10grams": 0.0306228, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.024949, "qsc_code_frac_chars_whitespace": 0.01484001, "qsc_code_size_file_byte": 6469.0, "qsc_code_num_lines": 1.0, "qsc_code_num_chars_line_max": 6469.0, "qsc_code_num_chars_line_mean": 6469.0, "qsc_code_frac_chars_alphabet": 0.73340656, "qsc_code_frac_chars_comments": 0.0, "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.07698253, "qsc_code_frac_chars_long_word_length": 0.00772917, "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_codejavascript_cate_ast": 1.0, "qsc_codejavascript_cate_var_zero": 0.0, "qsc_codejavascript_frac_lines_func_ratio": 12.0, "qsc_codejavascript_num_statement_line": 1.0, "qsc_codejavascript_score_lines_no_logic": 22.0, "qsc_codejavascript_frac_words_legal_var_name": 0.97468354, "qsc_codejavascript_frac_words_legal_func_name": 1.0, "qsc_codejavascript_frac_words_legal_class_name": null, "qsc_codejavascript_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": 1, "qsc_code_num_chars_line_max": 1, "qsc_code_num_chars_line_mean": 1, "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_codejavascript_cate_ast": 0, "qsc_codejavascript_cate_var_zero": 0, "qsc_codejavascript_frac_lines_func_ratio": 1, "qsc_codejavascript_score_lines_no_logic": 1, "qsc_codejavascript_frac_lines_print": 0} |
000haoji/deep-student | src/components/CreateReviewAnalysisView.tsx | import React, { useState, useEffect } from 'react';
import { ReviewSessionTask, MistakeConsolidationData, ConsolidatedMistakeData } from '../types/index';
import type { MistakeItem } from '../utils/tauriApi';
import { useNotification } from '../hooks/useNotification';
import { TauriAPI } from '../utils/tauriApi';
import { useSubject } from '../contexts/SubjectContext';
interface CreateReviewAnalysisViewProps {
onCancel: () => void;
onCreateSuccess: (sessionId: string) => void;
}
const CreateReviewAnalysisView: React.FC<CreateReviewAnalysisViewProps> = ({
onCancel,
onCreateSuccess,
}) => {
const [step, setStep] = useState<'setup' | 'select_mistakes' | 'configure_prompt' | 'creating'>('setup');
const [formData, setFormData] = useState({
name: '',
subject: '',
overallPrompt: '',
});
const [availableMistakes, setAvailableMistakes] = useState<MistakeItem[]>([]);
const [selectedMistakeIds, setSelectedMistakeIds] = useState<string[]>([]);
const [loading, setLoading] = useState(false);
const [searchTerm, setSearchTerm] = useState('');
const [subjectFilter, setSubjectFilter] = useState('');
const { showNotification } = useNotification();
const { currentSubject, getEnabledSubjects } = useSubject();
// 🎯 同步全局科目状态到本地表单(优先级更高,避免循环)
useEffect(() => {
if (currentSubject && currentSubject !== formData.subject) {
console.log('🔄 [回顾分析] 同步全局科目到表单:', currentSubject);
setFormData(prev => ({ ...prev, subject: currentSubject }));
}
}, [currentSubject]);
// 移除双向同步,避免循环更新
// 用户只能通过标题栏科目选择器更改科目,表单中的科目选择框变为只读显示
useEffect(() => {
if (step === 'select_mistakes') {
loadAvailableMistakes();
}
}, [step, formData.subject]);
const loadAvailableMistakes = async () => {
try {
setLoading(true);
const mistakes = await TauriAPI.getMistakes();
const filteredMistakes = formData.subject
? mistakes.filter(mistake => mistake.subject === formData.subject)
: mistakes;
setAvailableMistakes(filteredMistakes);
} catch (error) {
console.error('加载错题列表失败:', error);
showNotification('error', '加载错题列表失败');
} finally {
setLoading(false);
}
};
const getSubjects = () => {
const subjects = new Set(availableMistakes.map(mistake => mistake.subject));
return Array.from(subjects);
};
const filteredMistakes = availableMistakes.filter(mistake => {
const matchesSearch = !searchTerm ||
mistake.user_question.toLowerCase().includes(searchTerm.toLowerCase()) ||
mistake.ocr_text.toLowerCase().includes(searchTerm.toLowerCase()) ||
mistake.tags.some(tag => tag.toLowerCase().includes(searchTerm.toLowerCase()));
const matchesSubject = !subjectFilter || mistake.subject === subjectFilter;
return matchesSearch && matchesSubject;
});
const handleNextStep = () => {
if (step === 'setup') {
if (!formData.name.trim() || !formData.subject.trim()) {
showNotification('warning', '请填写回顾分析名称和科目');
return;
}
setStep('select_mistakes');
} else if (step === 'select_mistakes') {
if (selectedMistakeIds.length === 0) {
showNotification('warning', '请至少选择一个错题');
return;
}
setStep('configure_prompt');
} else if (step === 'configure_prompt') {
if (!formData.overallPrompt.trim()) {
showNotification('warning', '请输入分析指引');
return;
}
handleCreateReviewAnalysis();
}
};
const handlePrevStep = () => {
if (step === 'select_mistakes') {
setStep('setup');
} else if (step === 'configure_prompt') {
setStep('select_mistakes');
}
};
const consolidateMistakeData = (selectedMistakes: MistakeItem[]): ConsolidatedMistakeData => {
if (!selectedMistakes || selectedMistakes.length === 0) {
throw new Error('没有选中的错题数据');
}
const consolidationData: MistakeConsolidationData[] = selectedMistakes.map(mistake => {
if (!mistake) {
throw new Error('错题数据为空');
}
return {
mistakeId: mistake.id || '',
ocr_text: mistake.ocr_text || '',
user_question: mistake.user_question || '',
chat_history: (mistake.chat_history || []).map(msg => ({
role: (msg?.role as 'user' | 'assistant' | 'system') || 'user',
content: msg?.content || '',
timestamp: msg?.timestamp || new Date().toISOString(),
thinking_content: msg?.thinking_content,
})),
};
});
let consolidatedText = '';
consolidationData.forEach((data, index) => {
const mistake = selectedMistakes[index];
consolidatedText += `--- 错题 ${index + 1} (ID: ${data.mistakeId}) ---\\n`;
consolidatedText += `题目内容:\\n${data.ocr_text}\\n\\n`;
consolidatedText += `我的原始问题:\\n${data.user_question}\\n\\n`;
// 🎯 关键改进:优先使用AI生成的结构化总结
if (mistake.mistake_summary && mistake.user_error_analysis) {
consolidatedText += `题目解析总结:\\n${mistake.mistake_summary}\\n\\n`;
consolidatedText += `错误分析总结:\\n${mistake.user_error_analysis}\\n\\n`;
} else if (data.chat_history && data.chat_history.length > 0) {
// 降级方案:如果没有总结,使用聊天记录(但会提示需要生成总结)
consolidatedText += `⚠️ 注意:此错题缺少AI总结,建议先生成总结以提高回顾分析质量\\n`;
consolidatedText += `历史交流(原始记录):\\n`;
// 只包含关键的几条对话,避免过长
const keyMessages = data.chat_history.slice(-3); // 只取最后3条对话
keyMessages.forEach(message => {
const roleDisplay = message.role === 'user' ? '用户' : '助手';
const contentStr = typeof message.content === 'string' ? message.content : JSON.stringify(message.content);
const truncatedContent = contentStr.length > 200
? contentStr.substring(0, 200) + '...'
: contentStr;
consolidatedText += `${roleDisplay}: ${truncatedContent}\\n`;
});
consolidatedText += '\\n';
} else {
consolidatedText += `⚠️ 注意:此错题缺少分析记录和总结\\n\\n`;
}
consolidatedText += '\\n';
});
return {
selectedMistakes: consolidationData,
consolidatedText,
userOverallPrompt: formData.overallPrompt || '',
};
};
const handleCreateReviewAnalysis = async () => {
try {
setStep('creating');
setLoading(true);
// 验证数据完整性
if (!formData.name || !formData.subject || !formData.overallPrompt) {
throw new Error('缺少必要的表单数据');
}
if (selectedMistakeIds.length === 0) {
throw new Error('没有选择任何错题');
}
// 关键修复:根据ID获取每个错题的完整详情,以确保包含总结字段
const selectedMistakesPromises = selectedMistakeIds.map(id =>
TauriAPI.getMistakeDetails(id)
);
const selectedMistakesWithDetails = await Promise.all(selectedMistakesPromises);
const selectedMistakes = selectedMistakesWithDetails.filter(
(mistake): mistake is MistakeItem => mistake !== null
);
if (selectedMistakes.length !== selectedMistakeIds.length) {
showNotification('warning', '部分选中的错题无法加载详情,可能已被删除。');
}
if (selectedMistakes.length === 0) {
throw new Error('选中的错题数据不存在或无法加载');
}
const consolidatedData = consolidateMistakeData(selectedMistakes);
// 调用后端API创建回顾分析会话(复用错题分析的数据库存储模式)
const response = await TauriAPI.startConsolidatedReviewAnalysis({
subject: formData.subject,
consolidatedInput: consolidatedData.consolidatedText,
overallPrompt: formData.overallPrompt,
enableChainOfThought: true,
mistakeIds: selectedMistakeIds, // 🔧 修复:传递选中的错题ID列表
});
if (!response || !response.review_session_id) {
throw new Error('API响应无效,未获得会话ID');
}
const reviewSessionId = response.review_session_id;
console.log('✅ 回顾分析会话创建成功 (数据库模式):', {
reviewSessionId: reviewSessionId,
name: formData.name,
subject: formData.subject,
mistakeCount: selectedMistakeIds.length
});
showNotification('success', '回顾分析创建成功');
// 短暂显示成功状态
setLoading(false);
// 延迟一下再跳转,让用户看到成功状态
setTimeout(() => {
console.log('🔄 正在跳转到会话页面,reviewSessionId:', reviewSessionId);
// 使用后端返回的review_session_id作为前端的sessionId,完全复用错题分析模式
onCreateSuccess(reviewSessionId);
}, 1500);
} catch (error) {
console.error('创建回顾分析失败:', error);
const errorMessage = error instanceof Error ? error.message : '创建回顾分析失败';
showNotification('error', errorMessage);
setStep('configure_prompt');
setLoading(false);
}
};
const renderSetupStep = () => (
<div>
<div style={{
background: 'linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%)',
padding: '24px',
borderRadius: '16px',
marginBottom: '32px',
border: '1px solid rgba(102, 126, 234, 0.1)'
}}>
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '12px' }}>
<svg style={{ width: '24px', height: '24px', color: '#667eea', marginRight: '12px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<h3 style={{ fontSize: '20px', fontWeight: '700', color: '#1f2937', margin: 0 }}>基本设置</h3>
</div>
<p style={{ fontSize: '14px', color: '#6b7280', margin: 0, lineHeight: '1.5' }}>
设置回顾分析的基本信息,包括名称和科目等
</p>
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: '24px' }}>
<div>
<label style={{
display: 'block',
fontSize: '14px',
fontWeight: '600',
color: '#374151',
marginBottom: '8px'
}}>
回顾分析名称 *
</label>
<input
type="text"
value={formData.name}
onChange={(e) => setFormData(prev => ({ ...prev, name: e.target.value }))}
placeholder="例如:期中数学复习 - 函数部分"
style={{
width: '100%',
padding: '16px 20px',
border: '2px solid #e2e8f0',
borderRadius: '12px',
fontSize: '16px',
background: 'white',
transition: 'all 0.2s ease',
outline: 'none'
}}
onFocus={(e) => {
e.target.style.borderColor = '#667eea';
e.target.style.boxShadow = '0 0 0 4px rgba(102, 126, 234, 0.1)';
}}
onBlur={(e) => {
e.target.style.borderColor = '#e2e8f0';
e.target.style.boxShadow = 'none';
}}
/>
<p style={{ fontSize: '12px', color: '#9ca3af', marginTop: '4px' }}>
请输入一个有意义的名称,方便后续管理
</p>
</div>
<div>
<label style={{
display: 'block',
fontSize: '14px',
fontWeight: '600',
color: '#374151',
marginBottom: '8px'
}}>
科目 *
</label>
<div style={{ position: 'relative' }}>
<div
style={{
width: '100%',
padding: '16px 20px',
border: '2px solid #e2e8f0',
borderRadius: '12px',
fontSize: '16px',
background: '#f8fafc',
color: '#374151',
cursor: 'not-allowed',
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between'
}}
>
<span>{formData.subject || '请在标题栏选择科目'}</span>
<svg style={{
width: '20px',
height: '20px',
color: '#9ca3af'
}} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
</div>
</div>
<p style={{ fontSize: '12px', color: '#9ca3af', marginTop: '4px' }}>
科目由标题栏下拉框控制,请在标题栏中选择所需科目
</p>
</div>
</div>
</div>
);
const renderSelectMistakesStep = () => (
<div>
<div style={{
background: 'linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%)',
padding: '24px',
borderRadius: '16px',
marginBottom: '32px',
border: '1px solid rgba(102, 126, 234, 0.1)'
}}>
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '12px' }}>
<svg style={{ width: '24px', height: '24px', color: '#667eea', marginRight: '12px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
<h3 style={{ fontSize: '20px', fontWeight: '700', color: '#1f2937', margin: 0 }}>
选择错题
<span style={{ color: '#667eea', fontWeight: '600', marginLeft: '8px' }}>({selectedMistakeIds.length} / {filteredMistakes.length})</span>
</h3>
</div>
<p style={{ fontSize: '14px', color: '#6b7280', margin: 0, lineHeight: '1.5' }}>
从下方列表中选择需要进行统一分析的错题
</p>
</div>
{/* 筛选器 */}
<div style={{
display: 'grid',
gridTemplateColumns: '2fr 1fr',
gap: '16px',
marginBottom: '24px'
}}>
<div style={{ position: 'relative' }}>
<svg style={{
position: 'absolute',
left: '16px',
top: '50%',
transform: 'translateY(-50%)',
width: '18px',
height: '18px',
color: '#9ca3af'
}} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
<input
type="text"
placeholder="搜索错题内容、问题或标签..."
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
style={{
width: '100%',
padding: '12px 16px 12px 48px',
border: '2px solid #e2e8f0',
borderRadius: '12px',
fontSize: '14px',
transition: 'all 0.2s ease',
outline: 'none'
}}
onFocus={(e) => {
e.target.style.borderColor = '#667eea';
e.target.style.boxShadow = '0 0 0 4px rgba(102, 126, 234, 0.1)';
}}
onBlur={(e) => {
e.target.style.borderColor = '#e2e8f0';
e.target.style.boxShadow = 'none';
}}
/>
</div>
<div style={{ position: 'relative' }}>
<select
value={subjectFilter}
onChange={(e) => setSubjectFilter(e.target.value)}
style={{
width: '100%',
padding: '12px 16px',
border: '2px solid #e2e8f0',
borderRadius: '12px',
fontSize: '14px',
background: 'white',
cursor: 'pointer',
transition: 'all 0.2s ease',
outline: 'none',
appearance: 'none'
}}
onFocus={(e) => {
e.target.style.borderColor = '#667eea';
e.target.style.boxShadow = '0 0 0 4px rgba(102, 126, 234, 0.1)';
}}
onBlur={(e) => {
e.target.style.borderColor = '#e2e8f0';
e.target.style.boxShadow = 'none';
}}
>
<option value="">全部科目</option>
{getSubjects().map(subject => (
<option key={subject} value={subject}>{subject}</option>
))}
</select>
<svg style={{
position: 'absolute',
right: '16px',
top: '50%',
transform: 'translateY(-50%)',
width: '16px',
height: '16px',
color: '#9ca3af',
pointerEvents: 'none'
}} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</div>
</div>
{loading ? (
<div style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
height: '200px',
gap: '12px'
}}>
<div style={{
width: '32px',
height: '32px',
border: '3px solid #f1f5f9',
borderTop: '3px solid #667eea',
borderRadius: '50%',
animation: 'spin 1s linear infinite'
}}></div>
<span style={{ color: '#6b7280', fontSize: '16px', fontWeight: '500' }}>加载中...</span>
</div>
) : filteredMistakes.length === 0 ? (
<div style={{
textAlign: 'center',
padding: '80px 24px',
background: '#f8fafc',
borderRadius: '16px',
border: '2px dashed #d1d5db'
}}>
<div style={{
width: '64px',
height: '64px',
background: '#e5e7eb',
borderRadius: '50%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
margin: '0 auto 16px'
}}>
<svg style={{ width: '32px', height: '32px', color: '#9ca3af' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
</div>
<h4 style={{ fontSize: '18px', fontWeight: '600', color: '#374151', marginBottom: '8px' }}>
{availableMistakes.length === 0 ? '暂无错题数据' : '没有找到符合条件的错题'}
</h4>
<p style={{ color: '#6b7280', fontSize: '14px' }}>
{availableMistakes.length === 0 ? '请先在错题库中添加一些错题' : '试试调整搜索条件或科目筛选'}
</p>
</div>
) : (
<div style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fill, minmax(350px, 1fr))',
gap: '20px',
maxHeight: '500px',
overflow: 'auto',
padding: '4px'
}}>
{filteredMistakes.map((mistake) => {
const isSelected = selectedMistakeIds.includes(mistake.id);
return (
<div
key={mistake.id}
onClick={() => {
if (isSelected) {
setSelectedMistakeIds(prev => prev.filter(id => id !== mistake.id));
} else {
setSelectedMistakeIds(prev => [...prev, mistake.id]);
}
}}
style={{
background: isSelected ? 'linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%)' : 'white',
border: isSelected ? '2px solid #667eea' : '2px solid #f1f5f9',
borderRadius: '16px',
padding: '20px',
cursor: 'pointer',
transition: 'all 0.3s ease',
position: 'relative',
overflow: 'hidden'
}}
onMouseOver={(e) => {
if (!isSelected) {
e.currentTarget.style.borderColor = '#d1d5db';
e.currentTarget.style.transform = 'translateY(-2px)';
e.currentTarget.style.boxShadow = '0 8px 25px rgba(0, 0, 0, 0.1)';
}
}}
onMouseOut={(e) => {
if (!isSelected) {
e.currentTarget.style.borderColor = '#f1f5f9';
e.currentTarget.style.transform = 'translateY(0)';
e.currentTarget.style.boxShadow = 'none';
}
}}
>
{/* 选中指示器 */}
{isSelected && (
<div style={{
position: 'absolute',
top: '0',
left: '0',
right: '0',
height: '4px',
background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)'
}}></div>
)}
{/* 头部 */}
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '16px', gap: '12px' }}>
<div style={{
width: '20px',
height: '20px',
borderRadius: '4px',
border: isSelected ? '2px solid #667eea' : '2px solid #d1d5db',
background: isSelected ? '#667eea' : 'white',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
transition: 'all 0.2s ease'
}}>
{isSelected && (
<svg style={{ width: '12px', height: '12px', color: 'white' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={3} d="M5 13l4 4L19 7" />
</svg>
)}
</div>
<span style={{
fontSize: '12px',
color: '#667eea',
fontWeight: '600',
background: 'rgba(102, 126, 234, 0.1)',
padding: '4px 8px',
borderRadius: '8px'
}}>
{mistake.subject}
</span>
<span style={{ fontSize: '12px', color: '#9ca3af', marginLeft: 'auto' }}>
{new Date(mistake.created_at).toLocaleDateString()}
</span>
</div>
{/* 问题内容 */}
<p style={{
fontWeight: '600',
color: '#1f2937',
marginBottom: '12px',
lineHeight: '1.5',
fontSize: '14px',
overflow: 'hidden',
display: '-webkit-box',
WebkitLineClamp: 2,
WebkitBoxOrient: 'vertical'
}}>
{mistake.user_question}
</p>
{/* OCR内容 */}
<p style={{
color: '#6b7280',
fontSize: '13px',
lineHeight: '1.4',
marginBottom: '16px',
overflow: 'hidden',
display: '-webkit-box',
WebkitLineClamp: 3,
WebkitBoxOrient: 'vertical'
}}>
{mistake.ocr_text}
</p>
{/* 标签 */}
<div style={{ display: 'flex', flexWrap: 'wrap', gap: '6px' }}>
{mistake.tags.slice(0, 3).map((tag, index) => (
<span key={index} style={{
background: '#f3f4f6',
color: '#374151',
padding: '4px 8px',
borderRadius: '8px',
fontSize: '11px',
fontWeight: '500'
}}>
{tag}
</span>
))}
{mistake.tags.length > 3 && (
<span style={{ color: '#9ca3af', fontSize: '11px', padding: '4px 0' }}>+{mistake.tags.length - 3}</span>
)}
</div>
</div>
);
})}
</div>
)}
</div>
);
const renderConfigurePromptStep = () => (
<div>
<div style={{
background: 'linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%)',
padding: '24px',
borderRadius: '16px',
marginBottom: '32px',
border: '1px solid rgba(102, 126, 234, 0.1)'
}}>
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '12px' }}>
<svg style={{ width: '24px', height: '24px', color: '#667eea', marginRight: '12px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
</svg>
<h3 style={{ fontSize: '20px', fontWeight: '700', color: '#1f2937', margin: 0 }}>配置分析指引</h3>
</div>
<p style={{ fontSize: '14px', color: '#6b7280', margin: 0, lineHeight: '1.5' }}>
设置 AI 如何分析选中的错题,包括分析角度和重点关注的方面
</p>
</div>
{/* 分析指引输入 */}
<div style={{ marginBottom: '32px' }}>
<label style={{
display: 'block',
fontSize: '14px',
fontWeight: '600',
color: '#374151',
marginBottom: '8px'
}}>
总体分析指引 *
</label>
<textarea
value={formData.overallPrompt}
onChange={(e) => setFormData(prev => ({ ...prev, overallPrompt: e.target.value }))}
placeholder="例如:请总结这些二次函数错题的常见错误类型,并提供针对性的学习建议。请重点分析我在概念理解和计算方法上的薄弱环节。"
rows={6}
style={{
width: '100%',
padding: '16px 20px',
border: '2px solid #e2e8f0',
borderRadius: '12px',
fontSize: '14px',
lineHeight: '1.6',
background: 'white',
transition: 'all 0.2s ease',
outline: 'none',
resize: 'vertical',
minHeight: '120px'
}}
onFocus={(e) => {
e.target.style.borderColor = '#667eea';
e.target.style.boxShadow = '0 0 0 4px rgba(102, 126, 234, 0.1)';
}}
onBlur={(e) => {
e.target.style.borderColor = '#e2e8f0';
e.target.style.boxShadow = 'none';
}}
/>
<p style={{ fontSize: '12px', color: '#9ca3af', marginTop: '8px', lineHeight: '1.4' }}>
请描述您希望AI如何分析这些错题,比如总结共同问题、分析薄弱环节、提供学习建议等。
</p>
</div>
{/* 快速模板 */}
<div style={{ marginBottom: '32px' }}>
<label style={{
display: 'block',
fontSize: '14px',
fontWeight: '600',
color: '#374151',
marginBottom: '12px'
}}>
快速模板
</label>
<div style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(280px, 1fr))',
gap: '12px'
}}>
{[
"请总结这些错题的共同问题和改进建议",
"分析我在这些知识点上的薄弱环节",
"比较这些错题的解题方法和思路差异",
"针对这些错题制定复习计划",
].map((template, index) => (
<button
key={index}
onClick={() => setFormData(prev => ({ ...prev, overallPrompt: template }))}
style={{
textAlign: 'left',
padding: '16px',
fontSize: '14px',
border: '2px solid #f1f5f9',
borderRadius: '12px',
background: 'white',
cursor: 'pointer',
transition: 'all 0.2s ease',
lineHeight: '1.4'
}}
onMouseOver={(e) => {
e.currentTarget.style.borderColor = '#667eea';
e.currentTarget.style.background = 'rgba(102, 126, 234, 0.05)';
e.currentTarget.style.transform = 'translateY(-1px)';
}}
onMouseOut={(e) => {
e.currentTarget.style.borderColor = '#f1f5f9';
e.currentTarget.style.background = 'white';
e.currentTarget.style.transform = 'translateY(0)';
}}
>
{template}
</button>
))}
</div>
</div>
{/* 选中错题预览 */}
<div style={{
background: '#f8fafc',
border: '2px solid #f1f5f9',
borderRadius: '16px',
padding: '24px'
}}>
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '16px' }}>
<svg style={{ width: '20px', height: '20px', color: '#667eea', marginRight: '8px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
<h4 style={{ fontSize: '16px', fontWeight: '600', color: '#374151', margin: 0 }}>
已选中的错题
<span style={{ color: '#667eea', marginLeft: '8px' }}>({selectedMistakeIds.length} 个)</span>
</h4>
</div>
<div style={{
maxHeight: '200px',
overflow: 'auto',
background: 'white',
borderRadius: '12px',
padding: '16px'
}}>
{selectedMistakeIds.length === 0 ? (
<p style={{ color: '#9ca3af', fontSize: '14px', textAlign: 'center', margin: 0 }}>
尚未选择任何错题
</p>
) : (
selectedMistakeIds.map((id, index) => {
const mistake = availableMistakes.find(m => m.id === id);
return mistake ? (
<div key={id} style={{
display: 'flex',
alignItems: 'flex-start',
padding: '12px 0',
borderBottom: index < selectedMistakeIds.length - 1 ? '1px solid #f1f5f9' : 'none'
}}>
<span style={{
background: '#667eea',
color: 'white',
width: '24px',
height: '24px',
borderRadius: '50%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontSize: '12px',
fontWeight: '600',
marginRight: '12px',
flexShrink: 0
}}>
{index + 1}
</span>
<div style={{ flex: 1 }}>
<div style={{ fontSize: '14px', color: '#1f2937', lineHeight: '1.4', marginBottom: '4px' }}>
{mistake.user_question.length > 60
? mistake.user_question.substring(0, 60) + '...'
: mistake.user_question}
</div>
<div style={{
fontSize: '12px',
color: '#667eea',
background: 'rgba(102, 126, 234, 0.1)',
padding: '2px 6px',
borderRadius: '6px',
display: 'inline-block'
}}>
{mistake.subject}
</div>
</div>
</div>
) : null;
})
)}
</div>
</div>
</div>
);
const renderCreatingStep = () => (
<div style={{
textAlign: 'center',
padding: '80px 24px',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
position: 'relative'
}}>
{/* 加载指示器 */}
{loading && (
<div style={{
width: '80px',
height: '80px',
background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
borderRadius: '50%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginBottom: '24px',
position: 'relative'
}}>
<div style={{
width: '40px',
height: '40px',
border: '3px solid rgba(255, 255, 255, 0.3)',
borderTop: '3px solid white',
borderRadius: '50%',
animation: 'spin 1s linear infinite'
}}></div>
</div>
)}
{/* 成功指示器 */}
{!loading && (
<div style={{
width: '80px',
height: '80px',
background: 'linear-gradient(135deg, #10b981 0%, #059669 100%)',
borderRadius: '50%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginBottom: '24px',
animation: 'fadeIn 0.5s ease-in'
}}>
<svg style={{ width: '40px', height: '40px', color: 'white' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={3} d="M5 13l4 4L19 7" />
</svg>
</div>
)}
<h3 style={{
fontSize: '24px',
fontWeight: '700',
color: loading ? '#1f2937' : '#10b981',
marginBottom: '12px',
margin: '0 0 12px 0',
transition: 'color 0.5s ease'
}}>
{loading ? '正在创建回顾分析...' : '创建成功!'}
</h3>
<p style={{
color: '#6b7280',
fontSize: '16px',
lineHeight: '1.5',
maxWidth: '400px',
margin: 0,
transition: 'all 0.5s ease'
}}>
{loading
? '正在整合错题数据并设置分析环境,请稍候...'
: '回顾分析已成功创建,正在跳转到分析页面...'}
</p>
<style>
{`
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes fadeIn {
0% { opacity: 0; transform: scale(0.8); }
100% { opacity: 1; transform: scale(1); }
}
`}
</style>
</div>
);
return (
<div style={{
width: '100%',
height: '100%',
overflow: 'auto',
background: '#f8fafc',
display: 'flex',
flexDirection: 'column'
}}>
{/* 头部区域 - 统一白色样式 */}
<div style={{
background: 'white',
borderBottom: '1px solid #e5e7eb',
padding: '24px 32px',
position: 'relative'
}}>
<div style={{
position: 'absolute',
top: 0,
left: 0,
right: 0,
height: '4px',
background: 'linear-gradient(90deg, #667eea, #764ba2)'
}}></div>
<div style={{ position: 'relative', zIndex: 1 }}>
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '8px' }}>
<svg style={{ width: '32px', height: '32px', marginRight: '12px', color: '#667eea' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 4v16m8-8H4" />
</svg>
<h1 style={{ fontSize: '28px', fontWeight: '700', margin: 0, color: '#1f2937' }}>创建回顾分析</h1>
</div>
<p style={{ fontSize: '16px', color: '#6b7280', margin: 0, lineHeight: '1.5' }}>
配置多错题统一分析,发现学习模式,制定改进计划
</p>
</div>
</div>
{/* 步骤指示器 - 重新设计 */}
<div style={{
background: 'white',
margin: '24px 24px 0 24px',
borderRadius: '16px',
padding: '24px',
boxShadow: '0 4px 20px rgba(0, 0, 0, 0.05)',
border: '1px solid #f1f5f9'
}}>
<div style={{
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
position: 'relative'
}}>
{/* 连接线 */}
<div style={{
position: 'absolute',
top: '50%',
left: '60px',
right: '60px',
height: '2px',
background: '#e2e8f0',
zIndex: 1
}}></div>
{[
{ key: 'setup', label: '基本设置', icon: 'M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z M15 12a3 3 0 11-6 0 3 3 0 016 0z' },
{ key: 'select_mistakes', label: '选择错题', icon: 'M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z' },
{ key: 'configure_prompt', label: '配置指引', icon: 'M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z' },
{ key: 'creating', label: '创建中', icon: 'M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z' },
].map((stepInfo, index) => {
const currentStepIndex = ['setup', 'select_mistakes', 'configure_prompt', 'creating'].indexOf(step);
const isActive = step === stepInfo.key;
const isCompleted = currentStepIndex > index;
const isPending = currentStepIndex < index;
return (
<div key={stepInfo.key} style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
position: 'relative',
zIndex: 2
}}>
<div style={{
width: '60px',
height: '60px',
borderRadius: '50%',
background: isActive
? 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)'
: isCompleted
? 'linear-gradient(135deg, #10b981 0%, #059669 100%)'
: '#f1f5f9',
color: isActive || isCompleted ? 'white' : '#9ca3af',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
marginBottom: '12px',
transition: 'all 0.3s ease',
boxShadow: isActive
? '0 8px 25px rgba(102, 126, 234, 0.3)'
: isCompleted
? '0 4px 15px rgba(16, 185, 129, 0.2)'
: 'none'
}}>
{isCompleted ? (
<svg style={{ width: '24px', height: '24px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={3} d="M5 13l4 4L19 7" />
</svg>
) : (
<svg style={{ width: '24px', height: '24px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d={stepInfo.icon} />
</svg>
)}
</div>
<span style={{
fontSize: '14px',
fontWeight: '600',
color: isActive ? '#667eea' : isCompleted ? '#10b981' : '#6b7280',
textAlign: 'center'
}}>
{stepInfo.label}
</span>
</div>
);
})}
</div>
</div>
{/* 表单内容区域 - 重新设计 */}
<div style={{
background: 'white',
margin: '24px',
borderRadius: '16px',
boxShadow: '0 4px 20px rgba(0, 0, 0, 0.05)',
border: '1px solid #f1f5f9',
flex: 1,
display: 'flex',
flexDirection: 'column'
}}>
<div style={{
padding: '32px',
flex: 1,
overflow: 'auto'
}}>
{step === 'setup' && renderSetupStep()}
{step === 'select_mistakes' && renderSelectMistakesStep()}
{step === 'configure_prompt' && renderConfigurePromptStep()}
{step === 'creating' && renderCreatingStep()}
</div>
{/* 底部操作区域 - 重新设计 */}
{step !== 'creating' && (
<div style={{
padding: '24px 32px',
borderTop: '1px solid #f1f5f9',
background: '#fafbfc',
borderRadius: '0 0 16px 16px',
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center'
}}>
<div>
{step !== 'setup' && (
<button
onClick={handlePrevStep}
style={{
background: 'white',
color: '#6b7280',
border: '2px solid #e5e7eb',
padding: '12px 24px',
borderRadius: '12px',
fontSize: '14px',
fontWeight: '600',
cursor: 'pointer',
display: 'inline-flex',
alignItems: 'center',
gap: '8px',
transition: 'all 0.2s ease'
}}
onMouseOver={(e) => {
e.currentTarget.style.background = '#f9fafb';
e.currentTarget.style.borderColor = '#d1d5db';
}}
onMouseOut={(e) => {
e.currentTarget.style.background = 'white';
e.currentTarget.style.borderColor = '#e5e7eb';
}}
>
<svg style={{ width: '16px', height: '16px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
</svg>
上一步
</button>
)}
</div>
<div style={{ display: 'flex', gap: '12px' }}>
<button
onClick={onCancel}
style={{
background: 'white',
color: '#6b7280',
border: '2px solid #e5e7eb',
padding: '12px 24px',
borderRadius: '12px',
fontSize: '14px',
fontWeight: '600',
cursor: 'pointer',
transition: 'all 0.2s ease'
}}
onMouseOver={(e) => {
e.currentTarget.style.background = '#f9fafb';
e.currentTarget.style.borderColor = '#d1d5db';
}}
onMouseOut={(e) => {
e.currentTarget.style.background = 'white';
e.currentTarget.style.borderColor = '#e5e7eb';
}}
>
取消
</button>
<button
onClick={handleNextStep}
disabled={loading}
style={{
background: loading
? '#d1d5db'
: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
color: 'white',
border: 'none',
padding: '12px 32px',
borderRadius: '12px',
fontSize: '14px',
fontWeight: '600',
cursor: loading ? 'not-allowed' : 'pointer',
display: 'inline-flex',
alignItems: 'center',
gap: '8px',
transition: 'all 0.3s ease',
boxShadow: loading ? 'none' : '0 4px 15px rgba(102, 126, 234, 0.3)'
}}
onMouseOver={(e) => {
if (!loading) {
e.currentTarget.style.transform = 'translateY(-2px)';
e.currentTarget.style.boxShadow = '0 8px 25px rgba(102, 126, 234, 0.4)';
}
}}
onMouseOut={(e) => {
if (!loading) {
e.currentTarget.style.transform = 'translateY(0)';
e.currentTarget.style.boxShadow = '0 4px 15px rgba(102, 126, 234, 0.3)';
}
}}
>
{step === 'configure_prompt' ? (
<>
<svg style={{ width: '16px', height: '16px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
创建分析
</>
) : (
<>
下一步
<svg style={{ width: '16px', height: '16px' }} fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
</svg>
</>
)}
</button>
</div>
</div>
)}
</div>
</div>
);
};
export default CreateReviewAnalysisView;
| 46,167 | CreateReviewAnalysisView | tsx | en | tsx | code | {"qsc_code_num_words": 4081, "qsc_code_num_chars": 46167.0, "qsc_code_mean_word_length": 5.34819897, "qsc_code_frac_words_unique": 0.15608919, "qsc_code_frac_chars_top_2grams": 0.01722716, "qsc_code_frac_chars_top_3grams": 0.02089251, "qsc_code_frac_chars_top_4grams": 0.01072116, "qsc_code_frac_chars_dupe_5grams": 0.49069917, "qsc_code_frac_chars_dupe_6grams": 0.43695592, "qsc_code_frac_chars_dupe_7grams": 0.40758728, "qsc_code_frac_chars_dupe_8grams": 0.36630624, "qsc_code_frac_chars_dupe_9grams": 0.33038578, "qsc_code_frac_chars_dupe_10grams": 0.3152662, "qsc_code_frac_chars_replacement_symbols": 0.0, "qsc_code_frac_chars_digital": 0.10084793, "qsc_code_frac_chars_whitespace": 0.37669764, "qsc_code_size_file_byte": 46167.0, "qsc_code_num_lines": 1227.0, "qsc_code_num_chars_line_max": 571.0, "qsc_code_num_chars_line_mean": 37.62591687, "qsc_code_frac_chars_alphabet": 0.65728385, "qsc_code_frac_chars_comments": 0.01180497, "qsc_code_cate_xml_start": 0.0, "qsc_code_frac_lines_dupe_lines": 0.59652174, "qsc_code_cate_autogen": 0.0, "qsc_code_frac_lines_long_string": 0.01217391, "qsc_code_frac_chars_string_length": 0.18221472, "qsc_code_frac_chars_long_word_length": 0.01819298, "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} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.