diff --git a/apple2js.html b/apple2js.html
index e8c9afe..801d37a 100644
--- a/apple2js.html
+++ b/apple2js.html
@@ -163,6 +163,9 @@
+
+
+
diff --git a/apple2jse.html b/apple2jse.html
index 6af1290..951e9ee 100644
--- a/apple2jse.html
+++ b/apple2jse.html
@@ -141,6 +141,7 @@
diff --git a/js/main2.js b/js/main2.js
index c6d2fc8..618a280 100644
--- a/js/main2.js
+++ b/js/main2.js
@@ -20,8 +20,12 @@ import Thunderclock from './cards/thunderclock';
import Videoterm from './cards/videoterm';
import apple2_charset from './roms/apple2_char';
+import apple2j_charset from './roms/apple2j_char';
+import apple2lc_charset from './roms/apple2lc_char';
+import pigfont_charset from './roms/pigfont_char';
import Apple2ROM from './roms/fpbasic';
+import Apple2jROM from './roms/apple2j_char';
import IntBASIC from './roms/intbasic';
import OriginalROM from './roms/original';
@@ -357,18 +361,18 @@ case 'apple2':
case'original':
rom = new OriginalROM();
break;
-// case 'apple2jplus':
-// rom = new Apple2jROM();
-// char_rom = apple2j_charset;
-// break;
-// case 'apple2pig':
-// rom = new Apple2ROM();
-// char_rom = pigfont_charset;
-// break;
-// case 'apple2lc':
-// rom = new Apple2ROM();
-// char_rom = apple2lc_charset;
-// break;
+case 'apple2jplus':
+ rom = new Apple2jROM();
+ char_rom = apple2j_charset;
+ break;
+case 'apple2pig':
+ rom = new Apple2ROM();
+ char_rom = pigfont_charset;
+ break;
+case 'apple2lc':
+ rom = new Apple2ROM();
+ char_rom = apple2lc_charset;
+ break;
default:
rom = new Apple2ROM();
}
@@ -467,7 +471,7 @@ function updateKHz() {
lastFrames = renderedFrames;
}
-function updateSound() {
+window.updateSound = function updateSound() {
var on = $('#enable_sound').prop('checked');
var label = $('#toggle-sound i');
audio.enable(on);
@@ -476,7 +480,7 @@ function updateSound() {
} else {
label.removeClass('fa-volume-up').addClass('fa-volume-off');
}
-}
+};
function dumpDisk(drive) {
var wind = window.open('', '_blank');
@@ -511,7 +515,7 @@ window.step = function()
var accelerated = false;
-function updateCPU()
+window.updateCPU = function updateCPU()
{
accelerated = $('#accelerator_toggle').prop('checked');
kHz = accelerated ? 4092 : 1023;
@@ -519,7 +523,7 @@ function updateCPU()
if (runTimer) {
run();
}
-}
+};
var _requestAnimationFrame =
window.requestAnimationFrame ||
@@ -870,13 +874,13 @@ function _keyup(evt) {
}
}
-function updateScreen() {
+window.updateScreen = function updateScreen() {
var green = $('#green_screen').prop('checked');
var scanlines = $('#show_scanlines').prop('checked');
vm.green(green);
vm.scanlines(scanlines);
-}
+};
var disableMouseJoystick = false;
var flipX = false;
@@ -932,7 +936,7 @@ window.pauseRun = function() {
window.toggleSound = function() {
var enableSound = $('#enable_sound');
enableSound.prop('checked', !enableSound.prop('checked'));
- updateSound();
+ window.updateSound();
};
$(function() {
@@ -996,9 +1000,9 @@ $(function() {
reset();
setInterval(updateKHz, 1000);
- updateSound();
- updateScreen();
- updateCPU();
+ window.updateSound();
+ window.updateScreen();
+ window.updateCPU();
var cancel = function() { $(this).dialog('close'); };
$('#loading').dialog({ autoOpen: false, modal: true });
diff --git a/js/main2e.js b/js/main2e.js
index 5892909..496603c 100644
--- a/js/main2e.js
+++ b/js/main2e.js
@@ -19,6 +19,7 @@ import Thunderclock from './cards/thunderclock';
import apple2e_charset from './roms/apple2e_char';
import apple2enh_charset from './roms/apple2enh_char';
+import rmfont_charset from './roms/rmfont_char';
import Apple2eROM from './roms/apple2e';
import Apple2eEnhancedROM from './roms/apple2enh';
@@ -343,11 +344,11 @@ switch (romVersion) {
case 'apple2e':
rom = new Apple2eROM();
break;
-// case 'apple2rm':
-// rom = new Apple2eEnhancedROM();
-// char_rom = rmfont_charset;
-// enhanced = true;
-// break;
+case 'apple2rm':
+ rom = new Apple2eEnhancedROM();
+ char_rom = rmfont_charset;
+ enhanced = true;
+ break;
default:
rom = new Apple2eEnhancedROM();
char_rom =apple2enh_charset;
diff --git a/js/roms/apple2j.js b/js/roms/apple2j.js
new file mode 100644
index 0000000..135741f
--- /dev/null
+++ b/js/roms/apple2j.js
@@ -0,0 +1,1559 @@
+/*exported Apple2jROM */
+
+export default function Apple2jROM()
+{
+ var rom = [
+ 0x6f,0xd8,0x65,0xd7,0xf8,0xdc,0x94,0xd9,
+ 0xb1,0xdb,0x30,0xf3,0xd8,0xdf,0xe1,0xdb,
+ 0x8f,0xf3,0x98,0xf3,0xe4,0xf1,0xdd,0xf1,
+ 0xd4,0xf1,0x24,0xf2,0x31,0xf2,0x40,0xf2,
+ 0xd7,0xf3,0xe1,0xf3,0xe8,0xf6,0xfd,0xf6,
+ 0x68,0xf7,0x6e,0xf7,0xe6,0xf7,0x57,0xfc,
+ 0x20,0xf7,0x26,0xf7,0x74,0xf7,0x6c,0xf2,
+ 0x6e,0xf2,0x72,0xf2,0x76,0xf2,0x7f,0xf2,
+ 0x4e,0xf2,0x6a,0xd9,0x55,0xf2,0x85,0xf2,
+ 0xa5,0xf2,0xca,0xf2,0x17,0xf3,0xbb,0xf3,
+ 0x9e,0xf3,0x61,0xf2,0x45,0xda,0x3d,0xd9,
+ 0x11,0xd9,0xc8,0xd9,0x48,0xd8,0xf4,0x03,
+ 0x20,0xd9,0x6a,0xd9,0xdb,0xd9,0x6d,0xd8,
+ 0xeb,0xd9,0x83,0xe7,0xc8,0xd8,0xaf,0xd8,
+ 0x12,0xe3,0x7a,0xe7,0xd4,0xda,0x95,0xd8,
+ 0xa4,0xd6,0x69,0xd6,0x9f,0xdb,0x48,0xd6,
+ 0x90,0xeb,0x23,0xec,0xaf,0xeb,0x0a,0x00,
+ 0xde,0xe2,0x12,0xd4,0xcd,0xdf,0xff,0xe2,
+ 0x8d,0xee,0xae,0xef,0x41,0xe9,0x09,0xef,
+ 0xea,0xef,0xf1,0xef,0x3a,0xf0,0x9e,0xf0,
+ 0x64,0xe7,0xd6,0xe6,0xc5,0xe3,0x07,0xe7,
+ 0xe5,0xe6,0x46,0xe6,0x5a,0xe6,0x86,0xe6,
+ 0x91,0xe6,0x79,0xc0,0xe7,0x79,0xa9,0xe7,
+ 0x7b,0x81,0xe9,0x7b,0x68,0xea,0x7d,0x96,
+ 0xee,0x50,0x54,0xdf,0x46,0x4e,0xdf,0x7f,
+ 0xcf,0xee,0x7f,0x97,0xde,0x64,0x64,0xdf,
+ 0x45,0x4e,0xc4,0x46,0x4f,0xd2,0x4e,0x45,
+ 0x58,0xd4,0x44,0x41,0x54,0xc1,0x49,0x4e,
+ 0x50,0x55,0xd4,0x44,0x45,0xcc,0x44,0x49,
+ 0xcd,0x52,0x45,0x41,0xc4,0x47,0xd2,0x54,
+ 0x45,0x58,0xd4,0x50,0x52,0xa3,0x49,0x4e,
+ 0xa3,0x43,0x41,0x4c,0xcc,0x50,0x4c,0x4f,
+ 0xd4,0x48,0x4c,0x49,0xce,0x56,0x4c,0x49,
+ 0xce,0x48,0x47,0x52,0xb2,0x48,0x47,0xd2,
+ 0x48,0x43,0x4f,0x4c,0x4f,0x52,0xbd,0x48,
+ 0x50,0x4c,0x4f,0xd4,0x44,0x52,0x41,0xd7,
+ 0x58,0x44,0x52,0x41,0xd7,0x48,0x54,0x41,
+ 0xc2,0x48,0x4f,0x4d,0xc5,0x52,0x4f,0x54,
+ 0xbd,0x53,0x43,0x41,0x4c,0x45,0xbd,0x53,
+ 0x48,0x4c,0x4f,0x41,0xc4,0x54,0x52,0x41,
+ 0x43,0xc5,0x4e,0x4f,0x54,0x52,0x41,0x43,
+ 0xc5,0x4e,0x4f,0x52,0x4d,0x41,0xcc,0x49,
+ 0x4e,0x56,0x45,0x52,0x53,0xc5,0x46,0x4c,
+ 0x41,0x53,0xc8,0x43,0x4f,0x4c,0x4f,0x52,
+ 0xbd,0x50,0x4f,0xd0,0x56,0x54,0x41,0xc2,
+ 0x48,0x49,0x4d,0x45,0x4d,0xba,0x4c,0x4f,
+ 0x4d,0x45,0x4d,0xba,0x4f,0x4e,0x45,0x52,
+ 0xd2,0x52,0x45,0x53,0x55,0x4d,0xc5,0x52,
+ 0x45,0x43,0x41,0x4c,0xcc,0x53,0x54,0x4f,
+ 0x52,0xc5,0x53,0x50,0x45,0x45,0x44,0xbd,
+ 0x4c,0x45,0xd4,0x47,0x4f,0x54,0xcf,0x52,
+ 0x55,0xce,0x49,0xc6,0x52,0x45,0x53,0x54,
+ 0x4f,0x52,0xc5,0xa6,0x47,0x4f,0x53,0x55,
+ 0xc2,0x52,0x45,0x54,0x55,0x52,0xce,0x52,
+ 0x45,0xcd,0x53,0x54,0x4f,0xd0,0x4f,0xce,
+ 0x57,0x41,0x49,0xd4,0x4c,0x4f,0x41,0xc4,
+ 0x53,0x41,0x56,0xc5,0x44,0x45,0xc6,0x50,
+ 0x4f,0x4b,0xc5,0x50,0x52,0x49,0x4e,0xd4,
+ 0x43,0x4f,0x4e,0xd4,0x4c,0x49,0x53,0xd4,
+ 0x43,0x4c,0x45,0x41,0xd2,0x47,0x45,0xd4,
+ 0x4e,0x45,0xd7,0x54,0x41,0x42,0xa8,0x54,
+ 0xcf,0x46,0xce,0x53,0x50,0x43,0xa8,0x54,
+ 0x48,0x45,0xce,0x41,0xd4,0x4e,0x4f,0xd4,
+ 0x53,0x54,0x45,0xd0,0xab,0xad,0xaa,0xaf,
+ 0xde,0x41,0x4e,0xc4,0x4f,0xd2,0xbe,0xbd,
+ 0xbc,0x53,0x47,0xce,0x49,0x4e,0xd4,0x41,
+ 0x42,0xd3,0x55,0x53,0xd2,0x46,0x52,0xc5,
+ 0x53,0x43,0x52,0x4e,0xa8,0x50,0x44,0xcc,
+ 0x50,0x4f,0xd3,0x53,0x51,0xd2,0x52,0x4e,
+ 0xc4,0x4c,0x4f,0xc7,0x45,0x58,0xd0,0x43,
+ 0x4f,0xd3,0x53,0x49,0xce,0x54,0x41,0xce,
+ 0x41,0x54,0xce,0x50,0x45,0x45,0xcb,0x4c,
+ 0x45,0xce,0x53,0x54,0x52,0xa4,0x56,0x41,
+ 0xcc,0x41,0x53,0xc3,0x43,0x48,0x52,0xa4,
+ 0x4c,0x45,0x46,0x54,0xa4,0x52,0x49,0x47,
+ 0x48,0x54,0xa4,0x4d,0x49,0x44,0xa4,0x00,
+ 0x4e,0x45,0x58,0x54,0x20,0x57,0x49,0x54,
+ 0x48,0x4f,0x55,0x54,0x20,0x46,0x4f,0xd2,
+ 0x53,0x59,0x4e,0x54,0x41,0xd8,0x52,0x45,
+ 0x54,0x55,0x52,0x4e,0x20,0x57,0x49,0x54,
+ 0x48,0x4f,0x55,0x54,0x20,0x47,0x4f,0x53,
+ 0x55,0xc2,0x4f,0x55,0x54,0x20,0x4f,0x46,
+ 0x20,0x44,0x41,0x54,0xc1,0x49,0x4c,0x4c,
+ 0x45,0x47,0x41,0x4c,0x20,0x51,0x55,0x41,
+ 0x4e,0x54,0x49,0x54,0xd9,0x4f,0x56,0x45,
+ 0x52,0x46,0x4c,0x4f,0xd7,0x4f,0x55,0x54,
+ 0x20,0x4f,0x46,0x20,0x4d,0x45,0x4d,0x4f,
+ 0x52,0xd9,0x55,0x4e,0x44,0x45,0x46,0x27,
+ 0x44,0x20,0x53,0x54,0x41,0x54,0x45,0x4d,
+ 0x45,0x4e,0xd4,0x42,0x41,0x44,0x20,0x53,
+ 0x55,0x42,0x53,0x43,0x52,0x49,0x50,0xd4,
+ 0x52,0x45,0x44,0x49,0x4d,0x27,0x44,0x20,
+ 0x41,0x52,0x52,0x41,0xd9,0x44,0x49,0x56,
+ 0x49,0x53,0x49,0x4f,0x4e,0x20,0x42,0x59,
+ 0x20,0x5a,0x45,0x52,0xcf,0x49,0x4c,0x4c,
+ 0x45,0x47,0x41,0x4c,0x20,0x44,0x49,0x52,
+ 0x45,0x43,0xd4,0x54,0x59,0x50,0x45,0x20,
+ 0x4d,0x49,0x53,0x4d,0x41,0x54,0x43,0xc8,
+ 0x53,0x54,0x52,0x49,0x4e,0x47,0x20,0x54,
+ 0x4f,0x4f,0x20,0x4c,0x4f,0x4e,0xc7,0x46,
+ 0x4f,0x52,0x4d,0x55,0x4c,0x41,0x20,0x54,
+ 0x4f,0x4f,0x20,0x43,0x4f,0x4d,0x50,0x4c,
+ 0x45,0xd8,0x43,0x41,0x4e,0x27,0x54,0x20,
+ 0x43,0x4f,0x4e,0x54,0x49,0x4e,0x55,0xc5,
+ 0x55,0x4e,0x44,0x45,0x46,0x27,0x44,0x20,
+ 0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0xce,
+ 0x20,0x45,0x52,0x52,0x4f,0x52,0x07,0x00,
+ 0x20,0x49,0x4e,0x20,0x00,0x0d,0x42,0x52,
+ 0x45,0x41,0x4b,0x07,0x00,0xba,0xe8,0xe8,
+ 0xe8,0xe8,0xbd,0x01,0x01,0xc9,0x81,0xd0,
+ 0x21,0xa5,0x86,0xd0,0x0a,0xbd,0x02,0x01,
+ 0x85,0x85,0xbd,0x03,0x01,0x85,0x86,0xdd,
+ 0x03,0x01,0xd0,0x07,0xa5,0x85,0xdd,0x02,
+ 0x01,0xf0,0x07,0x8a,0x18,0x69,0x12,0xaa,
+ 0xd0,0xd8,0x60,0x20,0xe3,0xd3,0x85,0x6d,
+ 0x84,0x6e,0x38,0xa5,0x96,0xe5,0x9b,0x85,
+ 0x5e,0xa8,0xa5,0x97,0xe5,0x9c,0xaa,0xe8,
+ 0x98,0xf0,0x23,0xa5,0x96,0x38,0xe5,0x5e,
+ 0x85,0x96,0xb0,0x03,0xc6,0x97,0x38,0xa5,
+ 0x94,0xe5,0x5e,0x85,0x94,0xb0,0x08,0xc6,
+ 0x95,0x90,0x04,0xb1,0x96,0x91,0x94,0x88,
+ 0xd0,0xf9,0xb1,0x96,0x91,0x94,0xc6,0x97,
+ 0xc6,0x95,0xca,0xd0,0xf2,0x60,0x0a,0x69,
+ 0x36,0xb0,0x35,0x85,0x5e,0xba,0xe4,0x5e,
+ 0x90,0x2e,0x60,0xc4,0x70,0x90,0x28,0xd0,
+ 0x04,0xc5,0x6f,0x90,0x22,0x48,0xa2,0x09,
+ 0x98,0x48,0xb5,0x93,0xca,0x10,0xfa,0x20,
+ 0x84,0xe4,0xa2,0xf7,0x68,0x95,0x9d,0xe8,
+ 0x30,0xfa,0x68,0xa8,0x68,0xc4,0x70,0x90,
+ 0x06,0xd0,0x05,0xc5,0x6f,0xb0,0x01,0x60,
+ 0xa2,0x4d,0x24,0xd8,0x10,0x03,0x4c,0xe9,
+ 0xf2,0x20,0xfb,0xda,0x20,0x5a,0xdb,0xbd,
+ 0x60,0xd2,0x48,0x20,0x5c,0xdb,0xe8,0x68,
+ 0x10,0xf5,0x20,0x83,0xd6,0xa9,0x50,0xa0,
+ 0xd3,0x20,0x3a,0xdb,0xa4,0x76,0xc8,0xf0,
+ 0x03,0x20,0x19,0xed,0x20,0xfb,0xda,0xa2,
+ 0xdd,0x20,0x2e,0xd5,0x86,0xb8,0x84,0xb9,
+ 0x46,0xd8,0x20,0xb1,0x00,0xaa,0xf0,0xec,
+ 0xa2,0xff,0x86,0x76,0x90,0x06,0x20,0x59,
+ 0xd5,0x4c,0x05,0xd8,0xa6,0xaf,0x86,0x69,
+ 0xa6,0xb0,0x86,0x6a,0x20,0x0c,0xda,0x20,
+ 0x59,0xd5,0x84,0x0f,0x20,0x1a,0xd6,0x90,
+ 0x44,0xa0,0x01,0xb1,0x9b,0x85,0x5f,0xa5,
+ 0x69,0x85,0x5e,0xa5,0x9c,0x85,0x61,0xa5,
+ 0x9b,0x88,0xf1,0x9b,0x18,0x65,0x69,0x85,
+ 0x69,0x85,0x60,0xa5,0x6a,0x69,0xff,0x85,
+ 0x6a,0xe5,0x9c,0xaa,0x38,0xa5,0x9b,0xe5,
+ 0x69,0xa8,0xb0,0x03,0xe8,0xc6,0x61,0x18,
+ 0x65,0x5e,0x90,0x03,0xc6,0x5f,0x18,0xb1,
+ 0x5e,0x91,0x60,0xc8,0xd0,0xf9,0xe6,0x5f,
+ 0xe6,0x61,0xca,0xd0,0xf2,0xad,0x00,0x02,
+ 0xf0,0x38,0xa5,0x73,0xa4,0x74,0x85,0x6f,
+ 0x84,0x70,0xa5,0x69,0x85,0x96,0x65,0x0f,
+ 0x85,0x94,0xa4,0x6a,0x84,0x97,0x90,0x01,
+ 0xc8,0x84,0x95,0x20,0x93,0xd3,0xa5,0x50,
+ 0xa4,0x51,0x8d,0xfe,0x01,0x8c,0xff,0x01,
+ 0xa5,0x6d,0xa4,0x6e,0x85,0x69,0x84,0x6a,
+ 0xa4,0x0f,0xb9,0xfb,0x01,0x88,0x91,0x9b,
+ 0xd0,0xf8,0x20,0x65,0xd6,0xa5,0x67,0xa4,
+ 0x68,0x85,0x5e,0x84,0x5f,0x18,0xa0,0x01,
+ 0xb1,0x5e,0xd0,0x0b,0xa5,0x69,0x85,0xaf,
+ 0xa5,0x6a,0x85,0xb0,0x4c,0x3c,0xd4,0xa0,
+ 0x04,0xc8,0xb1,0x5e,0xd0,0xfb,0xc8,0x98,
+ 0x65,0x5e,0xaa,0xa0,0x00,0x91,0x5e,0xa5,
+ 0x5f,0x69,0x00,0xc8,0x91,0x5e,0x86,0x5e,
+ 0x85,0x5f,0x90,0xd2,0xa2,0x80,0x86,0x33,
+ 0x20,0x6a,0xfd,0xe0,0xef,0x90,0x02,0xa2,
+ 0xef,0xa9,0x00,0x9d,0x00,0x02,0x8a,0xf0,
+ 0x0b,0xbd,0xff,0x01,0x29,0x7f,0x9d,0xff,
+ 0x01,0xca,0xd0,0xf5,0xa9,0x00,0xa2,0xff,
+ 0xa0,0x01,0x60,0x20,0x0c,0xfd,0x29,0x7f,
+ 0x60,0xa6,0xb8,0xca,0xa0,0x04,0x84,0x13,
+ 0x24,0xd6,0x10,0x08,0x68,0x68,0x20,0x65,
+ 0xd6,0x4c,0xd2,0xd7,0xe8,0xbd,0x00,0x02,
+ 0x24,0x13,0x70,0x04,0xc9,0x20,0xf0,0xf4,
+ 0x85,0x0e,0xc9,0x22,0xf0,0x74,0x70,0x4d,
+ 0xc9,0x3f,0xd0,0x04,0xa9,0xba,0xd0,0x45,
+ 0xc9,0x30,0x90,0x04,0xc9,0x3c,0x90,0x3d,
+ 0x84,0xad,0xa9,0xd0,0x85,0x9d,0xa9,0xcf,
+ 0x85,0x9e,0xa0,0x00,0x84,0x0f,0x88,0x86,
+ 0xb8,0xca,0xc8,0xd0,0x02,0xe6,0x9e,0xe8,
+ 0xbd,0x00,0x02,0xc9,0x20,0xf0,0xf8,0x38,
+ 0xf1,0x9d,0xf0,0xee,0xc9,0x80,0xd0,0x41,
+ 0x05,0x0f,0xc9,0xc5,0xd0,0x0d,0xbd,0x01,
+ 0x02,0xc9,0x4e,0xf0,0x34,0xc9,0x4f,0xf0,
+ 0x30,0xa9,0xc5,0xa4,0xad,0xe8,0xc8,0x99,
+ 0xfb,0x01,0xb9,0xfb,0x01,0xf0,0x39,0x38,
+ 0xe9,0x3a,0xf0,0x04,0xc9,0x49,0xd0,0x02,
+ 0x85,0x13,0x38,0xe9,0x78,0xd0,0x86,0x85,
+ 0x0e,0xbd,0x00,0x02,0xf0,0xdf,0xc5,0x0e,
+ 0xf0,0xdb,0xc8,0x99,0xfb,0x01,0xe8,0xd0,
+ 0xf0,0xa6,0xb8,0xe6,0x0f,0xb1,0x9d,0xc8,
+ 0xd0,0x02,0xe6,0x9e,0x0a,0x90,0xf6,0xb1,
+ 0x9d,0xd0,0x9d,0xbd,0x00,0x02,0x10,0xbb,
+ 0x99,0xfd,0x01,0xc6,0xb9,0xa9,0xff,0x85,
+ 0xb8,0x60,0xa5,0x67,0xa6,0x68,0xa0,0x01,
+ 0x85,0x9b,0x86,0x9c,0xb1,0x9b,0xf0,0x1f,
+ 0xc8,0xc8,0xa5,0x51,0xd1,0x9b,0x90,0x18,
+ 0xf0,0x03,0x88,0xd0,0x09,0xa5,0x50,0x88,
+ 0xd1,0x9b,0x90,0x0c,0xf0,0x0a,0x88,0xb1,
+ 0x9b,0xaa,0x88,0xb1,0x9b,0xb0,0xd7,0x18,
+ 0x60,0xd0,0xfd,0xa9,0x00,0x85,0xd6,0xa8,
+ 0x91,0x67,0xc8,0x91,0x67,0xa5,0x67,0x69,
+ 0x02,0x85,0x69,0x85,0xaf,0xa5,0x68,0x69,
+ 0x00,0x85,0x6a,0x85,0xb0,0x20,0x97,0xd6,
+ 0xa9,0x00,0xd0,0x2a,0xa5,0x73,0xa4,0x74,
+ 0x85,0x6f,0x84,0x70,0xa5,0x69,0xa4,0x6a,
+ 0x85,0x6b,0x84,0x6c,0x85,0x6d,0x84,0x6e,
+ 0x20,0x49,0xd8,0xa2,0x55,0x86,0x52,0x68,
+ 0xa8,0x68,0xa2,0xf8,0x9a,0x48,0x98,0x48,
+ 0xa9,0x00,0x85,0x7a,0x85,0x14,0x60,0x18,
+ 0xa5,0x67,0x69,0xff,0x85,0xb8,0xa5,0x68,
+ 0x69,0xff,0x85,0xb9,0x60,0x90,0x0a,0xf0,
+ 0x08,0xc9,0xc9,0xf0,0x04,0xc9,0x2c,0xd0,
+ 0xe5,0x20,0x0c,0xda,0x20,0x1a,0xd6,0x20,
+ 0xb7,0x00,0xf0,0x10,0xc9,0xc9,0xf0,0x04,
+ 0xc9,0x2c,0xd0,0x84,0x20,0xb1,0x00,0x20,
+ 0x0c,0xda,0xd0,0xca,0x68,0x68,0xa5,0x50,
+ 0x05,0x51,0xd0,0x06,0xa9,0xff,0x85,0x50,
+ 0x85,0x51,0xa0,0x01,0xb1,0x9b,0xf0,0x44,
+ 0x20,0x58,0xd8,0x20,0xfb,0xda,0xc8,0xb1,
+ 0x9b,0xaa,0xc8,0xb1,0x9b,0xc5,0x51,0xd0,
+ 0x04,0xe4,0x50,0xf0,0x02,0xb0,0x2d,0x84,
+ 0x85,0x20,0x24,0xed,0xa9,0x20,0xa4,0x85,
+ 0x29,0x7f,0x20,0x5c,0xdb,0xa5,0x24,0xc9,
+ 0x21,0x90,0x07,0x20,0xfb,0xda,0xa9,0x05,
+ 0x85,0x24,0xc8,0xb1,0x9b,0xd0,0x1d,0xa8,
+ 0xb1,0x9b,0xaa,0xc8,0xb1,0x9b,0x86,0x9b,
+ 0x85,0x9c,0xd0,0xb6,0xa9,0x0d,0x20,0x5c,
+ 0xdb,0x4c,0xd2,0xd7,0xc8,0xd0,0x02,0xe6,
+ 0x9e,0xb1,0x9d,0x60,0x10,0xcc,0x38,0xe9,
+ 0x7f,0xaa,0x84,0x85,0xa0,0xd0,0x84,0x9d,
+ 0xa0,0xcf,0x84,0x9e,0xa0,0xff,0xca,0xf0,
+ 0x07,0x20,0x2c,0xd7,0x10,0xfb,0x30,0xf6,
+ 0xa9,0x20,0x20,0x5c,0xdb,0x20,0x2c,0xd7,
+ 0x30,0x05,0x20,0x5c,0xdb,0xd0,0xf6,0x20,
+ 0x5c,0xdb,0xa9,0x20,0xd0,0x98,0xa9,0x80,
+ 0x85,0x14,0x20,0x46,0xda,0x20,0x65,0xd3,
+ 0xd0,0x05,0x8a,0x69,0x0f,0xaa,0x9a,0x68,
+ 0x68,0xa9,0x09,0x20,0xd6,0xd3,0x20,0xa3,
+ 0xd9,0x18,0x98,0x65,0xb8,0x48,0xa5,0xb9,
+ 0x69,0x00,0x48,0xa5,0x76,0x48,0xa5,0x75,
+ 0x48,0xa9,0xc1,0x20,0xc0,0xde,0x20,0x6a,
+ 0xdd,0x20,0x67,0xdd,0xa5,0xa2,0x09,0x7f,
+ 0x25,0x9e,0x85,0x9e,0xa9,0xaf,0xa0,0xd7,
+ 0x85,0x5e,0x84,0x5f,0x4c,0x20,0xde,0xa9,
+ 0x13,0xa0,0xe9,0x20,0xf9,0xea,0x20,0xb7,
+ 0x00,0xc9,0xc7,0xd0,0x06,0x20,0xb1,0x00,
+ 0x20,0x67,0xdd,0x20,0x82,0xeb,0x20,0x15,
+ 0xde,0xa5,0x86,0x48,0xa5,0x85,0x48,0xa9,
+ 0x81,0x48,0xba,0x86,0xf8,0x20,0x58,0xd8,
+ 0xa5,0xb8,0xa4,0xb9,0xa6,0x76,0xe8,0xf0,
+ 0x04,0x85,0x79,0x84,0x7a,0xa0,0x00,0xb1,
+ 0xb8,0xd0,0x57,0xa0,0x02,0xb1,0xb8,0x18,
+ 0xf0,0x34,0xc8,0xb1,0xb8,0x85,0x75,0xc8,
+ 0xb1,0xb8,0x85,0x76,0x98,0x65,0xb8,0x85,
+ 0xb8,0x90,0x02,0xe6,0xb9,0x24,0xf2,0x10,
+ 0x14,0xa6,0x76,0xe8,0xf0,0x0f,0xa9,0x23,
+ 0x20,0x5c,0xdb,0xa6,0x75,0xa5,0x76,0x20,
+ 0x24,0xed,0x20,0x57,0xdb,0x20,0xb1,0x00,
+ 0x20,0x28,0xd8,0x4c,0xd2,0xd7,0xf0,0x62,
+ 0xf0,0x2d,0xe9,0x80,0x90,0x11,0xc9,0x40,
+ 0xb0,0x14,0x0a,0xa8,0xb9,0x01,0xd0,0x48,
+ 0xb9,0x00,0xd0,0x48,0x4c,0xb1,0x00,0x4c,
+ 0x46,0xda,0xc9,0x3a,0xf0,0xbf,0x4c,0xc9,
+ 0xde,0x38,0xa5,0x67,0xe9,0x01,0xa4,0x68,
+ 0xb0,0x01,0x88,0x85,0x7d,0x84,0x7e,0x60,
+ 0xad,0x00,0xc0,0xc9,0x83,0xf0,0x01,0x60,
+ 0x20,0x53,0xd5,0xa2,0xff,0x24,0xd8,0x10,
+ 0x03,0x4c,0xe9,0xf2,0xc9,0x03,0xb0,0x01,
+ 0x18,0xd0,0x3c,0xa5,0xb8,0xa4,0xb9,0xa6,
+ 0x76,0xe8,0xf0,0x0c,0x85,0x79,0x84,0x7a,
+ 0xa5,0x75,0xa4,0x76,0x85,0x77,0x84,0x78,
+ 0x68,0x68,0xa9,0x5d,0xa0,0xd3,0x90,0x03,
+ 0x4c,0x31,0xd4,0x4c,0x3c,0xd4,0xd0,0x17,
+ 0xa2,0xd2,0xa4,0x7a,0xd0,0x03,0x4c,0x12,
+ 0xd4,0xa5,0x79,0x85,0xb8,0x84,0xb9,0xa5,
+ 0x77,0xa4,0x78,0x85,0x75,0x84,0x76,0x60,
+ 0x38,0xa5,0xaf,0xe5,0x67,0x85,0x50,0xa5,
+ 0xb0,0xe5,0x68,0x85,0x51,0x20,0xf0,0xd8,
+ 0x20,0xcd,0xfe,0x20,0x01,0xd9,0x4c,0xcd,
+ 0xfe,0x20,0xf0,0xd8,0x20,0xfd,0xfe,0x18,
+ 0xa5,0x67,0x65,0x50,0x85,0x69,0xa5,0x68,
+ 0x65,0x51,0x85,0x6a,0xa5,0x52,0x85,0xd6,
+ 0x20,0x01,0xd9,0x20,0xfd,0xfe,0x24,0xd6,
+ 0x10,0x03,0x4c,0x65,0xd6,0x4c,0xf2,0xd4,
+ 0xa9,0x50,0xa0,0x00,0x85,0x3c,0x84,0x3d,
+ 0xa9,0x52,0x85,0x3e,0x84,0x3f,0x84,0xd6,
+ 0x60,0xa5,0x67,0xa4,0x68,0x85,0x3c,0x84,
+ 0x3d,0xa5,0x69,0xa4,0x6a,0x85,0x3e,0x84,
+ 0x3f,0x60,0x08,0xc6,0x76,0x28,0xd0,0x03,
+ 0x4c,0x65,0xd6,0x20,0x6c,0xd6,0x4c,0x35,
+ 0xd9,0xa9,0x03,0x20,0xd6,0xd3,0xa5,0xb9,
+ 0x48,0xa5,0xb8,0x48,0xa5,0x76,0x48,0xa5,
+ 0x75,0x48,0xa9,0xb0,0x48,0x20,0xb7,0x00,
+ 0x20,0x3e,0xd9,0x4c,0xd2,0xd7,0x20,0x0c,
+ 0xda,0x20,0xa6,0xd9,0xa5,0x76,0xc5,0x51,
+ 0xb0,0x0b,0x98,0x38,0x65,0xb8,0xa6,0xb9,
+ 0x90,0x07,0xe8,0xb0,0x04,0xa5,0x67,0xa6,
+ 0x68,0x20,0x1e,0xd6,0x90,0x1e,0xa5,0x9b,
+ 0xe9,0x01,0x85,0xb8,0xa5,0x9c,0xe9,0x00,
+ 0x85,0xb9,0x60,0xd0,0xfd,0xa9,0xff,0x85,
+ 0x85,0x20,0x65,0xd3,0x9a,0xc9,0xb0,0xf0,
+ 0x0b,0xa2,0x16,0x2c,0xa2,0x5a,0x4c,0x12,
+ 0xd4,0x4c,0xc9,0xde,0x68,0x68,0xc0,0x42,
+ 0xf0,0x3b,0x85,0x75,0x68,0x85,0x76,0x68,
+ 0x85,0xb8,0x68,0x85,0xb9,0x20,0xa3,0xd9,
+ 0x98,0x18,0x65,0xb8,0x85,0xb8,0x90,0x02,
+ 0xe6,0xb9,0x60,0xa2,0x3a,0x2c,0xa2,0x00,
+ 0x86,0x0d,0xa0,0x00,0x84,0x0e,0xa5,0x0e,
+ 0xa6,0x0d,0x85,0x0d,0x86,0x0e,0xb1,0xb8,
+ 0xf0,0xe8,0xc5,0x0e,0xf0,0xe4,0xc8,0xc9,
+ 0x22,0xd0,0xf3,0xf0,0xe9,0x68,0x68,0x68,
+ 0x60,0x20,0x7b,0xdd,0x20,0xb7,0x00,0xc9,
+ 0xab,0xf0,0x05,0xa9,0xc4,0x20,0xc0,0xde,
+ 0xa5,0x9d,0xd0,0x05,0x20,0xa6,0xd9,0xf0,
+ 0xb7,0x20,0xb7,0x00,0xb0,0x03,0x4c,0x3e,
+ 0xd9,0x4c,0x28,0xd8,0x20,0xf8,0xe6,0x48,
+ 0xc9,0xb0,0xf0,0x04,0xc9,0xab,0xd0,0x89,
+ 0xc6,0xa1,0xd0,0x04,0x68,0x4c,0x2a,0xd8,
+ 0x20,0xb1,0x00,0x20,0x0c,0xda,0xc9,0x2c,
+ 0xf0,0xee,0x68,0x60,0xa2,0x00,0x86,0x50,
+ 0x86,0x51,0xb0,0xf7,0xe9,0x2f,0x85,0x0d,
+ 0xa5,0x51,0x85,0x5e,0xc9,0x19,0xb0,0xd4,
+ 0xa5,0x50,0x0a,0x26,0x5e,0x0a,0x26,0x5e,
+ 0x65,0x50,0x85,0x50,0xa5,0x5e,0x65,0x51,
+ 0x85,0x51,0x06,0x50,0x26,0x51,0xa5,0x50,
+ 0x65,0x0d,0x85,0x50,0x90,0x02,0xe6,0x51,
+ 0x20,0xb1,0x00,0x4c,0x12,0xda,0x20,0xe3,
+ 0xdf,0x85,0x85,0x84,0x86,0xa9,0xd0,0x20,
+ 0xc0,0xde,0xa5,0x12,0x48,0xa5,0x11,0x48,
+ 0x20,0x7b,0xdd,0x68,0x2a,0x20,0x6d,0xdd,
+ 0xd0,0x18,0x68,0x10,0x12,0x20,0x72,0xeb,
+ 0x20,0x0c,0xe1,0xa0,0x00,0xa5,0xa0,0x91,
+ 0x85,0xc8,0xa5,0xa1,0x91,0x85,0x60,0x4c,
+ 0x27,0xeb,0x68,0xa0,0x02,0xb1,0xa0,0xc5,
+ 0x70,0x90,0x17,0xd0,0x07,0x88,0xb1,0xa0,
+ 0xc5,0x6f,0x90,0x0e,0xa4,0xa1,0xc4,0x6a,
+ 0x90,0x08,0xd0,0x0d,0xa5,0xa0,0xc5,0x69,
+ 0xb0,0x07,0xa5,0xa0,0xa4,0xa1,0x4c,0xb7,
+ 0xda,0xa0,0x00,0xb1,0xa0,0x20,0xd5,0xe3,
+ 0xa5,0x8c,0xa4,0x8d,0x85,0xab,0x84,0xac,
+ 0x20,0xd4,0xe5,0xa9,0x9d,0xa0,0x00,0x85,
+ 0x8c,0x84,0x8d,0x20,0x35,0xe6,0xa0,0x00,
+ 0xb1,0x8c,0x91,0x85,0xc8,0xb1,0x8c,0x91,
+ 0x85,0xc8,0xb1,0x8c,0x91,0x85,0x60,0x20,
+ 0x3d,0xdb,0x20,0xb7,0x00,0xf0,0x24,0xf0,
+ 0x29,0xc9,0xc0,0xf0,0x39,0xc9,0xc3,0x18,
+ 0xf0,0x34,0xc9,0x2c,0x18,0xf0,0x1c,0xc9,
+ 0x3b,0xf0,0x44,0x20,0x7b,0xdd,0x24,0x11,
+ 0x30,0xdd,0x20,0x34,0xed,0x20,0xe7,0xe3,
+ 0x4c,0xcf,0xda,0xa9,0x0d,0x20,0x5c,0xdb,
+ 0x49,0xff,0x60,0xa5,0x24,0xc9,0x18,0x90,
+ 0x05,0x20,0xfb,0xda,0xd0,0x21,0x69,0x10,
+ 0x29,0xf0,0x85,0x24,0x90,0x19,0x08,0x20,
+ 0xf5,0xe6,0xc9,0x29,0xf0,0x03,0x4c,0xc9,
+ 0xde,0x28,0x90,0x07,0xca,0x8a,0xe5,0x24,
+ 0x90,0x05,0xaa,0xe8,0xca,0xd0,0x06,0x20,
+ 0xb1,0x00,0x4c,0xd7,0xda,0x20,0x57,0xdb,
+ 0xd0,0xf2,0x20,0xe7,0xe3,0x20,0x00,0xe6,
+ 0xaa,0xa0,0x00,0xe8,0xca,0xf0,0xbb,0xb1,
+ 0x5e,0x20,0x5c,0xdb,0xc8,0xc9,0x0d,0xd0,
+ 0xf3,0x20,0x00,0xdb,0x4c,0x44,0xdb,0xa9,
+ 0x20,0x2c,0xa9,0x3f,0x09,0x80,0xc9,0xa0,
+ 0x90,0x02,0x05,0xf3,0x20,0xed,0xfd,0x29,
+ 0x7f,0x48,0xa5,0xf1,0x20,0xa8,0xfc,0x68,
+ 0x60,0xa5,0x15,0xf0,0x12,0x30,0x04,0xa0,
+ 0xff,0xd0,0x04,0xa5,0x7b,0xa4,0x7c,0x85,
+ 0x75,0x84,0x76,0x4c,0xc9,0xde,0x68,0x24,
+ 0xd8,0x10,0x05,0xa2,0xfe,0x4c,0xe9,0xf2,
+ 0xa9,0xef,0xa0,0xdc,0x20,0x3a,0xdb,0xa5,
+ 0x79,0xa4,0x7a,0x85,0xb8,0x84,0xb9,0x60,
+ 0x20,0x06,0xe3,0xa2,0x01,0xa0,0x02,0xa9,
+ 0x00,0x8d,0x01,0x02,0xa9,0x40,0x20,0xeb,
+ 0xdb,0x60,0xc9,0x22,0xd0,0x0e,0x20,0x81,
+ 0xde,0xa9,0x3b,0x20,0xc0,0xde,0x20,0x3d,
+ 0xdb,0x4c,0xc7,0xdb,0x20,0x5a,0xdb,0x20,
+ 0x06,0xe3,0xa9,0x2c,0x8d,0xff,0x01,0x20,
+ 0x2c,0xd5,0xad,0x00,0x02,0xc9,0x03,0xd0,
+ 0x10,0x4c,0x63,0xd8,0x20,0x5a,0xdb,0x4c,
+ 0x2c,0xd5,0xa6,0x7d,0xa4,0x7e,0xa9,0x98,
+ 0x2c,0xa9,0x00,0x85,0x15,0x86,0x7f,0x84,
+ 0x80,0x20,0xe3,0xdf,0x85,0x85,0x84,0x86,
+ 0xa5,0xb8,0xa4,0xb9,0x85,0x87,0x84,0x88,
+ 0xa6,0x7f,0xa4,0x80,0x86,0xb8,0x84,0xb9,
+ 0x20,0xb7,0x00,0xd0,0x1e,0x24,0x15,0x50,
+ 0x0e,0x20,0x0c,0xfd,0x29,0x7f,0x8d,0x00,
+ 0x02,0xa2,0xff,0xa0,0x01,0xd0,0x08,0x30,
+ 0x7f,0x20,0x5a,0xdb,0x20,0xdc,0xdb,0x86,
+ 0xb8,0x84,0xb9,0x20,0xb1,0x00,0x24,0x11,
+ 0x10,0x31,0x24,0x15,0x50,0x09,0xe8,0x86,
+ 0xb8,0xa9,0x00,0x85,0x0d,0xf0,0x0c,0x85,
+ 0x0d,0xc9,0x22,0xf0,0x07,0xa9,0x3a,0x85,
+ 0x0d,0xa9,0x2c,0x18,0x85,0x0e,0xa5,0xb8,
+ 0xa4,0xb9,0x69,0x00,0x90,0x01,0xc8,0x20,
+ 0xed,0xe3,0x20,0x3d,0xe7,0x20,0x7b,0xda,
+ 0x4c,0x72,0xdc,0x48,0xad,0x00,0x02,0xf0,
+ 0x30,0x68,0x20,0x4a,0xec,0xa5,0x12,0x20,
+ 0x63,0xda,0x20,0xb7,0x00,0xf0,0x07,0xc9,
+ 0x2c,0xf0,0x03,0x4c,0x71,0xdb,0xa5,0xb8,
+ 0xa4,0xb9,0x85,0x7f,0x84,0x80,0xa5,0x87,
+ 0xa4,0x88,0x85,0xb8,0x84,0xb9,0x20,0xb7,
+ 0x00,0xf0,0x33,0x20,0xbe,0xde,0x4c,0xf1,
+ 0xdb,0xa5,0x15,0xd0,0xcc,0x4c,0x86,0xdb,
+ 0x20,0xa3,0xd9,0xc8,0xaa,0xd0,0x12,0xa2,
+ 0x2a,0xc8,0xb1,0xb8,0xf0,0x5f,0xc8,0xb1,
+ 0xb8,0x85,0x7b,0xc8,0xb1,0xb8,0xc8,0x85,
+ 0x7c,0xb1,0xb8,0xaa,0x20,0x98,0xd9,0xe0,
+ 0x83,0xd0,0xdd,0x4c,0x2b,0xdc,0xa5,0x7f,
+ 0xa4,0x80,0xa6,0x15,0x10,0x03,0x4c,0x53,
+ 0xd8,0xa0,0x00,0xb1,0x7f,0xf0,0x07,0xa9,
+ 0xdf,0xa0,0xdc,0x4c,0x3a,0xdb,0x60,0x3f,
+ 0x45,0x58,0x54,0x52,0x41,0x20,0x49,0x47,
+ 0x4e,0x4f,0x52,0x45,0x44,0x0d,0x00,0x3f,
+ 0x52,0x45,0x45,0x4e,0x54,0x45,0x52,0x0d,
+ 0x00,0xd0,0x04,0xa0,0x00,0xf0,0x03,0x20,
+ 0xe3,0xdf,0x85,0x85,0x84,0x86,0x20,0x65,
+ 0xd3,0xf0,0x04,0xa2,0x00,0xf0,0x69,0x9a,
+ 0xe8,0xe8,0xe8,0xe8,0x8a,0xe8,0xe8,0xe8,
+ 0xe8,0xe8,0xe8,0x86,0x60,0xa0,0x01,0x20,
+ 0xf9,0xea,0xba,0xbd,0x09,0x01,0x85,0xa2,
+ 0xa5,0x85,0xa4,0x86,0x20,0xbe,0xe7,0x20,
+ 0x27,0xeb,0xa0,0x01,0x20,0xb4,0xeb,0xba,
+ 0x38,0xfd,0x09,0x01,0xf0,0x17,0xbd,0x0f,
+ 0x01,0x85,0x75,0xbd,0x10,0x01,0x85,0x76,
+ 0xbd,0x12,0x01,0x85,0xb8,0xbd,0x11,0x01,
+ 0x85,0xb9,0x4c,0xd2,0xd7,0x8a,0x69,0x11,
+ 0xaa,0x9a,0x20,0xb7,0x00,0xc9,0x2c,0xd0,
+ 0xf1,0x20,0xb1,0x00,0x20,0xff,0xdc,0x20,
+ 0x7b,0xdd,0x18,0x24,0x38,0x24,0x11,0x30,
+ 0x03,0xb0,0x03,0x60,0xb0,0xfd,0xa2,0xa3,
+ 0x4c,0x12,0xd4,0xa6,0xb8,0xd0,0x02,0xc6,
+ 0xb9,0xc6,0xb8,0xa2,0x00,0x24,0x48,0x8a,
+ 0x48,0xa9,0x01,0x20,0xd6,0xd3,0x20,0x60,
+ 0xde,0xa9,0x00,0x85,0x89,0x20,0xb7,0x00,
+ 0x38,0xe9,0xcf,0x90,0x17,0xc9,0x03,0xb0,
+ 0x13,0xc9,0x01,0x2a,0x49,0x01,0x45,0x89,
+ 0xc5,0x89,0x90,0x61,0x85,0x89,0x20,0xb1,
+ 0x00,0x4c,0x98,0xdd,0xa6,0x89,0xd0,0x2c,
+ 0xb0,0x7b,0x69,0x07,0x90,0x77,0x65,0x11,
+ 0xd0,0x03,0x4c,0x97,0xe5,0x69,0xff,0x85,
+ 0x5e,0x0a,0x65,0x5e,0xa8,0x68,0xd9,0xb2,
+ 0xd0,0xb0,0x67,0x20,0x6a,0xdd,0x48,0x20,
+ 0xfd,0xdd,0x68,0xa4,0x87,0x10,0x17,0xaa,
+ 0xf0,0x56,0xd0,0x5f,0x46,0x11,0x8a,0x2a,
+ 0xa6,0xb8,0xd0,0x02,0xc6,0xb9,0xc6,0xb8,
+ 0xa0,0x1b,0x85,0x89,0xd0,0xd7,0xd9,0xb2,
+ 0xd0,0xb0,0x48,0x90,0xd9,0xb9,0xb4,0xd0,
+ 0x48,0xb9,0xb3,0xd0,0x48,0x20,0x10,0xde,
+ 0xa5,0x89,0x4c,0x86,0xdd,0x4c,0xc9,0xde,
+ 0xa5,0xa2,0xbe,0xb2,0xd0,0xa8,0x68,0x85,
+ 0x5e,0xe6,0x5e,0x68,0x85,0x5f,0x98,0x48,
+ 0x20,0x72,0xeb,0xa5,0xa1,0x48,0xa5,0xa0,
+ 0x48,0xa5,0x9f,0x48,0xa5,0x9e,0x48,0xa5,
+ 0x9d,0x48,0x6c,0x5e,0x00,0xa0,0xff,0x68,
+ 0xf0,0x23,0xc9,0x64,0xf0,0x03,0x20,0x6a,
+ 0xdd,0x84,0x87,0x68,0x4a,0x85,0x16,0x68,
+ 0x85,0xa5,0x68,0x85,0xa6,0x68,0x85,0xa7,
+ 0x68,0x85,0xa8,0x68,0x85,0xa9,0x68,0x85,
+ 0xaa,0x45,0xa2,0x85,0xab,0xa5,0x9d,0x60,
+ 0xa9,0x00,0x85,0x11,0x20,0xb1,0x00,0xb0,
+ 0x03,0x4c,0x4a,0xec,0x20,0x7d,0xe0,0xb0,
+ 0x64,0xc9,0x2e,0xf0,0xf4,0xc9,0xc9,0xf0,
+ 0x55,0xc9,0xc8,0xf0,0xe7,0xc9,0x22,0xd0,
+ 0x0f,0xa5,0xb8,0xa4,0xb9,0x69,0x00,0x90,
+ 0x01,0xc8,0x20,0xe7,0xe3,0x4c,0x3d,0xe7,
+ 0xc9,0xc6,0xd0,0x10,0xa0,0x18,0xd0,0x38,
+ 0xa5,0x9d,0xd0,0x03,0xa0,0x01,0x2c,0xa0,
+ 0x00,0x4c,0x01,0xe3,0xc9,0xc2,0xd0,0x03,
+ 0x4c,0x54,0xe3,0xc9,0xd2,0x90,0x03,0x4c,
+ 0x0c,0xdf,0x20,0xbb,0xde,0x20,0x7b,0xdd,
+ 0xa9,0x29,0x2c,0xa9,0x28,0x2c,0xa9,0x2c,
+ 0xa0,0x00,0xd1,0xb8,0xd0,0x03,0x4c,0xb1,
+ 0x00,0xa2,0x10,0x4c,0x12,0xd4,0xa0,0x15,
+ 0x68,0x68,0x4c,0xd7,0xdd,0x20,0xe3,0xdf,
+ 0x85,0xa0,0x84,0xa1,0xa6,0x11,0xf0,0x05,
+ 0xa2,0x00,0x86,0xac,0x60,0xa6,0x12,0x10,
+ 0x0d,0xa0,0x00,0xb1,0xa0,0xaa,0xc8,0xb1,
+ 0xa0,0xa8,0x8a,0x4c,0xf2,0xe2,0x4c,0xf9,
+ 0xea,0x20,0xb1,0x00,0x20,0xec,0xf1,0x8a,
+ 0xa4,0xf0,0x20,0x71,0xf8,0xa8,0x20,0x01,
+ 0xe3,0x4c,0xb8,0xde,0xc9,0xd7,0xf0,0xe9,
+ 0x0a,0x48,0xaa,0x20,0xb1,0x00,0xe0,0xcf,
+ 0x90,0x20,0x20,0xbb,0xde,0x20,0x7b,0xdd,
+ 0x20,0xbe,0xde,0x20,0x6c,0xdd,0x68,0xaa,
+ 0xa5,0xa1,0x48,0xa5,0xa0,0x48,0x8a,0x48,
+ 0x20,0xf8,0xe6,0x68,0xa8,0x8a,0x48,0x4c,
+ 0x3f,0xdf,0x20,0xb2,0xde,0x68,0xa8,0xb9,
+ 0xdc,0xcf,0x85,0x91,0xb9,0xdd,0xcf,0x85,
+ 0x92,0x20,0x90,0x00,0x4c,0x6a,0xdd,0xa5,
+ 0xa5,0x05,0x9d,0xd0,0x0b,0xa5,0xa5,0xf0,
+ 0x04,0xa5,0x9d,0xd0,0x03,0xa0,0x00,0x2c,
+ 0xa0,0x01,0x4c,0x01,0xe3,0x20,0x6d,0xdd,
+ 0xb0,0x13,0xa5,0xaa,0x09,0x7f,0x25,0xa6,
+ 0x85,0xa6,0xa9,0xa5,0xa0,0x00,0x20,0xb2,
+ 0xeb,0xaa,0x4c,0xb0,0xdf,0xa9,0x00,0x85,
+ 0x11,0xc6,0x89,0x20,0x00,0xe6,0x85,0x9d,
+ 0x86,0x9e,0x84,0x9f,0xa5,0xa8,0xa4,0xa9,
+ 0x20,0x04,0xe6,0x86,0xa8,0x84,0xa9,0xaa,
+ 0x38,0xe5,0x9d,0xf0,0x08,0xa9,0x01,0x90,
+ 0x04,0xa6,0x9d,0xa9,0xff,0x85,0xa2,0xa0,
+ 0xff,0xe8,0xc8,0xca,0xd0,0x07,0xa6,0xa2,
+ 0x30,0x0f,0x18,0x90,0x0c,0xb1,0xa8,0xd1,
+ 0x9e,0xf0,0xef,0xa2,0xff,0xb0,0x02,0xa2,
+ 0x01,0xe8,0x8a,0x2a,0x25,0x16,0xf0,0x02,
+ 0xa9,0x01,0x4c,0x93,0xeb,0x20,0xfb,0xe6,
+ 0x20,0x1e,0xfb,0x4c,0x01,0xe3,0x20,0xbe,
+ 0xde,0xaa,0x20,0xe8,0xdf,0x20,0xb7,0x00,
+ 0xd0,0xf4,0x60,0xa2,0x00,0x20,0xb7,0x00,
+ 0x86,0x10,0x85,0x81,0x20,0xb7,0x00,0x20,
+ 0x7d,0xe0,0xb0,0x03,0x4c,0xc9,0xde,0xa2,
+ 0x00,0x86,0x11,0x86,0x12,0x4c,0x07,0xe0,
+ 0x4c,0x28,0xf1,0x4c,0x3c,0xd4,0x00,0x20,
+ 0xb1,0x00,0x90,0x05,0x20,0x7d,0xe0,0x90,
+ 0x0b,0xaa,0x20,0xb1,0x00,0x90,0xfb,0x20,
+ 0x7d,0xe0,0xb0,0xf6,0xc9,0x24,0xd0,0x06,
+ 0xa9,0xff,0x85,0x11,0xd0,0x10,0xc9,0x25,
+ 0xd0,0x13,0xa5,0x14,0x30,0xc6,0xa9,0x80,
+ 0x85,0x12,0x05,0x81,0x85,0x81,0x8a,0x09,
+ 0x80,0xaa,0x20,0xb1,0x00,0x86,0x82,0x38,
+ 0x05,0x14,0xe9,0x28,0xd0,0x03,0x4c,0x1e,
+ 0xe1,0x24,0x14,0x30,0x02,0x70,0xf7,0xa9,
+ 0x00,0x85,0x14,0xa5,0x69,0xa6,0x6a,0xa0,
+ 0x00,0x86,0x9c,0x85,0x9b,0xe4,0x6c,0xd0,
+ 0x04,0xc5,0x6b,0xf0,0x22,0xa5,0x81,0xd1,
+ 0x9b,0xd0,0x08,0xa5,0x82,0xc8,0xd1,0x9b,
+ 0xf0,0x6c,0x88,0x18,0xa5,0x9b,0x69,0x07,
+ 0x90,0xe1,0xe8,0xd0,0xdc,0xc9,0x41,0x90,
+ 0x05,0xe9,0x5b,0x38,0xe9,0xa5,0x60,0x68,
+ 0x48,0xc9,0xd7,0xd0,0x0f,0xba,0xbd,0x02,
+ 0x01,0xc9,0xde,0xd0,0x07,0xa9,0x9a,0xa0,
+ 0xe0,0x60,0x00,0x00,0xa5,0x6b,0xa4,0x6c,
+ 0x85,0x9b,0x84,0x9c,0xa5,0x6d,0xa4,0x6e,
+ 0x85,0x96,0x84,0x97,0x18,0x69,0x07,0x90,
+ 0x01,0xc8,0x85,0x94,0x84,0x95,0x20,0x93,
+ 0xd3,0xa5,0x94,0xa4,0x95,0xc8,0x85,0x6b,
+ 0x84,0x6c,0xa0,0x00,0xa5,0x81,0x91,0x9b,
+ 0xc8,0xa5,0x82,0x91,0x9b,0xa9,0x00,0xc8,
+ 0x91,0x9b,0xc8,0x91,0x9b,0xc8,0x91,0x9b,
+ 0xc8,0x91,0x9b,0xc8,0x91,0x9b,0xa5,0x9b,
+ 0x18,0x69,0x02,0xa4,0x9c,0x90,0x01,0xc8,
+ 0x85,0x83,0x84,0x84,0x60,0xa5,0x0f,0x0a,
+ 0x69,0x05,0x65,0x9b,0xa4,0x9c,0x90,0x01,
+ 0xc8,0x85,0x94,0x84,0x95,0x60,0x90,0x80,
+ 0x00,0x00,0x20,0xb1,0x00,0x20,0x67,0xdd,
+ 0xa5,0xa2,0x30,0x0d,0xa5,0x9d,0xc9,0x90,
+ 0x90,0x09,0xa9,0xfe,0xa0,0xe0,0x20,0xb2,
+ 0xeb,0xd0,0x7e,0x4c,0xf2,0xeb,0xa5,0x14,
+ 0xd0,0x47,0xa5,0x10,0x05,0x12,0x48,0xa5,
+ 0x11,0x48,0xa0,0x00,0x98,0x48,0xa5,0x82,
+ 0x48,0xa5,0x81,0x48,0x20,0x02,0xe1,0x68,
+ 0x85,0x81,0x68,0x85,0x82,0x68,0xa8,0xba,
+ 0xbd,0x02,0x01,0x48,0xbd,0x01,0x01,0x48,
+ 0xa5,0xa0,0x9d,0x02,0x01,0xa5,0xa1,0x9d,
+ 0x01,0x01,0xc8,0x20,0xb7,0x00,0xc9,0x2c,
+ 0xf0,0xd2,0x84,0x0f,0x20,0xb8,0xde,0x68,
+ 0x85,0x11,0x68,0x85,0x12,0x29,0x7f,0x85,
+ 0x10,0xa6,0x6b,0xa5,0x6c,0x86,0x9b,0x85,
+ 0x9c,0xc5,0x6e,0xd0,0x04,0xe4,0x6d,0xf0,
+ 0x3f,0xa0,0x00,0xb1,0x9b,0xc8,0xc5,0x81,
+ 0xd0,0x06,0xa5,0x82,0xd1,0x9b,0xf0,0x16,
+ 0xc8,0xb1,0x9b,0x18,0x65,0x9b,0xaa,0xc8,
+ 0xb1,0x9b,0x65,0x9c,0x90,0xd7,0xa2,0x6b,
+ 0x2c,0xa2,0x35,0x4c,0x12,0xd4,0xa2,0x78,
+ 0xa5,0x10,0xd0,0xf7,0xa5,0x14,0xf0,0x02,
+ 0x38,0x60,0x20,0xed,0xe0,0xa5,0x0f,0xa0,
+ 0x04,0xd1,0x9b,0xd0,0xe1,0x4c,0x4b,0xe2,
+ 0xa5,0x14,0xf0,0x05,0xa2,0x2a,0x4c,0x12,
+ 0xd4,0x20,0xed,0xe0,0x20,0xe3,0xd3,0xa9,
+ 0x00,0xa8,0x85,0xae,0xa2,0x05,0xa5,0x81,
+ 0x91,0x9b,0x10,0x01,0xca,0xc8,0xa5,0x82,
+ 0x91,0x9b,0x10,0x02,0xca,0xca,0x86,0xad,
+ 0xa5,0x0f,0xc8,0xc8,0xc8,0x91,0x9b,0xa2,
+ 0x0b,0xa9,0x00,0x24,0x10,0x50,0x08,0x68,
+ 0x18,0x69,0x01,0xaa,0x68,0x69,0x00,0xc8,
+ 0x91,0x9b,0xc8,0x8a,0x91,0x9b,0x20,0xad,
+ 0xe2,0x86,0xad,0x85,0xae,0xa4,0x5e,0xc6,
+ 0x0f,0xd0,0xdc,0x65,0x95,0xb0,0x5d,0x85,
+ 0x95,0xa8,0x8a,0x65,0x94,0x90,0x03,0xc8,
+ 0xf0,0x52,0x20,0xe3,0xd3,0x85,0x6d,0x84,
+ 0x6e,0xa9,0x00,0xe6,0xae,0xa4,0xad,0xf0,
+ 0x05,0x88,0x91,0x94,0xd0,0xfb,0xc6,0x95,
+ 0xc6,0xae,0xd0,0xf5,0xe6,0x95,0x38,0xa5,
+ 0x6d,0xe5,0x9b,0xa0,0x02,0x91,0x9b,0xa5,
+ 0x6e,0xc8,0xe5,0x9c,0x91,0x9b,0xa5,0x10,
+ 0xd0,0x62,0xc8,0xb1,0x9b,0x85,0x0f,0xa9,
+ 0x00,0x85,0xad,0x85,0xae,0xc8,0x68,0xaa,
+ 0x85,0xa0,0x68,0x85,0xa1,0xd1,0x9b,0x90,
+ 0x0e,0xd0,0x06,0xc8,0x8a,0xd1,0x9b,0x90,
+ 0x07,0x4c,0x96,0xe1,0x4c,0x10,0xd4,0xc8,
+ 0xa5,0xae,0x05,0xad,0x18,0xf0,0x0a,0x20,
+ 0xad,0xe2,0x8a,0x65,0xa0,0xaa,0x98,0xa4,
+ 0x5e,0x65,0xa1,0x86,0xad,0xc6,0x0f,0xd0,
+ 0xca,0x85,0xae,0xa2,0x05,0xa5,0x81,0x10,
+ 0x01,0xca,0xa5,0x82,0x10,0x02,0xca,0xca,
+ 0x86,0x64,0xa9,0x00,0x20,0xb6,0xe2,0x8a,
+ 0x65,0x94,0x85,0x83,0x98,0x65,0x95,0x85,
+ 0x84,0xa8,0xa5,0x83,0x60,0x84,0x5e,0xb1,
+ 0x9b,0x85,0x64,0x88,0xb1,0x9b,0x85,0x65,
+ 0xa9,0x10,0x85,0x99,0xa2,0x00,0xa0,0x00,
+ 0x8a,0x0a,0xaa,0x98,0x2a,0xa8,0xb0,0xa4,
+ 0x06,0xad,0x26,0xae,0x90,0x0b,0x18,0x8a,
+ 0x65,0x64,0xaa,0x98,0x65,0x65,0xa8,0xb0,
+ 0x93,0xc6,0x99,0xd0,0xe3,0x60,0xa5,0x11,
+ 0xf0,0x03,0x20,0x00,0xe6,0x20,0x84,0xe4,
+ 0x38,0xa5,0x6f,0xe5,0x6d,0xa8,0xa5,0x70,
+ 0xe5,0x6e,0xa2,0x00,0x86,0x11,0x85,0x9e,
+ 0x84,0x9f,0xa2,0x90,0x4c,0x9b,0xeb,0xa4,
+ 0x24,0xa9,0x00,0x38,0xf0,0xec,0xa6,0x76,
+ 0xe8,0xd0,0xa1,0xa2,0x95,0x2c,0xa2,0xe0,
+ 0x4c,0x12,0xd4,0x20,0x41,0xe3,0x20,0x06,
+ 0xe3,0x20,0xbb,0xde,0xa9,0x80,0x85,0x14,
+ 0x20,0xe3,0xdf,0x20,0x6a,0xdd,0x20,0xb8,
+ 0xde,0xa9,0xd0,0x20,0xc0,0xde,0x48,0xa5,
+ 0x84,0x48,0xa5,0x83,0x48,0xa5,0xb9,0x48,
+ 0xa5,0xb8,0x48,0x20,0x95,0xd9,0x4c,0xaf,
+ 0xe3,0xa9,0xc2,0x20,0xc0,0xde,0x09,0x80,
+ 0x85,0x14,0x20,0xea,0xdf,0x85,0x8a,0x84,
+ 0x8b,0x4c,0x6a,0xdd,0x20,0x41,0xe3,0xa5,
+ 0x8b,0x48,0xa5,0x8a,0x48,0x20,0xb2,0xde,
+ 0x20,0x6a,0xdd,0x68,0x85,0x8a,0x68,0x85,
+ 0x8b,0xa0,0x02,0xb1,0x8a,0x85,0x83,0xaa,
+ 0xc8,0xb1,0x8a,0xf0,0x99,0x85,0x84,0xc8,
+ 0xb1,0x83,0x48,0x88,0x10,0xfa,0xa4,0x84,
+ 0x20,0x2b,0xeb,0xa5,0xb9,0x48,0xa5,0xb8,
+ 0x48,0xb1,0x8a,0x85,0xb8,0xc8,0xb1,0x8a,
+ 0x85,0xb9,0xa5,0x84,0x48,0xa5,0x83,0x48,
+ 0x20,0x67,0xdd,0x68,0x85,0x8a,0x68,0x85,
+ 0x8b,0x20,0xb7,0x00,0xf0,0x03,0x4c,0xc9,
+ 0xde,0x68,0x85,0xb8,0x68,0x85,0xb9,0xa0,
+ 0x00,0x68,0x91,0x8a,0x68,0xc8,0x91,0x8a,
+ 0x68,0xc8,0x91,0x8a,0x68,0xc8,0x91,0x8a,
+ 0x68,0xc8,0x91,0x8a,0x60,0x20,0x6a,0xdd,
+ 0xa0,0x00,0x20,0x36,0xed,0x68,0x68,0xa9,
+ 0xff,0xa0,0x00,0xf0,0x12,0xa6,0xa0,0xa4,
+ 0xa1,0x86,0x8c,0x84,0x8d,0x20,0x52,0xe4,
+ 0x86,0x9e,0x84,0x9f,0x85,0x9d,0x60,0xa2,
+ 0x22,0x86,0x0d,0x86,0x0e,0x85,0xab,0x84,
+ 0xac,0x85,0x9e,0x84,0x9f,0xa0,0xff,0xc8,
+ 0xb1,0xab,0xf0,0x0c,0xc5,0x0d,0xf0,0x04,
+ 0xc5,0x0e,0xd0,0xf3,0xc9,0x22,0xf0,0x01,
+ 0x18,0x84,0x9d,0x98,0x65,0xab,0x85,0xad,
+ 0xa6,0xac,0x90,0x01,0xe8,0x86,0xae,0xa5,
+ 0xac,0xf0,0x04,0xc9,0x02,0xd0,0x0b,0x98,
+ 0x20,0xd5,0xe3,0xa6,0xab,0xa4,0xac,0x20,
+ 0xe2,0xe5,0xa6,0x52,0xe0,0x5e,0xd0,0x05,
+ 0xa2,0xbf,0x4c,0x12,0xd4,0xa5,0x9d,0x95,
+ 0x00,0xa5,0x9e,0x95,0x01,0xa5,0x9f,0x95,
+ 0x02,0xa0,0x00,0x86,0xa0,0x84,0xa1,0x88,
+ 0x84,0x11,0x86,0x53,0xe8,0xe8,0xe8,0x86,
+ 0x52,0x60,0x46,0x13,0x48,0x49,0xff,0x38,
+ 0x65,0x6f,0xa4,0x70,0xb0,0x01,0x88,0xc4,
+ 0x6e,0x90,0x11,0xd0,0x04,0xc5,0x6d,0x90,
+ 0x0b,0x85,0x6f,0x84,0x70,0x85,0x71,0x84,
+ 0x72,0xaa,0x68,0x60,0xa2,0x4d,0xa5,0x13,
+ 0x30,0xb8,0x20,0x84,0xe4,0xa9,0x80,0x85,
+ 0x13,0x68,0xd0,0xd0,0xa6,0x73,0xa5,0x74,
+ 0x86,0x6f,0x85,0x70,0xa0,0x00,0x84,0x8b,
+ 0xa5,0x6d,0xa6,0x6e,0x85,0x9b,0x86,0x9c,
+ 0xa9,0x55,0xa2,0x00,0x85,0x5e,0x86,0x5f,
+ 0xc5,0x52,0xf0,0x05,0x20,0x23,0xe5,0xf0,
+ 0xf7,0xa9,0x07,0x85,0x8f,0xa5,0x69,0xa6,
+ 0x6a,0x85,0x5e,0x86,0x5f,0xe4,0x6c,0xd0,
+ 0x04,0xc5,0x6b,0xf0,0x05,0x20,0x19,0xe5,
+ 0xf0,0xf3,0x85,0x94,0x86,0x95,0xa9,0x03,
+ 0x85,0x8f,0xa5,0x94,0xa6,0x95,0xe4,0x6e,
+ 0xd0,0x07,0xc5,0x6d,0xd0,0x03,0x4c,0x62,
+ 0xe5,0x85,0x5e,0x86,0x5f,0xa0,0x00,0xb1,
+ 0x5e,0xaa,0xc8,0xb1,0x5e,0x08,0xc8,0xb1,
+ 0x5e,0x65,0x94,0x85,0x94,0xc8,0xb1,0x5e,
+ 0x65,0x95,0x85,0x95,0x28,0x10,0xd3,0x8a,
+ 0x30,0xd0,0xc8,0xb1,0x5e,0xa0,0x00,0x0a,
+ 0x69,0x05,0x65,0x5e,0x85,0x5e,0x90,0x02,
+ 0xe6,0x5f,0xa6,0x5f,0xe4,0x95,0xd0,0x04,
+ 0xc5,0x94,0xf0,0xba,0x20,0x23,0xe5,0xf0,
+ 0xf3,0xb1,0x5e,0x30,0x35,0xc8,0xb1,0x5e,
+ 0x10,0x30,0xc8,0xb1,0x5e,0xf0,0x2b,0xc8,
+ 0xb1,0x5e,0xaa,0xc8,0xb1,0x5e,0xc5,0x70,
+ 0x90,0x06,0xd0,0x1e,0xe4,0x6f,0xb0,0x1a,
+ 0xc5,0x9c,0x90,0x16,0xd0,0x04,0xe4,0x9b,
+ 0x90,0x10,0x86,0x9b,0x85,0x9c,0xa5,0x5e,
+ 0xa6,0x5f,0x85,0x8a,0x86,0x8b,0xa5,0x8f,
+ 0x85,0x91,0xa5,0x8f,0x18,0x65,0x5e,0x85,
+ 0x5e,0x90,0x02,0xe6,0x5f,0xa6,0x5f,0xa0,
+ 0x00,0x60,0xa6,0x8b,0xf0,0xf7,0xa5,0x91,
+ 0x29,0x04,0x4a,0xa8,0x85,0x91,0xb1,0x8a,
+ 0x65,0x9b,0x85,0x96,0xa5,0x9c,0x69,0x00,
+ 0x85,0x97,0xa5,0x6f,0xa6,0x70,0x85,0x94,
+ 0x86,0x95,0x20,0x9a,0xd3,0xa4,0x91,0xc8,
+ 0xa5,0x94,0x91,0x8a,0xaa,0xe6,0x95,0xa5,
+ 0x95,0xc8,0x91,0x8a,0x4c,0x88,0xe4,0xa5,
+ 0xa1,0x48,0xa5,0xa0,0x48,0x20,0x60,0xde,
+ 0x20,0x6c,0xdd,0x68,0x85,0xab,0x68,0x85,
+ 0xac,0xa0,0x00,0xb1,0xab,0x18,0x71,0xa0,
+ 0x90,0x05,0xa2,0xb0,0x4c,0x12,0xd4,0x20,
+ 0xd5,0xe3,0x20,0xd4,0xe5,0xa5,0x8c,0xa4,
+ 0x8d,0x20,0x04,0xe6,0x20,0xe6,0xe5,0xa5,
+ 0xab,0xa4,0xac,0x20,0x04,0xe6,0x20,0x2a,
+ 0xe4,0x4c,0x95,0xdd,0xa0,0x00,0xb1,0xab,
+ 0x48,0xc8,0xb1,0xab,0xaa,0xc8,0xb1,0xab,
+ 0xa8,0x68,0x86,0x5e,0x84,0x5f,0xa8,0xf0,
+ 0x0a,0x48,0x88,0xb1,0x5e,0x91,0x71,0x98,
+ 0xd0,0xf8,0x68,0x18,0x65,0x71,0x85,0x71,
+ 0x90,0x02,0xe6,0x72,0x60,0x20,0x6c,0xdd,
+ 0xa5,0xa0,0xa4,0xa1,0x85,0x5e,0x84,0x5f,
+ 0x20,0x35,0xe6,0x08,0xa0,0x00,0xb1,0x5e,
+ 0x48,0xc8,0xb1,0x5e,0xaa,0xc8,0xb1,0x5e,
+ 0xa8,0x68,0x28,0xd0,0x13,0xc4,0x70,0xd0,
+ 0x0f,0xe4,0x6f,0xd0,0x0b,0x48,0x18,0x65,
+ 0x6f,0x85,0x6f,0x90,0x02,0xe6,0x70,0x68,
+ 0x86,0x5e,0x84,0x5f,0x60,0xc4,0x54,0xd0,
+ 0x0c,0xc5,0x53,0xd0,0x08,0x85,0x52,0xe9,
+ 0x03,0x85,0x53,0xa0,0x00,0x60,0x20,0xfb,
+ 0xe6,0x8a,0x48,0xa9,0x01,0x20,0xdd,0xe3,
+ 0x68,0xa0,0x00,0x91,0x9e,0x68,0x68,0x4c,
+ 0x2a,0xe4,0x20,0xb9,0xe6,0xd1,0x8c,0x98,
+ 0x90,0x04,0xb1,0x8c,0xaa,0x98,0x48,0x8a,
+ 0x48,0x20,0xdd,0xe3,0xa5,0x8c,0xa4,0x8d,
+ 0x20,0x04,0xe6,0x68,0xa8,0x68,0x18,0x65,
+ 0x5e,0x85,0x5e,0x90,0x02,0xe6,0x5f,0x98,
+ 0x20,0xe6,0xe5,0x4c,0x2a,0xe4,0x20,0xb9,
+ 0xe6,0x18,0xf1,0x8c,0x49,0xff,0x4c,0x60,
+ 0xe6,0xa9,0xff,0x85,0xa1,0x20,0xb7,0x00,
+ 0xc9,0x29,0xf0,0x06,0x20,0xbe,0xde,0x20,
+ 0xf8,0xe6,0x20,0xb9,0xe6,0xca,0x8a,0x48,
+ 0x18,0xa2,0x00,0xf1,0x8c,0xb0,0xb8,0x49,
+ 0xff,0xc5,0xa1,0x90,0xb3,0xa5,0xa1,0xb0,
+ 0xaf,0x20,0xb8,0xde,0x68,0xa8,0x68,0x85,
+ 0x91,0x68,0x68,0x68,0xaa,0x68,0x85,0x8c,
+ 0x68,0x85,0x8d,0xa5,0x91,0x48,0x98,0x48,
+ 0xa0,0x00,0x8a,0xf0,0x1d,0x60,0x20,0xdc,
+ 0xe6,0x4c,0x01,0xe3,0x20,0xfd,0xe5,0xa2,
+ 0x00,0x86,0x11,0xa8,0x60,0x20,0xdc,0xe6,
+ 0xf0,0x08,0xa0,0x00,0xb1,0x5e,0xa8,0x4c,
+ 0x01,0xe3,0x4c,0x99,0xe1,0x20,0xb1,0x00,
+ 0x20,0x67,0xdd,0x20,0x08,0xe1,0xa6,0xa0,
+ 0xd0,0xf0,0xa6,0xa1,0x4c,0xb7,0x00,0x20,
+ 0xdc,0xe6,0xd0,0x03,0x4c,0x4e,0xe8,0xa6,
+ 0xb8,0xa4,0xb9,0x86,0xad,0x84,0xae,0xa6,
+ 0x5e,0x86,0xb8,0x18,0x65,0x5e,0x85,0x60,
+ 0xa6,0x5f,0x86,0xb9,0x90,0x01,0xe8,0x86,
+ 0x61,0xa0,0x00,0xb1,0x60,0x48,0xa9,0x00,
+ 0x91,0x60,0x20,0xb7,0x00,0x20,0x4a,0xec,
+ 0x68,0xa0,0x00,0x91,0x60,0xa6,0xad,0xa4,
+ 0xae,0x86,0xb8,0x84,0xb9,0x60,0x20,0x67,
+ 0xdd,0x20,0x52,0xe7,0x20,0xbe,0xde,0x4c,
+ 0xf8,0xe6,0xa5,0x9d,0xc9,0x91,0xb0,0x9a,
+ 0x20,0xf2,0xeb,0xa5,0xa0,0xa4,0xa1,0x84,
+ 0x50,0x85,0x51,0x60,0xa5,0x50,0x48,0xa5,
+ 0x51,0x48,0x20,0x52,0xe7,0xa0,0x00,0xb1,
+ 0x50,0xa8,0x68,0x85,0x51,0x68,0x85,0x50,
+ 0x4c,0x01,0xe3,0x20,0x46,0xe7,0x8a,0xa0,
+ 0x00,0x91,0x50,0x60,0x20,0x46,0xe7,0x86,
+ 0x85,0xa2,0x00,0x20,0xb7,0x00,0xf0,0x03,
+ 0x20,0x4c,0xe7,0x86,0x86,0xa0,0x00,0xb1,
+ 0x50,0x45,0x86,0x25,0x85,0xf0,0xf8,0x60,
+ 0xa9,0x64,0xa0,0xee,0x4c,0xbe,0xe7,0x20,
+ 0xe3,0xe9,0xa5,0xa2,0x49,0xff,0x85,0xa2,
+ 0x45,0xaa,0x85,0xab,0xa5,0x9d,0x4c,0xc1,
+ 0xe7,0x20,0xf0,0xe8,0x90,0x3c,0x20,0xe3,
+ 0xe9,0xd0,0x03,0x4c,0x53,0xeb,0xa6,0xac,
+ 0x86,0x92,0xa2,0xa5,0xa5,0xa5,0xa8,0xf0,
+ 0xce,0x38,0xe5,0x9d,0xf0,0x24,0x90,0x12,
+ 0x84,0x9d,0xa4,0xaa,0x84,0xa2,0x49,0xff,
+ 0x69,0x00,0xa0,0x00,0x84,0x92,0xa2,0x9d,
+ 0xd0,0x04,0xa0,0x00,0x84,0xac,0xc9,0xf9,
+ 0x30,0xc7,0xa8,0xa5,0xac,0x56,0x01,0x20,
+ 0x07,0xe9,0x24,0xab,0x10,0x57,0xa0,0x9d,
+ 0xe0,0xa5,0xf0,0x02,0xa0,0xa5,0x38,0x49,
+ 0xff,0x65,0x92,0x85,0xac,0xb9,0x04,0x00,
+ 0xf5,0x04,0x85,0xa1,0xb9,0x03,0x00,0xf5,
+ 0x03,0x85,0xa0,0xb9,0x02,0x00,0xf5,0x02,
+ 0x85,0x9f,0xb9,0x01,0x00,0xf5,0x01,0x85,
+ 0x9e,0xb0,0x03,0x20,0x9e,0xe8,0xa0,0x00,
+ 0x98,0x18,0xa6,0x9e,0xd0,0x4a,0xa6,0x9f,
+ 0x86,0x9e,0xa6,0xa0,0x86,0x9f,0xa6,0xa1,
+ 0x86,0xa0,0xa6,0xac,0x86,0xa1,0x84,0xac,
+ 0x69,0x08,0xc9,0x20,0xd0,0xe4,0xa9,0x00,
+ 0x85,0x9d,0x85,0xa2,0x60,0x65,0x92,0x85,
+ 0xac,0xa5,0xa1,0x65,0xa9,0x85,0xa1,0xa5,
+ 0xa0,0x65,0xa8,0x85,0xa0,0xa5,0x9f,0x65,
+ 0xa7,0x85,0x9f,0xa5,0x9e,0x65,0xa6,0x85,
+ 0x9e,0x4c,0x8d,0xe8,0x69,0x01,0x06,0xac,
+ 0x26,0xa1,0x26,0xa0,0x26,0x9f,0x26,0x9e,
+ 0x10,0xf2,0x38,0xe5,0x9d,0xb0,0xc7,0x49,
+ 0xff,0x69,0x01,0x85,0x9d,0x90,0x0e,0xe6,
+ 0x9d,0xf0,0x42,0x66,0x9e,0x66,0x9f,0x66,
+ 0xa0,0x66,0xa1,0x66,0xac,0x60,0xa5,0xa2,
+ 0x49,0xff,0x85,0xa2,0xa5,0x9e,0x49,0xff,
+ 0x85,0x9e,0xa5,0x9f,0x49,0xff,0x85,0x9f,
+ 0xa5,0xa0,0x49,0xff,0x85,0xa0,0xa5,0xa1,
+ 0x49,0xff,0x85,0xa1,0xa5,0xac,0x49,0xff,
+ 0x85,0xac,0xe6,0xac,0xd0,0x0e,0xe6,0xa1,
+ 0xd0,0x0a,0xe6,0xa0,0xd0,0x06,0xe6,0x9f,
+ 0xd0,0x02,0xe6,0x9e,0x60,0xa2,0x45,0x4c,
+ 0x12,0xd4,0xa2,0x61,0xb4,0x04,0x84,0xac,
+ 0xb4,0x03,0x94,0x04,0xb4,0x02,0x94,0x03,
+ 0xb4,0x01,0x94,0x02,0xa4,0xa4,0x94,0x01,
+ 0x69,0x08,0x30,0xe8,0xf0,0xe6,0xe9,0x08,
+ 0xa8,0xa5,0xac,0xb0,0x14,0x16,0x01,0x90,
+ 0x02,0xf6,0x01,0x76,0x01,0x76,0x01,0x76,
+ 0x02,0x76,0x03,0x76,0x04,0x6a,0xc8,0xd0,
+ 0xec,0x18,0x60,0x81,0x00,0x00,0x00,0x00,
+ 0x03,0x7f,0x5e,0x56,0xcb,0x79,0x80,0x13,
+ 0x9b,0x0b,0x64,0x80,0x76,0x38,0x93,0x16,
+ 0x82,0x38,0xaa,0x3b,0x20,0x80,0x35,0x04,
+ 0xf3,0x34,0x81,0x35,0x04,0xf3,0x34,0x80,
+ 0x80,0x00,0x00,0x00,0x80,0x31,0x72,0x17,
+ 0xf8,0x20,0x82,0xeb,0xf0,0x02,0x10,0x03,
+ 0x4c,0x99,0xe1,0xa5,0x9d,0xe9,0x7f,0x48,
+ 0xa9,0x80,0x85,0x9d,0xa9,0x2d,0xa0,0xe9,
+ 0x20,0xbe,0xe7,0xa9,0x32,0xa0,0xe9,0x20,
+ 0x66,0xea,0xa9,0x13,0xa0,0xe9,0x20,0xa7,
+ 0xe7,0xa9,0x18,0xa0,0xe9,0x20,0x5c,0xef,
+ 0xa9,0x37,0xa0,0xe9,0x20,0xbe,0xe7,0x68,
+ 0x20,0xd5,0xec,0xa9,0x3c,0xa0,0xe9,0x20,
+ 0xe3,0xe9,0xd0,0x03,0x4c,0xe2,0xe9,0x20,
+ 0x0e,0xea,0xa9,0x00,0x85,0x62,0x85,0x63,
+ 0x85,0x64,0x85,0x65,0xa5,0xac,0x20,0xb0,
+ 0xe9,0xa5,0xa1,0x20,0xb0,0xe9,0xa5,0xa0,
+ 0x20,0xb0,0xe9,0xa5,0x9f,0x20,0xb0,0xe9,
+ 0xa5,0x9e,0x20,0xb5,0xe9,0x4c,0xe6,0xea,
+ 0xd0,0x03,0x4c,0xda,0xe8,0x4a,0x09,0x80,
+ 0xa8,0x90,0x19,0x18,0xa5,0x65,0x65,0xa9,
+ 0x85,0x65,0xa5,0x64,0x65,0xa8,0x85,0x64,
+ 0xa5,0x63,0x65,0xa7,0x85,0x63,0xa5,0x62,
+ 0x65,0xa6,0x85,0x62,0x66,0x62,0x66,0x63,
+ 0x66,0x64,0x66,0x65,0x66,0xac,0x98,0x4a,
+ 0xd0,0xd6,0x60,0x85,0x5e,0x84,0x5f,0xa0,
+ 0x04,0xb1,0x5e,0x85,0xa9,0x88,0xb1,0x5e,
+ 0x85,0xa8,0x88,0xb1,0x5e,0x85,0xa7,0x88,
+ 0xb1,0x5e,0x85,0xaa,0x45,0xa2,0x85,0xab,
+ 0xa5,0xaa,0x09,0x80,0x85,0xa6,0x88,0xb1,
+ 0x5e,0x85,0xa5,0xa5,0x9d,0x60,0xa5,0xa5,
+ 0xf0,0x1f,0x18,0x65,0x9d,0x90,0x04,0x30,
+ 0x1d,0x18,0x2c,0x10,0x14,0x69,0x80,0x85,
+ 0x9d,0xd0,0x03,0x4c,0x52,0xe8,0xa5,0xab,
+ 0x85,0xa2,0x60,0xa5,0xa2,0x49,0xff,0x30,
+ 0x05,0x68,0x68,0x4c,0x4e,0xe8,0x4c,0xd5,
+ 0xe8,0x20,0x63,0xeb,0xaa,0xf0,0x10,0x18,
+ 0x69,0x02,0xb0,0xf2,0xa2,0x00,0x86,0xab,
+ 0x20,0xce,0xe7,0xe6,0x9d,0xf0,0xe7,0x60,
+ 0x84,0x20,0x00,0x00,0x00,0x20,0x63,0xeb,
+ 0xa9,0x50,0xa0,0xea,0xa2,0x00,0x86,0xab,
+ 0x20,0xf9,0xea,0x4c,0x69,0xea,0x20,0xe3,
+ 0xe9,0xf0,0x76,0x20,0x72,0xeb,0xa9,0x00,
+ 0x38,0xe5,0x9d,0x85,0x9d,0x20,0x0e,0xea,
+ 0xe6,0x9d,0xf0,0xba,0xa2,0xfc,0xa9,0x01,
+ 0xa4,0xa6,0xc4,0x9e,0xd0,0x10,0xa4,0xa7,
+ 0xc4,0x9f,0xd0,0x0a,0xa4,0xa8,0xc4,0xa0,
+ 0xd0,0x04,0xa4,0xa9,0xc4,0xa1,0x08,0x2a,
+ 0x90,0x09,0xe8,0x95,0x65,0xf0,0x32,0x10,
+ 0x34,0xa9,0x01,0x28,0xb0,0x0e,0x06,0xa9,
+ 0x26,0xa8,0x26,0xa7,0x26,0xa6,0xb0,0xe6,
+ 0x30,0xce,0x10,0xe2,0xa8,0xa5,0xa9,0xe5,
+ 0xa1,0x85,0xa9,0xa5,0xa8,0xe5,0xa0,0x85,
+ 0xa8,0xa5,0xa7,0xe5,0x9f,0x85,0xa7,0xa5,
+ 0xa6,0xe5,0x9e,0x85,0xa6,0x98,0x4c,0xa6,
+ 0xea,0xa9,0x40,0xd0,0xce,0x0a,0x0a,0x0a,
+ 0x0a,0x0a,0x0a,0x85,0xac,0x28,0x4c,0xe6,
+ 0xea,0xa2,0x85,0x4c,0x12,0xd4,0xa5,0x62,
+ 0x85,0x9e,0xa5,0x63,0x85,0x9f,0xa5,0x64,
+ 0x85,0xa0,0xa5,0x65,0x85,0xa1,0x4c,0x2e,
+ 0xe8,0x85,0x5e,0x84,0x5f,0xa0,0x04,0xb1,
+ 0x5e,0x85,0xa1,0x88,0xb1,0x5e,0x85,0xa0,
+ 0x88,0xb1,0x5e,0x85,0x9f,0x88,0xb1,0x5e,
+ 0x85,0xa2,0x09,0x80,0x85,0x9e,0x88,0xb1,
+ 0x5e,0x85,0x9d,0x84,0xac,0x60,0xa2,0x98,
+ 0x2c,0xa2,0x93,0xa0,0x00,0xf0,0x04,0xa6,
+ 0x85,0xa4,0x86,0x20,0x72,0xeb,0x86,0x5e,
+ 0x84,0x5f,0xa0,0x04,0xa5,0xa1,0x91,0x5e,
+ 0x88,0xa5,0xa0,0x91,0x5e,0x88,0xa5,0x9f,
+ 0x91,0x5e,0x88,0xa5,0xa2,0x09,0x7f,0x25,
+ 0x9e,0x91,0x5e,0x88,0xa5,0x9d,0x91,0x5e,
+ 0x84,0xac,0x60,0xa5,0xaa,0x85,0xa2,0xa2,
+ 0x05,0xb5,0xa4,0x95,0x9c,0xca,0xd0,0xf9,
+ 0x86,0xac,0x60,0x20,0x72,0xeb,0xa2,0x06,
+ 0xb5,0x9c,0x95,0xa4,0xca,0xd0,0xf9,0x86,
+ 0xac,0x60,0xa5,0x9d,0xf0,0xfb,0x06,0xac,
+ 0x90,0xf7,0x20,0xc6,0xe8,0xd0,0xf2,0x4c,
+ 0x8f,0xe8,0xa5,0x9d,0xf0,0x09,0xa5,0xa2,
+ 0x2a,0xa9,0xff,0xb0,0x02,0xa9,0x01,0x60,
+ 0x20,0x82,0xeb,0x85,0x9e,0xa9,0x00,0x85,
+ 0x9f,0xa2,0x88,0xa5,0x9e,0x49,0xff,0x2a,
+ 0xa9,0x00,0x85,0xa1,0x85,0xa0,0x86,0x9d,
+ 0x85,0xac,0x85,0xa2,0x4c,0x29,0xe8,0x46,
+ 0xa2,0x60,0x85,0x60,0x84,0x61,0xa0,0x00,
+ 0xb1,0x60,0xc8,0xaa,0xf0,0xc4,0xb1,0x60,
+ 0x45,0xa2,0x30,0xc2,0xe4,0x9d,0xd0,0x21,
+ 0xb1,0x60,0x09,0x80,0xc5,0x9e,0xd0,0x19,
+ 0xc8,0xb1,0x60,0xc5,0x9f,0xd0,0x12,0xc8,
+ 0xb1,0x60,0xc5,0xa0,0xd0,0x0b,0xc8,0xa9,
+ 0x7f,0xc5,0xac,0xb1,0x60,0xe5,0xa1,0xf0,
+ 0x28,0xa5,0xa2,0x90,0x02,0x49,0xff,0x4c,
+ 0x88,0xeb,0xa5,0x9d,0xf0,0x4a,0x38,0xe9,
+ 0xa0,0x24,0xa2,0x10,0x09,0xaa,0xa9,0xff,
+ 0x85,0xa4,0x20,0xa4,0xe8,0x8a,0xa2,0x9d,
+ 0xc9,0xf9,0x10,0x06,0x20,0xf0,0xe8,0x84,
+ 0xa4,0x60,0xa8,0xa5,0xa2,0x29,0x80,0x46,
+ 0x9e,0x05,0x9e,0x85,0x9e,0x20,0x07,0xe9,
+ 0x84,0xa4,0x60,0xa5,0x9d,0xc9,0xa0,0xb0,
+ 0x20,0x20,0xf2,0xeb,0x84,0xac,0xa5,0xa2,
+ 0x84,0xa2,0x49,0x80,0x2a,0xa9,0xa0,0x85,
+ 0x9d,0xa5,0xa1,0x85,0x0d,0x4c,0x29,0xe8,
+ 0x85,0x9e,0x85,0x9f,0x85,0xa0,0x85,0xa1,
+ 0xa8,0x60,0xa0,0x00,0xa2,0x0a,0x94,0x99,
+ 0xca,0x10,0xfb,0x90,0x0f,0xc9,0x2d,0xd0,
+ 0x04,0x86,0xa3,0xf0,0x04,0xc9,0x2b,0xd0,
+ 0x05,0x20,0xb1,0x00,0x90,0x5b,0xc9,0x2e,
+ 0xf0,0x2e,0xc9,0x45,0xd0,0x30,0x20,0xb1,
+ 0x00,0x90,0x17,0xc9,0xc9,0xf0,0x0e,0xc9,
+ 0x2d,0xf0,0x0a,0xc9,0xc8,0xf0,0x08,0xc9,
+ 0x2b,0xf0,0x04,0xd0,0x07,0x66,0x9c,0x20,
+ 0xb1,0x00,0x90,0x5c,0x24,0x9c,0x10,0x0e,
+ 0xa9,0x00,0x38,0xe5,0x9a,0x4c,0xa0,0xec,
+ 0x66,0x9b,0x24,0x9b,0x50,0xc3,0xa5,0x9a,
+ 0x38,0xe5,0x99,0x85,0x9a,0xf0,0x12,0x10,
+ 0x09,0x20,0x55,0xea,0xe6,0x9a,0xd0,0xf9,
+ 0xf0,0x07,0x20,0x39,0xea,0xc6,0x9a,0xd0,
+ 0xf9,0xa5,0xa3,0x30,0x01,0x60,0x4c,0xd0,
+ 0xee,0x48,0x24,0x9b,0x10,0x02,0xe6,0x99,
+ 0x20,0x39,0xea,0x68,0x38,0xe9,0x30,0x20,
+ 0xd5,0xec,0x4c,0x61,0xec,0x48,0x20,0x63,
+ 0xeb,0x68,0x20,0x93,0xeb,0xa5,0xaa,0x45,
+ 0xa2,0x85,0xab,0xa6,0x9d,0x4c,0xc1,0xe7,
+ 0xa5,0x9a,0xc9,0x0a,0x90,0x09,0xa9,0x64,
+ 0x24,0x9c,0x30,0x11,0x4c,0xd5,0xe8,0x0a,
+ 0x0a,0x18,0x65,0x9a,0x0a,0x18,0xa0,0x00,
+ 0x71,0xb8,0x38,0xe9,0x30,0x85,0x9a,0x4c,
+ 0x87,0xec,0x9b,0x3e,0xbc,0x1f,0xfd,0x9e,
+ 0x6e,0x6b,0x27,0xfd,0x9e,0x6e,0x6b,0x28,
+ 0x00,0xa9,0x58,0xa0,0xd3,0x20,0x31,0xed,
+ 0xa5,0x76,0xa6,0x75,0x85,0x9e,0x86,0x9f,
+ 0xa2,0x90,0x38,0x20,0xa0,0xeb,0x20,0x34,
+ 0xed,0x4c,0x3a,0xdb,0xa0,0x01,0xa9,0x2d,
+ 0x88,0x24,0xa2,0x10,0x04,0xc8,0x99,0xff,
+ 0x00,0x85,0xa2,0x84,0xad,0xc8,0xa9,0x30,
+ 0xa6,0x9d,0xd0,0x03,0x4c,0x57,0xee,0xa9,
+ 0x00,0xe0,0x80,0xf0,0x02,0xb0,0x09,0xa9,
+ 0x14,0xa0,0xed,0x20,0x7f,0xe9,0xa9,0xf7,
+ 0x85,0x99,0xa9,0x0f,0xa0,0xed,0x20,0xb2,
+ 0xeb,0xf0,0x1e,0x10,0x12,0xa9,0x0a,0xa0,
+ 0xed,0x20,0xb2,0xeb,0xf0,0x02,0x10,0x0e,
+ 0x20,0x39,0xea,0xc6,0x99,0xd0,0xee,0x20,
+ 0x55,0xea,0xe6,0x99,0xd0,0xdc,0x20,0xa0,
+ 0xe7,0x20,0xf2,0xeb,0xa2,0x01,0xa5,0x99,
+ 0x18,0x69,0x0a,0x30,0x09,0xc9,0x0b,0xb0,
+ 0x06,0x69,0xff,0xaa,0xa9,0x02,0x38,0xe9,
+ 0x02,0x85,0x9a,0x86,0x99,0x8a,0xf0,0x02,
+ 0x10,0x13,0xa4,0xad,0xa9,0x2e,0xc8,0x99,
+ 0xff,0x00,0x8a,0xf0,0x06,0xa9,0x30,0xc8,
+ 0x99,0xff,0x00,0x84,0xad,0xa0,0x00,0xa2,
+ 0x80,0xa5,0xa1,0x18,0x79,0x6c,0xee,0x85,
+ 0xa1,0xa5,0xa0,0x79,0x6b,0xee,0x85,0xa0,
+ 0xa5,0x9f,0x79,0x6a,0xee,0x85,0x9f,0xa5,
+ 0x9e,0x79,0x69,0xee,0x85,0x9e,0xe8,0xb0,
+ 0x04,0x10,0xde,0x30,0x02,0x30,0xda,0x8a,
+ 0x90,0x04,0x49,0xff,0x69,0x0a,0x69,0x2f,
+ 0xc8,0xc8,0xc8,0xc8,0x84,0x83,0xa4,0xad,
+ 0xc8,0xaa,0x29,0x7f,0x99,0xff,0x00,0xc6,
+ 0x99,0xd0,0x06,0xa9,0x2e,0xc8,0x99,0xff,
+ 0x00,0x84,0xad,0xa4,0x83,0x8a,0x49,0xff,
+ 0x29,0x80,0xaa,0xc0,0x24,0xd0,0xaa,0xa4,
+ 0xad,0xb9,0xff,0x00,0x88,0xc9,0x30,0xf0,
+ 0xf8,0xc9,0x2e,0xf0,0x01,0xc8,0xa9,0x2b,
+ 0xa6,0x9a,0xf0,0x2e,0x10,0x08,0xa9,0x00,
+ 0x38,0xe5,0x9a,0xaa,0xa9,0x2d,0x99,0x01,
+ 0x01,0xa9,0x45,0x99,0x00,0x01,0x8a,0xa2,
+ 0x2f,0x38,0xe8,0xe9,0x0a,0xb0,0xfb,0x69,
+ 0x3a,0x99,0x03,0x01,0x8a,0x99,0x02,0x01,
+ 0xa9,0x00,0x99,0x04,0x01,0xf0,0x08,0x99,
+ 0xff,0x00,0xa9,0x00,0x99,0x00,0x01,0xa9,
+ 0x00,0xa0,0x01,0x60,0x80,0x00,0x00,0x00,
+ 0x00,0xfa,0x0a,0x1f,0x00,0x00,0x98,0x96,
+ 0x80,0xff,0xf0,0xbd,0xc0,0x00,0x01,0x86,
+ 0xa0,0xff,0xff,0xd8,0xf0,0x00,0x00,0x03,
+ 0xe8,0xff,0xff,0xff,0x9c,0x00,0x00,0x00,
+ 0x0a,0xff,0xff,0xff,0xff,0x20,0x63,0xeb,
+ 0xa9,0x64,0xa0,0xee,0x20,0xf9,0xea,0xf0,
+ 0x70,0xa5,0xa5,0xd0,0x03,0x4c,0x50,0xe8,
+ 0xa2,0x8a,0xa0,0x00,0x20,0x2b,0xeb,0xa5,
+ 0xaa,0x10,0x0f,0x20,0x23,0xec,0xa9,0x8a,
+ 0xa0,0x00,0x20,0xb2,0xeb,0xd0,0x03,0x98,
+ 0xa4,0x0d,0x20,0x55,0xeb,0x98,0x48,0x20,
+ 0x41,0xe9,0xa9,0x8a,0xa0,0x00,0x20,0x7f,
+ 0xe9,0x20,0x09,0xef,0x68,0x4a,0x90,0x0a,
+ 0xa5,0x9d,0xf0,0x06,0xa5,0xa2,0x49,0xff,
+ 0x85,0xa2,0x60,0x81,0x38,0xaa,0x3b,0x29,
+ 0x07,0x71,0x34,0x58,0x3e,0x56,0x74,0x16,
+ 0x7e,0xb3,0x1b,0x77,0x2f,0xee,0xe3,0x85,
+ 0x7a,0x1d,0x84,0x1c,0x2a,0x7c,0x63,0x59,
+ 0x58,0x0a,0x7e,0x75,0xfd,0xe7,0xc6,0x80,
+ 0x31,0x72,0x18,0x10,0x81,0x00,0x00,0x00,
+ 0x00,0xa9,0xdb,0xa0,0xee,0x20,0x7f,0xe9,
+ 0xa5,0xac,0x69,0x50,0x90,0x03,0x20,0x7a,
+ 0xeb,0x85,0x92,0x20,0x66,0xeb,0xa5,0x9d,
+ 0xc9,0x88,0x90,0x03,0x20,0x2b,0xea,0x20,
+ 0x23,0xec,0xa5,0x0d,0x18,0x69,0x81,0xf0,
+ 0xf3,0x38,0xe9,0x01,0x48,0xa2,0x05,0xb5,
+ 0xa5,0xb4,0x9d,0x95,0x9d,0x94,0xa5,0xca,
+ 0x10,0xf5,0xa5,0x92,0x85,0xac,0x20,0xaa,
+ 0xe7,0x20,0xd0,0xee,0xa9,0xe0,0xa0,0xee,
+ 0x20,0x72,0xef,0xa9,0x00,0x85,0xab,0x68,
+ 0x20,0x10,0xea,0x60,0x85,0xad,0x84,0xae,
+ 0x20,0x21,0xeb,0xa9,0x93,0x20,0x7f,0xe9,
+ 0x20,0x76,0xef,0xa9,0x93,0xa0,0x00,0x4c,
+ 0x7f,0xe9,0x85,0xad,0x84,0xae,0x20,0x1e,
+ 0xeb,0xb1,0xad,0x85,0xa3,0xa4,0xad,0xc8,
+ 0x98,0xd0,0x02,0xe6,0xae,0x85,0xad,0xa4,
+ 0xae,0x20,0x7f,0xe9,0xa5,0xad,0xa4,0xae,
+ 0x18,0x69,0x05,0x90,0x01,0xc8,0x85,0xad,
+ 0x84,0xae,0x20,0xbe,0xe7,0xa9,0x98,0xa0,
+ 0x00,0xc6,0xa3,0xd0,0xe4,0x60,0x98,0x35,
+ 0x44,0x7a,0x68,0x28,0xb1,0x46,0x20,0x82,
+ 0xeb,0xaa,0x30,0x18,0xa9,0xc9,0xa0,0x00,
+ 0x20,0xf9,0xea,0x8a,0xf0,0xe7,0xa9,0xa6,
+ 0xa0,0xef,0x20,0x7f,0xe9,0xa9,0xaa,0xa0,
+ 0xef,0x20,0xbe,0xe7,0xa6,0xa1,0xa5,0x9e,
+ 0x85,0xa1,0x86,0x9e,0xa9,0x00,0x85,0xa2,
+ 0xa5,0x9d,0x85,0xac,0xa9,0x80,0x85,0x9d,
+ 0x20,0x2e,0xe8,0xa2,0xc9,0xa0,0x00,0x4c,
+ 0x2b,0xeb,0xa9,0x66,0xa0,0xf0,0x20,0xbe,
+ 0xe7,0x20,0x63,0xeb,0xa9,0x6b,0xa0,0xf0,
+ 0xa6,0xaa,0x20,0x5e,0xea,0x20,0x63,0xeb,
+ 0x20,0x23,0xec,0xa9,0x00,0x85,0xab,0x20,
+ 0xaa,0xe7,0xa9,0x70,0xa0,0xf0,0x20,0xa7,
+ 0xe7,0xa5,0xa2,0x48,0x10,0x0d,0x20,0xa0,
+ 0xe7,0xa5,0xa2,0x30,0x09,0xa5,0x16,0x49,
+ 0xff,0x85,0x16,0x20,0xd0,0xee,0xa9,0x70,
+ 0xa0,0xf0,0x20,0xbe,0xe7,0x68,0x10,0x03,
+ 0x20,0xd0,0xee,0xa9,0x75,0xa0,0xf0,0x4c,
+ 0x5c,0xef,0x20,0x21,0xeb,0xa9,0x00,0x85,
+ 0x16,0x20,0xf1,0xef,0xa2,0x8a,0xa0,0x00,
+ 0x20,0xe7,0xef,0xa9,0x93,0xa0,0x00,0x20,
+ 0xf9,0xea,0xa9,0x00,0x85,0xa2,0xa5,0x16,
+ 0x20,0x62,0xf0,0xa9,0x8a,0xa0,0x00,0x4c,
+ 0x66,0xea,0x48,0x4c,0x23,0xf0,0x81,0x49,
+ 0x0f,0xda,0xa2,0x83,0x49,0x0f,0xda,0xa2,
+ 0x7f,0x00,0x00,0x00,0x00,0x05,0x84,0xe6,
+ 0x1a,0x2d,0x1b,0x86,0x28,0x07,0xfb,0xf8,
+ 0x87,0x99,0x68,0x89,0x01,0x87,0x23,0x35,
+ 0xdf,0xe1,0x86,0xa5,0x5d,0xe7,0x28,0x83,
+ 0x49,0x0f,0xda,0xa2,0xa6,0xd3,0xc1,0xc8,
+ 0xd4,0xc8,0xd5,0xc4,0xce,0xca,0xa5,0xa2,
+ 0x48,0x10,0x03,0x20,0xd0,0xee,0xa5,0x9d,
+ 0x48,0xc9,0x81,0x90,0x07,0xa9,0x13,0xa0,
+ 0xe9,0x20,0x66,0xea,0xa9,0xce,0xa0,0xf0,
+ 0x20,0x5c,0xef,0x68,0xc9,0x81,0x90,0x07,
+ 0xa9,0x66,0xa0,0xf0,0x20,0xa7,0xe7,0x68,
+ 0x10,0x03,0x4c,0xd0,0xee,0x60,0x0b,0x76,
+ 0xb3,0x83,0xbd,0xd3,0x79,0x1e,0xf4,0xa6,
+ 0xf5,0x7b,0x83,0xfc,0xb0,0x10,0x7c,0x0c,
+ 0x1f,0x67,0xca,0x7c,0xde,0x53,0xcb,0xc1,
+ 0x7d,0x14,0x64,0x70,0x4c,0x7d,0xb7,0xea,
+ 0x51,0x7a,0x7d,0x63,0x30,0x88,0x7e,0x7e,
+ 0x92,0x44,0x99,0x3a,0x7e,0x4c,0xcc,0x91,
+ 0xc7,0x7f,0xaa,0xaa,0xaa,0x13,0x81,0x00,
+ 0x00,0x00,0x00,0xe6,0xb8,0xd0,0x02,0xe6,
+ 0xb9,0xad,0x60,0xea,0xc9,0x3a,0xb0,0x0a,
+ 0xc9,0x20,0xf0,0xef,0x38,0xe9,0x30,0x38,
+ 0xe9,0xd0,0x60,0x80,0x4f,0xc7,0x52,0x58,
+ 0xa2,0xff,0x86,0x76,0xa2,0xfb,0x9a,0xa9,
+ 0x28,0xa0,0xf1,0x85,0x01,0x84,0x02,0x85,
+ 0x04,0x84,0x05,0x20,0x73,0xf2,0xa9,0x4c,
+ 0x85,0x00,0x85,0x03,0x85,0x90,0x85,0x0a,
+ 0xa9,0x99,0xa0,0xe1,0x85,0x0b,0x84,0x0c,
+ 0xa2,0x1c,0xbd,0x0a,0xf1,0x95,0xb0,0x86,
+ 0xf1,0xca,0xd0,0xf6,0x86,0xf2,0x8a,0x85,
+ 0xa4,0x85,0x54,0x48,0xa9,0x03,0x85,0x8f,
+ 0x20,0xfb,0xda,0xa9,0x01,0x8d,0xfd,0x01,
+ 0x8d,0xfc,0x01,0xa2,0x55,0x86,0x52,0xa9,
+ 0x00,0xa0,0x08,0x85,0x50,0x84,0x51,0xa0,
+ 0x00,0xe6,0x51,0xb1,0x50,0x49,0xff,0x91,
+ 0x50,0xd1,0x50,0xd0,0x08,0x49,0xff,0x91,
+ 0x50,0xd1,0x50,0xf0,0xec,0xa4,0x50,0xa5,
+ 0x51,0x29,0xf0,0x84,0x73,0x85,0x74,0x84,
+ 0x6f,0x85,0x70,0xa2,0x00,0xa0,0x08,0x86,
+ 0x67,0x84,0x68,0xa0,0x00,0x84,0xd6,0x98,
+ 0x91,0x67,0xe6,0x67,0xd0,0x02,0xe6,0x68,
+ 0xa5,0x67,0xa4,0x68,0x20,0xe3,0xd3,0x20,
+ 0x4b,0xd6,0xa9,0x3a,0xa0,0xdb,0x85,0x04,
+ 0x84,0x05,0xa9,0x3c,0xa0,0xd4,0x85,0x01,
+ 0x84,0x02,0x6c,0x01,0x00,0x20,0x67,0xdd,
+ 0x20,0x52,0xe7,0x6c,0x50,0x00,0x20,0xf8,
+ 0xe6,0x8a,0x4c,0x8b,0xfe,0x20,0xf8,0xe6,
+ 0x8a,0x4c,0x95,0xfe,0x20,0xf8,0xe6,0xe0,
+ 0x30,0xb0,0x13,0x86,0xf0,0xa9,0x2c,0x20,
+ 0xc0,0xde,0x20,0xf8,0xe6,0xe0,0x30,0xb0,
+ 0x05,0x86,0x2c,0x86,0x2d,0x60,0x4c,0x99,
+ 0xe1,0x20,0xec,0xf1,0xe4,0xf0,0xb0,0x08,
+ 0xa5,0xf0,0x85,0x2c,0x85,0x2d,0x86,0xf0,
+ 0xa9,0xc5,0x20,0xc0,0xde,0x20,0xf8,0xe6,
+ 0xe0,0x30,0xb0,0xe2,0x60,0x20,0xec,0xf1,
+ 0x8a,0xa4,0xf0,0xc0,0x28,0xb0,0xd7,0x4c,
+ 0x00,0xf8,0x20,0x09,0xf2,0x8a,0xa4,0x2c,
+ 0xc0,0x28,0xb0,0xca,0xa4,0xf0,0x4c,0x19,
+ 0xf8,0x20,0x09,0xf2,0x8a,0xa8,0xc0,0x28,
+ 0xb0,0xbc,0xa5,0xf0,0x4c,0x28,0xf8,0x20,
+ 0xf8,0xe6,0x8a,0x4c,0x64,0xf8,0x20,0xf8,
+ 0xe6,0xca,0x8a,0xc9,0x18,0xb0,0xa7,0x4c,
+ 0x5b,0xfb,0x20,0xf8,0xe6,0x8a,0x49,0xff,
+ 0xaa,0xe8,0x86,0xf1,0x60,0x38,0x90,0x18,
+ 0x66,0xf2,0x60,0xa9,0xff,0xd0,0x02,0xa9,
+ 0x3f,0xa2,0x00,0x85,0x32,0x86,0xf3,0x60,
+ 0xa9,0x7f,0xa2,0x40,0xd0,0xf5,0x20,0x67,
+ 0xdd,0x20,0x52,0xe7,0xa5,0x50,0xc5,0x6d,
+ 0xa5,0x51,0xe5,0x6e,0xb0,0x03,0x4c,0x10,
+ 0xd4,0xa5,0x50,0x85,0x73,0x85,0x6f,0xa5,
+ 0x51,0x85,0x74,0x85,0x70,0x60,0x20,0x67,
+ 0xdd,0x20,0x52,0xe7,0xa5,0x50,0xc5,0x73,
+ 0xa5,0x51,0xe5,0x74,0xb0,0xe0,0xa5,0x50,
+ 0xc5,0x69,0xa5,0x51,0xe5,0x6a,0x90,0xd6,
+ 0xa5,0x50,0x85,0x69,0xa5,0x51,0x85,0x6a,
+ 0x4c,0x6c,0xd6,0xa9,0xab,0x20,0xc0,0xde,
+ 0xa5,0xb8,0x85,0xf4,0xa5,0xb9,0x85,0xf5,
+ 0x38,0x66,0xd8,0xa5,0x75,0x85,0xf6,0xa5,
+ 0x76,0x85,0xf7,0x20,0xa6,0xd9,0x4c,0x98,
+ 0xd9,0x86,0xde,0xa6,0xf8,0x86,0xdf,0xa5,
+ 0x75,0x85,0xda,0xa5,0x76,0x85,0xdb,0xa5,
+ 0x79,0x85,0xdc,0xa5,0x7a,0x85,0xdd,0xa5,
+ 0xf4,0x85,0xb8,0xa5,0xf5,0x85,0xb9,0xa5,
+ 0xf6,0x85,0x75,0xa5,0xf7,0x85,0x76,0x20,
+ 0xb7,0x00,0x20,0x3e,0xd9,0x4c,0xd2,0xd7,
+ 0xa5,0xda,0x85,0x75,0xa5,0xdb,0x85,0x76,
+ 0xa5,0xdc,0x85,0xb8,0xa5,0xdd,0x85,0xb9,
+ 0xa6,0xdf,0x9a,0x4c,0xd2,0xd7,0x4c,0xc9,
+ 0xde,0xb0,0xfb,0xa6,0xaf,0x86,0x69,0xa6,
+ 0xb0,0x86,0x6a,0x20,0x0c,0xda,0x20,0x1a,
+ 0xd6,0xa5,0x9b,0x85,0x60,0xa5,0x9c,0x85,
+ 0x61,0xa9,0x2c,0x20,0xc0,0xde,0x20,0x0c,
+ 0xda,0xe6,0x50,0xd0,0x02,0xe6,0x51,0x20,
+ 0x1a,0xd6,0xa5,0x9b,0xc5,0x60,0xa5,0x9c,
+ 0xe5,0x61,0xb0,0x01,0x60,0xa0,0x00,0xb1,
+ 0x9b,0x91,0x60,0xe6,0x9b,0xd0,0x02,0xe6,
+ 0x9c,0xe6,0x60,0xd0,0x02,0xe6,0x61,0xa5,
+ 0x69,0xc5,0x9b,0xa5,0x6a,0xe5,0x9c,0xb0,
+ 0xe6,0xa6,0x61,0xa4,0x60,0xd0,0x01,0xca,
+ 0x88,0x86,0x6a,0x84,0x69,0x4c,0xf2,0xd4,
+ 0xad,0x56,0xc0,0xad,0x53,0xc0,0x4c,0x40,
+ 0xfb,0xad,0x54,0xc0,0x4c,0x39,0xfb,0x20,
+ 0xd9,0xf7,0xa0,0x03,0xb1,0x9b,0xaa,0x88,
+ 0xb1,0x9b,0xe9,0x01,0xb0,0x01,0xca,0x85,
+ 0x50,0x86,0x51,0x20,0xcd,0xfe,0x20,0xbc,
+ 0xf7,0x4c,0xcd,0xfe,0x20,0xd9,0xf7,0x20,
+ 0xfd,0xfe,0xa0,0x02,0xb1,0x9b,0xc5,0x50,
+ 0xc8,0xb1,0x9b,0xe5,0x51,0xb0,0x03,0x4c,
+ 0x10,0xd4,0x20,0xbc,0xf7,0x4c,0xfd,0xfe,
+ 0x2c,0x55,0xc0,0x2c,0x52,0xc0,0xa9,0x40,
+ 0xd0,0x08,0xa9,0x20,0x2c,0x54,0xc0,0x2c,
+ 0x53,0xc0,0x85,0xe6,0xad,0x57,0xc0,0xad,
+ 0x50,0xc0,0xa9,0x00,0x85,0x1c,0xa5,0xe6,
+ 0x85,0x1b,0xa0,0x00,0x84,0x1a,0xa5,0x1c,
+ 0x91,0x1a,0x20,0x7e,0xf4,0xc8,0xd0,0xf6,
+ 0xe6,0x1b,0xa5,0x1b,0x29,0x1f,0xd0,0xee,
+ 0x60,0x85,0xe2,0x86,0xe0,0x84,0xe1,0x48,
+ 0x29,0xc0,0x85,0x26,0x4a,0x4a,0x05,0x26,
+ 0x85,0x26,0x68,0x85,0x27,0x0a,0x0a,0x0a,
+ 0x26,0x27,0x0a,0x26,0x27,0x0a,0x66,0x26,
+ 0xa5,0x27,0x29,0x1f,0x05,0xe6,0x85,0x27,
+ 0x8a,0xc0,0x00,0xf0,0x05,0xa0,0x23,0x69,
+ 0x04,0xc8,0xe9,0x07,0xb0,0xfb,0x84,0xe5,
+ 0xaa,0xbd,0xb9,0xf4,0x85,0x30,0x98,0x4a,
+ 0xa5,0xe4,0x85,0x1c,0xb0,0x28,0x60,0x20,
+ 0x11,0xf4,0xa5,0x1c,0x51,0x26,0x25,0x30,
+ 0x51,0x26,0x91,0x26,0x60,0x10,0x23,0xa5,
+ 0x30,0x4a,0xb0,0x05,0x49,0xc0,0x85,0x30,
+ 0x60,0x88,0x10,0x02,0xa0,0x27,0xa9,0xc0,
+ 0x85,0x30,0x84,0xe5,0xa5,0x1c,0x0a,0xc9,
+ 0xc0,0x10,0x06,0xa5,0x1c,0x49,0x7f,0x85,
+ 0x1c,0x60,0xa5,0x30,0x0a,0x49,0x80,0x30,
+ 0xdd,0xa9,0x81,0xc8,0xc0,0x28,0x90,0xe0,
+ 0xa0,0x00,0xb0,0xdc,0x18,0xa5,0xd1,0x29,
+ 0x04,0xf0,0x25,0xa9,0x7f,0x25,0x30,0x31,
+ 0x26,0xd0,0x19,0xe6,0xea,0xa9,0x7f,0x25,
+ 0x30,0x10,0x11,0x18,0xa5,0xd1,0x29,0x04,
+ 0xf0,0x0e,0xb1,0x26,0x45,0x1c,0x25,0x30,
+ 0xd0,0x02,0xe6,0xea,0x51,0x26,0x91,0x26,
+ 0xa5,0xd1,0x65,0xd3,0x29,0x03,0xc9,0x02,
+ 0x6a,0xb0,0x92,0x30,0x30,0x18,0xa5,0x27,
+ 0x2c,0xb9,0xf5,0xd0,0x22,0x06,0x26,0xb0,
+ 0x1a,0x2c,0xcd,0xf4,0xf0,0x05,0x69,0x1f,
+ 0x38,0xb0,0x12,0x69,0x23,0x48,0xa5,0x26,
+ 0x69,0xb0,0xb0,0x02,0x69,0xf0,0x85,0x26,
+ 0x68,0xb0,0x02,0x69,0x1f,0x66,0x26,0x69,
+ 0xfc,0x85,0x27,0x60,0x18,0xa5,0x27,0x69,
+ 0x04,0x2c,0xb9,0xf5,0xd0,0xf3,0x06,0x26,
+ 0x90,0x18,0x69,0xe0,0x18,0x2c,0x08,0xf5,
+ 0xf0,0x12,0xa5,0x26,0x69,0x50,0x49,0xf0,
+ 0xf0,0x02,0x49,0xf0,0x85,0x26,0xa5,0xe6,
+ 0x90,0x02,0x69,0xe0,0x66,0x26,0x90,0xd1,
+ 0x48,0xa9,0x00,0x85,0xe0,0x85,0xe1,0x85,
+ 0xe2,0x68,0x48,0x38,0xe5,0xe0,0x48,0x8a,
+ 0xe5,0xe1,0x85,0xd3,0xb0,0x0a,0x68,0x49,
+ 0xff,0x69,0x01,0x48,0xa9,0x00,0xe5,0xd3,
+ 0x85,0xd1,0x85,0xd5,0x68,0x85,0xd0,0x85,
+ 0xd4,0x68,0x85,0xe0,0x86,0xe1,0x98,0x18,
+ 0xe5,0xe2,0x90,0x04,0x49,0xff,0x69,0xfe,
+ 0x85,0xd2,0x84,0xe2,0x66,0xd3,0x38,0xe5,
+ 0xd0,0xaa,0xa9,0xff,0xe5,0xd1,0x85,0x1d,
+ 0xa4,0xe5,0xb0,0x05,0x0a,0x20,0x65,0xf4,
+ 0x38,0xa5,0xd4,0x65,0xd2,0x85,0xd4,0xa5,
+ 0xd5,0xe9,0x00,0x85,0xd5,0xb1,0x26,0x45,
+ 0x1c,0x25,0x30,0x51,0x26,0x91,0x26,0xe8,
+ 0xd0,0x04,0xe6,0x1d,0xf0,0x62,0xa5,0xd3,
+ 0xb0,0xda,0x20,0xd3,0xf4,0x18,0xa5,0xd4,
+ 0x65,0xd0,0x85,0xd4,0xa5,0xd5,0x65,0xd1,
+ 0x50,0xd9,0x81,0x82,0x84,0x88,0x90,0xa0,
+ 0xc0,0x1c,0xff,0xfe,0xfa,0xf4,0xec,0xe1,
+ 0xd4,0xc5,0xb4,0xa1,0x8d,0x78,0x61,0x49,
+ 0x31,0x18,0xff,0xa5,0x26,0x0a,0xa5,0x27,
+ 0x29,0x03,0x2a,0x05,0x26,0x0a,0x0a,0x0a,
+ 0x85,0xe2,0xa5,0x27,0x4a,0x4a,0x29,0x07,
+ 0x05,0xe2,0x85,0xe2,0xa5,0xe5,0x0a,0x65,
+ 0xe5,0x0a,0xaa,0xca,0xa5,0x30,0x29,0x7f,
+ 0xe8,0x4a,0xd0,0xfc,0x85,0xe1,0x8a,0x18,
+ 0x65,0xe5,0x90,0x02,0xe6,0xe1,0x85,0xe0,
+ 0x60,0x86,0x1a,0x84,0x1b,0xaa,0x4a,0x4a,
+ 0x4a,0x4a,0x85,0xd3,0x8a,0x29,0x0f,0xaa,
+ 0xbc,0xba,0xf5,0x84,0xd0,0x49,0x0f,0xaa,
+ 0xbc,0xbb,0xf5,0xc8,0x84,0xd2,0xa4,0xe5,
+ 0xa2,0x00,0x86,0xea,0xa1,0x1a,0x85,0xd1,
+ 0xa2,0x80,0x86,0xd4,0x86,0xd5,0xa6,0xe7,
+ 0xa5,0xd4,0x38,0x65,0xd0,0x85,0xd4,0x90,
+ 0x04,0x20,0xb3,0xf4,0x18,0xa5,0xd5,0x65,
+ 0xd2,0x85,0xd5,0x90,0x03,0x20,0xb4,0xf4,
+ 0xca,0xd0,0xe5,0xa5,0xd1,0x4a,0x4a,0x4a,
+ 0xd0,0xd4,0xe6,0x1a,0xd0,0x02,0xe6,0x1b,
+ 0xa1,0x1a,0xd0,0xca,0x60,0x86,0x1a,0x84,
+ 0x1b,0xaa,0x4a,0x4a,0x4a,0x4a,0x85,0xd3,
+ 0x8a,0x29,0x0f,0xaa,0xbc,0xba,0xf5,0x84,
+ 0xd0,0x49,0x0f,0xaa,0xbc,0xbb,0xf5,0xc8,
+ 0x84,0xd2,0xa4,0xe5,0xa2,0x00,0x86,0xea,
+ 0xa1,0x1a,0x85,0xd1,0xa2,0x80,0x86,0xd4,
+ 0x86,0xd5,0xa6,0xe7,0xa5,0xd4,0x38,0x65,
+ 0xd0,0x85,0xd4,0x90,0x04,0x20,0x9c,0xf4,
+ 0x18,0xa5,0xd5,0x65,0xd2,0x85,0xd5,0x90,
+ 0x03,0x20,0x9d,0xf4,0xca,0xd0,0xe5,0xa5,
+ 0xd1,0x4a,0x4a,0x4a,0xd0,0xd4,0xe6,0x1a,
+ 0xd0,0x02,0xe6,0x1b,0xa1,0x1a,0xd0,0xca,
+ 0x60,0x20,0x67,0xdd,0x20,0x52,0xe7,0xa4,
+ 0x51,0xa6,0x50,0xc0,0x01,0x90,0x06,0xd0,
+ 0x1d,0xe0,0x18,0xb0,0x19,0x8a,0x48,0x98,
+ 0x48,0xa9,0x2c,0x20,0xc0,0xde,0x20,0xf8,
+ 0xe6,0xe0,0xc0,0xb0,0x09,0x86,0x9d,0x68,
+ 0xa8,0x68,0xaa,0xa5,0x9d,0x60,0x4c,0x06,
+ 0xf2,0x20,0xf8,0xe6,0xe0,0x08,0xb0,0xf6,
+ 0xbd,0xf6,0xf6,0x85,0xe4,0x60,0x00,0x2a,
+ 0x55,0x7f,0x80,0xaa,0xd5,0xff,0xc9,0xc1,
+ 0xf0,0x0d,0x20,0xb9,0xf6,0x20,0x57,0xf4,
+ 0x20,0xb7,0x00,0xc9,0xc1,0xd0,0xe6,0x20,
+ 0xc0,0xde,0x20,0xb9,0xf6,0x84,0x9d,0xa8,
+ 0x8a,0xa6,0x9d,0x20,0x3a,0xf5,0x4c,0x08,
+ 0xf7,0x20,0xf8,0xe6,0x86,0xf9,0x60,0x20,
+ 0xf8,0xe6,0x86,0xe7,0x60,0x20,0xf8,0xe6,
+ 0xa5,0xe8,0x85,0x1a,0xa5,0xe9,0x85,0x1b,
+ 0x8a,0xa2,0x00,0xc1,0x1a,0xf0,0x02,0xb0,
+ 0xa5,0x0a,0x90,0x03,0xe6,0x1b,0x18,0xa8,
+ 0xb1,0x1a,0x65,0x1a,0xaa,0xc8,0xb1,0x1a,
+ 0x65,0xe9,0x85,0x1b,0x86,0x1a,0x20,0xb7,
+ 0x00,0xc9,0xc5,0xd0,0x09,0x20,0xc0,0xde,
+ 0x20,0xb9,0xf6,0x20,0x11,0xf4,0xa5,0xf9,
+ 0x60,0x20,0x2d,0xf7,0x4c,0x05,0xf6,0x20,
+ 0x2d,0xf7,0x4c,0x61,0xf6,0xa9,0x00,0x85,
+ 0x3d,0x85,0x3f,0xa0,0x50,0x84,0x3c,0xc8,
+ 0x84,0x3e,0x20,0xfd,0xfe,0x18,0xa5,0x73,
+ 0xaa,0xca,0x86,0x3e,0xe5,0x50,0x48,0xa5,
+ 0x74,0xa8,0xe8,0xd0,0x01,0x88,0x84,0x3f,
+ 0xe5,0x51,0xc5,0x6e,0x90,0x02,0xd0,0x03,
+ 0x4c,0x10,0xd4,0x85,0x74,0x85,0x70,0x85,
+ 0x3d,0x85,0xe9,0x68,0x85,0xe8,0x85,0x73,
+ 0x85,0x6f,0x85,0x3c,0x20,0xfa,0xfc,0xa9,
+ 0x03,0x4c,0x02,0xff,0x18,0xa5,0x9b,0x65,
+ 0x50,0x85,0x3e,0xa5,0x9c,0x65,0x51,0x85,
+ 0x3f,0xa0,0x04,0xb1,0x9b,0x20,0xef,0xe0,
+ 0xa5,0x94,0x85,0x3c,0xa5,0x95,0x85,0x3d,
+ 0x60,0xa9,0x40,0x85,0x14,0x20,0xe3,0xdf,
+ 0xa9,0x00,0x85,0x14,0x4c,0xf0,0xd8,0x20,
+ 0xf8,0xe6,0xca,0x8a,0xc9,0x28,0x90,0x0a,
+ 0xe9,0x28,0x48,0x20,0xfb,0xda,0x68,0x4c,
+ 0xec,0xf7,0x85,0x24,0x60,0xcb,0xd2,0xd7,
+ 0x4a,0x08,0x20,0x47,0xf8,0x28,0xa9,0x0f,
+ 0x90,0x02,0x69,0xe0,0x85,0x2e,0xb1,0x26,
+ 0x45,0x30,0x25,0x2e,0x51,0x26,0x91,0x26,
+ 0x60,0x20,0x00,0xf8,0xc4,0x2c,0xb0,0x11,
+ 0xc8,0x20,0x0e,0xf8,0x90,0xf6,0x69,0x01,
+ 0x48,0x20,0x00,0xf8,0x68,0xc5,0x2d,0x90,
+ 0xf5,0x60,0xa0,0x2f,0xd0,0x02,0xa0,0x27,
+ 0x84,0x2d,0xa0,0x27,0xa9,0x00,0x85,0x30,
+ 0x20,0x28,0xf8,0x88,0x10,0xf6,0x60,0x48,
+ 0x4a,0x29,0x03,0x09,0x04,0x85,0x27,0x68,
+ 0x29,0x18,0x90,0x02,0x69,0x7f,0x85,0x26,
+ 0x0a,0x0a,0x05,0x26,0x85,0x26,0x60,0xa5,
+ 0x30,0x18,0x69,0x03,0x29,0x0f,0x85,0x30,
+ 0x0a,0x0a,0x0a,0x0a,0x05,0x30,0x85,0x30,
+ 0x60,0x4a,0x08,0x20,0x47,0xf8,0xb1,0x26,
+ 0x28,0x90,0x04,0x4a,0x4a,0x4a,0x4a,0x29,
+ 0x0f,0x60,0xa6,0x3a,0xa4,0x3b,0x20,0x96,
+ 0xfd,0x20,0x48,0xf9,0xa1,0x3a,0xa8,0x4a,
+ 0x90,0x09,0x6a,0xb0,0x10,0xc9,0xa2,0xf0,
+ 0x0c,0x29,0x87,0x4a,0xaa,0xbd,0x62,0xf9,
+ 0x20,0x79,0xf8,0xd0,0x04,0xa0,0x80,0xa9,
+ 0x00,0xaa,0xbd,0xa6,0xf9,0x85,0x2e,0x29,
+ 0x03,0x85,0x2f,0x98,0x29,0x8f,0xaa,0x98,
+ 0xa0,0x03,0xe0,0x8a,0xf0,0x0b,0x4a,0x90,
+ 0x08,0x4a,0x4a,0x09,0x20,0x88,0xd0,0xfa,
+ 0xc8,0x88,0xd0,0xf2,0x60,0xff,0xff,0xff,
+ 0x20,0x82,0xf8,0x48,0xb1,0x3a,0x20,0xda,
+ 0xfd,0xa2,0x01,0x20,0x4a,0xf9,0xc4,0x2f,
+ 0xc8,0x90,0xf1,0xa2,0x03,0xc0,0x04,0x90,
+ 0xf2,0x68,0xa8,0xb9,0xc0,0xf9,0x85,0x2c,
+ 0xb9,0x00,0xfa,0x85,0x2d,0xa9,0x00,0xa0,
+ 0x05,0x06,0x2d,0x26,0x2c,0x2a,0x88,0xd0,
+ 0xf8,0x69,0xbf,0x20,0xed,0xfd,0xca,0xd0,
+ 0xec,0x20,0x48,0xf9,0xa4,0x2f,0xa2,0x06,
+ 0xe0,0x03,0xf0,0x1c,0x06,0x2e,0x90,0x0e,
+ 0xbd,0xb3,0xf9,0x20,0xed,0xfd,0xbd,0xb9,
+ 0xf9,0xf0,0x03,0x20,0xed,0xfd,0xca,0xd0,
+ 0xe7,0x60,0x88,0x30,0xe7,0x20,0xda,0xfd,
+ 0xa5,0x2e,0xc9,0xe8,0xb1,0x3a,0x90,0xf2,
+ 0x20,0x56,0xf9,0xaa,0xe8,0xd0,0x01,0xc8,
+ 0x98,0x20,0xda,0xfd,0x8a,0x4c,0xda,0xfd,
+ 0xa2,0x03,0xa9,0xa0,0x20,0xed,0xfd,0xca,
+ 0xd0,0xf8,0x60,0x38,0xa5,0x2f,0xa4,0x3b,
+ 0xaa,0x10,0x01,0x88,0x65,0x3a,0x90,0x01,
+ 0xc8,0x60,0x04,0x20,0x54,0x30,0x0d,0x80,
+ 0x04,0x90,0x03,0x22,0x54,0x33,0x0d,0x80,
+ 0x04,0x90,0x04,0x20,0x54,0x33,0x0d,0x80,
+ 0x04,0x90,0x04,0x20,0x54,0x3b,0x0d,0x80,
+ 0x04,0x90,0x00,0x22,0x44,0x33,0x0d,0xc8,
+ 0x44,0x00,0x11,0x22,0x44,0x33,0x0d,0xc8,
+ 0x44,0xa9,0x01,0x22,0x44,0x33,0x0d,0x80,
+ 0x04,0x90,0x01,0x22,0x44,0x33,0x0d,0x80,
+ 0x04,0x90,0x26,0x31,0x87,0x9a,0x00,0x21,
+ 0x81,0x82,0x00,0x00,0x59,0x4d,0x91,0x92,
+ 0x86,0x4a,0x85,0x9d,0xac,0xa9,0xac,0xa3,
+ 0xa8,0xa4,0xd9,0x00,0xd8,0xa4,0xa4,0x00,
+ 0x1c,0x8a,0x1c,0x23,0x5d,0x8b,0x1b,0xa1,
+ 0x9d,0x8a,0x1d,0x23,0x9d,0x8b,0x1d,0xa1,
+ 0x00,0x29,0x19,0xae,0x69,0xa8,0x19,0x23,
+ 0x24,0x53,0x1b,0x23,0x24,0x53,0x19,0xa1,
+ 0x00,0x1a,0x5b,0x5b,0xa5,0x69,0x24,0x24,
+ 0xae,0xae,0xa8,0xad,0x29,0x00,0x7c,0x00,
+ 0x15,0x9c,0x6d,0x9c,0xa5,0x69,0x29,0x53,
+ 0x84,0x13,0x34,0x11,0xa5,0x69,0x23,0xa0,
+ 0xd8,0x62,0x5a,0x48,0x26,0x62,0x94,0x88,
+ 0x54,0x44,0xc8,0x54,0x68,0x44,0xe8,0x94,
+ 0x00,0xb4,0x08,0x84,0x74,0xb4,0x28,0x6e,
+ 0x74,0xf4,0xcc,0x4a,0x72,0xf2,0xa4,0x8a,
+ 0x00,0xaa,0xa2,0xa2,0x74,0x74,0x74,0x72,
+ 0x44,0x68,0xb2,0x32,0xb2,0x00,0x22,0x00,
+ 0x1a,0x1a,0x26,0x26,0x72,0x72,0x88,0xc8,
+ 0xc4,0xca,0x26,0x48,0x44,0x44,0xa2,0xc8,
+ 0x85,0x45,0x68,0x48,0x0a,0x0a,0x0a,0x30,
+ 0x03,0x6c,0xfe,0x03,0x28,0x20,0x4c,0xff,
+ 0x68,0x85,0x3a,0x68,0x85,0x3b,0x6c,0xf0,
+ 0x03,0x20,0x82,0xf8,0x20,0x2d,0xff,0x4c,
+ 0x65,0xff,0xd8,0x20,0x84,0xfe,0x20,0x2f,
+ 0xfb,0x20,0x93,0xfe,0x20,0x89,0xfe,0xad,
+ 0x58,0xc0,0xad,0x5a,0xc0,0xad,0x5d,0xc0,
+ 0xad,0x5f,0xc0,0xad,0xff,0xcf,0x2c,0x10,
+ 0xc0,0xd8,0x20,0x3a,0xff,0xad,0xf3,0x03,
+ 0x49,0xa5,0xcd,0xf4,0x03,0xd0,0x17,0xad,
+ 0xf2,0x03,0xd0,0x0f,0xa9,0xe0,0xcd,0xf3,
+ 0x03,0xd0,0x08,0xa0,0x03,0x8c,0xf2,0x03,
+ 0x4c,0x00,0xe0,0x6c,0xf2,0x03,0x20,0x60,
+ 0xfb,0xa2,0x05,0xbd,0xfc,0xfa,0x9d,0xef,
+ 0x03,0xca,0xd0,0xf7,0xa9,0xc8,0x86,0x00,
+ 0x85,0x01,0xa0,0x07,0xc6,0x01,0xa5,0x01,
+ 0xc9,0xc0,0xf0,0xd7,0x8d,0xf8,0x07,0xb1,
+ 0x00,0xd9,0x01,0xfb,0xd0,0xec,0x88,0x88,
+ 0x10,0xf5,0x6c,0x00,0x00,0xea,0xea,0x60,
+ 0x48,0xa9,0x0f,0x25,0x4f,0xd0,0x0c,0x68,
+ 0x48,0xd1,0x28,0xd0,0x02,0xa9,0xdf,0x91,
+ 0x28,0xe6,0x4f,0x68,0x2c,0x00,0xc0,0x60,
+ 0xad,0x56,0xc0,0xad,0x53,0xc0,0x60,0xea,
+ 0xea,0xea,0xea,0xea,0xea,0x59,0xfa,0x00,
+ 0xe0,0x45,0x20,0xff,0x00,0xff,0x03,0xff,
+ 0x3c,0xc1,0xd0,0xd0,0xcc,0xc5,0xa0,0xdd,
+ 0xdb,0xc4,0xc2,0xc1,0xff,0xc3,0xff,0xff,
+ 0xff,0xc1,0xd8,0xd9,0xd0,0xd3,0xad,0x70,
+ 0xc0,0xa0,0x00,0xea,0xea,0xbd,0x64,0xc0,
+ 0x10,0x04,0xc8,0xd0,0xf8,0x88,0x60,0xa9,
+ 0x00,0x85,0x48,0xad,0x56,0xc0,0xad,0x54,
+ 0xc0,0xad,0x51,0xc0,0xa9,0x00,0xf0,0x0b,
+ 0xad,0x50,0xc0,0x20,0xf0,0xfa,0x20,0x36,
+ 0xf8,0xa9,0x14,0x85,0x22,0xa9,0x00,0x85,
+ 0x20,0xa9,0x28,0x85,0x21,0xa9,0x18,0x85,
+ 0x23,0xa9,0x17,0x85,0x25,0x4c,0x22,0xfc,
+ 0x20,0x58,0xfc,0xa0,0x08,0xb9,0x08,0xfb,
+ 0x99,0x0e,0x04,0x88,0xd0,0xf7,0x60,0xad,
+ 0xf3,0x03,0x49,0xa5,0x8d,0xf4,0x03,0x60,
+ 0xc9,0x8d,0xd0,0x18,0xac,0x00,0xc0,0x10,
+ 0x13,0xc0,0x93,0xd0,0x0f,0x2c,0x10,0xc0,
+ 0xac,0x00,0xc0,0x10,0xfb,0xc0,0x83,0xf0,
+ 0x03,0x2c,0x10,0xc0,0x4c,0xfd,0xfb,0x38,
+ 0x4c,0x2c,0xfc,0xa8,0xb9,0x48,0xfa,0x20,
+ 0x97,0xfb,0x20,0x0c,0xfd,0xc9,0xce,0xb0,
+ 0xee,0xc9,0xc9,0x90,0xea,0xc9,0xcc,0xf0,
+ 0xe6,0xd0,0xe8,0xc9,0x94,0xd0,0xc1,0xa5,
+ 0x32,0x49,0xc0,0x4c,0x46,0xfd,0xea,0xea,
+ 0xea,0x48,0x4a,0x29,0x03,0x09,0x04,0x85,
+ 0x29,0x68,0x29,0x18,0x90,0x02,0x69,0x7f,
+ 0x85,0x28,0x0a,0x0a,0x05,0x28,0x85,0x28,
+ 0x60,0xc9,0x87,0xd0,0x12,0xa9,0x40,0x20,
+ 0xa8,0xfc,0xa0,0xc0,0xa9,0x0c,0x20,0xa8,
+ 0xfc,0xad,0x30,0xc0,0x88,0xd0,0xf5,0x60,
+ 0xa4,0x24,0x91,0x28,0xe6,0x24,0xa5,0x24,
+ 0xc5,0x21,0xb0,0x66,0x60,0xc9,0xa0,0xb0,
+ 0xef,0xa8,0x10,0xec,0xc9,0x8d,0xf0,0x5a,
+ 0xc9,0x8a,0xf0,0x5a,0xc9,0x88,0xd0,0xc9,
+ 0xc6,0x24,0x10,0xe8,0xa5,0x21,0x85,0x24,
+ 0xc6,0x24,0xa5,0x22,0xc5,0x25,0xb0,0x0b,
+ 0xc6,0x25,0xa5,0x25,0x20,0xc1,0xfb,0x65,
+ 0x20,0x85,0x28,0x60,0x49,0xc0,0xf0,0x28,
+ 0x69,0xfd,0x90,0xc0,0xf0,0xda,0x69,0xfd,
+ 0x90,0x2c,0xf0,0xde,0x69,0xfd,0x90,0x5c,
+ 0xd0,0xe9,0xa4,0x24,0xa5,0x25,0x48,0x20,
+ 0x24,0xfc,0x20,0x9e,0xfc,0xa0,0x00,0x68,
+ 0x69,0x00,0xc5,0x23,0x90,0xf0,0xb0,0xca,
+ 0xa5,0x22,0x85,0x25,0xa0,0x00,0x84,0x24,
+ 0xf0,0xe4,0xa9,0x00,0x85,0x24,0xe6,0x25,
+ 0xa5,0x25,0xc5,0x23,0x90,0xb6,0xc6,0x25,
+ 0xa5,0x22,0x48,0x20,0x24,0xfc,0xa5,0x28,
+ 0x85,0x2a,0xa5,0x29,0x85,0x2b,0xa4,0x21,
+ 0x88,0x68,0x69,0x01,0xc5,0x23,0xb0,0x0d,
+ 0x48,0x20,0x24,0xfc,0xb1,0x28,0x91,0x2a,
+ 0x88,0x10,0xf9,0x30,0xe1,0xa0,0x00,0x20,
+ 0x9e,0xfc,0xb0,0x86,0xa4,0x24,0xa9,0xa0,
+ 0x91,0x28,0xc8,0xc4,0x21,0x90,0xf9,0x60,
+ 0x38,0x48,0xe9,0x01,0xd0,0xfc,0x68,0xe9,
+ 0x01,0xd0,0xf6,0x60,0xe6,0x42,0xd0,0x02,
+ 0xe6,0x43,0xa5,0x3c,0xc5,0x3e,0xa5,0x3d,
+ 0xe5,0x3f,0xe6,0x3c,0xd0,0x02,0xe6,0x3d,
+ 0x60,0xa0,0x4b,0x20,0xdb,0xfc,0xd0,0xf9,
+ 0x69,0xfe,0xb0,0xf5,0xa0,0x21,0x20,0xdb,
+ 0xfc,0xc8,0xc8,0x88,0xd0,0xfd,0x90,0x05,
+ 0xa0,0x32,0x88,0xd0,0xfd,0xac,0x20,0xc0,
+ 0xa0,0x2c,0xca,0x60,0xa2,0x08,0x48,0x20,
+ 0xfa,0xfc,0x68,0x2a,0xa0,0x3a,0xca,0xd0,
+ 0xf5,0x60,0x20,0xfd,0xfc,0x88,0xad,0x60,
+ 0xc0,0x45,0x2f,0x10,0xf8,0x45,0x2f,0x85,
+ 0x2f,0xc0,0x80,0x60,0xa4,0x24,0xb1,0x28,
+ 0x48,0x29,0x3f,0x09,0x40,0xea,0xea,0x68,
+ 0x6c,0x38,0x00,0xe6,0x4e,0xd0,0x02,0xe6,
+ 0x4f,0x20,0xd8,0xfa,0x10,0xf5,0x91,0x28,
+ 0xad,0x00,0xc0,0x2c,0x10,0xc0,0x60,0x20,
+ 0x0c,0xfd,0x20,0xa5,0xfb,0x20,0x0c,0xfd,
+ 0xc9,0x9b,0xf0,0xf3,0x60,0xbd,0x00,0x02,
+ 0x20,0xed,0xfd,0x4c,0x4d,0xfd,0x85,0x32,
+ 0xa9,0x94,0x4c,0x78,0xfb,0xbd,0x00,0x02,
+ 0xc9,0x88,0xf0,0x1d,0xc9,0x98,0xf0,0x0a,
+ 0xe0,0xf8,0x90,0x03,0x20,0x3a,0xff,0xe8,
+ 0xd0,0x13,0xa9,0xdc,0x20,0xed,0xfd,0x20,
+ 0x8e,0xfd,0xa5,0x33,0x20,0xed,0xfd,0xa2,
+ 0x01,0x8a,0xf0,0xf3,0xca,0x20,0x35,0xfd,
+ 0xc9,0x95,0xd0,0x02,0xb1,0x28,0xc9,0xe0,
+ 0x90,0x02,0x29,0xdf,0x9d,0x00,0x02,0xc9,
+ 0x8d,0xd0,0xb2,0x20,0x9c,0xfc,0xa9,0x8d,
+ 0xd0,0x5b,0xa4,0x3d,0xa6,0x3c,0x20,0x8e,
+ 0xfd,0x20,0x40,0xf9,0xa0,0x00,0xa9,0xad,
+ 0x4c,0xed,0xfd,0xa5,0x3c,0x09,0x07,0x85,
+ 0x3e,0xa5,0x3d,0x85,0x3f,0xa5,0x3c,0x29,
+ 0x07,0xd0,0x03,0x20,0x92,0xfd,0xa9,0xa0,
+ 0x20,0xed,0xfd,0xb1,0x3c,0x20,0xda,0xfd,
+ 0x20,0xba,0xfc,0x90,0xe8,0x60,0x4a,0x90,
+ 0xea,0x4a,0x4a,0xa5,0x3e,0x90,0x02,0x49,
+ 0xff,0x65,0x3c,0x48,0xa9,0xbd,0x20,0xed,
+ 0xfd,0x68,0x48,0x4a,0x4a,0x4a,0x4a,0x20,
+ 0xe5,0xfd,0x68,0x29,0x0f,0x09,0xb0,0xc9,
+ 0xba,0x90,0x02,0x69,0x06,0x6c,0x36,0x00,
+ 0xc9,0xa0,0x90,0x02,0x25,0x32,0x84,0x35,
+ 0x48,0x20,0xb3,0xfb,0x68,0xa4,0x35,0x60,
+ 0xc6,0x34,0xf0,0x9f,0xca,0xd0,0x16,0xc9,
+ 0xba,0xd0,0xbb,0x85,0x31,0xa5,0x3e,0x91,
+ 0x40,0xe6,0x40,0xd0,0x02,0xe6,0x41,0x60,
+ 0xa4,0x34,0xb9,0xff,0x01,0x85,0x31,0x60,
+ 0xa2,0x01,0xb5,0x3e,0x95,0x42,0x95,0x44,
+ 0xca,0x10,0xf7,0x60,0xb1,0x3c,0x91,0x42,
+ 0x20,0xb4,0xfc,0x90,0xf7,0x60,0xb1,0x3c,
+ 0xd1,0x42,0xf0,0x1c,0x20,0x92,0xfd,0xb1,
+ 0x3c,0x20,0xda,0xfd,0xa9,0xa0,0x20,0xed,
+ 0xfd,0xa9,0xa8,0x20,0xed,0xfd,0xb1,0x42,
+ 0x20,0xda,0xfd,0xa9,0xa9,0x20,0xed,0xfd,
+ 0x20,0xb4,0xfc,0x90,0xd9,0x60,0x20,0x75,
+ 0xfe,0xa9,0x14,0x48,0x20,0xd0,0xf8,0x20,
+ 0x53,0xf9,0x85,0x3a,0x84,0x3b,0x68,0x38,
+ 0xe9,0x01,0xd0,0xef,0x60,0x8a,0xf0,0x07,
+ 0xb5,0x3c,0x95,0x3a,0xca,0x10,0xf9,0x60,
+ 0xa0,0x3f,0xd0,0x02,0xa0,0xff,0x84,0x32,
+ 0x60,0xa9,0x00,0x85,0x3e,0xa2,0x38,0xa0,
+ 0x1b,0xd0,0x08,0xa9,0x00,0x85,0x3e,0xa2,
+ 0x36,0xa0,0xf0,0xa5,0x3e,0x29,0x0f,0xf0,
+ 0x06,0x09,0xc0,0xa0,0x00,0xf0,0x02,0xa9,
+ 0xfd,0x94,0x00,0x95,0x01,0x60,0xea,0xea,
+ 0x4c,0x00,0xe0,0x4c,0x03,0xe0,0x20,0x75,
+ 0xfe,0x20,0x3f,0xff,0x6c,0x3a,0x00,0x60,
+ 0xea,0xea,0x60,0xea,0x60,0xea,0xea,0xea,
+ 0xea,0xea,0x4c,0xf8,0x03,0xa9,0x40,0x20,
+ 0xc9,0xfc,0xa0,0x27,0xa2,0x00,0x41,0x3c,
+ 0x48,0xa1,0x3c,0x20,0xed,0xfe,0x20,0xba,
+ 0xfc,0xa0,0x1d,0x68,0x90,0xee,0xa0,0x22,
+ 0x20,0xed,0xfe,0xf0,0x4d,0xa2,0x10,0x0a,
+ 0x20,0xd6,0xfc,0xd0,0xfa,0x60,0x20,0x00,
+ 0xfe,0x68,0x68,0xd0,0x6c,0x20,0xfa,0xfc,
+ 0xa9,0x16,0x20,0xc9,0xfc,0x85,0x2e,0x20,
+ 0xfa,0xfc,0xa0,0x24,0x20,0xfd,0xfc,0xb0,
+ 0xf9,0x20,0xfd,0xfc,0xa0,0x3b,0x20,0xec,
+ 0xfc,0x81,0x3c,0x45,0x2e,0x85,0x2e,0x20,
+ 0xba,0xfc,0xa0,0x35,0x90,0xf0,0x20,0xec,
+ 0xfc,0xc5,0x2e,0xf0,0x0d,0xa9,0xc5,0x20,
+ 0xed,0xfd,0xa9,0xd2,0x20,0xed,0xfd,0x20,
+ 0xed,0xfd,0xa9,0x87,0x4c,0xed,0xfd,0xa5,
+ 0x48,0x48,0xa5,0x45,0xa6,0x46,0xa4,0x47,
+ 0x28,0x60,0x85,0x45,0x86,0x46,0x84,0x47,
+ 0x08,0x68,0x85,0x48,0xba,0x86,0x49,0xd8,
+ 0x60,0x20,0x84,0xfe,0x20,0x2f,0xfb,0x20,
+ 0x93,0xfe,0x20,0x89,0xfe,0xd8,0x20,0x3a,
+ 0xff,0xa9,0xaa,0x85,0x33,0x20,0x67,0xfd,
+ 0x20,0xc7,0xff,0x20,0xa7,0xff,0x84,0x34,
+ 0xa0,0x17,0x88,0x30,0xe8,0xd9,0xcc,0xff,
+ 0xd0,0xf8,0x20,0xbe,0xff,0xa4,0x34,0x4c,
+ 0x73,0xff,0xa2,0x03,0x0a,0x0a,0x0a,0x0a,
+ 0x0a,0x26,0x3e,0x26,0x3f,0xca,0x10,0xf8,
+ 0xa5,0x31,0xd0,0x06,0xb5,0x3f,0x95,0x3d,
+ 0x95,0x41,0xe8,0xf0,0xf3,0xd0,0x06,0xa2,
+ 0x00,0x86,0x3e,0x86,0x3f,0xb9,0x00,0x02,
+ 0xc8,0x49,0xb0,0xc9,0x0a,0x90,0xd3,0x69,
+ 0x88,0xc9,0xfa,0xb0,0xcd,0x60,0xa9,0xfe,
+ 0x48,0xb9,0xe3,0xff,0x48,0xa5,0x31,0xa0,
+ 0x00,0x84,0x31,0x60,0xbc,0xb2,0xbe,0xb2,
+ 0xef,0xc4,0xb2,0xa9,0xbb,0xa6,0xa4,0x06,
+ 0x95,0x07,0x02,0x05,0xf0,0x00,0xeb,0x93,
+ 0xa7,0xc6,0x99,0xb2,0xc9,0xbe,0xc1,0x35,
+ 0x8c,0xc4,0x96,0xaf,0x17,0x17,0x2b,0x1f,
+ 0x83,0x7f,0x5d,0xcc,0xb5,0xfc,0x17,0x17,
+ 0xf5,0x03,0xfb,0x03,0x62,0xfa,0x40,0xfa,
+ ];
+
+ return {
+ start: function() {
+ return 0xd0;
+ },
+ end: function() {
+ return 0xff;
+ },
+ read: function(page, off) {
+ return rom[(page - 0xd0) << 8 | off];
+ },
+ write: function() {},
+
+ getState: function() { return {}; },
+ setState: function() {}
+ };
+}
diff --git a/js/roms/apple2j_char.js b/js/roms/apple2j_char.js
new file mode 100644
index 0000000..0fdd08c
--- /dev/null
+++ b/js/roms/apple2j_char.js
@@ -0,0 +1,262 @@
+/* exported apple2j_charset */
+
+var apple2j_charset = [
+ 0xff,0xef,0xe1,0xed,0xd5,0xfb,0xf7,0xef,
+ 0xff,0xfb,0xc7,0xf7,0xc1,0xf7,0xf7,0xef,
+ 0xff,0xff,0xd5,0xd5,0xfd,0xfd,0xfb,0xf7,
+ 0xff,0xff,0xe3,0xff,0xc1,0xf7,0xf7,0xef,
+ 0xff,0xef,0xef,0xef,0xe7,0xeb,0xef,0xef,
+ 0xff,0xf7,0xf7,0xc1,0xf7,0xf7,0xf7,0xef,
+ 0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xc1,
+ 0xff,0xff,0xc1,0xfd,0xeb,0xf7,0xeb,0xdf,
+ 0xff,0xf7,0xc1,0xfb,0xf3,0xe5,0xd7,0xf7,
+ 0xff,0xff,0xfd,0xfd,0xfb,0xf7,0xef,0xdf,
+ 0xff,0xff,0xff,0xeb,0xed,0xed,0xed,0xdd,
+ 0xff,0xff,0xdf,0xdf,0xc1,0xdf,0xdf,0xc1,
+ 0xff,0xff,0xc1,0xfd,0xfd,0xfb,0xf7,0xef,
+ 0xff,0xff,0xff,0xef,0xd7,0xfb,0xfd,0xff,
+ 0xff,0xf7,0xf7,0xc1,0xf7,0xd5,0xd5,0xf7,
+ 0xff,0xff,0xc1,0xfd,0xfd,0xeb,0xf7,0xfb,
+ 0xff,0xef,0xf1,0xff,0xf1,0xff,0xef,0xf1,
+ 0xff,0xff,0xfb,0xf7,0xef,0xdd,0xc1,0xfd,
+ 0xff,0xff,0xfd,0xfd,0xeb,0xf7,0xeb,0xdf,
+ 0xff,0xff,0xc3,0xef,0xc1,0xef,0xef,0xe1,
+ 0xff,0xef,0xef,0xc1,0xed,0xeb,0xef,0xef,
+ 0xff,0xff,0xe3,0xfb,0xfb,0xfb,0xfb,0xc1,
+ 0xff,0xff,0xc1,0xfd,0xe1,0xfd,0xfd,0xc1,
+ 0xff,0xff,0xe3,0xff,0xc1,0xfd,0xfd,0xf3,
+ 0xff,0xff,0xed,0xed,0xed,0xfd,0xfd,0xfb,
+ 0xff,0xff,0xd7,0xd7,0xd7,0xd5,0xd5,0xd3,
+ 0xff,0xff,0xdf,0xdf,0xdd,0xdb,0xd7,0xcf,
+ 0xff,0xff,0xc1,0xdd,0xdd,0xdd,0xdd,0xc1,
+ 0xff,0xff,0xc1,0xdd,0xdd,0xfd,0xfb,0xf7,
+ 0xff,0xff,0xcf,0xfd,0xfd,0xfb,0xf7,0xcf,
+ 0xff,0xd7,0xd7,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0xef,0xd7,0xef,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xef,0xd7,0xef,
+ 0xff,0xe1,0xef,0xef,0xef,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xfb,0xfb,0xfb,0xc3,
+ 0xff,0xff,0xff,0xff,0xff,0xef,0xef,0xdf,
+ 0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,
+ 0xff,0xff,0xc1,0xfd,0xc1,0xfd,0xfb,0xf7,
+ 0xff,0xff,0xff,0xe1,0xfd,0xf3,0xf7,0xef,
+ 0xff,0xff,0xff,0xfb,0xf7,0xe7,0xd7,0xf7,
+ 0xff,0xff,0xc1,0xdd,0xdd,0xdd,0xdd,0xc1,
+ 0xff,0xff,0xc1,0xdd,0xdd,0xfd,0xfb,0xf7,
+ 0xff,0xff,0xef,0xd7,0xef,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xef,0xc1,0xed,0xeb,0xef,
+ 0xff,0xff,0xff,0xff,0xe3,0xfb,0xfb,0xc1,
+ 0xff,0xff,0xff,0xe1,0xfd,0xe1,0xfd,0xe1,
+ 0xff,0xff,0xff,0xff,0xd5,0xd5,0xfd,0xf3,
+ 0xff,0xff,0xff,0xff,0xc1,0xff,0xff,0xff,
+ 0xff,0xff,0xc1,0xfd,0xf3,0xf7,0xf7,0xef,
+ 0xff,0xfb,0xf7,0xe7,0xd7,0xf7,0xf7,0xf7,
+ 0xff,0xf7,0xc1,0xdd,0xfd,0xfb,0xf7,0xef,
+ 0xff,0xff,0xc1,0xf7,0xf7,0xf7,0xf7,0xc1,
+ 0xff,0xfb,0xc1,0xfb,0xf3,0xeb,0xdb,0xfb,
+ 0xff,0xf7,0xf7,0xc1,0xf5,0xf5,0xed,0xdb,
+ 0xff,0xf7,0xc1,0xf7,0xc1,0xf7,0xf7,0xf7,
+ 0xff,0xff,0xe1,0xed,0xdd,0xfb,0xf7,0xef,
+ 0xff,0xef,0xef,0xe1,0xdb,0xfb,0xfb,0xf7,
+ 0xff,0xff,0xc1,0xfd,0xfd,0xfd,0xfd,0xc1,
+ 0xff,0xff,0xeb,0xc1,0xeb,0xeb,0xfb,0xf7,
+ 0xff,0xff,0xcf,0xff,0xcd,0xfd,0xfb,0xc7,
+ 0xff,0xff,0xc1,0xfd,0xfb,0xf7,0xeb,0xdd,
+ 0xff,0xff,0xef,0xc1,0xed,0xeb,0xef,0xe1,
+ 0xff,0xff,0xdd,0xed,0xfd,0xfd,0xfb,0xf7,
+ 0x00,0x1c,0x22,0x2a,0x2e,0x2c,0x20,0x1e,
+ 0x00,0x08,0x14,0x22,0x22,0x3e,0x22,0x22,
+ 0x00,0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,
+ 0x00,0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,
+ 0x00,0x1e,0x20,0x20,0x20,0x26,0x22,0x1e,
+ 0x00,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,
+ 0x00,0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x1c,
+ 0x00,0x22,0x24,0x28,0x30,0x28,0x24,0x22,
+ 0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,
+ 0x00,0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,
+ 0x00,0x22,0x22,0x32,0x2a,0x26,0x22,0x22,
+ 0x00,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,
+ 0x00,0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,
+ 0x00,0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,
+ 0x00,0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,
+ 0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x14,0x08,
+ 0x00,0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x14,0x22,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x08,0x08,0x08,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,
+ 0x00,0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,
+ 0x00,0x00,0x20,0x10,0x08,0x04,0x02,0x00,
+ 0x00,0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,
+ 0x00,0x00,0x00,0x08,0x14,0x22,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x08,
+ 0x00,0x14,0x14,0x14,0x00,0x00,0x00,0x00,
+ 0x00,0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,
+ 0x00,0x08,0x1e,0x28,0x1c,0x0a,0x3c,0x08,
+ 0x00,0x30,0x32,0x04,0x08,0x10,0x26,0x06,
+ 0x00,0x10,0x28,0x28,0x10,0x2a,0x24,0x1a,
+ 0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x10,0x20,0x20,0x20,0x10,0x08,
+ 0x00,0x08,0x04,0x02,0x02,0x02,0x04,0x08,
+ 0x00,0x08,0x2a,0x1c,0x08,0x1c,0x2a,0x08,
+ 0x00,0x00,0x08,0x08,0x3e,0x08,0x08,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,
+ 0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,
+ 0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x00,
+ 0x00,0x1c,0x22,0x26,0x2a,0x32,0x22,0x1c,
+ 0x00,0x08,0x18,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x1c,0x22,0x02,0x0c,0x10,0x20,0x3e,
+ 0x00,0x3e,0x02,0x04,0x0c,0x02,0x22,0x1c,
+ 0x00,0x04,0x0c,0x14,0x24,0x3e,0x04,0x04,
+ 0x00,0x3e,0x20,0x3c,0x02,0x02,0x22,0x1c,
+ 0x00,0x0e,0x10,0x20,0x3c,0x22,0x22,0x1c,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x10,0x10,
+ 0x00,0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,
+ 0x00,0x1c,0x22,0x22,0x1e,0x02,0x04,0x38,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x10,
+ 0x00,0x04,0x08,0x10,0x20,0x10,0x08,0x04,
+ 0x00,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,
+ 0x00,0x10,0x08,0x04,0x02,0x04,0x08,0x10,
+ 0x00,0x1c,0x22,0x04,0x08,0x08,0x00,0x08,
+ 0x00,0x1c,0x22,0x2a,0x2e,0x2c,0x20,0x1e,
+ 0x00,0x08,0x14,0x22,0x22,0x3e,0x22,0x22,
+ 0x00,0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,
+ 0x00,0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,
+ 0x00,0x1e,0x20,0x20,0x20,0x26,0x22,0x1e,
+ 0x00,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,
+ 0x00,0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x1c,
+ 0x00,0x22,0x24,0x28,0x30,0x28,0x24,0x22,
+ 0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,
+ 0x00,0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,
+ 0x00,0x22,0x22,0x32,0x2a,0x26,0x22,0x22,
+ 0x00,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,
+ 0x00,0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,
+ 0x00,0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,
+ 0x00,0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,
+ 0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x14,0x08,
+ 0x00,0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x14,0x22,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x08,0x08,0x08,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,
+ 0x00,0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,
+ 0x00,0x00,0x20,0x10,0x08,0x04,0x02,0x00,
+ 0x00,0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,
+ 0x00,0x00,0x00,0x08,0x14,0x22,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x08,
+ 0x00,0x14,0x14,0x14,0x00,0x00,0x00,0x00,
+ 0x00,0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,
+ 0x00,0x08,0x1e,0x28,0x1c,0x0a,0x3c,0x08,
+ 0x00,0x30,0x32,0x04,0x08,0x10,0x26,0x06,
+ 0x00,0x10,0x28,0x28,0x10,0x2a,0x24,0x1a,
+ 0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x10,0x20,0x20,0x20,0x10,0x08,
+ 0x00,0x08,0x04,0x02,0x02,0x02,0x04,0x08,
+ 0x00,0x08,0x2a,0x1c,0x08,0x1c,0x2a,0x08,
+ 0x00,0x00,0x08,0x08,0x3e,0x08,0x08,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,
+ 0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,
+ 0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x00,
+ 0x00,0x1c,0x22,0x26,0x2a,0x32,0x22,0x1c,
+ 0x00,0x08,0x18,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x1c,0x22,0x02,0x0c,0x10,0x20,0x3e,
+ 0x00,0x3e,0x02,0x04,0x0c,0x02,0x22,0x1c,
+ 0x00,0x04,0x0c,0x14,0x24,0x3e,0x04,0x04,
+ 0x00,0x3e,0x20,0x3c,0x02,0x02,0x22,0x1c,
+ 0x00,0x0e,0x10,0x20,0x3c,0x22,0x22,0x1c,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x10,0x10,
+ 0x00,0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,
+ 0x00,0x1c,0x22,0x22,0x1e,0x02,0x04,0x38,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x10,
+ 0x00,0x04,0x08,0x10,0x20,0x10,0x08,0x04,
+ 0x00,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,
+ 0x00,0x10,0x08,0x04,0x02,0x04,0x08,0x10,
+ 0x00,0x1c,0x22,0x04,0x08,0x08,0x00,0x08,
+ 0x00,0x1c,0x22,0x2a,0x2e,0x2c,0x20,0x1e,
+ 0x00,0x08,0x14,0x22,0x22,0x3e,0x22,0x22,
+ 0x00,0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,
+ 0x00,0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,
+ 0x00,0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,
+ 0x00,0x1e,0x20,0x20,0x20,0x26,0x22,0x1e,
+ 0x00,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,
+ 0x00,0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x1c,
+ 0x00,0x22,0x24,0x28,0x30,0x28,0x24,0x22,
+ 0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,
+ 0x00,0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,
+ 0x00,0x22,0x22,0x32,0x2a,0x26,0x22,0x22,
+ 0x00,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,
+ 0x00,0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,
+ 0x00,0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,
+ 0x00,0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,
+ 0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,
+ 0x00,0x22,0x22,0x22,0x22,0x22,0x14,0x08,
+ 0x00,0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x14,0x22,0x22,
+ 0x00,0x22,0x22,0x14,0x08,0x08,0x08,0x08,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,
+ 0x00,0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,
+ 0x00,0x00,0x20,0x10,0x08,0x04,0x02,0x00,
+ 0x00,0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,
+ 0x00,0x00,0x00,0x08,0x14,0x22,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x08,
+ 0x00,0x14,0x14,0x14,0x00,0x00,0x00,0x00,
+ 0x00,0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,
+ 0x00,0x08,0x1e,0x28,0x1c,0x0a,0x3c,0x08,
+ 0x00,0x30,0x32,0x04,0x08,0x10,0x26,0x06,
+ 0x00,0x10,0x28,0x28,0x10,0x2a,0x24,0x1a,
+ 0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,
+ 0x00,0x08,0x10,0x20,0x20,0x20,0x10,0x08,
+ 0x00,0x08,0x04,0x02,0x02,0x02,0x04,0x08,
+ 0x00,0x08,0x2a,0x1c,0x08,0x1c,0x2a,0x08,
+ 0x00,0x00,0x08,0x08,0x3e,0x08,0x08,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,
+ 0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,
+ 0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x00,
+ 0x00,0x1c,0x22,0x26,0x2a,0x32,0x22,0x1c,
+ 0x00,0x08,0x18,0x08,0x08,0x08,0x08,0x1c,
+ 0x00,0x1c,0x22,0x02,0x0c,0x10,0x20,0x3e,
+ 0x00,0x3e,0x02,0x04,0x0c,0x02,0x22,0x1c,
+ 0x00,0x04,0x0c,0x14,0x24,0x3e,0x04,0x04,
+ 0x00,0x3e,0x20,0x3c,0x02,0x02,0x22,0x1c,
+ 0x00,0x0e,0x10,0x20,0x3c,0x22,0x22,0x1c,
+ 0x00,0x3e,0x02,0x04,0x08,0x10,0x10,0x10,
+ 0x00,0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,
+ 0x00,0x1c,0x22,0x22,0x1e,0x02,0x04,0x38,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x10,
+ 0x00,0x04,0x08,0x10,0x20,0x10,0x08,0x04,
+ 0x00,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,
+ 0x00,0x10,0x08,0x04,0x02,0x04,0x08,0x10,
+ 0x00,0x1c,0x22,0x04,0x08,0x08,0x00,0x08,
+];
+
+export default apple2j_charset;
diff --git a/js/roms/apple2lc_char.js b/js/roms/apple2lc_char.js
new file mode 100644
index 0000000..fac4f53
--- /dev/null
+++ b/js/roms/apple2lc_char.js
@@ -0,0 +1,262 @@
+/*exported apple2lc_charset */
+
+var apple2lc_charset = [
+ 0x1c,0x22,0x2a,0x2a,0x2c,0x20,0x1e,0x00,
+ 0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
+ 0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,0x00,
+ 0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,0x00,
+ 0x1e,0x20,0x20,0x26,0x22,0x22,0x1e,0x00,
+ 0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x00,
+ 0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x02,0x02,0x02,0x02,0x02,0x22,0x1c,0x00,
+ 0x22,0x24,0x28,0x30,0x28,0x24,0x22,0x00,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x00,
+ 0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,0x00,
+ 0x22,0x22,0x32,0x2a,0x26,0x22,0x22,0x00,
+ 0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,0x00,
+ 0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,0x00,
+ 0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,0x00,
+ 0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,0x00,
+ 0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x14,0x08,0x00,
+ 0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x14,0x22,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x08,0x08,0x08,0x00,
+ 0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,0x00,
+ 0x08,0x14,0x22,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x00,
+ 0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,
+ 0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,0x00,
+ 0x08,0x1e,0x28,0x1c,0x0a,0x3c,0x08,0x00,
+ 0x32,0x32,0x04,0x08,0x10,0x26,0x26,0x00,
+ 0x18,0x24,0x28,0x10,0x2a,0x24,0x1a,0x00,
+ 0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x10,0x20,0x20,0x20,0x10,0x08,0x00,
+ 0x08,0x04,0x02,0x02,0x02,0x04,0x08,0x00,
+ 0x08,0x2a,0x1c,0x08,0x1c,0x2a,0x08,0x00,
+ 0x00,0x08,0x08,0x3e,0x08,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x10,
+ 0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,
+ 0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
+ 0x1c,0x22,0x26,0x2a,0x32,0x22,0x1c,0x00,
+ 0x08,0x18,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x1c,0x22,0x02,0x0c,0x10,0x20,0x3e,0x00,
+ 0x3e,0x02,0x04,0x0c,0x02,0x22,0x1c,0x00,
+ 0x04,0x0c,0x14,0x24,0x3e,0x04,0x04,0x00,
+ 0x3e,0x20,0x3c,0x02,0x02,0x22,0x1c,0x00,
+ 0x0e,0x10,0x20,0x3c,0x22,0x22,0x1c,0x00,
+ 0x3e,0x02,0x04,0x08,0x10,0x10,0x10,0x00,
+ 0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,0x00,
+ 0x1c,0x22,0x22,0x1e,0x02,0x04,0x38,0x00,
+ 0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,
+ 0x00,0x00,0x18,0x18,0x00,0x18,0x08,0x10,
+ 0x04,0x08,0x10,0x20,0x10,0x08,0x04,0x00,
+ 0x00,0x00,0x3c,0x00,0x3c,0x00,0x00,0x00,
+ 0x10,0x08,0x04,0x02,0x04,0x08,0x10,0x00,
+ 0x1c,0x22,0x04,0x08,0x08,0x00,0x08,0x00,
+ 0x9c,0xa2,0xaa,0xaa,0xac,0xa0,0x9e,0x80,
+ 0x88,0x94,0xa2,0xa2,0xbe,0xa2,0xa2,0x80,
+ 0xbc,0xa2,0xa2,0xbc,0xa2,0xa2,0xbc,0x80,
+ 0x9c,0xa2,0xa0,0xa0,0xa0,0xa2,0x9c,0x80,
+ 0xbc,0xa2,0xa2,0xa2,0xa2,0xa2,0xbc,0x80,
+ 0xbe,0xa0,0xa0,0xbc,0xa0,0xa0,0xbe,0x80,
+ 0xbe,0xa0,0xa0,0xbc,0xa0,0xa0,0xa0,0x80,
+ 0x9e,0xa0,0xa0,0xa6,0xa2,0xa2,0x9e,0x80,
+ 0xa2,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0x80,
+ 0x9c,0x88,0x88,0x88,0x88,0x88,0x9c,0x80,
+ 0x82,0x82,0x82,0x82,0x82,0xa2,0x9c,0x80,
+ 0xa2,0xa4,0xa8,0xb0,0xa8,0xa4,0xa2,0x80,
+ 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xbe,0x80,
+ 0xa2,0xb6,0xaa,0xaa,0xa2,0xa2,0xa2,0x80,
+ 0xa2,0xa2,0xb2,0xaa,0xa6,0xa2,0xa2,0x80,
+ 0x9c,0xa2,0xa2,0xa2,0xa2,0xa2,0x9c,0x80,
+ 0xbc,0xa2,0xa2,0xbc,0xa0,0xa0,0xa0,0x80,
+ 0x9c,0xa2,0xa2,0xa2,0xaa,0xa4,0x9a,0x80,
+ 0xbc,0xa2,0xa2,0xbc,0xa8,0xa4,0xa2,0x80,
+ 0x9c,0xa2,0xa0,0x9c,0x82,0xa2,0x9c,0x80,
+ 0xbe,0x88,0x88,0x88,0x88,0x88,0x88,0x80,
+ 0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x9c,0x80,
+ 0xa2,0xa2,0xa2,0xa2,0xa2,0x94,0x88,0x80,
+ 0xa2,0xa2,0xa2,0xaa,0xaa,0xb6,0xa2,0x80,
+ 0xa2,0xa2,0x94,0x88,0x94,0xa2,0xa2,0x80,
+ 0xa2,0xa2,0x94,0x88,0x88,0x88,0x88,0x80,
+ 0xbe,0x82,0x84,0x88,0x90,0xa0,0xbe,0x80,
+ 0xbe,0xb0,0xb0,0xb0,0xb0,0xb0,0xbe,0x80,
+ 0x80,0xa0,0x90,0x88,0x84,0x82,0x80,0x80,
+ 0xbe,0x86,0x86,0x86,0x86,0x86,0xbe,0x80,
+ 0x88,0x94,0xa2,0x80,0x80,0x80,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x80,0xbe,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
+ 0x88,0x88,0x88,0x88,0x88,0x80,0x88,0x80,
+ 0x94,0x94,0x94,0x80,0x80,0x80,0x80,0x80,
+ 0x94,0x94,0xbe,0x94,0xbe,0x94,0x94,0x80,
+ 0x88,0x9e,0xa8,0x9c,0x8a,0xbc,0x88,0x80,
+ 0xb2,0xb2,0x84,0x88,0x90,0xa6,0xa6,0x80,
+ 0x98,0xa4,0xa8,0x90,0xaa,0xa4,0x9a,0x80,
+ 0x88,0x88,0x88,0x80,0x80,0x80,0x80,0x80,
+ 0x88,0x90,0xa0,0xa0,0xa0,0x90,0x88,0x80,
+ 0x88,0x84,0x82,0x82,0x82,0x84,0x88,0x80,
+ 0x88,0xaa,0x9c,0x88,0x9c,0xaa,0x88,0x80,
+ 0x80,0x88,0x88,0xbe,0x88,0x88,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x98,0x88,0x90,
+ 0x80,0x80,0x80,0x9c,0x80,0x80,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x98,0x98,0x80,
+ 0x80,0x82,0x84,0x88,0x90,0xa0,0x80,0x80,
+ 0x9c,0xa2,0xa6,0xaa,0xb2,0xa2,0x9c,0x80,
+ 0x88,0x98,0x88,0x88,0x88,0x88,0x9c,0x80,
+ 0x9c,0xa2,0x82,0x8c,0x90,0xa0,0xbe,0x80,
+ 0xbe,0x82,0x84,0x8c,0x82,0xa2,0x9c,0x80,
+ 0x84,0x8c,0x94,0xa4,0xbe,0x84,0x84,0x80,
+ 0xbe,0xa0,0xbc,0x82,0x82,0xa2,0x9c,0x80,
+ 0x8e,0x90,0xa0,0xbc,0xa2,0xa2,0x9c,0x80,
+ 0xbe,0x82,0x84,0x88,0x90,0x90,0x90,0x80,
+ 0x9c,0xa2,0xa2,0x9c,0xa2,0xa2,0x9c,0x80,
+ 0x9c,0xa2,0xa2,0x9e,0x82,0x84,0xb8,0x80,
+ 0x80,0x80,0x98,0x98,0x80,0x98,0x98,0x80,
+ 0x80,0x80,0x98,0x98,0x80,0x98,0x88,0x90,
+ 0x84,0x88,0x90,0xa0,0x90,0x88,0x84,0x80,
+ 0x80,0x80,0xbc,0x80,0xbc,0x80,0x80,0x80,
+ 0x90,0x88,0x84,0x82,0x84,0x88,0x90,0x80,
+ 0x9c,0xa2,0x84,0x88,0x88,0x80,0x88,0x80,
+ 0x1c,0x22,0x2a,0x2a,0x2c,0x20,0x1e,0x00,
+ 0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
+ 0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,0x00,
+ 0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,0x00,
+ 0x1e,0x20,0x20,0x26,0x22,0x22,0x1e,0x00,
+ 0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x00,
+ 0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x02,0x02,0x02,0x02,0x02,0x22,0x1c,0x00,
+ 0x22,0x24,0x28,0x30,0x28,0x24,0x22,0x00,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x00,
+ 0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,0x00,
+ 0x22,0x22,0x32,0x2a,0x26,0x22,0x22,0x00,
+ 0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,0x00,
+ 0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,0x00,
+ 0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,0x00,
+ 0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,0x00,
+ 0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x14,0x08,0x00,
+ 0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x14,0x22,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x08,0x08,0x08,0x00,
+ 0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,0x00,
+ 0x08,0x14,0x22,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x00,
+ 0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,
+ 0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,0x00,
+ 0x08,0x1e,0x28,0x1c,0x0a,0x3c,0x08,0x00,
+ 0x32,0x32,0x04,0x08,0x10,0x26,0x26,0x00,
+ 0x18,0x24,0x28,0x10,0x2a,0x24,0x1a,0x00,
+ 0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x10,0x20,0x20,0x20,0x10,0x08,0x00,
+ 0x08,0x04,0x02,0x02,0x02,0x04,0x08,0x00,
+ 0x08,0x2a,0x1c,0x08,0x1c,0x2a,0x08,0x00,
+ 0x00,0x08,0x08,0x3e,0x08,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x10,
+ 0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,
+ 0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
+ 0x1c,0x22,0x26,0x2a,0x32,0x22,0x1c,0x00,
+ 0x08,0x18,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x1c,0x22,0x02,0x0c,0x10,0x20,0x3e,0x00,
+ 0x3e,0x02,0x04,0x0c,0x02,0x22,0x1c,0x00,
+ 0x04,0x0c,0x14,0x24,0x3e,0x04,0x04,0x00,
+ 0x3e,0x20,0x3c,0x02,0x02,0x22,0x1c,0x00,
+ 0x0e,0x10,0x20,0x3c,0x22,0x22,0x1c,0x00,
+ 0x3e,0x02,0x04,0x08,0x10,0x10,0x10,0x00,
+ 0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,0x00,
+ 0x1c,0x22,0x22,0x1e,0x02,0x04,0x38,0x00,
+ 0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,
+ 0x00,0x00,0x18,0x18,0x00,0x18,0x08,0x10,
+ 0x04,0x08,0x10,0x20,0x10,0x08,0x04,0x00,
+ 0x00,0x00,0x3c,0x00,0x3c,0x00,0x00,0x00,
+ 0x10,0x08,0x04,0x02,0x04,0x08,0x10,0x00,
+ 0x1c,0x22,0x04,0x08,0x08,0x00,0x08,0x00,
+ 0x1c,0x22,0x2a,0x2a,0x2c,0x20,0x1e,0x00,
+ 0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
+ 0x3c,0x22,0x22,0x3c,0x22,0x22,0x3c,0x00,
+ 0x1c,0x22,0x20,0x20,0x20,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x3e,0x00,
+ 0x3e,0x20,0x20,0x3c,0x20,0x20,0x20,0x00,
+ 0x1e,0x20,0x20,0x26,0x22,0x22,0x1e,0x00,
+ 0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x00,
+ 0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x02,0x02,0x02,0x02,0x02,0x22,0x1c,0x00,
+ 0x22,0x24,0x28,0x30,0x28,0x24,0x22,0x00,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x00,
+ 0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,0x00,
+ 0x22,0x22,0x32,0x2a,0x26,0x22,0x22,0x00,
+ 0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x3c,0x22,0x22,0x3c,0x20,0x20,0x20,0x00,
+ 0x1c,0x22,0x22,0x22,0x2a,0x24,0x1a,0x00,
+ 0x3c,0x22,0x22,0x3c,0x28,0x24,0x22,0x00,
+ 0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c,0x00,
+ 0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x14,0x08,0x00,
+ 0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x14,0x22,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x08,0x08,0x08,0x00,
+ 0x3e,0x02,0x04,0x08,0x10,0x20,0x3e,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,0x00,
+ 0x08,0x14,0x22,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,
+ 0x20,0x10,0x08,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x1c,0x02,0x1e,0x22,0x1e,0x00,
+ 0x20,0x20,0x2c,0x32,0x22,0x32,0x2c,0x00,
+ 0x00,0x00,0x1e,0x20,0x20,0x20,0x1e,0x00,
+ 0x02,0x02,0x1a,0x26,0x22,0x26,0x1a,0x00,
+ 0x00,0x00,0x1c,0x22,0x3e,0x20,0x1c,0x00,
+ 0x0c,0x12,0x10,0x38,0x10,0x10,0x10,0x00,
+ 0x00,0x02,0x1c,0x22,0x22,0x1e,0x02,0x1c,
+ 0x20,0x20,0x2c,0x32,0x22,0x22,0x22,0x00,
+ 0x08,0x00,0x18,0x08,0x08,0x08,0x1c,0x00,
+ 0x04,0x00,0x0c,0x04,0x04,0x04,0x24,0x18,
+ 0x20,0x20,0x22,0x24,0x38,0x24,0x22,0x00,
+ 0x18,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x00,0x00,0x34,0x2a,0x2a,0x2a,0x2a,0x00,
+ 0x00,0x00,0x2c,0x32,0x22,0x22,0x22,0x00,
+ 0x00,0x00,0x1c,0x22,0x22,0x22,0x1c,0x00,
+ 0x00,0x00,0x2c,0x32,0x32,0x2c,0x20,0x20,
+ 0x00,0x00,0x1a,0x26,0x26,0x1a,0x02,0x02,
+ 0x00,0x00,0x2c,0x30,0x20,0x20,0x20,0x00,
+ 0x00,0x00,0x1e,0x20,0x1c,0x02,0x3c,0x00,
+ 0x10,0x10,0x38,0x10,0x10,0x12,0x0c,0x00,
+ 0x00,0x00,0x22,0x22,0x22,0x26,0x1a,0x00,
+ 0x00,0x00,0x22,0x22,0x22,0x14,0x08,0x00,
+ 0x00,0x00,0x22,0x2a,0x2a,0x2a,0x14,0x00,
+ 0x00,0x00,0x22,0x14,0x08,0x14,0x22,0x00,
+ 0x00,0x00,0x22,0x22,0x26,0x1a,0x02,0x1c,
+ 0x00,0x00,0x3e,0x04,0x08,0x10,0x3e,0x00,
+ 0x06,0x08,0x08,0x30,0x08,0x08,0x06,0x00,
+ 0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x00,
+ 0x30,0x08,0x08,0x06,0x08,0x08,0x30,0x00,
+ 0x00,0x00,0x10,0x2a,0x04,0x00,0x00,0x00,
+ 0x2a,0x14,0x2a,0x14,0x2a,0x14,0x2a,0x00
+];
+
+export default apple2lc_charset;
diff --git a/js/roms/pigfont_char.js b/js/roms/pigfont_char.js
new file mode 100644
index 0000000..9011df1
--- /dev/null
+++ b/js/roms/pigfont_char.js
@@ -0,0 +1,262 @@
+/*exported pigfont_charset */
+
+var pigfont_charset = [
+ 0x00,0x1c,0x22,0x2a,0x2e,0x20,0x1e,0x00,
+ 0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,
+ 0x3e,0x11,0x1e,0x11,0x11,0x3e,0x00,0x00,
+ 0x1e,0x21,0x20,0x20,0x21,0x1e,0x00,0x00,
+ 0x3e,0x01,0x11,0x11,0x11,0x3e,0x00,0x00,
+ 0x3f,0x00,0x3c,0x20,0x20,0x3f,0x00,0x00,
+ 0x3f,0x00,0x3c,0x20,0x20,0x20,0x00,0x00,
+ 0x1e,0x20,0x27,0x21,0x21,0x1e,0x00,0x00,
+ 0x21,0x21,0x7f,0x21,0x21,0x21,0x00,0x00,
+ 0x0e,0x04,0x04,0x04,0x04,0x0e,0x00,0x00,
+ 0x07,0x02,0x02,0x02,0x22,0x1c,0x00,0x00,
+ 0x22,0x24,0x38,0x24,0x22,0x21,0x00,0x00,
+ 0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,
+ 0x21,0x33,0x2d,0x2d,0x21,0x21,0x00,0x00,
+ 0x21,0x31,0x29,0x25,0x23,0x21,0x00,0x00,
+ 0x1e,0x01,0x21,0x21,0x21,0x1e,0x00,0x00,
+ 0x3e,0x01,0x3e,0x20,0x20,0x20,0x00,0x00,
+ 0x1e,0x01,0x21,0x25,0x22,0x1d,0x00,0x00,
+ 0x3e,0x01,0x3e,0x24,0x22,0x21,0x00,0x00,
+ 0x1e,0x20,0x1e,0x01,0x21,0x1e,0x00,0x00,
+ 0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,
+ 0x21,0x21,0x21,0x21,0x21,0x1e,0x00,0x00,
+ 0x21,0x21,0x12,0x12,0x0c,0x0c,0x00,0x00,
+ 0x21,0x21,0x2d,0x2d,0x33,0x21,0x00,0x00,
+ 0x21,0x12,0x0c,0x12,0x21,0x21,0x00,0x00,
+ 0x41,0x22,0x1c,0x08,0x08,0x08,0x00,0x00,
+ 0x3f,0x01,0x06,0x18,0x20,0x3f,0x00,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x3e,0x00,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x3e,0x00,0x00,
+ 0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x0c,0x0c,0x0c,0x0c,0x00,0x0c,0x00,0x00,
+ 0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,
+ 0x12,0x3f,0x12,0x3f,0x12,0x00,0x00,0x00,
+ 0x0a,0x1f,0x20,0x1e,0x01,0x3e,0x14,0x00,
+ 0x31,0x32,0x04,0x08,0x13,0x23,0x00,0x00,
+ 0x18,0x24,0x18,0x25,0x22,0x1d,0x00,0x00,
+ 0x06,0x06,0x0c,0x00,0x00,0x00,0x00,0x00,
+ 0x02,0x04,0x08,0x08,0x04,0x02,0x00,0x00,
+ 0x10,0x08,0x04,0x04,0x08,0x10,0x00,0x00,
+ 0x00,0x04,0x15,0x0e,0x15,0x04,0x00,0x00,
+ 0x00,0x0c,0x0c,0x3f,0x0c,0x0c,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x18,
+ 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,
+ 0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
+ 0x1e,0x03,0x25,0x29,0x31,0x1e,0x00,0x00,
+ 0x04,0x0c,0x14,0x04,0x04,0x1f,0x00,0x00,
+ 0x1e,0x21,0x06,0x18,0x20,0x3f,0x00,0x00,
+ 0x1e,0x21,0x0e,0x01,0x21,0x1e,0x00,0x00,
+ 0x02,0x06,0x0a,0x12,0x3f,0x02,0x00,0x00,
+ 0x3f,0x00,0x3e,0x01,0x21,0x1e,0x00,0x00,
+ 0x1e,0x20,0x3e,0x21,0x21,0x1e,0x00,0x00,
+ 0x3f,0x21,0x02,0x04,0x08,0x08,0x00,0x00,
+ 0x1e,0x21,0x1e,0x21,0x21,0x1e,0x00,0x00,
+ 0x1e,0x21,0x1f,0x01,0x02,0x1c,0x00,0x00,
+ 0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x00,0x00,
+ 0x00,0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x18,
+ 0x00,0x03,0x0c,0x30,0x0c,0x03,0x00,0x00,
+ 0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x00,
+ 0x00,0x30,0x0c,0x03,0x0c,0x30,0x00,0x00,
+ 0x1e,0x21,0x06,0x08,0x00,0x08,0x00,0x00,
+ 0x9e,0xa1,0xad,0xae,0xa0,0x9f,0x80,0x80,
+ 0x8c,0x92,0xa1,0xbf,0xa1,0xa1,0x80,0x80,
+ 0xbe,0x81,0x9e,0x91,0x91,0xbe,0x80,0x80,
+ 0x9e,0xa1,0xa0,0xa0,0xa1,0x9e,0x80,0x80,
+ 0xbe,0x81,0x91,0x91,0x91,0xbe,0x80,0x80,
+ 0xbf,0x80,0xbc,0xa0,0xa0,0xbf,0x80,0x80,
+ 0xbf,0x80,0xbc,0xa0,0xa0,0xa0,0x80,0x80,
+ 0x9e,0xa0,0xa7,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xa1,0xa1,0xbf,0xa1,0xa1,0xa1,0x80,0x80,
+ 0x8e,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
+ 0x87,0x82,0x82,0x82,0xa2,0x9c,0x80,0x80,
+ 0xa2,0xa4,0xb8,0xa4,0xa2,0xa1,0x80,0x80,
+ 0xa0,0xa0,0xa0,0xa0,0xa0,0xbf,0x80,0x80,
+ 0xa1,0xb3,0xad,0xad,0xa1,0xa1,0x80,0x80,
+ 0xa1,0xb1,0xa9,0xa5,0xa3,0xa1,0x80,0x80,
+ 0x9e,0x81,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xbe,0x81,0xbe,0xa0,0xa0,0xa0,0x80,0x80,
+ 0x9e,0x81,0xa1,0xa5,0xa2,0x9d,0x80,0x80,
+ 0xbe,0x81,0xbe,0xa4,0xa2,0xa1,0x80,0x80,
+ 0x9e,0xa0,0x9e,0x81,0xa1,0x9e,0x80,0x80,
+ 0xff,0x88,0x88,0x88,0x88,0x88,0x80,0x80,
+ 0xa1,0xa1,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xa1,0xa1,0x92,0x92,0x8c,0x8c,0x80,0x80,
+ 0xa1,0xa1,0xad,0xad,0xb3,0xa1,0x80,0x80,
+ 0xa1,0x92,0x8c,0x92,0xa1,0xa1,0x80,0x80,
+ 0xc1,0xa2,0x9c,0x88,0x88,0x88,0x80,0x80,
+ 0xbf,0x81,0x86,0x98,0xa0,0xbf,0x80,0x80,
+ 0xbe,0xb0,0xb0,0xb0,0xb0,0xbe,0x80,0x80,
+ 0x80,0xa0,0x90,0x88,0x84,0x82,0x80,0x80,
+ 0xbe,0x86,0x86,0x86,0x86,0xbe,0x80,0x80,
+ 0x8c,0x92,0xa1,0x80,0x80,0x80,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
+ 0x8c,0x8c,0x8c,0x8c,0x80,0x8c,0x80,0x80,
+ 0xb3,0xb3,0xb3,0x80,0x80,0x80,0x80,0x80,
+ 0x92,0xbf,0x92,0xbf,0x92,0x80,0x80,0x80,
+ 0x8a,0x9f,0xa0,0x9e,0x81,0xbe,0x94,0x80,
+ 0xb1,0xb2,0x84,0x88,0x93,0xa3,0x80,0x80,
+ 0x98,0xa4,0x98,0xa5,0xa2,0x9d,0x80,0x80,
+ 0x86,0x86,0x8c,0x80,0x80,0x80,0x80,0x80,
+ 0x82,0x84,0x88,0x88,0x84,0x82,0x80,0x80,
+ 0x90,0x88,0x84,0x84,0x88,0x90,0x80,0x80,
+ 0x80,0x84,0x95,0x8e,0x95,0x84,0x80,0x80,
+ 0x80,0x8c,0x8c,0xbf,0x8c,0x8c,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x8c,0x8c,0x98,
+ 0x80,0x80,0x80,0xbf,0x80,0x80,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x8c,0x8c,0x80,0x80,
+ 0x80,0x82,0x84,0x88,0x90,0xa0,0x80,0x80,
+ 0x9e,0x83,0xa5,0xa9,0xb1,0x9e,0x80,0x80,
+ 0x84,0x8c,0x94,0x84,0x84,0x9f,0x80,0x80,
+ 0x9e,0xa1,0x86,0x98,0xa0,0xbf,0x80,0x80,
+ 0x9e,0xa1,0x8e,0x81,0xa1,0x9e,0x80,0x80,
+ 0x82,0x86,0x8a,0x92,0xbf,0x82,0x80,0x80,
+ 0xbf,0x80,0xbe,0x81,0xa1,0x9e,0x80,0x80,
+ 0x9e,0xa0,0xbe,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xbf,0xa1,0x82,0x84,0x88,0x88,0x80,0x80,
+ 0x9e,0xa1,0x9e,0xa1,0xa1,0x9e,0x80,0x80,
+ 0x9e,0xa1,0x9f,0x81,0x82,0x9c,0x80,0x80,
+ 0x80,0x8c,0x8c,0x80,0x8c,0x8c,0x80,0x80,
+ 0x80,0x80,0x8c,0x8c,0x80,0x8c,0x8c,0x98,
+ 0x80,0x83,0x8c,0xb0,0x8c,0x83,0x80,0x80,
+ 0x80,0x80,0xbe,0x80,0xbe,0x80,0x80,0x80,
+ 0x80,0xb0,0x8c,0x83,0x8c,0xb0,0x80,0x80,
+ 0x9e,0xa1,0x86,0x88,0x80,0x88,0x80,0x80,
+ 0x1e,0x21,0x2d,0x2e,0x20,0x1f,0x00,0x00,
+ 0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,
+ 0x3e,0x01,0x1e,0x11,0x11,0x3e,0x00,0x00,
+ 0x1e,0x21,0x20,0x20,0x21,0x1e,0x00,0x00,
+ 0x3e,0x01,0x11,0x11,0x11,0x3e,0x00,0x00,
+ 0x3f,0x00,0x3c,0x20,0x20,0x3f,0x00,0x00,
+ 0x3f,0x00,0x3c,0x20,0x20,0x20,0x00,0x00,
+ 0x1e,0x20,0x27,0x21,0x21,0x1e,0x00,0x00,
+ 0x21,0x21,0x3f,0x21,0x21,0x21,0x00,0x00,
+ 0x0e,0x04,0x04,0x04,0x04,0x0e,0x00,0x00,
+ 0x07,0x02,0x02,0x02,0x22,0x1c,0x00,0x00,
+ 0x22,0x24,0x38,0x24,0x22,0x21,0x00,0x00,
+ 0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,
+ 0x21,0x33,0x2d,0x2d,0x21,0x21,0x00,0x00,
+ 0x21,0x31,0x29,0x25,0x23,0x21,0x00,0x00,
+ 0x1e,0x01,0x21,0x21,0x21,0x1e,0x00,0x00,
+ 0x3e,0x01,0x3e,0x20,0x20,0x20,0x00,0x00,
+ 0x1e,0x01,0x21,0x25,0x22,0x1d,0x00,0x00,
+ 0x3e,0x01,0x3e,0x24,0x22,0x21,0x00,0x00,
+ 0x1e,0x20,0x1e,0x01,0x21,0x1e,0x00,0x00,
+ 0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,
+ 0x21,0x21,0x21,0x21,0x21,0x1e,0x00,0x00,
+ 0x21,0x21,0x12,0x12,0x0c,0x0c,0x00,0x00,
+ 0x21,0x21,0x2d,0x2d,0x33,0x21,0x00,0x00,
+ 0x21,0x12,0x0c,0x12,0x21,0x21,0x00,0x00,
+ 0x41,0x22,0x1c,0x08,0x08,0x08,0x00,0x00,
+ 0x3f,0x01,0x06,0x18,0x20,0x3f,0x00,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x3e,0x00,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x3e,0x00,0x00,
+ 0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x0c,0x0c,0x0c,0x0c,0x00,0x0c,0x00,0x00,
+ 0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,
+ 0x12,0x3f,0x12,0x3f,0x12,0x00,0x00,0x00,
+ 0x0a,0x1f,0x20,0x1e,0x01,0x3e,0x14,0x00,
+ 0x31,0x32,0x04,0x08,0x13,0x23,0x00,0x00,
+ 0x18,0x24,0x18,0x25,0x22,0x1d,0x00,0x00,
+ 0x06,0x06,0x0c,0x00,0x00,0x00,0x00,0x00,
+ 0x02,0x04,0x08,0x08,0x04,0x02,0x00,0x00,
+ 0x10,0x08,0x04,0x04,0x08,0x10,0x00,0x00,
+ 0x00,0x04,0x15,0x0e,0x15,0x04,0x00,0x00,
+ 0x00,0x0c,0x0c,0x3f,0x0c,0x0c,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x18,
+ 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,
+ 0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
+ 0x1e,0x03,0x25,0x29,0x31,0x1e,0x00,0x00,
+ 0x04,0x0c,0x14,0x04,0x04,0x1f,0x00,0x00,
+ 0x1e,0x21,0x06,0x18,0x20,0x3f,0x00,0x00,
+ 0x1e,0x21,0x0e,0x01,0x21,0x1e,0x00,0x00,
+ 0x02,0x06,0x0a,0x12,0x3f,0x02,0x00,0x00,
+ 0x3f,0x00,0x3e,0x01,0x21,0x1e,0x00,0x00,
+ 0x1e,0x20,0x3e,0x21,0x21,0x1e,0x00,0x00,
+ 0x3f,0x21,0x02,0x04,0x08,0x08,0x00,0x00,
+ 0x1e,0x21,0x1e,0x21,0x21,0x1e,0x00,0x00,
+ 0x1e,0x21,0x1f,0x01,0x02,0x1c,0x00,0x00,
+ 0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x00,0x00,
+ 0x00,0x00,0x0c,0x0c,0x00,0x0c,0x0c,0x18,
+ 0x00,0x03,0x0c,0x30,0x0c,0x03,0x00,0x00,
+ 0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x00,
+ 0x00,0x30,0x0c,0x03,0x0c,0x30,0x00,0x00,
+ 0x1e,0x21,0x06,0x08,0x00,0x08,0x00,0x00,
+ 0x9e,0xa1,0xad,0xae,0xa0,0x9f,0x80,0x80,
+ 0x8c,0x92,0xa1,0xbf,0xa1,0xa1,0x80,0x80,
+ 0xbe,0x81,0x9e,0x91,0x91,0xbe,0x80,0x80,
+ 0x9e,0xa1,0xa0,0xa0,0xa1,0x9e,0x80,0x80,
+ 0xbe,0x81,0x91,0x91,0x91,0xbe,0x80,0x80,
+ 0xbf,0x80,0xbc,0xa0,0xa0,0xbf,0x80,0x80,
+ 0xbf,0x80,0xbc,0xa0,0xa0,0xa0,0x80,0x80,
+ 0x9e,0xa0,0xa7,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xa1,0xa1,0xbf,0xa1,0xa1,0xa1,0x80,0x80,
+ 0x8e,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
+ 0x87,0x82,0x82,0x82,0xa2,0x9c,0x80,0x80,
+ 0xa2,0xa4,0xb8,0xa4,0xa2,0xa1,0x80,0x80,
+ 0xa0,0xa0,0xa0,0xa0,0xa0,0xbf,0x80,0x80,
+ 0xa1,0xb3,0xad,0xad,0xa1,0xa1,0x80,0x80,
+ 0xa1,0xb1,0xa9,0xa5,0xa3,0xa1,0x80,0x80,
+ 0x9e,0x81,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xbe,0x81,0xbe,0xa0,0xa0,0xa0,0x80,0x80,
+ 0x9e,0x81,0xa1,0xa5,0xa2,0x9d,0x80,0x80,
+ 0xbe,0x81,0xbe,0xa4,0xa2,0xa1,0x80,0x80,
+ 0x9e,0xa0,0x9e,0x81,0xa1,0x9e,0x80,0x80,
+ 0xff,0x88,0x88,0x88,0x88,0x88,0x80,0x80,
+ 0xa1,0xa1,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
+ 0xa1,0xa1,0x92,0x92,0x8c,0x8c,0x80,0x80,
+ 0xa1,0xa1,0xad,0xad,0xb3,0xa1,0x80,0x80,
+ 0xa1,0x92,0x8c,0x92,0xa1,0xa1,0x80,0x80,
+ 0xc1,0xa2,0x9c,0x88,0x88,0x88,0x80,0x80,
+ 0xbf,0x81,0x86,0x98,0xa0,0xbf,0x80,0x80,
+ 0xbe,0xb0,0xb0,0xb0,0xb0,0xbe,0x80,0x80,
+ 0x80,0xa0,0x90,0x88,0x84,0x82,0x80,0x80,
+ 0xbe,0x86,0x86,0x86,0x86,0xbe,0x80,0x80,
+ 0x8c,0x92,0xa1,0x80,0x80,0x80,0x80,0x80,
+ 0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,
+ 0x88,0x84,0x82,0x80,0x80,0x80,0x80,0x80,
+ 0x80,0x9c,0x82,0x9e,0xa2,0x9d,0x80,0x80,
+ 0xa0,0xae,0xb1,0xa1,0xb1,0xae,0x80,0x80,
+ 0x80,0x9e,0xa0,0xa0,0xa0,0x9e,0x80,0x80,
+ 0x81,0x9d,0xa3,0xa1,0xa3,0x9d,0x80,0x80,
+ 0x80,0x9e,0xa1,0xbf,0xa0,0x9f,0x80,0x80,
+ 0x8e,0x90,0xbc,0x90,0x90,0x90,0x80,0x80,
+ 0x80,0x9d,0xa3,0xa3,0x9d,0x81,0xa1,0x9e,
+ 0xa0,0xae,0xb1,0xa1,0xa1,0xa1,0x80,0x80,
+ 0x84,0x80,0x8c,0x84,0x84,0x8e,0x80,0x80,
+ 0x82,0x80,0x86,0x82,0x82,0x82,0xa2,0x9c,
+ 0xa0,0xa2,0xa4,0xa8,0xb4,0xa2,0x80,0x80,
+ 0x8c,0x84,0x84,0x84,0x84,0x8e,0x80,0x80,
+ 0x80,0xaa,0x95,0x95,0x95,0x95,0x80,0x80,
+ 0x80,0xae,0x91,0x91,0x91,0x91,0x80,0x80,
+ 0x80,0x9e,0xa1,0xa1,0xa1,0x9e,0x80,0x80,
+ 0x80,0xae,0xb1,0xb1,0xae,0xa0,0xa0,0xa0,
+ 0x80,0x9d,0xa3,0xa3,0x9d,0x81,0x81,0x81,
+ 0x80,0xaf,0xb0,0xa0,0xa0,0xa0,0x80,0x80,
+ 0x80,0x9e,0xa0,0x9e,0x81,0xbe,0x80,0x80,
+ 0x90,0xbe,0x90,0x90,0x91,0x8e,0x80,0x80,
+ 0x80,0xa2,0xa2,0xa2,0xa2,0x9c,0x80,0x80,
+ 0x80,0xa1,0xa1,0xa1,0x92,0x8c,0x80,0x80,
+ 0x80,0xa2,0xa2,0xaa,0xaa,0x94,0x80,0x80,
+ 0x80,0xa1,0x92,0x8c,0x92,0xa1,0x80,0x80,
+ 0x80,0xa1,0xa1,0xa3,0x9d,0x81,0xa1,0x9e,
+ 0x80,0x9f,0x82,0x8c,0x90,0xbf,0x80,0x80,
+ 0x8c,0x98,0xbc,0xf4,0xff,0xff,0xfb,0xbc,
+ 0xe3,0xbe,0xaa,0xbe,0xeb,0xdd,0xc1,0xbe,
+ 0x98,0x8c,0x9e,0x97,0xff,0xff,0xef,0x9e,
+ 0xbe,0xc9,0xc9,0xbe,0x9c,0xc1,0xbe,0xc1,
+ 0x84,0x88,0xb6,0xff,0xfc,0xfc,0xbe,0xb6,
+];
+
+export default pigfont_charset;
diff --git a/js/roms/rmfont_char.js b/js/roms/rmfont_char.js
new file mode 100644
index 0000000..6d1e8ed
--- /dev/null
+++ b/js/roms/rmfont_char.js
@@ -0,0 +1,518 @@
+/*exported rmfont_charset */
+
+var rmfont_charset = [
+ 0x3c,0x42,0x59,0x55,0x55,0x39,0x02,0x3c,
+ 0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
+ 0x1e,0x24,0x24,0x1c,0x24,0x24,0x1e,0x00,
+ 0x1c,0x22,0x02,0x02,0x02,0x22,0x1c,0x00,
+ 0x1e,0x24,0x24,0x24,0x24,0x24,0x1e,0x00,
+ 0x3e,0x02,0x02,0x1e,0x02,0x02,0x3e,0x00,
+ 0x3e,0x02,0x02,0x1e,0x02,0x02,0x02,0x00,
+ 0x1c,0x22,0x02,0x02,0x32,0x22,0x3c,0x00,
+ 0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x00,
+ 0x1c,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x38,0x10,0x10,0x10,0x10,0x12,0x0c,0x00,
+ 0x22,0x12,0x0a,0x16,0x12,0x22,0x22,0x00,
+ 0x02,0x02,0x02,0x02,0x02,0x02,0x3e,0x00,
+ 0x22,0x36,0x2a,0x2a,0x22,0x22,0x22,0x00,
+ 0x22,0x22,0x26,0x2a,0x32,0x22,0x22,0x00,
+ 0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x1e,0x22,0x22,0x1e,0x02,0x02,0x02,0x00,
+ 0x1c,0x22,0x22,0x22,0x2a,0x12,0x2c,0x00,
+ 0x1e,0x22,0x22,0x1e,0x0a,0x12,0x22,0x00,
+ 0x1c,0x22,0x02,0x1c,0x20,0x22,0x1c,0x00,
+ 0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
+ 0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x00,
+ 0x22,0x22,0x22,0x22,0x14,0x14,0x08,0x00,
+ 0x22,0x22,0x22,0x2a,0x2a,0x36,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x14,0x22,0x22,0x00,
+ 0x22,0x22,0x14,0x08,0x08,0x08,0x08,0x00,
+ 0x3e,0x20,0x10,0x08,0x04,0x02,0x3e,0x00,
+ 0x3e,0x06,0x06,0x06,0x06,0x06,0x3e,0x00,
+ 0x00,0x02,0x04,0x08,0x10,0x20,0x00,0x00,
+ 0x3e,0x30,0x30,0x30,0x30,0x30,0x3e,0x00,
+ 0x00,0x00,0x08,0x14,0x22,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x1c,0x1c,0x08,0x08,0x00,0x08,0x00,
+ 0x36,0x36,0x14,0x00,0x00,0x00,0x00,0x00,
+ 0x14,0x14,0x3e,0x14,0x3e,0x14,0x14,0x00,
+ 0x08,0x3c,0x0a,0x1c,0x28,0x1e,0x08,0x00,
+ 0x06,0x26,0x10,0x08,0x04,0x32,0x30,0x00,
+ 0x04,0x0a,0x0a,0x04,0x2a,0x12,0x2c,0x00,
+ 0x18,0x10,0x08,0x00,0x00,0x00,0x00,0x00,
+ 0x08,0x04,0x02,0x02,0x02,0x04,0x08,0x00,
+ 0x08,0x10,0x20,0x20,0x20,0x10,0x08,0x00,
+ 0x08,0x2a,0x1c,0x3e,0x1c,0x2a,0x08,0x00,
+ 0x00,0x08,0x08,0x3e,0x08,0x08,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x04,
+ 0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,
+ 0x00,0x20,0x10,0x08,0x04,0x02,0x00,0x00,
+ 0x1c,0x22,0x22,0x2a,0x22,0x22,0x1c,0x00,
+ 0x08,0x0c,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x1c,0x22,0x20,0x18,0x04,0x02,0x3e,0x00,
+ 0x3e,0x20,0x10,0x18,0x20,0x22,0x1c,0x00,
+ 0x10,0x18,0x14,0x12,0x3e,0x10,0x10,0x00,
+ 0x3e,0x02,0x1e,0x22,0x20,0x22,0x1c,0x00,
+ 0x38,0x04,0x02,0x1e,0x22,0x22,0x1c,0x00,
+ 0x3e,0x20,0x10,0x08,0x04,0x04,0x04,0x00,
+ 0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c,0x00,
+ 0x1c,0x22,0x22,0x3c,0x20,0x10,0x08,0x00,
+ 0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,
+ 0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x04,
+ 0x10,0x08,0x04,0x02,0x04,0x08,0x10,0x00,
+ 0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x00,
+ 0x04,0x08,0x10,0x20,0x10,0x08,0x04,0x00,
+ 0x1c,0x22,0x20,0x10,0x08,0x00,0x08,0x00,
+ 0xef,0xf7,0xc9,0x80,0xc0,0xc0,0x81,0xc9,
+ 0xef,0xf7,0xc9,0xbe,0xde,0xde,0xb5,0xc9,
+ 0xff,0xff,0xfd,0xf9,0xf1,0xe1,0xc9,0xbd,
+ 0x80,0xdd,0xeb,0xf7,0xf7,0xeb,0xd5,0x80,
+ 0xff,0xbf,0xdf,0xee,0xf5,0xfb,0xfb,0xff,
+ 0x80,0xc0,0xa0,0x93,0x8a,0x84,0x84,0x80,
+ 0x40,0x40,0x40,0x44,0x46,0x7f,0x06,0x04,
+ 0x00,0x7f,0x00,0x7f,0x00,0x7f,0x7f,0x00,
+ 0xf7,0xfb,0xfd,0x80,0xfd,0xfb,0xf7,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd5,
+ 0xf7,0xf7,0xf7,0xf7,0xb6,0xd5,0xe3,0xf7,
+ 0xf7,0xe3,0xd5,0xb6,0xf7,0xf7,0xf7,0xf7,
+ 0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0xbf,0xbf,0xbf,0xbb,0xb9,0x80,0xf9,0xfb,
+ 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
+ 0xec,0xe7,0xe3,0x81,0xe3,0xe7,0xef,0x90,
+ 0x9b,0xf3,0xe3,0xc0,0xe3,0xf3,0xfb,0x84,
+ 0xbf,0xb7,0xf7,0x80,0xc1,0xe3,0xb7,0xbf,
+ 0xbf,0xb7,0xe3,0xc1,0x80,0xf7,0xb7,0xbf,
+ 0xff,0xff,0xff,0x80,0xff,0xff,0xff,0xff,
+ 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0x80,
+ 0xf7,0xef,0xdf,0x80,0xdf,0xef,0xf7,0xff,
+ 0xd5,0xaa,0xd5,0xaa,0xd5,0xaa,0xd5,0xaa,
+ 0xaa,0xd5,0xaa,0xd5,0xaa,0xd5,0xaa,0xd5,
+ 0xff,0xc1,0xbe,0xfe,0xfe,0xfe,0x80,0xff,
+ 0xff,0xff,0xc0,0xbf,0xbf,0xbf,0x80,0xff,
+ 0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
+ 0xf7,0xe3,0xc1,0x80,0xc1,0xe3,0xf7,0xff,
+ 0x80,0xff,0xff,0xff,0xff,0xff,0xff,0x80,
+ 0xeb,0xeb,0x88,0xff,0x88,0xeb,0xeb,0xff,
+ 0x80,0xbf,0xbf,0xb3,0xb3,0xbf,0xbf,0x80,
+ 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
+ 0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x1c,0x20,0x3c,0x22,0x3c,0x00,
+ 0x02,0x02,0x1e,0x22,0x22,0x22,0x1e,0x00,
+ 0x00,0x00,0x3c,0x02,0x02,0x02,0x3c,0x00,
+ 0x20,0x20,0x3c,0x22,0x22,0x22,0x3c,0x00,
+ 0x00,0x00,0x1c,0x22,0x3e,0x02,0x3c,0x00,
+ 0x18,0x24,0x04,0x1e,0x04,0x04,0x04,0x00,
+ 0x00,0x00,0x1c,0x22,0x22,0x3c,0x20,0x1c,
+ 0x02,0x02,0x1e,0x22,0x22,0x22,0x22,0x00,
+ 0x08,0x00,0x0c,0x08,0x08,0x08,0x1c,0x00,
+ 0x10,0x00,0x18,0x10,0x10,0x10,0x12,0x0c,
+ 0x02,0x02,0x22,0x12,0x0e,0x12,0x22,0x00,
+ 0x0c,0x08,0x08,0x08,0x08,0x08,0x1c,0x00,
+ 0x00,0x00,0x36,0x2a,0x2a,0x2a,0x22,0x00,
+ 0x00,0x00,0x1e,0x22,0x22,0x22,0x22,0x00,
+ 0x00,0x00,0x1c,0x22,0x22,0x22,0x1c,0x00,
+ 0x00,0x00,0x1e,0x22,0x22,0x1e,0x02,0x02,
+ 0x00,0x00,0x3c,0x22,0x22,0x3c,0x20,0x60,
+ 0x00,0x00,0x1a,0x26,0x02,0x02,0x02,0x00,
+ 0x00,0x00,0x3c,0x02,0x1c,0x20,0x1e,0x00,
+ 0x04,0x04,0x1e,0x04,0x04,0x24,0x18,0x00,
+ 0x00,0x00,0x22,0x22,0x22,0x32,0x2c,0x00,
+ 0x00,0x00,0x22,0x22,0x22,0x14,0x08,0x00,
+ 0x00,0x00,0x22,0x22,0x2a,0x2a,0x14,0x00,
+ 0x00,0x00,0x22,0x14,0x08,0x14,0x22,0x00,
+ 0x00,0x00,0x22,0x22,0x22,0x3c,0x20,0x1c,
+ 0x00,0x00,0x3e,0x10,0x08,0x04,0x3e,0x00,
+ 0x38,0x0c,0x0c,0x06,0x0c,0x0c,0x38,0x00,
+ 0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
+ 0x0e,0x18,0x18,0x30,0x18,0x18,0x0e,0x00,
+ 0x2c,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x6f,0x77,0x41,0x00,0x40,0x40,0x00,0x49,
+ 0x43,0x3c,0x26,0x2a,0x2a,0x46,0x7d,0x43,
+ 0xf7,0xeb,0xdd,0xdd,0xc1,0xdd,0xdd,0xff,
+ 0xe1,0xdb,0xdb,0xe3,0xdb,0xdb,0xe1,0x7f,
+ 0xe3,0xdd,0xfd,0xfd,0xfd,0xdd,0xe3,0xff,
+ 0xe1,0xdb,0xdb,0xdb,0xdb,0xdb,0xe1,0x7f,
+ 0xc1,0xfd,0xfd,0xe1,0xfd,0xfd,0xc1,0xff,
+ 0xc1,0xfd,0xfd,0xe1,0xfd,0xfd,0xfd,0xff,
+ 0xe3,0xdd,0xfd,0xfd,0xcd,0xdd,0xc3,0x7f,
+ 0xdd,0xdd,0xdd,0xc1,0xdd,0xdd,0xdd,0xff,
+ 0xe3,0xf7,0xf7,0xf7,0xf7,0xf7,0xe3,0xff,
+ 0xc7,0xef,0xef,0xef,0xef,0xed,0xf3,0x7f,
+ 0xdd,0xed,0xf5,0xe9,0xed,0xdd,0xdd,0x7f,
+ 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xc1,0xff,
+ 0xdd,0xc9,0xd5,0xd5,0xdd,0xdd,0xdd,0xff,
+ 0xdd,0xdd,0xd9,0xd5,0xcd,0xdd,0xdd,0xff,
+ 0xe3,0xdd,0xdd,0xdd,0xdd,0xdd,0xe3,0xff,
+ 0xe1,0xdd,0xdd,0xe1,0xfd,0xfd,0xfd,0xff,
+ 0xe3,0xdd,0xdd,0xdd,0xd5,0xed,0xd3,0xff,
+ 0xe1,0xdd,0xdd,0xe1,0xf5,0xed,0xdd,0xff,
+ 0xe3,0xdd,0xfd,0xe3,0xdf,0xdd,0xe3,0xff,
+ 0xc1,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,
+ 0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xe3,0xff,
+ 0xdd,0xdd,0xdd,0xdd,0xeb,0xeb,0xf7,0x7f,
+ 0xdd,0xdd,0xdd,0xd5,0xd5,0xc9,0xdd,0xff,
+ 0xdd,0xdd,0xeb,0xf7,0xeb,0xdd,0xdd,0xff,
+ 0xdd,0xdd,0xeb,0xf7,0xf7,0xf7,0xf7,0xff,
+ 0xc1,0xdf,0xef,0xf7,0xfb,0xfd,0xc1,0xff,
+ 0xc1,0xf9,0xf9,0xf9,0xf9,0xf9,0xc1,0xff,
+ 0xff,0xfd,0xfb,0xf7,0xef,0xdf,0xff,0xff,
+ 0xc1,0xcf,0xcf,0xcf,0xcf,0xcf,0xc1,0xff,
+ 0xff,0xff,0xf7,0xeb,0xdd,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0x77,0x63,0x63,0x77,0x77,0x7f,0x77,0x7f,
+ 0x49,0x49,0x6b,0x7f,0x7f,0x7f,0x7f,0x7f,
+ 0xeb,0xeb,0xc1,0xeb,0xc1,0xeb,0xeb,0xff,
+ 0xf7,0xc3,0xf5,0xe3,0xd7,0xe1,0xf7,0xff,
+ 0xf9,0xd9,0xef,0xf7,0xfb,0xcd,0xcf,0xff,
+ 0xfb,0xf5,0xf5,0xfb,0xd5,0xed,0xd3,0xff,
+ 0x67,0x6f,0x77,0x7f,0x7f,0x7f,0x7f,0x7f,
+ 0xf7,0xfb,0xfd,0xfd,0xfd,0xfb,0xf7,0xff,
+ 0xf7,0xef,0xdf,0xdf,0xdf,0xef,0xf7,0xff,
+ 0xf7,0xd5,0xe3,0xc1,0xe3,0xd5,0xf7,0xff,
+ 0xff,0xf7,0xf7,0xc1,0xf7,0xf7,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,0xfb,
+ 0xff,0xff,0xff,0xc1,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xff,
+ 0xff,0xdf,0xef,0xf7,0xfb,0xfd,0xff,0xff,
+ 0x63,0x5d,0x5d,0x55,0x5d,0x5d,0x63,0x7f,
+ 0xf7,0xf3,0xf7,0xf7,0xf7,0xf7,0xe3,0xff,
+ 0xe3,0xdd,0xdf,0xe7,0xfb,0xfd,0xc1,0xff,
+ 0xc1,0xdf,0xef,0xe7,0xdf,0xdd,0xe3,0xff,
+ 0xef,0xe7,0xeb,0xed,0xc1,0xef,0xef,0xff,
+ 0x41,0x7d,0x61,0x5d,0x5f,0x5d,0x63,0x7f,
+ 0xc7,0xfb,0xfd,0xe1,0xdd,0xdd,0xe3,0xff,
+ 0xc1,0xdf,0xef,0xf7,0xfb,0xfb,0xfb,0xff,
+ 0xe3,0xdd,0xdd,0xe3,0xdd,0xdd,0xe3,0xff,
+ 0xe3,0xdd,0xdd,0xc3,0xdf,0xef,0xf7,0xff,
+ 0xff,0xff,0xf7,0xff,0xf7,0xff,0xff,0xff,
+ 0xff,0xff,0xf7,0xff,0xff,0xf7,0xf7,0xfb,
+ 0xef,0xf7,0xfb,0xfd,0xfb,0xf7,0xef,0xff,
+ 0xff,0xff,0xc1,0xff,0xc1,0xff,0xff,0xff,
+ 0xfb,0xf7,0xef,0xdf,0xef,0xf7,0xfb,0xff,
+ 0x63,0x5d,0x5f,0x6f,0x77,0x7f,0x77,0x7f,
+ 0x43,0x3c,0x26,0x2a,0x2a,0x46,0x7d,0x43,
+ 0xf7,0xeb,0xdd,0xdd,0xc1,0xdd,0xdd,0xff,
+ 0xe1,0xdb,0xdb,0xe3,0xdb,0xdb,0xe1,0xff,
+ 0xe3,0xdd,0xfd,0xfd,0xfd,0xdd,0xe3,0xff,
+ 0xe1,0xdb,0xdb,0xdb,0xdb,0xdb,0xe1,0xff,
+ 0xc1,0xfd,0xfd,0xe1,0xfd,0xfd,0xc1,0xff,
+ 0xc1,0xfd,0xfd,0xe1,0xfd,0xfd,0xfd,0xff,
+ 0xe3,0xdd,0xfd,0xfd,0xcd,0xdd,0xc3,0xff,
+ 0xdd,0xdd,0xdd,0xc1,0xdd,0xdd,0xdd,0xff,
+ 0xe3,0xf7,0xf7,0xf7,0xf7,0xf7,0xe3,0xff,
+ 0xc7,0xef,0xef,0xef,0xef,0xed,0xf3,0xff,
+ 0xdd,0xed,0xf5,0xe9,0xed,0xdd,0xdd,0xff,
+ 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xc1,0xff,
+ 0xdd,0xc9,0xd5,0xd5,0xdd,0xdd,0xdd,0xff,
+ 0xdd,0xdd,0xd9,0xd5,0xcd,0xdd,0xdd,0xff,
+ 0xe3,0xdd,0xdd,0xdd,0xdd,0xdd,0xe3,0xff,
+ 0xe1,0xdd,0xdd,0xe1,0xfd,0xfd,0xfd,0xff,
+ 0xe3,0xdd,0xdd,0xdd,0xd5,0xed,0xd3,0xff,
+ 0xe1,0xdd,0xdd,0xe1,0xf5,0xed,0xdd,0xff,
+ 0xe3,0xdd,0xfd,0xe3,0xdf,0xdd,0xe3,0xff,
+ 0xc1,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xff,
+ 0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xe3,0xff,
+ 0xdd,0xdd,0xdd,0xdd,0xeb,0xeb,0xf7,0xff,
+ 0xdd,0xdd,0xdd,0xd5,0xd5,0xc9,0xdd,0xff,
+ 0xdd,0xdd,0xeb,0xf7,0xeb,0xdd,0xdd,0xff,
+ 0xdd,0xdd,0xeb,0xf7,0xf7,0xf7,0xf7,0xff,
+ 0xc1,0xdf,0xef,0xf7,0xfb,0xfd,0xc1,0xff,
+ 0xc1,0xf9,0xf9,0xf9,0xf9,0xf9,0xc1,0xff,
+ 0xff,0xfd,0xfb,0xf7,0xef,0xdf,0xff,0xff,
+ 0xc1,0xcf,0xcf,0xcf,0xcf,0xcf,0xc1,0xff,
+ 0xff,0xff,0xf7,0xeb,0xdd,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x80,
+ 0xfb,0xf7,0xef,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0xe3,0xdf,0xc3,0xdd,0xc3,0xff,
+ 0xfd,0xfd,0xe1,0xdd,0xdd,0xdd,0xe1,0xff,
+ 0xff,0xff,0xc3,0xfd,0xfd,0xfd,0xc3,0xff,
+ 0xdf,0xdf,0xc3,0xdd,0xdd,0xdd,0xc3,0xff,
+ 0xff,0xff,0xe3,0xdd,0xc1,0xfd,0xc3,0xff,
+ 0xe7,0xdb,0xfb,0xe1,0xfb,0xfb,0xfb,0xff,
+ 0xff,0xff,0xe3,0xdd,0xdd,0xc3,0xdf,0xe3,
+ 0xfd,0xfd,0xe1,0xdd,0xdd,0xdd,0xdd,0xff,
+ 0xf7,0xff,0xf3,0xf7,0xf7,0xf7,0xe3,0xff,
+ 0xef,0xff,0xe7,0xef,0xef,0xef,0xed,0xf3,
+ 0xfd,0xfd,0xdd,0xed,0xf1,0xed,0xdd,0xff,
+ 0xf3,0xf7,0xf7,0xf7,0xf7,0xf7,0xe3,0xff,
+ 0xff,0xff,0xc9,0xd5,0xd5,0xd5,0xdd,0xff,
+ 0xff,0xff,0xe1,0xdd,0xdd,0xdd,0xdd,0xff,
+ 0xff,0xff,0xe3,0xdd,0xdd,0xdd,0xe3,0xff,
+ 0xff,0xff,0xe1,0xdd,0xdd,0xe1,0xfd,0xfd,
+ 0x7f,0x7f,0x43,0x5d,0x5d,0x43,0x5f,0x1f,
+ 0x7f,0x7f,0x65,0x59,0x7d,0x7d,0x7d,0x7f,
+ 0xff,0xff,0xc3,0xfd,0xe3,0xdf,0xe1,0xff,
+ 0xfb,0xfb,0xe1,0xfb,0xfb,0xdb,0xe7,0xff,
+ 0xff,0xff,0xdd,0xdd,0xdd,0xcd,0xd3,0xff,
+ 0xff,0xff,0xdd,0xdd,0xdd,0xeb,0xf7,0xff,
+ 0xff,0xff,0x5d,0x5d,0x55,0x55,0x6b,0x7f,
+ 0xff,0xff,0xdd,0xeb,0xf7,0xeb,0xdd,0xff,
+ 0xff,0xff,0xdd,0xdd,0xdd,0xc3,0xdf,0xe3,
+ 0xff,0xff,0xc1,0xef,0xf7,0xfb,0xc1,0xff,
+ 0xc7,0xf3,0xf3,0xf9,0xf3,0xf3,0xc7,0xff,
+ 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,
+ 0xf1,0xe7,0xe7,0xcf,0xe7,0xe7,0xf1,0xff,
+ 0xd3,0xe5,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0x6f,0x77,0x49,0x3e,0x5e,0x5e,0x36,0x49,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0xfe,0xfe,0xee,0xbb,0xfe,0xfe,0xff,0xff,
+ 0xfd,0xfd,0xdd,0x77,0xfd,0xfd,0xff,0xff,
+ 0xfc,0xfc,0xcc,0x33,0xfc,0xfc,0xff,0xff,
+ 0xfb,0xfb,0xbb,0xee,0xfb,0xfb,0xff,0xff,
+ 0xfa,0xfa,0xaa,0xaa,0xfa,0xfa,0xff,0xff,
+ 0xf9,0xf9,0x99,0x66,0xf9,0xf9,0xff,0xff,
+ 0xf8,0xf8,0x88,0x22,0xf8,0xf8,0xff,0xff,
+ 0xf7,0xf7,0x77,0xdd,0xf7,0xf7,0xff,0xff,
+ 0xf6,0xf6,0x66,0x99,0xf6,0xf6,0xff,0xff,
+ 0xf5,0xf5,0x55,0x55,0xf5,0xf5,0xff,0xff,
+ 0xf4,0xf4,0x44,0x11,0xf4,0xf4,0xff,0xff,
+ 0xf3,0xf3,0x33,0xcc,0xf3,0xf3,0xff,0xff,
+ 0xf2,0xf2,0x22,0x88,0xf2,0xf2,0xff,0xff,
+ 0xf1,0xf1,0x11,0x44,0xf1,0xf1,0xff,0xff,
+ 0xf0,0xf0,0x00,0x00,0xf0,0xf0,0xff,0xff,
+ 0xef,0xef,0xff,0xff,0xef,0xef,0xee,0xbb,
+ 0xee,0xee,0xee,0xbb,0xee,0xee,0xee,0xbb,
+ 0xed,0xed,0xdd,0x77,0xed,0xed,0xee,0xbb,
+ 0xec,0xec,0xcc,0x33,0xec,0xec,0xee,0xbb,
+ 0xeb,0xeb,0xbb,0xee,0xeb,0xeb,0xee,0xbb,
+ 0xea,0xea,0xaa,0xaa,0xea,0xea,0xee,0xbb,
+ 0xe9,0xe9,0x99,0x66,0xe9,0xe9,0xee,0xbb,
+ 0xe8,0xe8,0x88,0x22,0xe8,0xe8,0xee,0xbb,
+ 0xe7,0xe7,0x77,0xdd,0xe7,0xe7,0xee,0xbb,
+ 0xe6,0xe6,0x66,0x99,0xe6,0xe6,0xee,0xbb,
+ 0xe5,0xe5,0x55,0x55,0xe5,0xe5,0xee,0xbb,
+ 0xe4,0xe4,0x44,0x11,0xe4,0xe4,0xee,0xbb,
+ 0xe3,0xe3,0x33,0xcc,0xe3,0xe3,0xee,0xbb,
+ 0xe2,0xe2,0x22,0x88,0xe2,0xe2,0xee,0xbb,
+ 0xe1,0xe1,0x11,0x44,0xe1,0xe1,0xee,0xbb,
+ 0xe0,0xe0,0x00,0x00,0xe0,0xe0,0xee,0xbb,
+ 0xdf,0xdf,0xff,0xff,0xdf,0xdf,0xdd,0x77,
+ 0xde,0xde,0xee,0xbb,0xde,0xde,0xdd,0x77,
+ 0xdd,0xdd,0xdd,0x77,0xdd,0xdd,0xdd,0x77,
+ 0xdc,0xdc,0xcc,0x33,0xdc,0xdc,0xdd,0x77,
+ 0xdb,0xdb,0xbb,0xee,0xdb,0xdb,0xdd,0x77,
+ 0xda,0xda,0xaa,0xaa,0xda,0xda,0xdd,0x77,
+ 0xd9,0xd9,0x99,0x66,0xd9,0xd9,0xdd,0x77,
+ 0xd8,0xd8,0x88,0x22,0xd8,0xd8,0xdd,0x77,
+ 0xd7,0xd7,0x77,0xdd,0xd7,0xd7,0xdd,0x77,
+ 0xd6,0xd6,0x66,0x99,0xd6,0xd6,0xdd,0x77,
+ 0xd5,0xd5,0x55,0x55,0xd5,0xd5,0xdd,0x77,
+ 0xd4,0xd4,0x44,0x11,0xd4,0xd4,0xdd,0x77,
+ 0xd3,0xd3,0x33,0xcc,0xd3,0xd3,0xdd,0x77,
+ 0xd2,0xd2,0x22,0x88,0xd2,0xd2,0xdd,0x77,
+ 0xd1,0xd1,0x11,0x44,0xd1,0xd1,0xdd,0x77,
+ 0xd0,0xd0,0x00,0x00,0xd0,0xd0,0xdd,0x77,
+ 0xcf,0xcf,0xff,0xff,0xcf,0xcf,0xcc,0x33,
+ 0xce,0xce,0xee,0xbb,0xce,0xce,0xcc,0x33,
+ 0xcd,0xcd,0xdd,0x77,0xcd,0xcd,0xcc,0x33,
+ 0xcc,0xcc,0xcc,0x33,0xcc,0xcc,0xcc,0x33,
+ 0xcb,0xcb,0xbb,0xee,0xcb,0xcb,0xcc,0x33,
+ 0xca,0xca,0xaa,0xaa,0xca,0xca,0xcc,0x33,
+ 0xc9,0xc9,0x99,0x66,0xc9,0xc9,0xcc,0x33,
+ 0xc8,0xc8,0x88,0x22,0xc8,0xc8,0xcc,0x33,
+ 0xc7,0xc7,0x77,0xdd,0xc7,0xc7,0xcc,0x33,
+ 0xc6,0xc6,0x66,0x99,0xc6,0xc6,0xcc,0x33,
+ 0xc5,0xc5,0x55,0x55,0xc5,0xc5,0xcc,0x33,
+ 0xc4,0xc4,0x44,0x11,0xc4,0xc4,0xcc,0x33,
+ 0xc3,0xc3,0x33,0xcc,0xc3,0xc3,0xcc,0x33,
+ 0xc2,0xc2,0x22,0x88,0xc2,0xc2,0xcc,0x33,
+ 0xc1,0xc1,0x11,0x44,0xc1,0xc1,0xcc,0x33,
+ 0xc0,0xc0,0x00,0x00,0xc0,0xc0,0xcc,0x33,
+ 0xbf,0xbf,0xff,0xff,0xbf,0xbf,0xbb,0xee,
+ 0xbe,0xbe,0xee,0xbb,0xbe,0xbe,0xbb,0xee,
+ 0xbd,0xbd,0xdd,0x77,0xbd,0xbd,0xbb,0xee,
+ 0xbc,0xbc,0xcc,0x33,0xbc,0xbc,0xbb,0xee,
+ 0xbb,0xbb,0xbb,0xee,0xbb,0xbb,0xbb,0xee,
+ 0xba,0xba,0xaa,0xaa,0xba,0xba,0xbb,0xee,
+ 0xb9,0xb9,0x99,0x66,0xb9,0xb9,0xbb,0xee,
+ 0xb8,0xb8,0x88,0x22,0xb8,0xb8,0xbb,0xee,
+ 0xb7,0xb7,0x77,0xdd,0xb7,0xb7,0xbb,0xee,
+ 0xb6,0xb6,0x66,0x99,0xb6,0xb6,0xbb,0xee,
+ 0xb5,0xb5,0x55,0x55,0xb5,0xb5,0xbb,0xee,
+ 0xb4,0xb4,0x44,0x11,0xb4,0xb4,0xbb,0xee,
+ 0xb3,0xb3,0x33,0xcc,0xb3,0xb3,0xbb,0xee,
+ 0xb2,0xb2,0x22,0x88,0xb2,0xb2,0xbb,0xee,
+ 0xb1,0xb1,0x11,0x44,0xb1,0xb1,0xbb,0xee,
+ 0xb0,0xb0,0x00,0x00,0xb0,0xb0,0xbb,0xee,
+ 0xaf,0xaf,0xff,0xff,0xaf,0xaf,0xaa,0xaa,
+ 0xae,0xae,0xee,0xbb,0xae,0xae,0xaa,0xaa,
+ 0xad,0xad,0xdd,0x77,0xad,0xad,0xaa,0xaa,
+ 0xac,0xac,0xcc,0x33,0xac,0xac,0xaa,0xaa,
+ 0xab,0xab,0xbb,0xee,0xab,0xab,0xaa,0xaa,
+ 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
+ 0xa9,0xa9,0x99,0x66,0xa9,0xa9,0xaa,0xaa,
+ 0xa8,0xa8,0x88,0x22,0xa8,0xa8,0xaa,0xaa,
+ 0xa7,0xa7,0x77,0xdd,0xa7,0xa7,0xaa,0xaa,
+ 0xa6,0xa6,0x66,0x99,0xa6,0xa6,0xaa,0xaa,
+ 0xa5,0xa5,0x55,0x55,0xa5,0xa5,0xaa,0xaa,
+ 0xa4,0xa4,0x44,0x11,0xa4,0xa4,0xaa,0xaa,
+ 0xa3,0xa3,0x33,0xcc,0xa3,0xa3,0xaa,0xaa,
+ 0xa2,0xa2,0x22,0x88,0xa2,0xa2,0xaa,0xaa,
+ 0xa1,0xa1,0x11,0x44,0xa1,0xa1,0xaa,0xaa,
+ 0xa0,0xa0,0x00,0x00,0xa0,0xa0,0xaa,0xaa,
+ 0x9f,0x9f,0xff,0xff,0x9f,0x9f,0x99,0x66,
+ 0x9e,0x9e,0xee,0xbb,0x9e,0x9e,0x99,0x66,
+ 0x9d,0x9d,0xdd,0x77,0x9d,0x9d,0x99,0x66,
+ 0x9c,0x9c,0xcc,0x33,0x9c,0x9c,0x99,0x66,
+ 0x9b,0x9b,0xbb,0xee,0x9b,0x9b,0x99,0x66,
+ 0x9a,0x9a,0xaa,0xaa,0x9a,0x9a,0x99,0x66,
+ 0x99,0x99,0x99,0x66,0x99,0x99,0x99,0x66,
+ 0x98,0x98,0x88,0x22,0x98,0x98,0x99,0x66,
+ 0x97,0x97,0x77,0xdd,0x97,0x97,0x99,0x66,
+ 0x96,0x96,0x66,0x99,0x96,0x96,0x99,0x66,
+ 0x95,0x95,0x55,0x55,0x95,0x95,0x99,0x66,
+ 0x94,0x94,0x44,0x11,0x94,0x94,0x99,0x66,
+ 0x93,0x93,0x33,0xcc,0x93,0x93,0x99,0x66,
+ 0x92,0x92,0x22,0x88,0x92,0x92,0x99,0x66,
+ 0x91,0x91,0x11,0x44,0x91,0x91,0x99,0x66,
+ 0x90,0x90,0x00,0x00,0x90,0x90,0x99,0x66,
+ 0x8f,0x8f,0xff,0xff,0x8f,0x8f,0x88,0x22,
+ 0x8e,0x8e,0xee,0xbb,0x8e,0x8e,0x88,0x22,
+ 0x8d,0x8d,0xdd,0x77,0x8d,0x8d,0x88,0x22,
+ 0x8c,0x8c,0xcc,0x33,0x8c,0x8c,0x88,0x22,
+ 0x8b,0x8b,0xbb,0xee,0x8b,0x8b,0x88,0x22,
+ 0x8a,0x8a,0xaa,0xaa,0x8a,0x8a,0x88,0x22,
+ 0x89,0x89,0x99,0x66,0x89,0x89,0x88,0x22,
+ 0x88,0x88,0x88,0x22,0x88,0x88,0x88,0x22,
+ 0x87,0x87,0x77,0xdd,0x87,0x87,0x88,0x22,
+ 0x86,0x86,0x66,0x99,0x86,0x86,0x88,0x22,
+ 0x85,0x85,0x55,0x55,0x85,0x85,0x88,0x22,
+ 0x84,0x84,0x44,0x11,0x84,0x84,0x88,0x22,
+ 0x83,0x83,0x33,0xcc,0x83,0x83,0x88,0x22,
+ 0x82,0x82,0x22,0x88,0x82,0x82,0x88,0x22,
+ 0x81,0x81,0x11,0x44,0x81,0x81,0x88,0x22,
+ 0x80,0x80,0x00,0x00,0x80,0x80,0x88,0x22,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0x77,0xdd,
+ 0xfe,0xfe,0xee,0xbb,0xfe,0xfe,0x77,0xdd,
+ 0xfd,0xfd,0xdd,0x77,0xfd,0xfd,0x77,0xdd,
+ 0xfc,0xfc,0xcc,0x33,0xfc,0xfc,0x77,0xdd,
+ 0xfb,0xfb,0xbb,0xee,0xfb,0xfb,0x77,0xdd,
+ 0xfa,0xfa,0xaa,0xaa,0xfa,0xfa,0x77,0xdd,
+ 0xf9,0xf9,0x99,0x66,0xf9,0xf9,0x77,0xdd,
+ 0xf8,0xf8,0x88,0x22,0xf8,0xf8,0x77,0xdd,
+ 0xf7,0xf7,0x77,0xdd,0xf7,0xf7,0x77,0xdd,
+ 0xf6,0xf6,0x66,0x99,0xf6,0xf6,0x77,0xdd,
+ 0xf5,0xf5,0x55,0x55,0xf5,0xf5,0x77,0xdd,
+ 0xf4,0xf4,0x44,0x11,0xf4,0xf4,0x77,0xdd,
+ 0xf3,0xf3,0x33,0xcc,0xf3,0xf3,0x77,0xdd,
+ 0xf2,0xf2,0x22,0x88,0xf2,0xf2,0x77,0xdd,
+ 0xf1,0xf1,0x11,0x44,0xf1,0xf1,0x77,0xdd,
+ 0xf0,0xf0,0x00,0x00,0xf0,0xf0,0x77,0xdd,
+ 0xef,0xef,0xff,0xff,0xef,0xef,0x66,0x99,
+ 0xee,0xee,0xee,0xbb,0xee,0xee,0x66,0x99,
+ 0xed,0xed,0xdd,0x77,0xed,0xed,0x66,0x99,
+ 0xec,0xec,0xcc,0x33,0xec,0xec,0x66,0x99,
+ 0xeb,0xeb,0xbb,0xee,0xeb,0xeb,0x66,0x99,
+ 0xea,0xea,0xaa,0xaa,0xea,0xea,0x66,0x99,
+ 0xe9,0xe9,0x99,0x66,0xe9,0xe9,0x66,0x99,
+ 0xe8,0xe8,0x88,0x22,0xe8,0xe8,0x66,0x99,
+ 0xe7,0xe7,0x77,0xdd,0xe7,0xe7,0x66,0x99,
+ 0xe6,0xe6,0x66,0x99,0xe6,0xe6,0x66,0x99,
+ 0xe5,0xe5,0x55,0x55,0xe5,0xe5,0x66,0x99,
+ 0xe4,0xe4,0x44,0x11,0xe4,0xe4,0x66,0x99,
+ 0xe3,0xe3,0x33,0xcc,0xe3,0xe3,0x66,0x99,
+ 0xe2,0xe2,0x22,0x88,0xe2,0xe2,0x66,0x99,
+ 0xe1,0xe1,0x11,0x44,0xe1,0xe1,0x66,0x99,
+ 0xe0,0xe0,0x00,0x00,0xe0,0xe0,0x66,0x99,
+ 0xdf,0xdf,0xff,0xff,0xdf,0xdf,0x55,0x55,
+ 0xde,0xde,0xee,0xbb,0xde,0xde,0x55,0x55,
+ 0xdd,0xdd,0xdd,0x77,0xdd,0xdd,0x55,0x55,
+ 0xdc,0xdc,0xcc,0x33,0xdc,0xdc,0x55,0x55,
+ 0xdb,0xdb,0xbb,0xee,0xdb,0xdb,0x55,0x55,
+ 0xda,0xda,0xaa,0xaa,0xda,0xda,0x55,0x55,
+ 0xd9,0xd9,0x99,0x66,0xd9,0xd9,0x55,0x55,
+ 0xd8,0xd8,0x88,0x22,0xd8,0xd8,0x55,0x55,
+ 0xd7,0xd7,0x77,0xdd,0xd7,0xd7,0x55,0x55,
+ 0xd6,0xd6,0x66,0x99,0xd6,0xd6,0x55,0x55,
+ 0xd5,0xd5,0x55,0x55,0xd5,0xd5,0x55,0x55,
+ 0xd4,0xd4,0x44,0x11,0xd4,0xd4,0x55,0x55,
+ 0xd3,0xd3,0x33,0xcc,0xd3,0xd3,0x55,0x55,
+ 0xd2,0xd2,0x22,0x88,0xd2,0xd2,0x55,0x55,
+ 0xd1,0xd1,0x11,0x44,0xd1,0xd1,0x55,0x55,
+ 0xd0,0xd0,0x00,0x00,0xd0,0xd0,0x55,0x55,
+ 0xcf,0xcf,0xff,0xff,0xcf,0xcf,0x44,0x11,
+ 0xce,0xce,0xee,0xbb,0xce,0xce,0x44,0x11,
+ 0xcd,0xcd,0xdd,0x77,0xcd,0xcd,0x44,0x11,
+ 0xcc,0xcc,0xcc,0x33,0xcc,0xcc,0x44,0x11,
+ 0xcb,0xcb,0xbb,0xee,0xcb,0xcb,0x44,0x11,
+ 0xca,0xca,0xaa,0xaa,0xca,0xca,0x44,0x11,
+ 0xc9,0xc9,0x99,0x66,0xc9,0xc9,0x44,0x11,
+ 0xc8,0xc8,0x88,0x22,0xc8,0xc8,0x44,0x11,
+ 0xc7,0xc7,0x77,0xdd,0xc7,0xc7,0x44,0x11,
+ 0xc6,0xc6,0x66,0x99,0xc6,0xc6,0x44,0x11,
+ 0xc5,0xc5,0x55,0x55,0xc5,0xc5,0x44,0x11,
+ 0xc4,0xc4,0x44,0x11,0xc4,0xc4,0x44,0x11,
+ 0xc3,0xc3,0x33,0xcc,0xc3,0xc3,0x44,0x11,
+ 0xc2,0xc2,0x22,0x88,0xc2,0xc2,0x44,0x11,
+ 0xc1,0xc1,0x11,0x44,0xc1,0xc1,0x44,0x11,
+ 0xc0,0xc0,0x00,0x00,0xc0,0xc0,0x44,0x11,
+ 0xbf,0xbf,0xff,0xff,0xbf,0xbf,0x33,0xcc,
+ 0xbe,0xbe,0xee,0xbb,0xbe,0xbe,0x33,0xcc,
+ 0xbd,0xbd,0xdd,0x77,0xbd,0xbd,0x33,0xcc,
+ 0xbc,0xbc,0xcc,0x33,0xbc,0xbc,0x33,0xcc,
+ 0xbb,0xbb,0xbb,0xee,0xbb,0xbb,0x33,0xcc,
+ 0xba,0xba,0xaa,0xaa,0xba,0xba,0x33,0xcc,
+ 0xb9,0xb9,0x99,0x66,0xb9,0xb9,0x33,0xcc,
+ 0xb8,0xb8,0x88,0x22,0xb8,0xb8,0x33,0xcc,
+ 0xb7,0xb7,0x77,0xdd,0xb7,0xb7,0x33,0xcc,
+ 0xb6,0xb6,0x66,0x99,0xb6,0xb6,0x33,0xcc,
+ 0xb5,0xb5,0x55,0x55,0xb5,0xb5,0x33,0xcc,
+ 0xb4,0xb4,0x44,0x11,0xb4,0xb4,0x33,0xcc,
+ 0xb3,0xb3,0x33,0xcc,0xb3,0xb3,0x33,0xcc,
+ 0xb2,0xb2,0x22,0x88,0xb2,0xb2,0x33,0xcc,
+ 0xb1,0xb1,0x11,0x44,0xb1,0xb1,0x33,0xcc,
+ 0xb0,0xb0,0x00,0x00,0xb0,0xb0,0x33,0xcc,
+ 0xaf,0xaf,0xff,0xff,0xaf,0xaf,0x22,0x88,
+ 0xae,0xae,0xee,0xbb,0xae,0xae,0x22,0x88,
+ 0xad,0xad,0xdd,0x77,0xad,0xad,0x22,0x88,
+ 0xac,0xac,0xcc,0x33,0xac,0xac,0x22,0x88,
+ 0xab,0xab,0xbb,0xee,0xab,0xab,0x22,0x88,
+ 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x22,0x88,
+ 0xa9,0xa9,0x99,0x66,0xa9,0xa9,0x22,0x88,
+ 0xa8,0xa8,0x88,0x22,0xa8,0xa8,0x22,0x88,
+ 0xa7,0xa7,0x77,0xdd,0xa7,0xa7,0x22,0x88,
+ 0xa6,0xa6,0x66,0x99,0xa6,0xa6,0x22,0x88,
+ 0xa5,0xa5,0x55,0x55,0xa5,0xa5,0x22,0x88,
+ 0xa4,0xa4,0x44,0x11,0xa4,0xa4,0x22,0x88,
+ 0xa3,0xa3,0x33,0xcc,0xa3,0xa3,0x22,0x88,
+ 0xa2,0xa2,0x22,0x88,0xa2,0xa2,0x22,0x88,
+ 0xa1,0xa1,0x11,0x44,0xa1,0xa1,0x22,0x88,
+ 0xa0,0xa0,0x00,0x00,0xa0,0xa0,0x22,0x88,
+ 0x9f,0x9f,0xff,0xff,0x9f,0x9f,0x11,0x44,
+ 0x9e,0x9e,0xee,0xbb,0x9e,0x9e,0x11,0x44,
+ 0x9d,0x9d,0xdd,0x77,0x9d,0x9d,0x11,0x44,
+ 0x9c,0x9c,0xcc,0x33,0x9c,0x9c,0x11,0x44,
+ 0x9b,0x9b,0xbb,0xee,0x9b,0x9b,0x11,0x44,
+ 0x9a,0x9a,0xaa,0xaa,0x9a,0x9a,0x11,0x44,
+ 0x99,0x99,0x99,0x66,0x99,0x99,0x11,0x44,
+ 0x98,0x98,0x88,0x22,0x98,0x98,0x11,0x44,
+ 0x97,0x97,0x77,0xdd,0x97,0x97,0x11,0x44,
+ 0x96,0x96,0x66,0x99,0x96,0x96,0x11,0x44,
+ 0x95,0x95,0x55,0x55,0x95,0x95,0x11,0x44,
+ 0x94,0x94,0x44,0x11,0x94,0x94,0x11,0x44,
+ 0x93,0x93,0x33,0xcc,0x93,0x93,0x11,0x44,
+ 0x92,0x92,0x22,0x88,0x92,0x92,0x11,0x44,
+ 0x91,0x91,0x11,0x44,0x91,0x91,0x11,0x44,
+ 0x90,0x90,0x00,0x00,0x90,0x90,0x11,0x44,
+ 0x8f,0x8f,0xff,0xff,0x8f,0x8f,0x00,0x00,
+ 0x8e,0x8e,0xee,0xbb,0x8e,0x8e,0x00,0x00,
+ 0x8d,0x8d,0xdd,0x77,0x8d,0x8d,0x00,0x00,
+ 0x8c,0x8c,0xcc,0x33,0x8c,0x8c,0x00,0x00,
+ 0x8b,0x8b,0xbb,0xee,0x8b,0x8b,0x00,0x00,
+ 0x8a,0x8a,0xaa,0xaa,0x8a,0x8a,0x00,0x00,
+ 0x89,0x89,0x99,0x66,0x89,0x89,0x00,0x00,
+ 0x88,0x88,0x88,0x22,0x88,0x88,0x00,0x00,
+ 0x87,0x87,0x77,0xdd,0x87,0x87,0x00,0x00,
+ 0x86,0x86,0x66,0x99,0x86,0x86,0x00,0x00,
+ 0x85,0x85,0x55,0x55,0x85,0x85,0x00,0x00,
+ 0x84,0x84,0x44,0x11,0x84,0x84,0x00,0x00,
+ 0x83,0x83,0x33,0xcc,0x83,0x83,0x00,0x00,
+ 0x82,0x82,0x22,0x88,0x82,0x82,0x00,0x00,
+ 0x81,0x81,0x11,0x44,0x81,0x81,0x00,0x00,
+ 0x80,0x80,0x00,0x00,0x80,0x80,0x00,0x00
+];
+
+export default rmfont_charset;