From 4c6ccf0d63da59f9ed0028f0e5b0951b26cc02fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 12 Nov 2022 11:03:36 +0100 Subject: [PATCH] Character sets are limited to GB2312, Shift_JIS, Unicode, and all singlebyte. Fixed font code points - proper characters display, adding, etc. --- .../decompiler/flash/tags/DefineFont2Tag.java | 40 +- .../decompiler/flash/tags/DefineFont3Tag.java | 38 +- .../flash/tags/DefineFontInfo2Tag.java | 10 + .../flash/tags/DefineFontInfoTag.java | 13 +- .../decompiler/flash/tags/DefineFontTag.java | 28 +- .../flash/tags/base/FontInfoTag.java | 4 + .../decompiler/flash/tags/base/FontTag.java | 2 + .../flash/tags/gfx/DefineCompactedFont.java | 5 + .../com/jpexs/helpers/utf8/Utf8Helper.java | 118 +- .../charset/AbstractCharsetConverter.java | 102 + .../jpexs/helpers/utf8/charset/Gb18030.java | 97 + .../helpers/utf8/charset/Gb18030data.bin | 10868 ++++++++++++++++ .../jpexs/helpers/utf8/charset/Gb2312.java | 88 + .../jpexs/helpers/utf8/charset/Gb2312data.bin | 1766 +++ .../jpexs/helpers/utf8/charset/ShiftJis.java | 92 + .../helpers/utf8/charset/ShiftJisdata.bin | 7891 +++++++++++ .../jpexs/decompiler/flash/gui/FontPanel.java | 7 + .../flash/gui/locales/MainFrame.properties | 4 +- .../flash/gui/locales/MainFrame_cs.properties | 4 +- .../flash/gui/tagtree/TagTreeContextMenu.java | 3 +- 20 files changed, 21146 insertions(+), 34 deletions(-) create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/AbstractCharsetConverter.java create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030.java create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030data.bin create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312.java create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312data.bin create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJis.java create mode 100644 libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJisdata.bin diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont2Tag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont2Tag.java index fc30ba052..2e04c517a 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont2Tag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont2Tag.java @@ -361,12 +361,12 @@ public class DefineFont2Tag extends FontTag { @Override public char glyphToChar(int glyphIndex) { - return (char) (int) codeTable.get(glyphIndex); + return Utf8Helper.codePointToChar(codeTable.get(glyphIndex), getCodesCharset()); } @Override public int charToGlyph(char c) { - return codeTable.indexOf((int) c); + return codeTable.indexOf(Utf8Helper.charToCodePoint(c, getCodesCharset())); } @Override @@ -452,8 +452,13 @@ public class DefineFont2Tag extends FontTag { int fontStyle = getFontStyle(); SHAPE shp = SHAPERECORD.fontCharacterToSHAPE(font, (int) Math.round(getDivider() * 1024), character); - - int code = (int) character; + + int code = (int) Utf8Helper.charToCodePoint(character, getCodesCharset()); + + if (code == -1) { //Fixme - throw exception, etc. + code = 0; + } + int pos = -1; boolean exists = false; for (int i = 0; i < codeTable.size(); i++) { @@ -472,7 +477,7 @@ public class DefineFont2Tag extends FontTag { if (!exists) { shiftGlyphIndices(fontID, pos, true); glyphShapeTable.add(pos, shp); - codeTable.add(pos, (int) character); + codeTable.add(pos, code); } else { glyphShapeTable.set(pos, shp); } @@ -488,25 +493,25 @@ public class DefineFont2Tag extends FontTag { } for (int k = 0; k < fontKerningTable.size(); k++) { - if (fontKerningTable.get(k).fontKerningCode1 == character - || fontKerningTable.get(k).fontKerningCode2 == character) { + if (fontKerningTable.get(k).fontKerningCode1 == code + || fontKerningTable.get(k).fontKerningCode2 == code) { fontKerningTable.remove(k); k--; } } List kerning = getFontKerningPairs(font, (int) (getDivider() * 1024)); for (FontHelper.KerningPair pair : kerning) { - if (pair.char1 != character && pair.char2 != character) { + if (pair.char1 != code && pair.char2 != code) { continue; } int glyph1 = charToGlyph(pair.char1); - if (pair.char1 == character) { + if (pair.char1 == code) { } else if (glyph1 == -1) { continue; } int glyph2 = charToGlyph(pair.char2); - if (pair.char2 == character) { + if (pair.char2 == code) { } else if (glyph2 == -1) { continue; @@ -596,7 +601,8 @@ public class DefineFont2Tag extends FontTag { public String getCharacters() { StringBuilder ret = new StringBuilder(codeTable.size()); for (int i : codeTable) { - ret.append((char) i); + Character c = Utf8Helper.codePointToChar(i, getCodesCharset()); + ret.append(c == null ? "?" : c); } return ret.toString(); } @@ -616,8 +622,10 @@ public class DefineFont2Tag extends FontTag { @Override public int getCharKerningAdjustment(char c1, char c2) { int kerningAdjustment = 0; + int c1Code = Utf8Helper.charToCodePoint(c1, getCodesCharset()); + int c2Code = Utf8Helper.charToCodePoint(c2, getCodesCharset()); for (KERNINGRECORD ker : fontKerningTable) { - if (ker.fontKerningCode1 == c1 && ker.fontKerningCode2 == c2) { + if (ker.fontKerningCode1 == c1Code && ker.fontKerningCode2 == c2Code) { kerningAdjustment = ker.fontKerningAdjustment; break; } @@ -687,4 +695,12 @@ public class DefineFont2Tag extends FontTag { return hasLayout(); } + @Override + public String getCodesCharset() { + if (fontFlagsShiftJIS) { + return "Shift_JIS"; + } + return getCharset(); + } + } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont3Tag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont3Tag.java index c630603e5..c84b885e8 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont3Tag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont3Tag.java @@ -327,12 +327,12 @@ public class DefineFont3Tag extends FontTag { @Override public char glyphToChar(int glyphIndex) { - return (char) (int) codeTable.get(glyphIndex); + return Utf8Helper.codePointToChar(codeTable.get(glyphIndex), getCodesCharset()); } @Override public int charToGlyph(char c) { - return codeTable.indexOf((int) c); + return codeTable.indexOf(Utf8Helper.charToCodePoint(c, getCodesCharset())); } @Override @@ -444,7 +444,11 @@ public class DefineFont3Tag extends FontTag { } int fontStyle = getFontStyle(); SHAPE shp = SHAPERECORD.fontCharacterToSHAPE(font, (int) Math.round(getDivider() * 1024), character); - int code = (int) character; + int code = (int) Utf8Helper.charToCodePoint(character, getCodesCharset()); + + if (code == -1) { //Fixme - throw exception, etc. + code = 0; + } int pos = -1; boolean exists = false; for (int i = 0; i < codeTable.size(); i++) { @@ -463,7 +467,7 @@ public class DefineFont3Tag extends FontTag { if (!exists) { shiftGlyphIndices(fontID, pos, true); glyphShapeTable.add(pos, shp); - codeTable.add(pos, (int) character); + codeTable.add(pos, code); } else { glyphShapeTable.set(pos, shp); } @@ -479,25 +483,25 @@ public class DefineFont3Tag extends FontTag { } for (int k = 0; k < fontKerningTable.size(); k++) { - if (fontKerningTable.get(k).fontKerningCode1 == character - || fontKerningTable.get(k).fontKerningCode2 == character) { + if (fontKerningTable.get(k).fontKerningCode1 == code + || fontKerningTable.get(k).fontKerningCode2 == code) { fontKerningTable.remove(k); k--; } } List kerning = getFontKerningPairs(font, (int) (getDivider() * 1024)); for (FontHelper.KerningPair pair : kerning) { - if (pair.char1 != character && pair.char2 != character) { + if (pair.char1 != code && pair.char2 != code) { continue; } int glyph1 = charToGlyph(pair.char1); - if (pair.char1 == character) { + if (pair.char1 == code) { } else if (glyph1 == -1) { continue; } int glyph2 = charToGlyph(pair.char2); - if (pair.char2 == character) { + if (pair.char2 == code) { } else if (glyph2 == -1) { continue; @@ -599,7 +603,8 @@ public class DefineFont3Tag extends FontTag { public String getCharacters() { StringBuilder ret = new StringBuilder(codeTable.size()); for (int i : codeTable) { - ret.append((char) i); + Character c = Utf8Helper.codePointToChar(i, getCodesCharset()); + ret.append(c == null ? "?" : c); } return ret.toString(); } @@ -629,9 +634,12 @@ public class DefineFont3Tag extends FontTag { @Override public int getCharKerningAdjustment(char c1, char c2) { + int c1Code = Utf8Helper.charToCodePoint(c1, getCodesCharset()); + int c2Code = Utf8Helper.charToCodePoint(c2, getCodesCharset()); + int kerningAdjustment = 0; for (KERNINGRECORD ker : fontKerningTable) { - if (ker.fontKerningCode1 == c1 && ker.fontKerningCode2 == c2) { + if (ker.fontKerningCode1 == c1Code && ker.fontKerningCode2 == c2Code) { kerningAdjustment = ker.fontKerningAdjustment; break; } @@ -701,4 +709,12 @@ public class DefineFont3Tag extends FontTag { public boolean isLeadingEditable() { return hasLayout(); } + + @Override + public String getCodesCharset() { + if (fontFlagsShiftJIS) { + return "Shift_JIS"; + } + return getCharset(); + } } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfo2Tag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfo2Tag.java index 9f23003f1..d218c068d 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfo2Tag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfo2Tag.java @@ -179,4 +179,14 @@ public class DefineFontInfo2Tag extends FontInfoTag { public void setFontFlagsItalic(boolean value) { fontFlagsItalic = value; } + + @Override + public boolean isAnsi() { + return fontFlagsANSI; + } + + @Override + public boolean isShiftJIS() { + return fontFlagsShiftJIS; + } } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfoTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfoTag.java index 547455d32..1cd6c155c 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfoTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfoTag.java @@ -59,7 +59,8 @@ public class DefineFontInfoTag extends FontInfoTag { public boolean fontFlagsWideCodes; - @SWFType(value = BasicType.UI8, alternateValue = BasicType.UI16, alternateCondition = "fontFlagsWideCodes") + //@SWFType(value = BasicType.UI8, alternateValue = BasicType.UI16, alternateCondition = "fontFlagsWideCodes") + @SWFType(value = BasicType.UI16) public List codeTable; /** @@ -179,5 +180,15 @@ public class DefineFontInfoTag extends FontInfoTag { @Override public void setFontFlagsItalic(boolean value) { fontFlagsItalic = value; + } + + @Override + public boolean isShiftJIS() { + return fontFlagsShiftJIS; + } + + @Override + public boolean isAnsi() { + return fontFlagsANSI; } } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontTag.java index bc68ee7e9..838e46da7 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontTag.java @@ -29,9 +29,11 @@ import com.jpexs.decompiler.flash.types.annotations.SWFType; import com.jpexs.decompiler.flash.types.annotations.SWFVersion; import com.jpexs.decompiler.flash.types.shaperecords.SHAPERECORD; import com.jpexs.helpers.ByteArrayRange; +import com.jpexs.helpers.utf8.Utf8Helper; import java.awt.Font; import java.io.ByteArrayOutputStream; import java.io.IOException; +import java.nio.charset.Charset; import java.util.ArrayList; import java.util.List; @@ -156,7 +158,7 @@ public class DefineFontTag extends FontTag { public char glyphToChar(int glyphIndex) { ensureFontInfo(); if (fontInfoTag != null) { - return (char) (int) fontInfoTag.getCodeTable().get(glyphIndex); + return Utf8Helper.codePointToChar(fontInfoTag.getCodeTable().get(glyphIndex), getCodesCharset()); } else { return '?'; } @@ -166,7 +168,7 @@ public class DefineFontTag extends FontTag { public int charToGlyph(char c) { ensureFontInfo(); if (fontInfoTag != null) { - return fontInfoTag.getCodeTable().indexOf((int) c); + return fontInfoTag.getCodeTable().indexOf(Utf8Helper.charToCodePoint(c, getCodesCharset())); } return -1; @@ -265,11 +267,25 @@ public class DefineFontTag extends FontTag { return 1; } + @Override + public String getCodesCharset() { + if (fontInfoTag != null && fontInfoTag.isShiftJIS()) { + return "Shift_JIS"; + } + return getCharset(); + } + + + @Override public void addCharacter(char character, Font font) { SHAPE shp = SHAPERECORD.fontCharacterToSHAPE(font, (int) Math.round(getDivider() * 1024), character); ensureFontInfo(); - int code = (int) character; + int code = (int) Utf8Helper.charToCodePoint(character, getCodesCharset()); + + if (code == -1) { //Fixme - throw exception, etc. + code = 0; + } int pos = -1; boolean exists = false; if (fontInfoTag != null) { @@ -296,7 +312,7 @@ public class DefineFontTag extends FontTag { shiftGlyphIndices(fontId, pos, true); glyphShapeTable.add(pos, shp); if (fontInfoTag != null) { - fontInfoTag.addFontCharacter(pos, (int) character); + fontInfoTag.addFontCharacter(pos, code); } } else { glyphShapeTable.set(pos, shp); @@ -362,8 +378,8 @@ public class DefineFontTag extends FontTag { if (fontInfoTag != null) { List codeTable = fontInfoTag.getCodeTable(); StringBuilder ret = new StringBuilder(codeTable.size()); - for (int i : codeTable) { - ret.append((char) i); + for (int i : codeTable) { + ret.append(Utf8Helper.codePointToChar(i, getCodesCharset())); } return ret.toString(); } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontInfoTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontInfoTag.java index d2226197b..f5b889bd8 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontInfoTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontInfoTag.java @@ -62,6 +62,10 @@ public abstract class FontInfoTag extends Tag implements CharacterIdTag { public abstract void setFontFlagsItalic(boolean value); + public abstract boolean isShiftJIS(); + + public abstract boolean isAnsi(); + @Override public String toString() { return super.toString() + " (" + fontID + ")"; diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontTag.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontTag.java index 3cdcf0b2e..e552cf0f1 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontTag.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontTag.java @@ -531,4 +531,6 @@ public abstract class FontTag extends DrawableTag implements AloneTag { return installedFontsByName; } + public abstract String getCodesCharset(); + } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/gfx/DefineCompactedFont.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/gfx/DefineCompactedFont.java index 23e085613..541103f6f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/gfx/DefineCompactedFont.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/gfx/DefineCompactedFont.java @@ -534,4 +534,9 @@ public final class DefineCompactedFont extends FontTag { public RECT getRectWithStrokes() { return getRect(); } + + @Override + public String getCodesCharset() { + return getCharset(); + } } diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/Utf8Helper.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/Utf8Helper.java index c92c9c8bf..6767e6d50 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/Utf8Helper.java +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/Utf8Helper.java @@ -16,10 +16,21 @@ */ package com.jpexs.helpers.utf8; +import com.jpexs.helpers.Helper; +import com.jpexs.helpers.utf8.charset.Gb2312; +import com.jpexs.helpers.utf8.charset.ShiftJis; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.net.URLEncoder; +import java.nio.ByteBuffer; +import java.nio.CharBuffer; import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; /** * @@ -28,8 +39,44 @@ import java.nio.charset.Charset; public class Utf8Helper { public static String charsetName = "UTF-8"; - + public static Charset charset = Charset.forName("UTF-8"); + + private static List allowedVariableLengthCharsets = Arrays.asList( + "GB2312", "Shift_JIS", "UTF-8", "UTF-16", "UTF16-BE", "UTF-16-LE", "UTF-32", "UTF-32LE", "UTF-32BE"); + + /** + * Allowed charsets. They are limited to single byte charsets + allowedVariableLengthCharsets + */ + public static List allowedCharsets = new ArrayList<>(); + + static { + Map charsets = Charset.availableCharsets(); + for (String s : charsets.keySet()) { + Charset charset = charsets.get(s); + int maxLen = 0; + int minLen = Integer.MAX_VALUE; + try { + for (int i = 0; i < 65536; i++) { + + ByteBuffer buf = charset.encode("" + (char) i); + int len = buf.remaining(); + if (len > maxLen) { + maxLen = len; + } + if (len < minLen) { + minLen = len; + } + } + if ((minLen == maxLen && minLen == 1) || allowedVariableLengthCharsets.contains(s)) { + allowedCharsets.add(s); + } + } catch (UnsupportedOperationException ex) { + //System.out.println(s + " ... ERROR"); + } + + } + } public static String urlDecode(String s) { try { @@ -55,4 +102,73 @@ public class Utf8Helper { // todo: make it faster without actually writing it to an array return string.getBytes(charset).length; } + + public static char codePointToChar(int codePoint, String charsetName) { + int newCodePoint; + switch (charsetName) { + case "GB2312": + newCodePoint = new Gb2312().toUnicode(codePoint); + break; + case "Shift_JIS": + newCodePoint = new ShiftJis().toUnicode(codePoint); + break; + case "UTF-8": + case "UTF-16": + case "UTF-16BE": + case "UTF-16LE": + case "UTF-32": + case "UTF-32BE": + case "UTF-32LE": + newCodePoint = codePoint; + break; + default: { + //Assuming single byte - ANSI + newCodePoint = -1; + try { + newCodePoint = new String(new byte[]{(byte) codePoint}, charsetName).codePointAt(0); + } catch (UnsupportedEncodingException ex) { + Logger.getLogger(Utf8Helper.class.getName()).log(Level.SEVERE, null, ex); + } + } + + } + + if (newCodePoint >= 0) { + return (char) newCodePoint; + } + return '?'; + } + + public static int charToCodePoint(char character, String charsetName) { + int unicodeCodePoint = (int) character; + int codePoint; + switch (charsetName) { + case "GB2312": + codePoint = new Gb2312().fromUnicode(unicodeCodePoint); + break; + case "Shift_JIS": + codePoint = new ShiftJis().fromUnicode(unicodeCodePoint); + break; + case "UTF-8": + case "UTF-16": + case "UTF-16BE": + case "UTF-16LE": + case "UTF-32": + case "UTF-32BE": + case "UTF-32LE": + codePoint = unicodeCodePoint; + break; + default: { + codePoint = -1; + try { + //assuming single byte ANSI + codePoint = ("" + character).getBytes(charsetName)[0] & 0xff; + } catch (UnsupportedEncodingException ex) { + Logger.getLogger(Utf8Helper.class.getName()).log(Level.SEVERE, null, ex); + } + } + + } + return codePoint; + } } diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/AbstractCharsetConverter.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/AbstractCharsetConverter.java new file mode 100644 index 000000000..32d75c218 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/AbstractCharsetConverter.java @@ -0,0 +1,102 @@ +package com.jpexs.helpers.utf8.charset; + +import com.jpexs.decompiler.flash.action.parser.ActionParseException; +import com.jpexs.decompiler.flash.action.parser.script.ActionScriptLexer; +import com.jpexs.decompiler.flash.action.parser.script.ParsedSymbol; +import com.jpexs.decompiler.flash.action.parser.script.SymbolType; +import java.io.IOException; +import java.util.Map; + +/** + * + * @author JPEXS + */ +public abstract class AbstractCharsetConverter { + + protected static void readMap(Map data, ActionScriptLexer lexer) throws IOException, ActionParseException { + ParsedSymbol s; + lexer.lex(); //identifier; + lexer.lex(); //= + lexer.lex(); // { + int pos1 = 0; + do { + s = lexer.lex(); //{ + if (s.type == SymbolType.CURLY_CLOSE) { + break; + } + s = lexer.lex(); + int key = (int) (long) (Long) s.value; + lexer.lex(); //, + s = lexer.lex(); + int value = (int) (long) (Long) s.value; + data.put(key, value); + s = lexer.lex(); //} + s = lexer.lex(); + pos1++; + } while ((s.type == SymbolType.COMMA)); + lexer.lex(); //; + } + + protected static void readOneDimensionalInt(int data[], ActionScriptLexer lexer) throws IOException, ActionParseException { + ParsedSymbol s; + lexer.lex(); //identifier + lexer.lex(); //= + lexer.lex(); // { + int pos = 0; + do { + s = lexer.lex(); + if (s.type == SymbolType.CURLY_CLOSE) { + break; + } + boolean negative = false; + if (s.type == SymbolType.MINUS) { + negative = true; + s = lexer.lex(); + } + data[pos] = (int) (long) (Long) s.value; + if (negative) { + data[pos] = -data[pos]; + } + s = lexer.lex(); + pos++; + } while (s.type == SymbolType.COMMA); + lexer.lex(); //; + } + + protected static void readTwoDimensionalInt(int data[][], ActionScriptLexer lexer) throws IOException, ActionParseException { + ParsedSymbol s; + lexer.lex(); //identifier; + lexer.lex(); //= + lexer.lex(); // { + int pos1 = 0; + do { + s = lexer.lex(); //{ + int pos2 = 0; + do { + s = lexer.lex(); + if (s.type == SymbolType.CURLY_CLOSE) { + break; + } + boolean negative = false; + if (s.type == SymbolType.MINUS) { + negative = true; + s = lexer.lex(); + } + data[pos1][pos2] = (int) (long) (Long) s.value; + if (negative) { + data[pos1][pos2] = -data[pos1][pos2]; + } + s = lexer.lex(); + pos2++; + } while (s.type == SymbolType.COMMA); + s = lexer.lex(); + pos1++; + } while ((s.type == SymbolType.COMMA)); + //lexer.lex(); // } + lexer.lex(); //; + } + + public abstract int toUnicode(int codePoint); + + public abstract int fromUnicode(int codePoint); +} diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030.java new file mode 100644 index 000000000..22bf9bd73 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030.java @@ -0,0 +1,97 @@ +package com.jpexs.helpers.utf8.charset; + +import com.jpexs.decompiler.flash.action.parser.ActionParseException; +import com.jpexs.decompiler.flash.action.parser.script.ActionScriptLexer; +import com.jpexs.decompiler.flash.action.parser.script.ParsedSymbol; +import static com.jpexs.helpers.utf8.charset.AbstractCharsetConverter.readOneDimensionalInt; +import static com.jpexs.helpers.utf8.charset.AbstractCharsetConverter.readTwoDimensionalInt; +import com.jpexs.helpers.utf8.Utf8Helper; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.logging.Level; +import java.util.logging.Logger; + +/** + * + * @author JPEXS + */ +public class Gb18030 extends AbstractCharsetConverter { + + private static int[][] gb18030_index_to_cp_len2_record = new int[126][191]; + + private static final int GB18030_NULL = 0; + + private static int[] gb18030_len4_record_shift = new int[]{0, -1546, -2806, -4066, -5326, -6586, + 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -41987, -43247, -44507, -45767, -47027, -48287, -49547, -50807, + -52067, -53327, 11, -59963, -61223, -62483, 12, 13}; + + private static int[][] gb18030_index_to_cp_len4_record = new int[14][1260]; + + private static int[] gb18030_cp_to_index_record = new int[61339]; + + static { + //Since data is too long to save it directly into Java source, load it from bin + InputStream is = Gb18030.class.getResourceAsStream("/com/jpexs/helpers/utf8/charset/Gb18030data.bin"); + if (is == null) { + System.exit(0); + } + ActionScriptLexer lexer = new ActionScriptLexer(new InputStreamReader(is, Utf8Helper.charset)); + try { + ParsedSymbol s; + readTwoDimensionalInt(gb18030_index_to_cp_len2_record, lexer); + readTwoDimensionalInt(gb18030_index_to_cp_len4_record, lexer); + readOneDimensionalInt(gb18030_cp_to_index_record, lexer); + } catch (IOException | ActionParseException ex) { + Logger.getLogger(Gb2312.class.getName()).log(Level.SEVERE, null, ex); + } + } + + public static int gb18030_index_to_cp_len2(int byte1, int byte2) { + if (0x81 <= byte1 && byte1 <= 0xfe && 0x40 <= byte2 && byte2 <= 0xfe) { + return gb18030_index_to_cp_len2_record[byte1 - 0x81][byte2 - 0x40]; + } else { + return 0; + } + } + + public static int gb18030_index_to_cp_len4(int byte1, int byte2, int byte3, int byte4) { + int pos_1, pos_2; + byte1 -= 0x81; + byte2 -= 0x30; + byte3 -= 0x81; + byte4 -= 0x30; + pos_1 = byte1 * 10 + byte2; + pos_2 = byte3 * 10 + byte4; + if (pos_1 <= 31 && pos_2 <= 1259) { + if (gb18030_len4_record_shift[pos_1] < 0) { + return pos_2 - gb18030_len4_record_shift[pos_1]; + } else { + return gb18030_index_to_cp_len4_record[gb18030_len4_record_shift[pos_1]][pos_2]; + } + } else { + return 0; + } + } + + /** + * + * @param codepoint + * @return + */ + @Override + public int toUnicode(int codepoint) { + int result = 0; + if (0 <= codepoint && codepoint <= 55295) { + result = (int) gb18030_cp_to_index_record[codepoint]; + } else if (59493 <= codepoint && codepoint <= 65535) { + result = (int) gb18030_cp_to_index_record[codepoint - 4197]; + } + return result == 0 ? GB18030_NULL : result; + } + + @Override + public int fromUnicode(int codePoint) { + throw new UnsupportedOperationException("Not supported yet."); + } +} diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030data.bin b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030data.bin new file mode 100644 index 000000000..86be14cd7 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb18030data.bin @@ -0,0 +1,10868 @@ + +gb18030_index_to_cp_len2_record = +{{19970,19972,19973,19974,19983,19986,19991,19999,20000,20001,20003,20006,20009, +20014,20015,20017,20019,20021,20023,20028,20032,20033,20034,20036,20038,20042, +20049,20053,20055,20058,20059,20066,20067,20068,20069,20071,20072,20074,20075, +20076,20077,20078,20079,20082,20084,20085,20086,20087,20088,20089,20090,20091, +20092,20093,20095,20096,20097,20098,20099,20100,20101,20103,20106,0,20112,20118, +20119,20121,20124,20125,20126,20131,20138,20143,20144,20145,20148,20150,20151, +20152,20153,20156,20157,20158,20168,20172,20175,20176,20178,20186,20187,20188, +20192,20194,20198,20199,20201,20205,20206,20207,20209,20212,20216,20217,20218, +20220,20222,20224,20226,20227,20228,20229,20230,20231,20232,20235,20236,20242, +20243,20244,20245,20246,20252,20253,20257,20259,20264,20265,20268,20269,20270, +20273,20275,20277,20279,20281,20283,20286,20287,20288,20289,20290,20292,20293, +20295,20296,20297,20298,20299,20300,20306,20308,20310,20321,20322,20326,20328, +20330,20331,20333,20334,20337,20338,20341,20343,20344,20345,20346,20349,20352, +20353,20354,20357,20358,20359,20362,20364,20366,20368,20370,20371,20373,20374, +20376,20377,20378,20380,20382,20383,20385,20386}, +{20388,20395,20397,20400,20401,20402,20403,20404,20406,20407,20408,20409,20410, +20411,20412,20413,20414,20416,20417,20418,20422,20423,20424,20425,20427,20428, +20429,20434,20435,20436,20437,20438,20441,20443,20448,20450,20452,20453,20455, +20459,20460,20464,20466,20468,20469,20470,20471,20473,20475,20476,20477,20479, +20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,0,20491,20494, +20496,20497,20499,20501,20502,20503,20507,20509,20510,20512,20514,20515,20516, +20519,20523,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537, +20539,20541,20543,20544,20545,20546,20548,20549,20550,20553,20554,20555,20557, +20560,20561,20562,20563,20564,20566,20567,20568,20569,20571,20573,20574,20575, +20576,20577,20578,20579,20580,20582,20583,20584,20585,20586,20587,20589,20590, +20591,20592,20593,20594,20595,20596,20597,20600,20601,20602,20604,20605,20609, +20610,20611,20612,20614,20615,20617,20618,20619,20620,20622,20623,20624,20625, +20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638, +20639,20640,20641,20642,20644,20646,20650,20651,20653,20654,20655,20656,20657, +20659,20660,20661,20662,20663,20664,20665,20668}, +{20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681, +20682,20683,20684,20685,20686,20688,20689,20690,20691,20692,20693,20695,20696, +20697,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20712, +20713,20714,20715,20719,20720,20721,20722,20724,20726,20727,20728,20729,20730, +20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20744,0,20745,20746, +20748,20749,20750,20751,20752,20753,20755,20756,20757,20758,20759,20760,20761, +20762,20763,20764,20765,20766,20767,20768,20770,20771,20772,20773,20774,20775, +20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788, +20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20802,20807,20810, +20812,20814,20815,20816,20818,20819,20823,20824,20825,20827,20829,20830,20831, +20832,20833,20835,20836,20838,20839,20841,20842,20847,20850,20858,20862,20863, +20867,20868,20870,20871,20874,20875,20878,20879,20880,20881,20883,20884,20888, +20890,20893,20894,20895,20897,20899,20902,20903,20904,20905,20906,20909,20910, +20916,20920,20921,20922,20926,20927,20929,20930,20931,20933,20936,20938,20941, +20942,20944,20946,20947,20948,20949,20950,20951}, +{20952,20953,20954,20956,20958,20959,20962,20963,20965,20966,20967,20968,20969, +20970,20972,20974,20977,20978,20980,20983,20990,20996,20997,21001,21003,21004, +21007,21008,21011,21012,21013,21020,21022,21023,21025,21026,21027,21029,21030, +21031,21034,21036,21039,21041,21042,21044,21045,21052,21054,21060,21061,21062, +21063,21064,21065,21067,21070,21071,21074,21075,21077,21079,21080,0,21081,21082, +21083,21085,21087,21088,21090,21091,21092,21094,21096,21099,21100,21101,21102, +21104,21105,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21118, +21120,21123,21124,21125,21126,21127,21129,21130,21131,21132,21133,21134,21135, +21137,21138,21140,21141,21142,21143,21144,21145,21146,21148,21156,21157,21158, +21159,21166,21167,21168,21172,21173,21174,21175,21176,21177,21178,21179,21180, +21181,21184,21185,21186,21188,21189,21190,21192,21194,21196,21197,21198,21199, +21201,21203,21204,21205,21207,21209,21210,21211,21212,21213,21214,21216,21217, +21218,21219,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231, +21233,21234,21235,21236,21237,21238,21239,21240,21243,21244,21245,21249,21250, +21251,21252,21255,21257,21258,21259,21260,21262}, +{21265,21266,21267,21268,21272,21275,21276,21278,21279,21282,21284,21285,21287, +21288,21289,21291,21292,21293,21295,21296,21297,21298,21299,21300,21301,21302, +21303,21304,21308,21309,21312,21314,21316,21318,21323,21324,21325,21328,21332, +21336,21337,21339,21341,21349,21352,21354,21356,21357,21362,21366,21369,21371, +21372,21373,21374,21376,21377,21379,21383,21384,21386,21390,21391,0,21392,21393, +21394,21395,21396,21398,21399,21401,21403,21404,21406,21408,21409,21412,21415, +21418,21419,21420,21421,21423,21424,21425,21426,21427,21428,21429,21431,21432, +21433,21434,21436,21437,21438,21440,21443,21444,21445,21446,21447,21454,21455, +21456,21458,21459,21461,21466,21468,21469,21470,21473,21474,21479,21492,21498, +21502,21503,21504,21506,21509,21511,21515,21524,21528,21529,21530,21532,21538, +21540,21541,21546,21552,21555,21558,21559,21562,21565,21567,21569,21570,21572, +21573,21575,21577,21580,21581,21582,21583,21585,21594,21597,21598,21599,21600, +21601,21603,21605,21607,21609,21610,21611,21612,21613,21614,21615,21616,21620, +21625,21626,21630,21631,21633,21635,21637,21639,21640,21641,21642,21645,21649, +21651,21655,21656,21660,21662,21663,21664,21665}, +{21666,21669,21678,21680,21682,21685,21686,21687,21689,21690,21692,21694,21699, +21701,21706,21707,21718,21720,21723,21728,21729,21730,21731,21732,21739,21740, +21743,21744,21745,21748,21749,21750,21751,21752,21753,21755,21758,21760,21762, +21763,21764,21765,21768,21770,21771,21772,21773,21774,21778,21779,21781,21782, +21783,21784,21785,21786,21788,21789,21790,21791,21793,21797,21798,0,21800,21801, +21803,21805,21810,21812,21813,21814,21816,21817,21818,21819,21821,21824,21826, +21829,21831,21832,21835,21836,21837,21838,21839,21841,21842,21843,21844,21847, +21848,21849,21850,21851,21853,21854,21855,21856,21858,21859,21864,21865,21867, +21871,21872,21873,21874,21875,21876,21881,21882,21885,21887,21893,21894,21900, +21901,21902,21904,21906,21907,21909,21910,21911,21914,21915,21918,21920,21921, +21922,21923,21924,21925,21926,21928,21929,21930,21931,21932,21933,21934,21935, +21936,21938,21940,21942,21944,21946,21948,21951,21952,21953,21954,21955,21958, +21959,21960,21962,21963,21966,21967,21968,21973,21975,21976,21977,21978,21979, +21982,21984,21986,21991,21993,21997,21998,22000,22001,22004,22006,22008,22009, +22010,22011,22012,22015,22018,22019,22020,22021}, +{22022,22023,22026,22027,22029,22032,22033,22034,22035,22036,22037,22038,22039, +22041,22042,22044,22045,22048,22049,22050,22053,22054,22056,22057,22058,22059, +22062,22063,22064,22067,22069,22071,22072,22074,22076,22077,22078,22080,22081, +22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22095,22096,22097, +22098,22099,22101,22102,22106,22107,22109,22110,22111,22112,22113,0,22115,22117, +22118,22119,22125,22126,22127,22128,22130,22131,22132,22133,22135,22136,22137, +22138,22141,22142,22143,22144,22145,22146,22147,22148,22151,22152,22153,22154, +22155,22156,22157,22160,22161,22162,22164,22165,22166,22167,22168,22169,22170, +22171,22172,22173,22174,22175,22176,22177,22178,22180,22181,22182,22183,22184, +22185,22186,22187,22188,22189,22190,22192,22193,22194,22195,22196,22197,22198, +22200,22201,22202,22203,22205,22206,22207,22208,22209,22210,22211,22212,22213, +22214,22215,22216,22217,22219,22220,22221,22222,22223,22224,22225,22226,22227, +22229,22230,22232,22233,22236,22243,22245,22246,22247,22248,22249,22250,22252, +22254,22255,22258,22259,22262,22263,22264,22267,22268,22272,22273,22274,22277, +22279,22283,22284,22285,22286,22287,22288,22289}, +{22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22301,22302,22304, +22305,22306,22308,22309,22310,22311,22315,22321,22322,22324,22325,22326,22327, +22328,22332,22333,22335,22337,22339,22340,22341,22342,22344,22345,22347,22354, +22355,22356,22357,22358,22360,22361,22370,22371,22373,22375,22380,22382,22384, +22385,22386,22388,22389,22392,22393,22394,22397,22398,22399,22400,0,22401,22407, +22408,22409,22410,22413,22414,22415,22416,22417,22420,22421,22422,22423,22424, +22425,22426,22428,22429,22430,22431,22437,22440,22442,22444,22447,22448,22449, +22451,22453,22454,22455,22457,22458,22459,22460,22461,22462,22463,22464,22465, +22468,22469,22470,22471,22472,22473,22474,22476,22477,22480,22481,22483,22486, +22487,22491,22492,22494,22497,22498,22499,22501,22502,22503,22504,22505,22506, +22507,22508,22510,22512,22513,22514,22515,22517,22518,22519,22523,22524,22526, +22527,22529,22531,22532,22533,22536,22537,22538,22540,22542,22543,22544,22546, +22547,22548,22550,22551,22552,22554,22555,22556,22557,22559,22562,22563,22565, +22566,22567,22568,22569,22571,22572,22573,22574,22575,22577,22578,22579,22580, +22582,22583,22584,22585,22586,22587,22588,22589}, +{22590,22591,22592,22593,22594,22595,22597,22598,22599,22600,22601,22602,22603, +22606,22607,22608,22610,22611,22613,22614,22615,22617,22618,22619,22620,22621, +22623,22624,22625,22626,22627,22628,22630,22631,22632,22633,22634,22637,22638, +22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651, +22652,22653,22655,22658,22660,22662,22663,22664,22666,22667,22668,0,22669,22670, +22671,22672,22673,22676,22677,22678,22679,22680,22683,22684,22685,22688,22689, +22690,22691,22692,22693,22694,22695,22698,22699,22700,22701,22702,22703,22704, +22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22717,22718, +22719,22720,22722,22723,22724,22726,22727,22728,22729,22730,22731,22732,22733, +22734,22735,22736,22738,22739,22740,22742,22743,22744,22745,22746,22747,22748, +22749,22750,22751,22752,22753,22754,22755,22757,22758,22759,22760,22761,22762, +22765,22767,22769,22770,22772,22773,22775,22776,22778,22779,22780,22781,22782, +22783,22784,22785,22787,22789,22790,22792,22793,22794,22795,22796,22798,22800, +22801,22802,22803,22807,22808,22811,22813,22814,22816,22817,22818,22819,22822, +22824,22828,22832,22834,22835,22837,22838,22843}, +{22845,22846,22847,22848,22851,22853,22854,22858,22860,22861,22864,22866,22867, +22873,22875,22876,22877,22878,22879,22881,22883,22884,22886,22887,22888,22889, +22890,22891,22892,22893,22894,22895,22896,22897,22898,22901,22903,22906,22907, +22908,22910,22911,22912,22917,22921,22923,22924,22926,22927,22928,22929,22932, +22933,22936,22938,22939,22940,22941,22943,22944,22945,22946,22950,0,22951,22956, +22957,22960,22961,22963,22964,22965,22966,22967,22968,22970,22972,22973,22975, +22976,22977,22978,22979,22980,22981,22983,22984,22985,22988,22989,22990,22991, +22997,22998,23001,23003,23006,23007,23008,23009,23010,23012,23014,23015,23017, +23018,23019,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031, +23032,23034,23036,23037,23038,23040,23042,23050,23051,23053,23054,23055,23056, +23058,23060,23061,23062,23063,23065,23066,23067,23069,23070,23073,23074,23076, +23078,23079,23080,23082,23083,23084,23085,23086,23087,23088,23091,23093,23095, +23096,23097,23098,23099,23101,23102,23103,23105,23106,23107,23108,23109,23111, +23112,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23126,23127, +23128,23129,23131,23132,23133,23134,23135,23136}, +{23137,23139,23140,23141,23142,23144,23145,23147,23148,23149,23150,23151,23152, +23153,23154,23155,23160,23161,23163,23164,23165,23166,23168,23169,23170,23171, +23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184, +23185,23187,23188,23189,23190,23191,23192,23193,23196,23197,23198,23199,23200, +23201,23202,23203,23204,23205,23206,23207,23208,23209,23211,23212,0,23213,23214, +23215,23216,23217,23220,23222,23223,23225,23226,23227,23228,23229,23231,23232, +23235,23236,23237,23238,23239,23240,23242,23243,23245,23246,23247,23248,23249, +23251,23253,23255,23257,23258,23259,23261,23262,23263,23266,23268,23269,23271, +23272,23274,23276,23277,23278,23279,23280,23282,23283,23284,23285,23286,23287, +23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300, +23301,23302,23303,23304,23306,23307,23308,23309,23310,23311,23312,23313,23314, +23315,23316,23317,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329, +23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342, +23343,23344,23345,23347,23349,23350,23352,23353,23354,23355,23356,23357,23358, +23359,23361,23362,23363,23364,23365,23366,23367}, +{23368,23369,23370,23371,23372,23373,23374,23375,23378,23382,23390,23392,23393, +23399,23400,23403,23405,23406,23407,23410,23412,23414,23415,23416,23417,23419, +23420,23422,23423,23426,23430,23434,23437,23438,23440,23441,23442,23444,23446, +23455,23463,23464,23465,23468,23469,23470,23471,23473,23474,23479,23482,23483, +23484,23488,23489,23491,23496,23497,23498,23499,23501,23502,23503,0,23505,23508, +23509,23510,23511,23512,23513,23514,23515,23516,23520,23522,23523,23526,23527, +23529,23530,23531,23532,23533,23535,23537,23538,23539,23540,23541,23542,23543, +23549,23550,23552,23554,23555,23557,23559,23560,23563,23564,23565,23566,23568, +23570,23571,23575,23577,23579,23582,23583,23584,23585,23587,23590,23592,23593, +23594,23595,23597,23598,23599,23600,23602,23603,23605,23606,23607,23619,23620, +23622,23623,23628,23629,23634,23635,23636,23638,23639,23640,23642,23643,23644, +23645,23647,23650,23652,23655,23656,23657,23658,23659,23660,23661,23664,23666, +23667,23668,23669,23670,23671,23672,23675,23676,23677,23678,23680,23683,23684, +23685,23686,23687,23689,23690,23691,23694,23695,23698,23699,23701,23709,23710, +23711,23712,23713,23716,23717,23718,23719,23720}, +{23722,23726,23727,23728,23730,23732,23734,23737,23738,23739,23740,23742,23744, +23746,23747,23749,23750,23751,23752,23753,23754,23756,23757,23758,23759,23760, +23761,23763,23764,23765,23766,23767,23768,23770,23771,23772,23773,23774,23775, +23776,23778,23779,23783,23785,23787,23788,23790,23791,23793,23794,23795,23796, +23797,23798,23799,23800,23801,23802,23804,23805,23806,23807,23808,0,23809,23812, +23813,23816,23817,23818,23819,23820,23821,23823,23824,23825,23826,23827,23829, +23831,23832,23833,23834,23836,23837,23839,23840,23841,23842,23843,23845,23848, +23850,23851,23852,23855,23856,23857,23858,23859,23861,23862,23863,23864,23865, +23866,23867,23868,23871,23872,23873,23874,23875,23876,23877,23878,23880,23881, +23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23897,23898, +23900,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23914, +23917,23918,23920,23921,23922,23923,23925,23926,23927,23928,23929,23930,23931, +23932,23933,23934,23935,23936,23937,23939,23940,23941,23942,23943,23944,23945, +23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958, +23959,23960,23962,23963,23964,23966,23967,23968}, +{23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981, +23982,23983,23984,23985,23986,23987,23988,23989,23990,23992,23993,23994,23995, +23996,23997,23998,23999,24000,24001,24002,24003,24004,24006,24007,24008,24009, +24010,24011,24012,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023, +24024,24025,24026,24028,24031,24032,24035,24036,24042,24044,24045,0,24048,24053, +24054,24056,24057,24058,24059,24060,24063,24064,24068,24071,24073,24074,24075, +24077,24078,24082,24083,24087,24094,24095,24096,24097,24098,24099,24100,24101, +24104,24105,24106,24107,24108,24111,24112,24114,24115,24116,24117,24118,24121, +24122,24126,24127,24128,24129,24131,24134,24135,24136,24137,24138,24139,24141, +24142,24143,24144,24145,24146,24147,24150,24151,24152,24153,24154,24156,24157, +24159,24160,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173, +24174,24175,24176,24177,24181,24183,24185,24190,24193,24194,24195,24197,24200, +24201,24204,24205,24206,24210,24216,24219,24221,24225,24226,24227,24228,24232, +24233,24234,24235,24236,24238,24239,24240,24241,24242,24244,24250,24251,24252, +24253,24255,24256,24257,24258,24259,24260,24261}, +{24262,24263,24264,24267,24268,24269,24270,24271,24272,24276,24277,24279,24280, +24281,24282,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294, +24295,24297,24299,24300,24301,24302,24303,24304,24305,24306,24307,24309,24312, +24313,24315,24316,24317,24325,24326,24327,24329,24332,24333,24334,24336,24338, +24340,24342,24345,24346,24348,24349,24350,24353,24354,24355,24356,0,24360,24363, +24364,24366,24368,24370,24371,24372,24373,24374,24375,24376,24379,24381,24382, +24383,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396, +24397,24398,24399,24401,24404,24409,24410,24411,24412,24414,24415,24416,24419, +24421,24423,24424,24427,24430,24431,24434,24436,24437,24438,24440,24442,24445, +24446,24447,24451,24454,24461,24462,24463,24465,24467,24468,24470,24474,24475, +24477,24478,24479,24480,24482,24483,24484,24485,24486,24487,24489,24491,24492, +24495,24496,24497,24498,24499,24500,24502,24504,24505,24506,24507,24510,24511, +24512,24513,24514,24519,24520,24522,24523,24526,24531,24532,24533,24538,24539, +24540,24542,24543,24546,24547,24549,24550,24552,24553,24556,24559,24560,24562, +24563,24564,24566,24567,24569,24570,24572,24583}, +{24584,24585,24587,24588,24592,24593,24595,24599,24600,24602,24606,24607,24610, +24611,24612,24620,24621,24622,24624,24625,24626,24627,24628,24630,24631,24632, +24633,24634,24637,24638,24640,24644,24645,24646,24647,24648,24649,24650,24652, +24654,24655,24657,24659,24660,24662,24663,24664,24667,24668,24670,24671,24672, +24673,24677,24678,24686,24689,24690,24692,24693,24695,24702,24704,0,24705,24706, +24709,24710,24711,24712,24714,24715,24718,24719,24720,24721,24723,24725,24727, +24728,24729,24732,24734,24737,24738,24740,24741,24743,24745,24746,24750,24752, +24755,24757,24758,24759,24761,24762,24765,24766,24767,24768,24769,24770,24771, +24772,24775,24776,24777,24780,24781,24782,24783,24784,24786,24787,24788,24790, +24791,24793,24795,24798,24801,24802,24803,24804,24805,24810,24817,24818,24821, +24823,24824,24827,24828,24829,24830,24831,24834,24835,24836,24837,24839,24842, +24843,24844,24848,24849,24850,24851,24852,24854,24855,24856,24857,24859,24860, +24861,24862,24865,24866,24869,24872,24873,24874,24876,24877,24878,24879,24880, +24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893, +24894,24896,24897,24898,24899,24900,24901,24902}, +{24903,24905,24907,24909,24911,24912,24914,24915,24916,24918,24919,24920,24921, +24922,24923,24924,24926,24927,24928,24929,24931,24932,24933,24934,24937,24938, +24939,24940,24941,24942,24943,24945,24946,24947,24948,24950,24952,24953,24954, +24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967, +24968,24969,24970,24972,24973,24975,24976,24977,24978,24979,24981,0,24982,24983, +24984,24985,24986,24987,24988,24990,24991,24992,24993,24994,24995,24996,24997, +24998,25002,25003,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014, +25016,25017,25018,25019,25020,25021,25023,25024,25025,25027,25028,25029,25030, +25031,25033,25036,25037,25038,25039,25040,25043,25045,25046,25047,25048,25049, +25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25063, +25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076, +25078,25079,25080,25081,25082,25083,25084,25085,25086,25088,25089,25090,25091, +25092,25093,25095,25097,25107,25108,25113,25116,25117,25118,25120,25123,25126, +25127,25128,25129,25131,25133,25135,25136,25137,25138,25141,25142,25144,25145, +25146,25147,25148,25154,25156,25157,25158,25162}, +{25167,25168,25173,25174,25175,25177,25178,25180,25181,25182,25183,25184,25185, +25186,25188,25189,25192,25201,25202,25204,25205,25207,25208,25210,25211,25213, +25217,25218,25219,25221,25222,25223,25224,25227,25228,25229,25230,25231,25232, +25236,25241,25244,25245,25246,25251,25254,25255,25257,25258,25261,25262,25263, +25264,25266,25267,25268,25270,25271,25272,25274,25278,25280,25281,0,25283,25291, +25295,25297,25301,25309,25310,25312,25313,25316,25322,25323,25328,25330,25333, +25336,25337,25338,25339,25344,25347,25348,25349,25350,25354,25355,25356,25357, +25359,25360,25362,25363,25364,25365,25367,25368,25369,25372,25382,25383,25385, +25388,25389,25390,25392,25393,25395,25396,25397,25398,25399,25400,25403,25404, +25406,25407,25408,25409,25412,25415,25416,25418,25425,25426,25427,25428,25430, +25431,25432,25433,25434,25435,25436,25437,25440,25444,25445,25446,25448,25450, +25451,25452,25455,25456,25458,25459,25460,25461,25464,25465,25468,25469,25470, +25471,25473,25475,25476,25477,25478,25483,25485,25489,25491,25492,25493,25495, +25497,25498,25499,25500,25501,25502,25503,25505,25508,25510,25515,25519,25521, +25522,25525,25526,25529,25531,25533,25535,25536}, +{25537,25538,25539,25541,25543,25544,25546,25547,25548,25553,25555,25556,25557, +25559,25560,25561,25562,25563,25564,25565,25567,25570,25572,25573,25574,25575, +25576,25579,25580,25582,25583,25584,25585,25587,25589,25591,25593,25594,25595, +25596,25598,25603,25604,25606,25607,25608,25609,25610,25613,25614,25617,25618, +25621,25622,25623,25624,25625,25626,25629,25631,25634,25635,25636,0,25637,25639, +25640,25641,25643,25646,25647,25648,25649,25650,25651,25653,25654,25655,25656, +25657,25659,25660,25662,25664,25666,25667,25673,25675,25676,25677,25678,25679, +25680,25681,25683,25685,25686,25687,25689,25690,25691,25692,25693,25695,25696, +25697,25698,25699,25700,25701,25702,25704,25706,25707,25708,25710,25711,25712, +25713,25714,25715,25716,25717,25718,25719,25723,25724,25725,25726,25727,25728, +25729,25731,25734,25736,25737,25738,25739,25740,25741,25742,25743,25744,25747, +25748,25751,25752,25754,25755,25756,25757,25759,25760,25761,25762,25763,25765, +25766,25767,25768,25770,25771,25775,25777,25778,25779,25780,25782,25785,25787, +25789,25790,25791,25793,25795,25796,25798,25799,25800,25801,25802,25803,25804, +25807,25809,25811,25812,25813,25814,25817,25818}, +{25819,25820,25821,25823,25824,25825,25827,25829,25831,25832,25833,25834,25835, +25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848, +25849,25850,25851,25852,25853,25854,25855,25857,25858,25859,25860,25861,25862, +25863,25864,25866,25867,25868,25869,25870,25871,25872,25873,25875,25876,25877, +25878,25879,25881,25882,25883,25884,25885,25886,25887,25888,25889,0,25890,25891, +25892,25894,25895,25896,25897,25898,25900,25901,25904,25905,25906,25907,25911, +25914,25916,25917,25920,25921,25922,25923,25924,25926,25927,25930,25931,25933, +25934,25936,25938,25939,25940,25943,25944,25946,25948,25951,25952,25953,25956, +25957,25959,25960,25961,25962,25965,25966,25967,25969,25971,25973,25974,25976, +25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989, +25990,25992,25993,25994,25997,25998,25999,26002,26004,26005,26006,26008,26010, +26013,26014,26016,26018,26019,26022,26024,26026,26028,26030,26033,26034,26035, +26036,26037,26038,26039,26040,26042,26043,26046,26047,26048,26050,26055,26056, +26057,26058,26061,26064,26065,26067,26068,26069,26072,26073,26074,26075,26076, +26077,26078,26079,26081,26083,26084,26090,26091}, +{26098,26099,26100,26101,26104,26105,26107,26108,26109,26110,26111,26113,26116, +26117,26119,26120,26121,26123,26125,26128,26129,26130,26134,26135,26136,26138, +26139,26140,26142,26145,26146,26147,26148,26150,26153,26154,26155,26156,26158, +26160,26162,26163,26167,26168,26169,26170,26171,26173,26175,26176,26178,26180, +26181,26182,26183,26184,26185,26186,26189,26190,26192,26193,26200,0,26201,26203, +26204,26205,26206,26208,26210,26211,26213,26215,26217,26218,26219,26220,26221, +26225,26226,26227,26229,26232,26233,26235,26236,26237,26239,26240,26241,26243, +26245,26246,26248,26249,26250,26251,26253,26254,26255,26256,26258,26259,26260, +26261,26264,26265,26266,26267,26268,26270,26271,26272,26273,26274,26275,26276, +26277,26278,26281,26282,26283,26284,26285,26287,26288,26289,26290,26291,26293, +26294,26295,26296,26298,26299,26300,26301,26303,26304,26305,26306,26307,26308, +26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321, +26322,26323,26324,26325,26326,26327,26328,26330,26334,26335,26336,26337,26338, +26339,26340,26341,26343,26344,26346,26347,26348,26349,26350,26351,26353,26357, +26358,26360,26362,26363,26365,26369,26370,26371}, +{26372,26373,26374,26375,26380,26382,26383,26385,26386,26387,26390,26392,26393, +26394,26396,26398,26400,26401,26402,26403,26404,26405,26407,26409,26414,26416, +26418,26419,26422,26423,26424,26425,26427,26428,26430,26431,26433,26436,26437, +26439,26442,26443,26445,26450,26452,26453,26455,26456,26457,26458,26459,26461, +26466,26467,26468,26470,26471,26475,26476,26478,26481,26484,26486,0,26488,26489, +26490,26491,26493,26496,26498,26499,26501,26502,26504,26506,26508,26509,26510, +26511,26513,26514,26515,26516,26518,26521,26523,26527,26528,26529,26532,26534, +26537,26540,26542,26545,26546,26548,26553,26554,26555,26556,26557,26558,26559, +26560,26562,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26581, +26582,26583,26587,26591,26593,26595,26596,26598,26599,26600,26602,26603,26605, +26606,26610,26613,26614,26615,26616,26617,26618,26619,26620,26622,26625,26626, +26627,26628,26630,26637,26640,26642,26644,26645,26648,26649,26650,26651,26652, +26654,26655,26656,26658,26659,26660,26661,26662,26663,26664,26667,26668,26669, +26670,26671,26672,26673,26676,26677,26678,26682,26683,26687,26695,26699,26701, +26703,26706,26710,26711,26712,26713,26714,26715}, +{26716,26717,26718,26719,26730,26732,26733,26734,26735,26736,26737,26738,26739, +26741,26744,26745,26746,26747,26748,26749,26750,26751,26752,26754,26756,26759, +26760,26761,26762,26763,26764,26765,26766,26768,26769,26770,26772,26773,26774, +26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26787,26788,26789, +26793,26794,26795,26796,26798,26801,26802,26804,26806,26807,26808,0,26809,26810, +26811,26812,26813,26814,26815,26817,26819,26820,26821,26822,26823,26824,26826, +26828,26830,26831,26832,26833,26835,26836,26838,26839,26841,26843,26844,26845, +26846,26847,26849,26850,26852,26853,26854,26855,26856,26857,26858,26859,26860, +26861,26863,26866,26867,26868,26870,26871,26872,26875,26877,26878,26879,26880, +26882,26883,26884,26886,26887,26888,26889,26890,26892,26895,26897,26899,26900, +26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26913,26914,26915, +26917,26918,26919,26920,26921,26922,26923,26924,26926,26927,26929,26930,26931, +26933,26934,26935,26936,26938,26939,26940,26942,26944,26945,26947,26948,26949, +26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962, +26963,26965,26966,26968,26969,26971,26972,26975}, +{26977,26978,26980,26981,26983,26984,26985,26986,26988,26989,26991,26992,26994, +26995,26996,26997,26998,27002,27003,27005,27006,27007,27009,27011,27013,27018, +27019,27020,27022,27023,27024,27025,27026,27027,27030,27031,27033,27034,27037, +27038,27039,27040,27041,27042,27043,27044,27045,27046,27049,27050,27052,27054, +27055,27056,27058,27059,27061,27062,27064,27065,27066,27068,27069,0,27070,27071, +27072,27074,27075,27076,27077,27078,27079,27080,27081,27083,27085,27087,27089, +27090,27091,27093,27094,27095,27096,27097,27098,27100,27101,27102,27105,27106, +27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27118,27119,27120, +27121,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27134,27136, +27137,27138,27139,27140,27141,27142,27143,27144,27145,27147,27148,27149,27150, +27151,27152,27153,27154,27155,27156,27157,27158,27161,27162,27163,27164,27165, +27166,27168,27170,27171,27172,27173,27174,27175,27177,27179,27180,27181,27182, +27184,27186,27187,27188,27190,27191,27192,27193,27194,27195,27196,27199,27200, +27201,27202,27203,27205,27206,27208,27209,27210,27211,27212,27213,27214,27215, +27217,27218,27219,27220,27221,27222,27223,27226}, +{27228,27229,27230,27231,27232,27234,27235,27236,27238,27239,27240,27241,27242, +27243,27244,27245,27246,27247,27248,27250,27251,27252,27253,27254,27255,27256, +27258,27259,27261,27262,27263,27265,27266,27267,27269,27270,27271,27272,27273, +27274,27275,27276,27277,27279,27282,27283,27284,27285,27286,27288,27289,27290, +27291,27292,27293,27294,27295,27297,27298,27299,27300,27301,27302,0,27303,27304, +27306,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320, +27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333, +27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346, +27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359, +27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372, +27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385, +27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398, +27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411, +27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27429, +27430,27432,27433,27434,27435,27436,27437,27438}, +{27439,27440,27441,27443,27444,27445,27446,27448,27451,27452,27453,27455,27456, +27457,27458,27460,27461,27464,27466,27467,27469,27470,27471,27472,27473,27474, +27475,27476,27477,27478,27479,27480,27482,27483,27484,27485,27486,27487,27488, +27489,27496,27497,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508, +27509,27510,27511,27512,27514,27517,27518,27519,27520,27525,27528,0,27532,27534, +27535,27536,27537,27540,27541,27543,27544,27545,27548,27549,27550,27551,27552, +27554,27555,27556,27557,27558,27559,27560,27561,27563,27564,27565,27566,27567, +27568,27569,27570,27574,27576,27577,27578,27579,27580,27581,27582,27584,27587, +27588,27590,27591,27592,27593,27594,27596,27598,27600,27601,27608,27610,27612, +27613,27614,27615,27616,27618,27619,27620,27621,27622,27623,27624,27625,27628, +27629,27630,27632,27633,27634,27636,27638,27639,27640,27642,27643,27644,27646, +27647,27648,27649,27650,27651,27652,27656,27657,27658,27659,27660,27662,27666, +27671,27676,27677,27678,27680,27683,27685,27691,27692,27693,27697,27699,27702, +27703,27705,27706,27707,27708,27710,27711,27715,27716,27717,27720,27723,27724, +27725,27726,27727,27729,27730,27731,27734,27736}, +{27737,27738,27746,27747,27749,27750,27751,27755,27756,27757,27758,27759,27761, +27763,27765,27767,27768,27770,27771,27772,27775,27776,27780,27783,27786,27787, +27789,27790,27793,27794,27797,27798,27799,27800,27802,27804,27805,27806,27808, +27810,27816,27820,27823,27824,27828,27829,27830,27831,27834,27840,27841,27842, +27843,27846,27847,27848,27851,27853,27854,27855,27857,27858,27864,0,27865,27866, +27868,27869,27871,27876,27878,27879,27881,27884,27885,27890,27892,27897,27903, +27904,27906,27907,27909,27910,27912,27913,27914,27917,27919,27920,27921,27923, +27924,27925,27926,27928,27932,27933,27935,27936,27937,27938,27939,27940,27942, +27944,27945,27948,27949,27951,27952,27956,27958,27959,27960,27962,27967,27968, +27970,27972,27977,27980,27984,27989,27990,27991,27992,27995,27997,27999,28001, +28002,28004,28005,28007,28008,28011,28012,28013,28016,28017,28018,28019,28021, +28022,28025,28026,28027,28029,28030,28031,28032,28033,28035,28036,28038,28039, +28042,28043,28045,28047,28048,28050,28054,28055,28056,28057,28058,28060,28066, +28069,28076,28077,28080,28081,28083,28084,28086,28087,28089,28090,28091,28092, +28093,28094,28097,28098,28099,28104,28105,28106}, +{28109,28110,28111,28112,28114,28115,28116,28117,28119,28122,28123,28124,28127, +28130,28131,28133,28135,28136,28137,28138,28141,28143,28144,28146,28148,28149, +28150,28152,28154,28157,28158,28159,28160,28161,28162,28163,28164,28166,28167, +28168,28169,28171,28175,28178,28179,28181,28184,28185,28187,28188,28190,28191, +28194,28198,28199,28200,28202,28204,28206,28208,28209,28211,28213,0,28214,28215, +28217,28219,28220,28221,28222,28223,28224,28225,28226,28229,28230,28231,28232, +28233,28234,28235,28236,28239,28240,28241,28242,28245,28247,28249,28250,28252, +28253,28254,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266, +28268,28269,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281, +28282,28283,28284,28285,28288,28289,28290,28292,28295,28296,28298,28299,28300, +28301,28302,28305,28306,28307,28308,28309,28310,28311,28313,28314,28315,28317, +28318,28320,28321,28323,28324,28326,28328,28329,28331,28332,28333,28334,28336, +28339,28341,28344,28345,28348,28350,28351,28352,28355,28356,28357,28358,28360, +28361,28362,28364,28365,28366,28368,28370,28374,28376,28377,28379,28380,28381, +28387,28391,28394,28395,28396,28397,28398,28399}, +{28400,28401,28402,28403,28405,28406,28407,28408,28410,28411,28412,28413,28414, +28415,28416,28417,28419,28420,28421,28423,28424,28426,28427,28428,28429,28430, +28432,28433,28434,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447, +28449,28450,28451,28453,28454,28455,28456,28460,28462,28464,28466,28468,28469, +28471,28472,28473,28474,28475,28476,28477,28479,28480,28481,28482,0,28483,28484, +28485,28488,28489,28490,28492,28494,28495,28496,28497,28498,28499,28500,28501, +28502,28503,28505,28506,28507,28509,28511,28512,28513,28515,28516,28517,28519, +28520,28521,28522,28523,28524,28527,28528,28529,28531,28533,28534,28535,28537, +28539,28541,28542,28543,28544,28545,28546,28547,28549,28550,28551,28554,28555, +28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571, +28573,28574,28575,28576,28578,28579,28580,28581,28582,28584,28585,28586,28587, +28588,28589,28590,28591,28592,28593,28594,28596,28597,28599,28600,28602,28603, +28604,28605,28606,28607,28609,28611,28612,28613,28614,28615,28616,28618,28619, +28620,28621,28622,28623,28624,28627,28628,28629,28630,28631,28632,28633,28634, +28635,28636,28637,28639,28642,28643,28644,28645}, +{28646,28647,28648,28649,28650,28651,28652,28653,28656,28657,28658,28659,28660, +28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673, +28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686, +28687,28688,28690,28691,28692,28693,28694,28695,28696,28697,28700,28701,28702, +28703,28704,28705,28706,28708,28709,28710,28711,28712,28713,28714,0,28715,28716, +28717,28718,28719,28720,28721,28722,28723,28724,28726,28727,28728,28730,28731, +28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744, +28745,28746,28747,28749,28750,28752,28753,28754,28755,28756,28757,28758,28759, +28760,28761,28762,28763,28764,28765,28767,28768,28769,28770,28771,28772,28773, +28774,28775,28776,28777,28778,28782,28785,28786,28787,28788,28791,28793,28794, +28795,28797,28801,28802,28803,28804,28806,28807,28808,28811,28812,28813,28815, +28816,28817,28819,28823,28824,28826,28827,28830,28831,28832,28833,28834,28835, +28836,28837,28838,28839,28840,28841,28842,28848,28850,28852,28853,28854,28858, +28862,28863,28868,28869,28870,28871,28873,28875,28876,28877,28878,28879,28880, +28881,28882,28883,28884,28885,28886,28887,28890}, +{28892,28893,28894,28896,28897,28898,28899,28901,28906,28910,28912,28913,28914, +28915,28916,28917,28918,28920,28922,28923,28924,28926,28927,28928,28929,28930, +28931,28932,28933,28934,28935,28936,28939,28940,28941,28942,28943,28945,28946, +28948,28951,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965, +28967,28968,28969,28970,28971,28972,28973,28974,28978,28979,28980,0,28981,28983, +28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996, +28998,28999,29000,29001,29003,29005,29007,29008,29009,29010,29011,29012,29013, +29014,29015,29016,29017,29018,29019,29021,29023,29024,29025,29026,29027,29029, +29033,29034,29035,29036,29037,29039,29040,29041,29044,29045,29046,29047,29049, +29051,29052,29054,29055,29056,29057,29058,29059,29061,29062,29063,29064,29065, +29067,29068,29069,29070,29072,29073,29074,29075,29077,29078,29079,29082,29083, +29084,29085,29086,29089,29090,29091,29092,29093,29094,29095,29097,29098,29099, +29101,29102,29103,29104,29105,29106,29108,29110,29111,29112,29114,29115,29116, +29117,29118,29119,29120,29121,29122,29124,29125,29126,29127,29128,29129,29130, +29131,29132,29133,29135,29136,29137,29138,29139}, +{29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29153,29154,29155, +29156,29158,29160,29161,29162,29163,29164,29165,29167,29168,29169,29170,29171, +29172,29173,29174,29175,29176,29178,29179,29180,29181,29182,29183,29184,29185, +29186,29187,29188,29189,29191,29192,29193,29194,29195,29196,29197,29198,29199, +29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,0,29211,29212, +29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29225,29227,29229, +29230,29231,29234,29235,29236,29242,29244,29246,29248,29249,29250,29251,29252, +29253,29254,29257,29258,29259,29262,29263,29264,29265,29267,29268,29269,29271, +29272,29274,29276,29278,29280,29283,29284,29285,29288,29290,29291,29292,29293, +29296,29297,29299,29300,29302,29303,29304,29307,29308,29309,29314,29315,29317, +29318,29319,29320,29321,29324,29326,29328,29329,29331,29332,29333,29334,29335, +29336,29337,29338,29339,29340,29341,29342,29344,29345,29346,29347,29348,29349, +29350,29351,29352,29353,29354,29355,29358,29361,29362,29363,29365,29370,29371, +29372,29373,29374,29375,29376,29381,29382,29383,29385,29386,29387,29388,29391, +29393,29395,29396,29397,29398,29400,29402,29403}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12288,12289,12290,183,713,711,168, +12291,12293,8212,65374,8214,8230,8216,8217,8220,8221,12308,12309,12296,12297, +12298,12299,12300,12301,12302,12303,12310,12311,12304,12305,177,215,247,8758, +8743,8744,8721,8719,8746,8745,8712,8759,8730,8869,8741,8736,8978,8857,8747, +8750,8801,8780,8776,8765,8733,8800,8814,8815,8804,8805,8734,8757,8756,9794, +9792,176,8242,8243,8451,65284,164,65504,65505,8240,167,8470,9734,9733,9675, +9679,9678,9671,9670,9633,9632,9651,9650,8251,8594,8592,8593,8595,12307}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8560,8561,8562,8563,8564,8565,8566, +8567,8568,8569,0,0,0,0,0,0,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361, +9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9332,9333,9334,9335,9336, +9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351, +9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,8364,0,12832,12833,12834, +12835,12836,12837,12838,12839,12840,12841,0,0,8544,8545,8546,8547,8548,8549, +8550,8551,8552,8553,8554,8555,0,0}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65281,65282,65283,65509,65285,65286, +65287,65288,65289,65290,65291,65292,65293,65294,65295,65296,65297,65298,65299, +65300,65301,65302,65303,65304,65305,65306,65307,65308,65309,65310,65311,65312, +65313,65314,65315,65316,65317,65318,65319,65320,65321,65322,65323,65324,65325, +65326,65327,65328,65329,65330,65331,65332,65333,65334,65335,65336,65337,65338, +65339,65340,65341,65342,65343,65344,65345,65346,65347,65348,65349,65350,65351, +65352,65353,65354,65355,65356,65357,65358,65359,65360,65361,65362,65363,65364, +65365,65366,65367,65368,65369,65370,65371,65372,65373,65507}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12353,12354,12355,12356,12357,12358, +12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371, +12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384, +12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397, +12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410, +12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423, +12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,0,0, +0,0,0,0,0,0,0,0,0}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12449,12450,12451,12452,12453,12454, +12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467, +12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480, +12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493, +12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506, +12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519, +12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532, +12533,12534,0,0,0,0,0,0,0,0}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,913,914,915,916,917,918,919,920, +921,922,923,924,925,926,927,928,929,931,932,933,934,935,936,937,0,0,0,0,0,0, +0,0,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,963, +964,965,966,967,968,969,0,0,0,0,0,0,0,65077,65078,65081,65082,65087,65088,65085, +65086,65089,65090,65091,65092,0,0,65083,65084,65079,65080,65073,0,65075,65076, +0,0,0,0,0,0,0,0,0}, +{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,1041,1042,1043,1044,1045,1025, +1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060, +1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,1072,1073,1074,1075,1076,1077,1105,1078,1079,1080,1081,1082,1083, +1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098, +1099,1100,1101,1102,1103,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{714,715,729,8211,8213,8229,8245,8453,8457,8598,8599,8600,8601,8725,8735,8739, +8786,8806,8807,8895,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562, +9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577, +9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9601,9602,9603,9604,9605, +9606,9607,0,9608,9609,9610,9611,9612,9613,9614,9615,9619,9620,9621,9660,9661, +9698,9699,9700,9701,9737,8853,12306,12317,12318,0,0,0,0,0,0,0,0,0,0,0,257,225, +462,224,275,233,283,232,299,237,464,236,333,243,466,242,363,250,468,249,470, +472,474,476,252,234,593,0,324,328,505,609,0,0,0,0,12549,12550,12551,12552,12553, +12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566, +12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579, +12580,12581,12582,12583,12584,12585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0}, +{12321,12322,12323,12324,12325,12326,12327,12328,12329,12963,13198,13199,13212, +13213,13214,13217,13252,13262,13265,13266,13269,65072,65506,65508,0,8481,12849, +0,8208,0,0,0,12540,12443,12444,12541,12542,12294,12445,12446,65097,65098,65099, +65100,65101,65102,65103,65104,65105,65106,65108,65109,65110,65111,65113,65114, +65115,65116,65117,65118,65119,65120,65121,0,65122,65123,65124,65125,65126,65128, +65129,65130,65131,12350,12272,12273,12274,12275,12276,12277,12278,12279,12280, +12281,12282,12283,12295,0,0,0,0,0,0,0,0,0,0,0,0,0,9472,9473,9474,9475,9476, +9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491, +9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506, +9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521, +9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536, +9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0}, +{29404,29405,29407,29410,29411,29412,29413,29414,29415,29418,29419,29429,29430, +29433,29437,29438,29439,29440,29442,29444,29445,29446,29447,29448,29449,29451, +29452,29453,29455,29456,29457,29458,29460,29464,29465,29466,29471,29472,29475, +29476,29478,29479,29480,29485,29487,29488,29490,29491,29493,29494,29498,29499, +29500,29501,29504,29505,29506,29507,29508,29509,29510,29511,29512,0,29513,29514, +29515,29516,29518,29519,29521,29523,29524,29525,29526,29528,29529,29530,29531, +29532,29533,29534,29535,29537,29538,29539,29540,29541,29542,29543,29544,29545, +29546,29547,29550,29552,29553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29567, +29568,29569,29570,29571,29573,29574,29576,29578,29580,29581,29583,29584,29586, +29587,29588,29589,29591,29592,29593,29594,29596,29597,29598,29600,29601,29603, +29604,29605,29606,29607,29608,29610,29612,29613,29617,29620,29621,29622,29624, +29625,29628,29629,29630,29631,29633,29635,29636,29637,29638,29639,0,29643,29644, +29646,29650,29651,29652,29653,29654,29655,29656,29658,29659,29660,29661,29663, +29665,29666,29667,29668,29670,29672,29674,29675,29676,29678,29679,29680,29681, +29683,29684,29685,29686,29687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29700,29703, +29704,29707,29708,29709,29710,29713,29714,29715,29716,29717,29718,29719,29720, +29721,29724,29725,29726,29727,29728,29729,29731,29732,29735,29737,29739,29741, +29743,29745,29746,29751,29752,29753,29754,29755,29757,29758,29759,29760,29762, +29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,0,29774,29775, +29776,29777,29778,29779,29780,29782,29784,29789,29792,29793,29794,29795,29796, +29797,29798,29799,29800,29801,29802,29803,29804,29806,29807,29809,29810,29811, +29812,29813,29816,29817,29818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{29819,29820,29821,29823,29826,29828,29829,29830,29832,29833,29834,29836,29837, +29839,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29853, +29855,29856,29857,29858,29859,29860,29861,29862,29866,29867,29868,29869,29870, +29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29883,29884, +29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,0,29896,29897, +29898,29899,29900,29901,29902,29903,29904,29905,29907,29908,29909,29910,29911, +29912,29913,29914,29915,29917,29919,29921,29925,29927,29928,29929,29930,29931, +29932,29933,29936,29937,29938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{29939,29941,29944,29945,29946,29947,29948,29949,29950,29952,29953,29954,29955, +29957,29958,29959,29960,29961,29962,29963,29964,29966,29968,29970,29972,29973, +29974,29975,29979,29981,29982,29984,29985,29986,29987,29988,29990,29991,29994, +29998,30004,30006,30009,30012,30013,30015,30017,30018,30019,30020,30022,30023, +30025,30026,30029,30032,30033,30034,30035,30037,30038,30039,30040,0,30045,30046, +30047,30048,30049,30050,30051,30052,30055,30056,30057,30059,30060,30061,30062, +30063,30064,30065,30067,30069,30070,30071,30074,30075,30076,30077,30078,30080, +30081,30082,30084,30085,30087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{30088,30089,30090,30092,30093,30094,30096,30099,30101,30104,30107,30108,30110, +30114,30118,30119,30120,30121,30122,30125,30134,30135,30138,30139,30143,30144, +30145,30150,30155,30156,30158,30159,30160,30161,30163,30167,30169,30170,30172, +30173,30175,30176,30177,30181,30185,30188,30189,30190,30191,30194,30195,30197, +30198,30199,30200,30202,30203,30205,30206,30210,30212,30214,30215,0,30216,30217, +30219,30221,30222,30223,30225,30226,30227,30228,30230,30234,30236,30237,30238, +30241,30243,30247,30248,30252,30254,30255,30257,30258,30262,30263,30265,30266, +30267,30269,30273,30274,30276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{30277,30278,30279,30280,30281,30282,30283,30286,30287,30288,30289,30290,30291, +30293,30295,30296,30297,30298,30299,30301,30303,30304,30305,30306,30308,30309, +30310,30311,30312,30313,30314,30316,30317,30318,30320,30321,30322,30323,30324, +30325,30326,30327,30329,30330,30332,30335,30336,30337,30339,30341,30345,30346, +30348,30349,30351,30352,30354,30356,30357,30359,30360,30362,30363,0,30364,30365, +30366,30367,30368,30369,30370,30371,30373,30374,30375,30376,30377,30378,30379, +30380,30381,30383,30384,30387,30389,30390,30391,30392,30393,30394,30395,30396, +30397,30398,30400,30401,30403,21834,38463,22467,25384,21710,21769,21696,30353, +30284,34108,30702,33406,30861,29233,38552,38797,27688,23433,20474,25353,26263, +23736,33018,26696,32942,26114,30414,20985,25942,29100,32753,34948,20658,22885, +25034,28595,33453,25420,25170,21485,21543,31494,20843,30116,24052,25300,36299, +38774,25226,32793,22365,38712,32610,29240,30333,26575,30334,25670,20336,36133, +25308,31255,26001,29677,25644,25203,33324,39041,26495,29256,25198,25292,20276, +29923,21322,21150,32458,37030,24110,26758,27036,33152,32465,26834,30917,34444, +38225,20621,35876,33502,32990,21253,35090,21093}, +{30404,30407,30409,30411,30412,30419,30421,30425,30426,30428,30429,30430,30432, +30433,30434,30435,30436,30438,30439,30440,30441,30442,30443,30444,30445,30448, +30451,30453,30454,30455,30458,30459,30461,30463,30464,30466,30467,30469,30470, +30474,30476,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488, +30491,30492,30493,30494,30497,30499,30500,30501,30503,30506,30507,0,30508,30510, +30512,30513,30514,30515,30516,30521,30523,30525,30526,30527,30530,30532,30533, +30534,30536,30537,30538,30539,30540,30541,30542,30543,30546,30547,30548,30549, +30550,30551,30552,30553,30556,34180,38649,20445,22561,39281,23453,25265,25253, +26292,35961,40077,29190,26479,30865,24754,21329,21271,36744,32972,36125,38049, +20493,29384,22791,24811,28953,34987,22868,33519,26412,31528,23849,32503,29997, +27893,36454,36856,36924,40763,27604,37145,31508,24444,30887,34006,34109,27605, +27609,27606,24065,24199,30201,38381,25949,24330,24517,36767,22721,33218,36991, +38491,38829,36793,32534,36140,25153,20415,21464,21342,36776,36777,36779,36941, +26631,24426,33176,34920,40150,24971,21035,30250,24428,25996,28626,28392,23486, +25672,20853,20912,26564,19993,31177,39292,28851}, +{30557,30558,30559,30560,30564,30567,30569,30570,30573,30574,30575,30576,30577, +30578,30579,30580,30581,30582,30583,30584,30586,30587,30588,30593,30594,30595, +30598,30599,30600,30601,30602,30603,30607,30608,30611,30612,30613,30614,30615, +30616,30617,30618,30619,30620,30621,30622,30625,30627,30628,30630,30632,30635, +30637,30638,30639,30641,30642,30644,30646,30647,30648,30649,30650,0,30652,30654, +30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668, +30670,30671,30672,30673,30674,30675,30676,30677,30678,30680,30681,30682,30685, +30686,30687,30688,30689,30692,30149,24182,29627,33760,25773,25320,38069,27874, +21338,21187,25615,38082,31636,20271,24091,33334,33046,33162,28196,27850,39539, +25429,21340,21754,34917,22496,19981,24067,27493,31807,37096,24598,25830,29468, +35009,26448,25165,36130,30572,36393,37319,24425,33756,34081,39184,21442,34453, +27531,24813,24808,28799,33485,33329,20179,27815,34255,25805,31961,27133,26361, +33609,21397,31574,20391,20876,27979,23618,36461,25554,21449,33580,33590,26597, +30900,25661,23519,23700,24046,35815,25286,26612,35962,25600,25530,34633,39307, +35863,32544,38130,20135,38416,39076,26124,29462}, +{30694,30696,30698,30703,30704,30705,30706,30708,30709,30711,30713,30714,30715, +30716,30723,30724,30725,30726,30727,30728,30730,30731,30734,30735,30736,30739, +30741,30745,30747,30750,30752,30753,30754,30756,30760,30762,30763,30766,30767, +30769,30770,30771,30773,30774,30781,30783,30785,30786,30787,30788,30790,30792, +30793,30794,30795,30797,30799,30801,30803,30804,30808,30809,30810,0,30811,30812, +30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30831, +30832,30833,30834,30835,30836,30837,30838,30840,30841,30842,30843,30845,30846, +30847,30848,30849,30850,30851,22330,23581,24120,38271,20607,32928,21378,25950, +30021,21809,20513,36229,25220,38046,26397,22066,28526,24034,21557,28818,36710, +25199,25764,25507,24443,28552,37108,33251,36784,23576,26216,24561,27785,38472, +36225,34924,25745,31216,22478,27225,25104,21576,20056,31243,24809,28548,35802, +25215,36894,39563,31204,21507,30196,25345,21273,27744,36831,24347,39536,32827, +40831,20360,23610,36196,32709,26021,28861,20805,20914,34411,23815,23456,25277, +37228,30068,36364,31264,24833,31609,20167,32504,30597,19985,33261,21021,20986, +27249,21416,36487,38148,38607,28353,38500,26970}, +{30852,30853,30854,30856,30858,30859,30863,30864,30866,30868,30869,30870,30873, +30877,30878,30880,30882,30884,30886,30888,30889,30890,30891,30892,30893,30894, +30895,30901,30902,30903,30904,30906,30907,30908,30909,30911,30912,30914,30915, +30916,30918,30919,30920,30924,30925,30926,30927,30929,30930,30931,30934,30935, +30936,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,0,30948,30949, +30950,30951,30953,30954,30955,30957,30958,30959,30960,30961,30963,30965,30966, +30968,30969,30971,30972,30973,30974,30975,30976,30978,30979,30980,30982,30983, +30984,30985,30986,30987,30988,30784,20648,30679,25616,35302,22788,25571,24029, +31359,26941,20256,33337,21912,20018,30126,31383,24162,24202,38383,21019,21561, +28810,25462,38180,22402,26149,26943,37255,21767,28147,32431,34850,25139,32496, +30133,33576,30913,38604,36766,24904,29943,35789,27492,21050,36176,27425,32874, +33905,22257,21254,20174,19995,20945,31895,37259,31751,20419,36479,31713,31388, +25703,23828,20652,33030,30209,31929,28140,32736,26449,23384,23544,30923,25774, +25619,25514,25387,38169,25645,36798,31572,30249,25171,22823,21574,27513,20643, +25140,24102,27526,20195,36151,34955,24453,36910}, +{30989,30990,30991,30992,30993,30994,30996,30997,30998,30999,31000,31001,31002, +31003,31004,31005,31007,31008,31009,31010,31011,31013,31014,31015,31016,31017, +31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31029,31030,31031, +31032,31033,31037,31039,31042,31043,31044,31045,31047,31050,31051,31052,31053, +31054,31055,31056,31057,31058,31060,31061,31064,31065,31073,31075,0,31076,31078, +31081,31082,31083,31084,31086,31088,31089,31090,31091,31092,31093,31094,31097, +31099,31100,31101,31102,31103,31106,31107,31110,31111,31112,31113,31115,31116, +31117,31118,31120,31121,31122,24608,32829,25285,20025,21333,37112,25528,32966, +26086,27694,20294,24814,28129,35806,24377,34507,24403,25377,20826,33633,26723, +20992,25443,36424,20498,23707,31095,23548,21040,31291,24764,36947,30423,24503, +24471,30340,36460,28783,30331,31561,30634,20979,37011,22564,20302,28404,36842, +25932,31515,29380,28068,32735,23265,25269,24213,22320,33922,31532,24093,24351, +36882,32532,39072,25474,28359,30872,28857,20856,38747,22443,30005,20291,30008, +24215,24806,22880,28096,27583,30857,21500,38613,20939,20993,25481,21514,38035, +35843,36300,29241,30879,34678,36845,35853,21472}, +{31123,31124,31125,31126,31127,31128,31129,31131,31132,31133,31134,31135,31136, +31137,31138,31139,31140,31141,31142,31144,31145,31146,31147,31148,31149,31150, +31151,31152,31153,31154,31156,31157,31158,31159,31160,31164,31167,31170,31172, +31173,31175,31176,31178,31180,31182,31183,31184,31187,31188,31190,31191,31193, +31194,31195,31196,31197,31198,31200,31201,31202,31205,31208,31210,0,31212,31214, +31217,31218,31219,31220,31221,31222,31223,31225,31226,31228,31230,31231,31233, +31236,31237,31239,31240,31241,31242,31244,31247,31248,31249,31250,31251,31253, +31254,31256,31257,31259,31260,19969,30447,21486,38025,39030,40718,38189,23450, +35746,20002,19996,20908,33891,25026,21160,26635,20375,24683,20923,27934,20828, +25238,26007,38497,35910,36887,30168,37117,30563,27602,29322,29420,35835,22581, +30585,36172,26460,38208,32922,24230,28193,22930,31471,30701,38203,27573,26029, +32526,22534,20817,38431,23545,22697,21544,36466,25958,39039,22244,38045,30462, +36929,25479,21702,22810,22842,22427,36530,26421,36346,33333,21057,24816,22549, +34558,23784,40517,20420,39069,35769,23077,24694,21380,25212,36943,37122,39295, +24681,32780,20799,32819,23572,39285,27953,20108}, +{31261,31263,31265,31266,31268,31269,31270,31271,31272,31273,31274,31275,31276, +31277,31278,31279,31280,31281,31282,31284,31285,31286,31288,31290,31294,31296, +31297,31298,31299,31300,31301,31303,31304,31305,31306,31307,31308,31309,31310, +31311,31312,31314,31315,31316,31317,31318,31320,31321,31322,31323,31324,31325, +31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,0,31337,31338, +31339,31340,31341,31342,31343,31345,31346,31347,31349,31355,31356,31357,31358, +31362,31365,31367,31369,31370,31371,31372,31374,31375,31376,31379,31380,31385, +31386,31387,31390,31393,31394,36144,21457,32602,31567,20240,20047,38400,27861, +29648,34281,24070,30058,32763,27146,30718,38034,32321,20961,28902,21453,36820, +33539,36137,29359,39277,27867,22346,33459,26041,32938,25151,38450,22952,20223, +35775,32442,25918,33778,38750,21857,39134,32933,21290,35837,21536,32954,24223, +27832,36153,33452,37210,21545,27675,20998,32439,22367,28954,27774,31881,22859, +20221,24575,24868,31914,20016,23553,26539,34562,23792,38155,39118,30127,28925, +36898,20911,32541,35773,22857,20964,20315,21542,22827,25975,32932,23413,25206, +25282,36752,24133,27679,31526,20239,20440,26381}, +{31395,31396,31399,31401,31402,31403,31406,31407,31408,31409,31410,31412,31413, +31414,31415,31416,31417,31418,31419,31420,31421,31422,31424,31425,31426,31427, +31428,31429,31430,31431,31432,31433,31434,31436,31437,31438,31439,31440,31441, +31442,31443,31444,31445,31447,31448,31450,31451,31452,31453,31457,31458,31460, +31463,31464,31465,31466,31467,31468,31470,31472,31473,31474,31475,0,31476,31477, +31478,31479,31480,31483,31484,31486,31488,31489,31490,31493,31495,31497,31500, +31501,31502,31504,31506,31507,31510,31511,31512,31514,31516,31517,31519,31521, +31522,31523,31527,31529,31533,28014,28074,31119,34993,24343,29995,25242,36741, +20463,37340,26023,33071,33105,24220,33104,36212,21103,35206,36171,22797,20613, +20184,38428,29238,33145,36127,23500,35747,38468,22919,32538,21648,22134,22030, +35813,25913,27010,38041,30422,28297,24178,29976,26438,26577,31487,32925,36214, +24863,31174,25954,36195,20872,21018,38050,32568,32923,32434,23703,28207,26464, +31705,30347,39640,33167,32660,31957,25630,38224,31295,21578,21733,27468,25601, +25096,40509,33011,30105,21106,38761,33883,26684,34532,38401,38548,38124,20010, +21508,32473,26681,36319,32789,26356,24218,32697}, +{31535,31536,31538,31540,31541,31542,31543,31545,31547,31549,31551,31552,31553, +31554,31555,31556,31558,31560,31562,31565,31566,31571,31573,31575,31577,31580, +31582,31583,31585,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596, +31597,31599,31600,31603,31604,31606,31608,31610,31612,31613,31615,31617,31618, +31619,31620,31622,31623,31624,31625,31626,31627,31628,31630,31631,0,31633,31634, +31635,31638,31640,31641,31642,31643,31646,31647,31648,31651,31652,31653,31662, +31663,31664,31666,31667,31669,31670,31671,31673,31674,31675,31676,31677,31678, +31679,31680,31682,31683,31684,22466,32831,26775,24037,25915,21151,24685,40858, +20379,36524,20844,23467,24339,24041,27742,25329,36129,20849,38057,21246,27807, +33503,29399,22434,26500,36141,22815,36764,33735,21653,31629,20272,27837,23396, +22993,40723,21476,34506,39592,35895,32929,25925,39038,22266,38599,21038,29916, +21072,23521,25346,35074,20054,25296,24618,26874,20851,23448,20896,35266,31649, +39302,32592,24815,28748,36143,20809,24191,36891,29808,35268,22317,30789,24402, +40863,38394,36712,39740,35809,30328,26690,26588,36330,36149,21053,36746,28378, +26829,38149,37101,22269,26524,35065,36807,21704}, +{31685,31688,31689,31690,31691,31693,31694,31695,31696,31698,31700,31701,31702, +31703,31704,31707,31708,31710,31711,31712,31714,31715,31716,31719,31720,31721, +31723,31724,31725,31727,31728,31730,31731,31732,31733,31734,31736,31737,31738, +31739,31741,31743,31744,31745,31746,31747,31748,31749,31750,31752,31753,31754, +31757,31758,31760,31761,31762,31763,31764,31765,31767,31768,31769,0,31770,31771, +31772,31773,31774,31776,31777,31778,31779,31780,31781,31784,31785,31787,31788, +31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31801,31802, +31803,31804,31805,31806,31810,39608,23401,28023,27686,20133,23475,39559,37219, +25000,37039,38889,21547,28085,23506,20989,21898,32597,32752,25788,25421,26097, +25022,24717,28938,27735,27721,22831,26477,33322,22741,22158,35946,27627,37085, +22909,32791,21495,28009,21621,21917,33655,33743,26680,31166,21644,20309,21512, +30418,35977,38402,27827,28088,36203,35088,40548,36154,22079,40657,30165,24456, +29408,24680,21756,20136,27178,34913,24658,36720,21700,28888,34425,40511,27946, +23439,24344,32418,21897,20399,29492,21564,21402,20505,21518,21628,20046,24573, +29786,22774,33899,32993,34676,29392,31946,28246}, +{31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31822,31823,31824, +31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837, +31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850, +31851,31852,31853,31854,31855,31856,31857,31858,31861,31862,31863,31864,31865, +31866,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,0,31880,31882, +31883,31884,31885,31886,31887,31888,31891,31892,31894,31897,31898,31899,31904, +31905,31907,31910,31911,31912,31913,31915,31916,31917,31919,31920,31924,31925, +31926,31927,31928,31930,31931,24359,34382,21804,25252,20114,27818,25143,33457, +21719,21326,29502,28369,30011,21010,21270,35805,27088,24458,24576,28142,22351, +27426,29615,26707,36824,32531,25442,24739,21796,30186,35938,28949,28067,23462, +24187,33618,24908,40644,30970,34647,31783,30343,20976,24822,29004,26179,24140, +24653,35854,28784,25381,36745,24509,24674,34516,22238,27585,24724,24935,21321, +24800,26214,36159,31229,20250,28905,27719,35763,35826,32472,33636,26127,23130, +39746,27985,28151,35905,27963,20249,28779,33719,25110,24785,38669,36135,31096, +20987,22334,22522,26426,30072,31293,31215,31637}, +{31935,31936,31938,31939,31940,31942,31945,31947,31950,31951,31952,31953,31954, +31955,31956,31960,31962,31963,31965,31966,31969,31970,31971,31972,31973,31974, +31975,31977,31978,31979,31980,31981,31982,31984,31985,31986,31987,31988,31989, +31990,31991,31993,31994,31996,31997,31998,31999,32000,32001,32002,32003,32004, +32005,32006,32007,32008,32009,32011,32012,32013,32014,32015,32016,0,32017,32018, +32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031, +32033,32035,32036,32037,32038,32040,32041,32042,32044,32045,32046,32048,32049, +32050,32051,32052,32053,32054,32908,39269,36857,28608,35749,40481,23020,32489, +32521,21513,26497,26840,36753,31821,38598,21450,24613,30142,27762,21363,23241, +32423,25380,20960,33034,24049,34015,25216,20864,23395,20238,31085,21058,24760, +27982,23492,23490,35745,35760,26082,24524,38469,22931,32487,32426,22025,26551, +22841,20339,23478,21152,33626,39050,36158,30002,38078,20551,31292,20215,26550, +39550,23233,27516,30417,22362,23574,31546,38388,29006,20860,32937,33392,22904, +32516,33575,26816,26604,30897,30839,25315,25441,31616,20461,21098,20943,33616, +27099,37492,36341,36145,35265,38190,31661,20214}, +{32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067, +32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080, +32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093, +32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106, +32107,32108,32109,32111,32112,32113,32114,32115,32116,32117,32118,0,32120,32121, +32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134, +32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147, +32148,32149,32150,32151,32152,20581,33328,21073,39279,28176,28293,28071,24314, +20725,23004,23558,27974,27743,30086,33931,26728,22870,35762,21280,37233,38477, +34121,26898,30977,28966,33014,20132,37066,27975,39556,23047,22204,25605,38128, +30699,20389,33050,29409,35282,39290,32564,32478,21119,25945,37237,36735,36739, +21483,31382,25581,25509,30342,31224,34903,38454,25130,21163,33410,26708,26480, +25463,30571,31469,27905,32467,35299,22992,25106,34249,33445,30028,20511,20171, +30117,35819,23626,24062,31563,26020,37329,20170,27941,35167,32039,38182,20165, +35880,36827,38771,26187,31105,36817,28908,28024}, +{32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165, +32167,32168,32169,32170,32171,32172,32173,32175,32176,32177,32178,32179,32180, +32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193, +32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206, +32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,0,32218,32219, +32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232, +32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245, +32246,32247,32248,32249,32250,23613,21170,33606,20834,33550,30555,26230,40120, +20140,24778,31934,31923,32463,20117,35686,26223,39048,38745,22659,25964,38236, +24452,30153,38742,31455,31454,20928,28847,31384,25578,31350,32416,29590,38893, +20037,28792,20061,37202,21417,25937,26087,33276,33285,21646,23601,30106,38816, +25304,29401,30141,23621,39545,33738,23616,21632,30697,20030,27822,32858,25298, +25454,24040,20855,36317,36382,38191,20465,21477,24807,28844,21095,25424,40515, +23071,20518,30519,21367,32482,25733,25899,25225,25496,20500,29237,35273,20915, +35776,32477,22343,33740,38055,20891,21531,23803}, +{32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263, +32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276, +32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289, +32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302, +32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,0,32314,32316, +32317,32318,32319,32320,32322,32323,32324,32325,32326,32328,32329,32330,32331, +32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344, +32345,32346,32347,32348,32349,20426,31459,27994,37089,39567,21888,21654,21345, +21679,24320,25577,26999,20975,24936,21002,22570,21208,22350,30733,30475,24247, +24951,31968,25179,25239,20130,28821,32771,25335,28900,38752,22391,33499,26607, +26869,30933,39063,31185,22771,21683,21487,28212,20811,21051,23458,35838,32943, +21827,22438,24691,22353,21549,31354,24656,23380,25511,25248,21475,25187,23495, +26543,21741,31391,33510,37239,24211,35044,22840,22446,25358,36328,33007,22359, +31607,20393,24555,23485,27454,21281,31568,29378,26694,30719,30518,26103,20917, +20111,30420,23743,31397,33909,22862,39745,20608}, +{32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362, +32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375, +32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32387,32388,32389, +32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402, +32403,32404,32405,32406,32407,32408,32409,32410,32412,32413,32414,0,32430,32436, +32443,32444,32470,32484,32492,32505,32522,32528,32542,32567,32569,32571,32572, +32573,32574,32575,32576,32577,32579,32582,32583,32584,32585,32586,32587,32588, +32589,32590,32591,32594,32595,39304,24871,28291,22372,26118,25414,22256,25324, +25193,24275,38420,22403,25289,21895,34593,33098,36771,21862,33713,26469,36182, +34013,23146,26639,25318,31726,38417,20848,28572,35888,25597,35272,25042,32518, +28866,28389,29701,27028,29436,24266,37070,26391,28010,25438,21171,29282,32769, +20332,23013,37226,28889,28061,21202,20048,38647,38253,34174,30922,32047,20769, +22418,25794,32907,31867,27882,26865,26974,20919,21400,26792,29313,40654,31729, +29432,31163,28435,29702,26446,37324,40100,31036,33673,33620,21519,26647,20029, +21385,21169,30782,21382,21033,20616,20363,20432}, +{32598,32601,32603,32604,32605,32606,32608,32611,32612,32613,32614,32615,32619, +32620,32621,32623,32624,32627,32629,32630,32631,32632,32634,32635,32636,32637, +32639,32640,32642,32643,32644,32645,32646,32647,32648,32649,32651,32653,32655, +32656,32657,32658,32659,32661,32662,32663,32664,32665,32667,32668,32672,32674, +32675,32677,32678,32680,32681,32682,32683,32684,32685,32686,32689,0,32691,32692, +32693,32694,32695,32698,32699,32702,32704,32706,32707,32708,32710,32711,32712, +32713,32715,32717,32719,32720,32721,32722,32723,32726,32727,32729,32730,32731, +32732,32733,32734,32738,32739,30178,31435,31890,27813,38582,21147,29827,21737, +20457,32852,33714,36830,38256,24265,24604,28063,24088,25947,33080,38142,24651, +28860,32451,31918,20937,26753,31921,33391,20004,36742,37327,26238,20142,35845, +25769,32842,20698,30103,29134,23525,36797,28518,20102,25730,38243,24278,26009, +21015,35010,28872,21155,29454,29747,26519,30967,38678,20020,37051,40158,28107, +20955,36161,21533,25294,29618,33777,38646,40836,38083,20278,32666,20940,28789, +38517,23725,39046,21478,20196,28316,29705,27060,30827,39311,30041,21016,30244, +27969,26611,20845,40857,32843,21657,31548,31423}, +{32740,32743,32744,32746,32747,32748,32749,32751,32754,32756,32757,32758,32759, +32760,32761,32762,32765,32766,32767,32770,32775,32776,32777,32778,32782,32783, +32785,32787,32794,32795,32797,32798,32799,32801,32803,32804,32811,32812,32813, +32814,32815,32816,32818,32820,32825,32826,32828,32830,32832,32833,32836,32837, +32839,32840,32841,32846,32847,32848,32849,32851,32853,32854,32855,0,32857,32859, +32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872, +32875,32876,32877,32878,32879,32880,32882,32883,32884,32885,32886,32887,32888, +32889,32890,32891,32892,32893,38534,22404,25314,38471,27004,23044,25602,31699, +28431,38475,33446,21346,39045,24208,28809,25523,21348,34383,40065,40595,30860, +38706,36335,36162,40575,28510,31108,24405,38470,25134,39540,21525,38109,20387, +26053,23653,23649,32533,34385,27695,24459,29575,28388,32511,23782,25371,23402, +28390,21365,20081,25504,30053,25249,36718,20262,20177,27814,32438,35770,33821, +34746,32599,36923,38179,31657,39585,35064,33853,27931,39558,32476,22920,40635, +29595,30721,34434,39532,39554,22043,21527,22475,20080,40614,21334,36808,33033, +30610,39314,34542,28385,34067,26364,24930,28459}, +{32894,32897,32898,32901,32904,32906,32909,32910,32911,32912,32913,32914,32916, +32917,32919,32921,32926,32931,32934,32935,32936,32940,32944,32947,32949,32950, +32952,32953,32955,32965,32967,32968,32969,32970,32971,32975,32976,32977,32978, +32979,32980,32981,32984,32991,32992,32994,32995,32998,33006,33013,33015,33017, +33019,33022,33023,33024,33025,33027,33028,33029,33031,33032,33035,0,33036,33045, +33047,33049,33051,33052,33053,33055,33056,33057,33058,33059,33060,33061,33062, +33063,33064,33065,33066,33067,33069,33070,33072,33075,33076,33077,33079,33081, +33082,33083,33084,33085,33087,35881,33426,33579,30450,27667,24537,33725,29483, +33541,38170,27611,30683,38086,21359,33538,20882,24125,35980,36152,20040,29611, +26522,26757,37238,38665,29028,27809,30473,23186,38209,27599,32654,26151,23504, +22969,23194,38376,38391,20204,33804,33945,27308,30431,38192,29467,26790,23391, +30511,37274,38753,31964,36855,35868,24357,31859,31192,35269,27852,34588,23494, +24130,26825,30496,32501,20885,20813,21193,23081,32517,38754,33495,25551,30596, +34256,31186,28218,24217,22937,34065,28781,27665,25279,30399,25935,24751,38397, +26126,34719,40483,38125,21517,21629,35884,25720}, +{33088,33089,33090,33091,33092,33093,33095,33097,33101,33102,33103,33106,33110, +33111,33112,33115,33116,33117,33118,33119,33121,33122,33123,33124,33126,33128, +33130,33131,33132,33135,33138,33139,33141,33142,33143,33144,33153,33155,33156, +33157,33158,33159,33161,33163,33164,33165,33166,33168,33170,33171,33172,33173, +33174,33175,33177,33178,33182,33183,33184,33185,33186,33188,33189,0,33191,33193, +33195,33196,33197,33198,33199,33200,33201,33202,33204,33205,33206,33207,33208, +33209,33212,33213,33214,33215,33220,33221,33223,33224,33225,33227,33229,33230, +33231,33232,33233,33234,33235,25721,34321,27169,33180,30952,25705,39764,25273, +26411,33707,22696,40664,27819,28448,23518,38476,35851,29279,26576,25287,29281, +20137,22982,27597,22675,26286,24149,21215,24917,26408,30446,30566,29287,31302, +25343,21738,21584,38048,37027,23068,32435,27670,20035,22902,32784,22856,21335, +30007,38590,22218,25376,33041,24700,38393,28118,21602,39297,20869,23273,33021, +22958,38675,20522,27877,23612,25311,20320,21311,33147,36870,28346,34091,25288, +24180,30910,25781,25467,24565,23064,37247,40479,23615,25423,32834,23421,21870, +38218,38221,28037,24744,26592,29406,20957,23425}, +{33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248, +33249,33250,33252,33253,33254,33256,33257,33259,33262,33263,33264,33265,33266, +33269,33270,33271,33272,33273,33274,33277,33279,33283,33287,33288,33289,33290, +33291,33294,33295,33297,33299,33301,33302,33303,33304,33305,33306,33309,33312, +33316,33317,33318,33319,33321,33326,33330,33338,33340,33341,33343,0,33344,33345, +33346,33347,33349,33350,33352,33354,33356,33357,33358,33360,33361,33362,33363, +33364,33365,33366,33367,33369,33371,33372,33373,33374,33376,33377,33378,33379, +33380,33381,33382,33383,33385,25319,27870,29275,25197,38062,32445,33043,27987, +20892,24324,22900,21162,24594,22899,26262,34384,30111,25386,25062,31983,35834, +21734,27431,40485,27572,34261,21589,20598,27812,21866,36276,29228,24085,24597, +29750,25293,25490,29260,24472,28227,27966,25856,28504,30424,30928,30460,30036, +21028,21467,20051,24222,26049,32810,32982,25243,21638,21032,28846,34957,36305, +27873,21624,32986,22521,35060,36180,38506,37197,20329,27803,21943,30406,30768, +25256,28921,28558,24429,34028,26842,30844,31735,33192,26379,40527,25447,30896, +22383,30738,38713,25209,25259,21128,29749,27607}, +{33386,33387,33388,33389,33393,33397,33398,33399,33400,33403,33404,33408,33409, +33411,33413,33414,33415,33417,33420,33424,33427,33428,33429,33430,33434,33435, +33438,33440,33442,33443,33447,33458,33461,33462,33466,33467,33468,33471,33472, +33474,33475,33477,33478,33481,33488,33494,33497,33498,33501,33506,33511,33512, +33513,33514,33516,33517,33518,33520,33522,33523,33525,33526,33528,0,33530,33532, +33533,33534,33535,33536,33546,33547,33549,33552,33554,33555,33558,33560,33561, +33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33577,33578,33582, +33584,33586,33591,33595,33597,21860,33086,30130,30382,21305,30174,20731,23617, +35692,31687,20559,29255,39575,39128,28418,29922,31080,25735,30629,25340,39057, +36139,21697,32856,20050,22378,33529,33805,24179,20973,29942,35780,23631,22369, +27900,39047,23110,30772,39748,36843,31893,21078,25169,38138,20166,33670,33889, +33769,33970,22484,26420,22275,26222,28006,35889,26333,28689,26399,27450,26646, +25114,22971,19971,20932,28422,26578,27791,20854,26827,22855,27495,30054,23822, +33040,40784,26071,31048,31041,39569,36215,23682,20062,20225,21551,22865,30732, +22120,27668,36804,24323,27773,27875,35755,25488}, +{33598,33599,33601,33602,33604,33605,33608,33610,33611,33612,33613,33614,33619, +33621,33622,33623,33624,33625,33629,33634,33648,33649,33650,33651,33652,33653, +33654,33657,33658,33662,33663,33664,33665,33666,33667,33668,33671,33672,33674, +33675,33676,33677,33679,33680,33681,33684,33685,33686,33687,33689,33690,33693, +33695,33697,33698,33699,33700,33701,33702,33703,33708,33709,33710,0,33711,33717, +33723,33726,33727,33730,33731,33732,33734,33736,33737,33739,33741,33742,33744, +33745,33746,33747,33749,33751,33753,33754,33755,33758,33762,33763,33764,33766, +33767,33768,33771,33772,33773,24688,27965,29301,25190,38030,38085,21315,36801, +31614,20191,35878,20094,40660,38065,38067,21069,28508,36963,27973,35892,22545, +23884,27424,27465,26538,21595,33108,32652,22681,34103,24378,25250,27207,38201, +25970,24708,26725,30631,20052,20392,24039,38808,25772,32728,23789,20431,31373, +20999,33540,19988,24623,31363,38054,20405,20146,31206,29748,21220,33465,25810, +31165,23517,27777,38738,36731,27682,20542,21375,28165,25806,26228,27696,24773, +39031,35831,24198,29756,31351,31179,19992,37041,29699,27714,22234,37195,27845, +36235,21306,34502,26354,36527,23624,39537,28192}, +{33774,33775,33779,33780,33781,33782,33783,33786,33787,33788,33790,33791,33792, +33794,33797,33799,33800,33801,33802,33808,33810,33811,33812,33813,33814,33815, +33817,33818,33819,33822,33823,33824,33825,33826,33827,33833,33834,33835,33836, +33837,33838,33839,33840,33842,33843,33844,33845,33846,33847,33849,33850,33851, +33854,33855,33856,33857,33858,33859,33860,33861,33863,33864,33865,0,33866,33867, +33868,33869,33870,33871,33872,33874,33875,33876,33877,33878,33880,33885,33886, +33887,33888,33890,33892,33893,33894,33895,33896,33898,33902,33903,33904,33906, +33908,33911,33913,33915,33916,21462,23094,40843,36259,21435,22280,39079,26435, +37275,27849,20840,30154,25331,29356,21048,21149,32570,28820,30264,21364,40522, +27063,30830,38592,35033,32676,28982,29123,20873,26579,29924,22756,25880,22199, +35753,39286,25200,32469,24825,28909,22764,20161,20154,24525,38887,20219,35748, +20995,22922,32427,25172,20173,26085,25102,33592,33993,33635,34701,29076,28342, +23481,32466,20887,25545,26580,32905,33593,34837,20754,23418,22914,36785,20083, +27741,20837,35109,36719,38446,34122,29790,38160,38384,28070,33509,24369,25746, +27922,33832,33134,40131,22622,36187,19977,21441}, +{33917,33918,33919,33920,33921,33923,33924,33925,33926,33930,33933,33935,33936, +33937,33938,33939,33940,33941,33942,33944,33946,33947,33949,33950,33951,33952, +33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966, +33968,33969,33971,33973,33974,33975,33979,33980,33982,33984,33986,33987,33989, +33990,33991,33992,33995,33996,33998,33999,34002,34004,34005,34007,0,34008,34009, +34010,34011,34012,34014,34017,34018,34020,34023,34024,34025,34026,34027,34029, +34030,34031,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043, +34045,34046,34048,34049,34050,20254,25955,26705,21971,20007,25620,39578,25195, +23234,29791,33394,28073,26862,20711,33678,30722,26432,21049,27801,32433,20667, +21861,29022,31579,26194,29642,33515,26441,23665,21024,29053,34923,38378,38485, +25797,36193,33203,21892,27733,25159,32558,22674,20260,21830,36175,26188,19978, +23578,35059,26786,25422,31245,28903,33421,21242,38902,23569,21736,37045,32461, +22882,36170,34503,33292,33293,36198,25668,23556,24913,28041,31038,35774,30775, +30003,21627,20280,36523,28145,23072,32453,31070,27784,23457,23158,29978,32958, +24910,28183,22768,29983,29989,29298,21319,32499}, +{34051,34052,34053,34054,34055,34056,34057,34058,34059,34061,34062,34063,34064, +34066,34068,34069,34070,34072,34073,34075,34076,34077,34078,34080,34082,34083, +34084,34085,34086,34087,34088,34089,34090,34093,34094,34095,34096,34097,34098, +34099,34100,34101,34102,34110,34111,34112,34113,34114,34116,34117,34118,34119, +34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,0,34135,34136, +34138,34139,34140,34141,34143,34144,34145,34146,34147,34149,34150,34151,34153, +34154,34155,34156,34157,34158,34159,34160,34161,34163,34165,34166,34167,34168, +34172,34173,34175,34176,34177,30465,30427,21097,32988,22307,24072,22833,29422, +26045,28287,35799,23608,34417,21313,30707,25342,26102,20160,39135,34432,23454, +35782,21490,30690,20351,23630,39542,22987,24335,31034,22763,19990,26623,20107, +25325,35475,36893,21183,26159,21980,22124,36866,20181,20365,37322,39280,27663, +24066,24643,23460,35270,35797,25910,25163,39318,23432,23551,25480,21806,21463, +30246,20861,34092,26530,26803,27530,25234,36755,21460,33298,28113,30095,20070, +36174,23408,29087,34223,26257,26329,32626,34560,40653,40736,23646,26415,36848, +26641,26463,25101,31446,22661,24246,25968,28465}, +{34178,34179,34182,34184,34185,34186,34187,34188,34189,34190,34192,34193,34194, +34195,34196,34197,34198,34199,34200,34201,34202,34205,34206,34207,34208,34209, +34210,34211,34213,34214,34215,34217,34219,34220,34221,34225,34226,34227,34228, +34229,34230,34232,34234,34235,34236,34237,34238,34239,34240,34242,34243,34244, +34245,34246,34247,34248,34250,34251,34252,34253,34254,34257,34258,0,34260,34262, +34263,34264,34265,34266,34267,34269,34270,34271,34272,34273,34274,34275,34277, +34278,34279,34280,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291, +34292,34293,34294,34295,34296,24661,21047,32781,25684,34928,29993,24069,26643, +25332,38684,21452,29245,35841,27700,30561,31246,21550,30636,39034,33308,35828, +30805,26388,28865,26031,25749,22070,24605,31169,21496,19997,27515,32902,23546, +21987,22235,20282,20284,39282,24051,26494,32824,24578,39042,36865,23435,35772, +35829,25628,33368,25822,22013,33487,37221,20439,32032,36895,31903,20723,22609, +28335,23487,35785,32899,37240,33948,31639,34429,38539,38543,32485,39635,30862, +23681,31319,36930,38567,31071,23385,25439,31499,34001,26797,21766,32553,29712, +32034,38145,25152,22604,20182,23427,22905,22612}, +{34297,34298,34300,34301,34302,34304,34305,34306,34307,34308,34310,34311,34312, +34313,34314,34315,34316,34317,34318,34319,34320,34322,34323,34324,34325,34327, +34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340, +34341,34342,34344,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355, +34356,34357,34358,34359,34361,34362,34363,34365,34366,34367,34368,0,34369,34370, +34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34386,34387,34389, +34390,34391,34392,34393,34395,34396,34397,34399,34400,34401,34403,34404,34405, +34406,34407,34408,34409,34410,29549,25374,36427,36367,32974,33492,25260,21488, +27888,37214,22826,24577,27760,22349,25674,36138,30251,28393,22363,27264,30192, +28525,35885,35848,22374,27631,34962,30899,25506,21497,28845,27748,22616,25642, +22530,26848,33179,21776,31958,20504,36538,28108,36255,28907,25487,28059,28372, +32486,33796,26691,36867,28120,38518,35752,22871,29305,34276,33150,30140,35466, +26799,21076,36386,38161,25552,39064,36420,21884,20307,26367,22159,24789,28053, +21059,23625,22825,28155,22635,30000,29980,24684,33300,33094,25361,26465,36834, +30522,36339,36148,38081,24086,21381,21548,28867}, +{34413,34415,34416,34418,34419,34420,34421,34422,34423,34424,34435,34436,34437, +34438,34439,34440,34441,34446,34447,34448,34449,34450,34452,34454,34455,34456, +34457,34458,34459,34462,34463,34464,34465,34466,34469,34470,34475,34477,34478, +34482,34483,34487,34488,34489,34491,34492,34493,34494,34495,34497,34498,34499, +34501,34504,34508,34509,34514,34515,34517,34518,34519,34522,34524,0,34525,34528, +34529,34530,34531,34533,34534,34535,34536,34538,34539,34540,34543,34549,34550, +34551,34554,34555,34556,34557,34559,34561,34564,34565,34566,34571,34572,34574, +34575,34576,34577,34580,34582,27712,24311,20572,20141,24237,25402,33351,36890, +26704,37230,30643,21516,38108,24420,31461,26742,25413,31570,32479,30171,20599, +25237,22836,36879,20984,31171,31361,22270,24466,36884,28034,23648,22303,21520, +20820,28237,22242,25512,39059,33151,34581,35114,36864,21534,23663,33216,25302, +25176,33073,40501,38464,39534,39548,26925,22949,25299,21822,25366,21703,34521, +27964,23043,29926,34972,27498,22806,35916,24367,28286,29609,39037,20024,28919, +23436,30871,25405,26202,30358,24779,23451,23113,19975,33109,27754,29579,20129, +26505,32593,24448,26106,26395,24536,22916,23041}, +{34585,34587,34589,34591,34592,34596,34598,34599,34600,34602,34603,34604,34605, +34607,34608,34610,34611,34613,34614,34616,34617,34618,34620,34621,34624,34625, +34626,34627,34628,34629,34630,34634,34635,34637,34639,34640,34641,34642,34644, +34645,34646,34648,34650,34651,34652,34653,34654,34655,34657,34658,34662,34663, +34664,34665,34666,34667,34668,34669,34671,34673,34674,34675,34677,0,34679,34680, +34681,34682,34687,34688,34689,34692,34694,34695,34697,34698,34700,34702,34703, +34704,34705,34706,34708,34709,34710,34712,34713,34714,34715,34716,34717,34718, +34720,34721,34722,34723,34724,24013,24494,21361,38886,36829,26693,22260,21807, +24799,20026,28493,32500,33479,33806,22996,20255,20266,23614,32428,26410,34074, +21619,30031,32963,21890,39759,20301,28205,35859,23561,24944,21355,30239,28201, +34442,25991,38395,32441,21563,31283,32010,38382,21985,32705,29934,25373,34583, +28065,31389,25105,26017,21351,25569,27779,24043,21596,38056,20044,27745,35820, +23627,26080,33436,26791,21566,21556,27595,27494,20116,25410,21320,33310,20237, +20398,22366,25098,38654,26212,29289,21247,21153,24735,35823,26132,29081,26512, +35199,30802,30717,26224,22075,21560,38177,29306}, +{34725,34726,34727,34729,34730,34734,34736,34737,34738,34740,34742,34743,34744, +34745,34747,34748,34750,34751,34753,34754,34755,34756,34757,34759,34760,34761, +34764,34765,34766,34767,34768,34772,34773,34774,34775,34776,34777,34778,34780, +34781,34782,34783,34785,34786,34787,34788,34790,34791,34792,34793,34795,34796, +34797,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,0,34810,34811, +34812,34813,34815,34816,34817,34818,34820,34821,34822,34823,34824,34825,34827, +34828,34829,34830,34831,34832,34833,34834,34836,34839,34840,34841,34842,34844, +34845,34846,34847,34848,34851,31232,24687,24076,24713,33181,22805,24796,29060, +28911,28330,27728,29312,27268,34989,24109,20064,23219,21916,38115,27927,31995, +38553,25103,32454,30606,34430,21283,38686,36758,26247,23777,20384,29421,19979, +21414,22799,21523,25472,38184,20808,20185,40092,32420,21688,36132,34900,33335, +38386,28046,24358,23244,26174,38505,29616,29486,21439,33146,39301,32673,23466, +38519,38480,32447,30456,21410,38262,39321,31665,35140,28248,20065,32724,31077, +35814,24819,21709,20139,39033,24055,27233,20687,21521,35937,33831,30813,38660, +21066,21742,22179,38144,28040,23477,28102,26195}, +{34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864, +34865,34867,34868,34869,34870,34871,34872,34874,34875,34877,34878,34879,34881, +34882,34883,34886,34887,34888,34889,34890,34891,34894,34895,34896,34897,34898, +34899,34901,34902,34904,34906,34907,34908,34909,34910,34911,34912,34918,34919, +34922,34925,34927,34929,34931,34932,34933,34934,34936,34937,34938,0,34939,34940, +34944,34947,34950,34951,34953,34954,34956,34958,34959,34960,34961,34963,34964, +34965,34967,34968,34969,34970,34971,34973,34974,34975,34976,34977,34979,34981, +34982,34983,34984,34985,34986,23567,23389,26657,32918,21880,31505,25928,26964, +20123,27463,34638,38795,21327,25375,25658,37034,26012,32961,35856,20889,26800, +21368,34809,25032,27844,27899,35874,23633,34218,33455,38156,27427,36763,26032, +24571,24515,20449,34885,26143,33125,29481,24826,20852,21009,22411,24418,37026, +34892,37266,24184,26447,24615,22995,20804,20982,33016,21256,27769,38596,29066, +20241,20462,32670,26429,21957,38152,31168,34966,32483,22687,25100,38656,34394, +22040,39035,24464,35768,33988,37207,21465,26093,24207,30044,24676,32110,23167, +32490,32493,36713,21927,23459,24748,26059,29572}, +{34988,34990,34991,34992,34994,34995,34996,34997,34998,35000,35001,35002,35003, +35005,35006,35007,35008,35011,35012,35015,35016,35018,35019,35020,35021,35023, +35024,35025,35027,35030,35031,35034,35035,35036,35037,35038,35040,35041,35046, +35047,35049,35050,35051,35052,35053,35054,35055,35058,35061,35062,35063,35066, +35067,35069,35071,35072,35073,35075,35076,35077,35078,35079,35080,0,35081,35083, +35084,35085,35086,35087,35089,35092,35093,35094,35095,35096,35100,35101,35102, +35103,35104,35106,35107,35108,35110,35111,35112,35113,35116,35117,35118,35119, +35121,35122,35123,35125,35127,36873,30307,30505,32474,38772,34203,23398,31348, +38634,34880,21195,29071,24490,26092,35810,23547,39535,24033,27529,27739,35757, +35759,36874,36805,21387,25276,40486,40493,21568,20011,33469,29273,34460,23830, +34905,28079,38597,21713,20122,35766,28937,21693,38409,28895,28153,30416,20005, +30740,34578,23721,24310,35328,39068,38414,28814,27839,22852,25513,30524,34893, +28436,33395,22576,29141,21388,30746,38593,21761,24422,28976,23476,35866,39564, +27523,22830,40495,31207,26472,25196,20335,30113,32650,27915,38451,27687,20208, +30162,20859,26679,28478,36992,33136,22934,29814}, +{35128,35129,35130,35131,35132,35133,35134,35135,35136,35138,35139,35141,35142, +35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155, +35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35168,35169,35170, +35171,35172,35173,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184, +35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35196,0,35197,35198, +35200,35202,35204,35205,35207,35208,35209,35210,35211,35212,35213,35214,35215, +35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228, +35229,35230,35231,35232,35233,25671,23591,36965,31377,35875,23002,21676,33280, +33647,35201,32768,26928,22094,32822,29239,37326,20918,20063,39029,25494,19994, +21494,26355,33099,22812,28082,19968,22777,21307,25558,38129,20381,20234,34915, +39056,22839,36951,31227,20202,33008,30097,27778,23452,23016,24413,26885,34433, +20506,24050,20057,30691,20197,33402,25233,26131,37009,23673,20159,24441,33222, +36920,32900,30123,20134,35028,24847,27589,24518,20041,30410,28322,35811,35758, +35850,35793,24322,32764,32716,32462,33589,33643,22240,27575,38899,38452,23035, +21535,38134,28139,23493,39278,23609,24341,38544}, +{35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246, +35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259, +35260,35261,35262,35263,35264,35267,35277,35283,35284,35285,35287,35288,35289, +35291,35293,35295,35296,35297,35298,35300,35303,35304,35305,35306,35308,35309, +35310,35312,35313,35314,35316,35317,35318,35319,35320,35321,35322,0,35323,35324, +35325,35326,35327,35329,35330,35331,35332,35333,35334,35336,35337,35338,35339, +35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352, +35353,35354,35355,35356,35357,21360,33521,27185,23156,40560,24212,32552,33721, +33828,33829,33639,34631,36814,36194,30408,24433,39062,30828,26144,21727,25317, +20323,33219,30152,24248,38605,36362,34553,21647,27891,28044,27704,24703,21191, +29992,24189,20248,24736,24551,23588,30001,37038,38080,29369,27833,28216,37193, +26377,21451,21491,20305,37321,35825,21448,24188,36802,28132,20110,30402,27014, +34398,24858,33286,20313,20446,36926,40060,24841,28189,28180,38533,20104,23089, +38632,19982,23679,31161,23431,35821,32701,29577,22495,33419,37057,21505,36935, +21947,23786,24481,24840,27442,29425,32946,35465}, +{35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370, +35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383, +35384,35385,35386,35387,35388,35389,35391,35392,35393,35394,35395,35396,35397, +35398,35399,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411, +35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,0,35423,35424, +35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437, +35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35450,35451, +35452,35453,35454,35455,35456,28020,23507,35029,39044,35947,39533,40499,28170, +20900,20803,22435,34945,21407,25588,36757,22253,21592,22278,29503,28304,32536, +36828,33489,24895,24616,38498,26352,32422,36234,36291,38053,23731,31908,26376, +24742,38405,32792,20113,37095,21248,38504,20801,36816,34164,37213,26197,38901, +23381,21277,30776,26434,26685,21705,28798,23472,36733,20877,22312,21681,25874, +26242,36190,36163,33039,33900,36973,31967,20991,34299,26531,26089,28577,34468, +36481,22122,36896,30338,28790,29157,36131,25321,21017,27901,36156,24590,22686, +24974,26366,36192,25166,21939,28195,26413,36711}, +{35457,35458,35459,35460,35461,35462,35463,35464,35467,35468,35469,35470,35471, +35472,35473,35474,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485, +35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498, +35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511, +35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,0,35523,35524, +35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537, +35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550, +35551,35552,35553,35554,35555,38113,38392,30504,26629,27048,21643,20045,28856, +35784,25688,25995,23429,31364,20538,23528,30651,27617,35449,31896,27838,30415, +26025,36759,23853,23637,34360,26632,21344,25112,31449,28251,32509,27167,31456, +24432,28467,24352,25484,28072,26454,19976,24080,36134,20183,32960,30260,38556, +25307,26157,25214,27836,36213,29031,32617,20806,32903,21484,36974,25240,21746, +34544,36761,32773,38167,34071,36825,27993,29645,26015,30495,29956,30759,33275, +36126,38024,20390,26517,30137,35786,38663,25391,38215,38453,33976,25379,30529, +24449,29424,20105,24596,25972,25327,27491,25919}, +{35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568, +35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581, +35582,35583,35584,35585,35586,35587,35588,35589,35590,35592,35593,35594,35595, +35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608, +35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,0,35620,35621, +35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635, +35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648, +35649,35650,35651,35652,35653,24103,30151,37073,35777,33437,26525,25903,21553, +34584,30693,32930,33026,27713,20043,32455,32844,30452,26893,27542,25191,20540, +20356,22336,25351,27490,36286,21482,26088,32440,24535,25370,25527,33267,33268, +32622,24092,23769,21046,26234,31209,31258,36136,28825,30164,28382,27835,31378, +20013,30405,24544,38047,34935,32456,31181,32959,37325,20210,20247,33311,21608, +24030,27954,35788,31909,36724,32920,24090,21650,30385,23449,26172,39588,29664, +26666,34523,26417,29482,35832,35803,36880,31481,28891,29038,25284,30633,22065, +20027,33879,26609,21161,34496,36142,38136,31569}, +{35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666, +35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679, +35680,35681,35682,35683,35684,35685,35687,35688,35689,35690,35691,35693,35694, +35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707, +35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,0,35719,35720, +35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733, +35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35756,35761,35771, +35783,35792,35818,35849,35870,20303,27880,31069,39547,25235,29226,25341,19987, +30742,36716,25776,36186,31686,26729,24196,35013,22918,25758,22766,29366,26894, +38181,36861,36184,22368,32512,35846,20934,25417,25305,21331,26700,29730,33537, +37196,21828,30528,28796,27978,20857,21672,36164,23039,28363,28100,23388,32043, +20180,31869,28371,23376,33258,28173,23383,39683,26837,36394,23447,32508,24635, +32437,37049,36208,22863,25549,31199,36275,21330,26063,31062,35781,38459,32452, +38075,32386,22068,37257,26368,32618,23562,36981,26152,24038,20304,26590,20570, +20316,22352,24231,0,0,0,0,0}, +{35896,35897,35898,35899,35900,35901,35902,35903,35904,35906,35907,35908,35909, +35912,35914,35915,35917,35918,35919,35920,35921,35922,35923,35924,35926,35927, +35928,35929,35931,35932,35933,35934,35935,35936,35939,35940,35941,35942,35943, +35944,35945,35948,35949,35950,35951,35952,35953,35954,35956,35957,35958,35959, +35963,35964,35965,35966,35967,35968,35969,35971,35972,35974,35975,0,35976,35979, +35981,35982,35983,35984,35985,35986,35987,35989,35990,35991,35993,35994,35995, +35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008, +36009,36010,36011,36012,36013,20109,19980,20800,19984,24319,21317,19989,20120, +19998,39730,23404,22121,20008,31162,20031,21269,20039,22829,29243,21358,27664, +22239,32996,39319,27603,30590,40727,20022,20127,40720,20060,20073,20115,33416, +23387,21868,22031,20164,21389,21405,21411,21413,21422,38757,36189,21274,21493, +21286,21294,21310,36188,21350,21347,20994,21000,21006,21037,21043,21055,21056, +21068,21086,21089,21084,33967,21117,21122,21121,21136,21139,20866,32596,20155, +20163,20169,20162,20200,20193,20203,20190,20251,20211,20258,20324,20213,20261, +20263,20233,20267,20318,20327,25912,20314,20317}, +{36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026, +36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039, +36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052, +36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065, +36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,0,36077,36078, +36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091, +36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104, +36105,36106,36107,36108,36109,20319,20311,20274,20285,20342,20340,20369,20361, +20355,20367,20350,20347,20394,20348,20396,20372,20454,20456,20458,20421,20442, +20451,20444,20433,20447,20472,20521,20556,20467,20524,20495,20526,20525,20478, +20508,20492,20517,20520,20606,20547,20565,20552,20558,20588,20603,20645,20647, +20649,20666,20694,20742,20717,20716,20710,20718,20743,20747,20189,27709,20312, +20325,20430,40864,27718,31860,20846,24061,40649,39320,20865,22804,21241,21261, +35335,21264,20971,22809,20821,20128,20822,20147,34926,34980,20149,33044,35026, +31104,23348,34819,32696,20907,20913,20925,20924}, +{36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122, +36123,36124,36128,36177,36178,36183,36191,36197,36200,36201,36202,36204,36206, +36207,36209,36210,36216,36217,36218,36219,36220,36221,36222,36223,36224,36226, +36227,36230,36231,36232,36233,36236,36237,36238,36239,36240,36242,36243,36245, +36246,36247,36248,36249,36250,36251,36252,36253,36254,36256,36257,0,36258,36260, +36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36274, +36278,36279,36281,36283,36285,36288,36289,36290,36293,36295,36296,36297,36298, +36301,36304,36306,36307,36308,20935,20886,20898,20901,35744,35750,35751,35754, +35764,35765,35767,35778,35779,35787,35791,35790,35794,35795,35796,35798,35800, +35801,35804,35807,35808,35812,35816,35817,35822,35824,35827,35830,35833,35836, +35839,35840,35842,35844,35847,35852,35855,35857,35858,35860,35861,35862,35865, +35867,35864,35869,35871,35872,35873,35877,35879,35882,35883,35886,35887,35890, +35891,35893,35894,21353,21370,38429,38434,38433,38449,38442,38461,38460,38466, +38473,38484,38495,38503,38508,38514,38516,38536,38541,38551,38576,37015,37019, +37021,37017,37036,37025,37044,37043,37046,37050}, +{36309,36312,36313,36316,36320,36321,36322,36325,36326,36327,36329,36333,36334, +36336,36337,36338,36340,36342,36348,36350,36351,36352,36353,36354,36355,36356, +36358,36359,36360,36363,36365,36366,36368,36369,36370,36371,36373,36374,36375, +36376,36377,36378,36379,36380,36384,36385,36388,36389,36390,36391,36392,36395, +36397,36400,36402,36403,36404,36406,36407,36408,36411,36412,36414,0,36415,36419, +36421,36422,36428,36429,36430,36431,36432,36435,36436,36437,36438,36439,36440, +36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36455, +36456,36458,36459,36462,36465,37048,37040,37071,37061,37054,37072,37060,37063, +37075,37094,37090,37084,37079,37083,37099,37103,37118,37124,37154,37150,37155, +37169,37167,37177,37187,37190,21005,22850,21154,21164,21165,21182,21759,21200, +21206,21232,21471,29166,30669,24308,20981,20988,39727,21430,24321,30042,24047, +22348,22441,22433,22654,22716,22725,22737,22313,22316,22314,22323,22329,22318, +22319,22364,22331,22338,22377,22405,22379,22406,22396,22395,22376,22381,22390, +22387,22445,22436,22412,22450,22479,22439,22452,22419,22432,22485,22488,22490, +22489,22482,22456,22516,22511,22520,22500,22493}, +{36467,36469,36471,36472,36473,36474,36475,36477,36478,36480,36482,36483,36484, +36486,36488,36489,36490,36491,36492,36493,36494,36497,36498,36499,36501,36502, +36503,36504,36505,36506,36507,36509,36511,36512,36513,36514,36515,36516,36517, +36518,36519,36520,36521,36522,36525,36526,36528,36529,36531,36532,36533,36534, +36535,36536,36537,36539,36540,36541,36542,36543,36544,36545,36546,0,36547,36548, +36549,36550,36551,36552,36553,36554,36555,36556,36557,36559,36560,36561,36562, +36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575, +36576,36577,36578,36579,36580,22539,22541,22525,22509,22528,22558,22553,22596, +22560,22629,22636,22657,22665,22682,22656,39336,40729,25087,33401,33405,33407, +33423,33418,33448,33412,33422,33425,33431,33433,33451,33464,33470,33456,33480, +33482,33507,33432,33463,33454,33483,33484,33473,33449,33460,33441,33450,33439, +33476,33486,33444,33505,33545,33527,33508,33551,33543,33500,33524,33490,33496, +33548,33531,33491,33553,33562,33542,33556,33557,33504,33493,33564,33617,33627, +33628,33544,33682,33596,33588,33585,33691,33630,33583,33615,33607,33603,33631, +33600,33559,33632,33581,33594,33587,33638,33637}, +{36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593, +36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606, +36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619, +36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632, +36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,0,36644,36645, +36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658, +36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671, +36672,36673,36674,36675,36676,33640,33563,33641,33644,33642,33645,33646,33712, +33656,33715,33716,33696,33706,33683,33692,33669,33660,33718,33705,33661,33720, +33659,33688,33694,33704,33722,33724,33729,33793,33765,33752,22535,33816,33803, +33757,33789,33750,33820,33848,33809,33798,33748,33759,33807,33795,33784,33785, +33770,33733,33728,33830,33776,33761,33884,33873,33882,33881,33907,33927,33928, +33914,33929,33912,33852,33862,33897,33910,33932,33934,33841,33901,33985,33997, +34000,34022,33981,34003,33994,33983,33978,34016,33953,33977,33972,33943,34021, +34019,34060,29965,34104,34032,34105,34079,34106}, +{36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689, +36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702, +36703,36704,36705,36706,36707,36708,36709,36714,36736,36748,36754,36765,36768, +36769,36770,36772,36773,36774,36775,36778,36780,36781,36782,36783,36786,36787, +36788,36789,36791,36792,36794,36795,36796,36799,36800,36803,36806,0,36809,36810, +36811,36812,36813,36815,36818,36822,36823,36826,36832,36833,36835,36839,36844, +36847,36849,36850,36852,36853,36854,36858,36859,36860,36862,36863,36871,36872, +36876,36878,36883,36885,36888,34134,34107,34047,34044,34137,34120,34152,34148, +34142,34170,30626,34115,34162,34171,34212,34216,34183,34191,34169,34222,34204, +34181,34233,34231,34224,34259,34241,34268,34303,34343,34309,34345,34326,34364, +24318,24328,22844,22849,32823,22869,22874,22872,21263,23586,23589,23596,23604, +25164,25194,25247,25275,25290,25306,25303,25326,25378,25334,25401,25419,25411, +25517,25590,25457,25466,25486,25524,25453,25516,25482,25449,25518,25532,25586, +25592,25568,25599,25540,25566,25550,25682,25542,25534,25669,25665,25611,25627, +25632,25612,25638,25633,25694,25732,25709,25750}, +{36889,36892,36899,36900,36901,36903,36904,36905,36906,36907,36908,36912,36913, +36914,36915,36916,36919,36921,36922,36925,36927,36928,36931,36933,36934,36936, +36937,36938,36939,36940,36942,36948,36949,36950,36953,36954,36956,36957,36958, +36959,36960,36961,36964,36966,36967,36969,36970,36971,36972,36975,36976,36977, +36978,36979,36982,36983,36984,36985,36986,36987,36988,36990,36993,0,36996,36997, +36998,36999,37001,37002,37004,37005,37006,37007,37008,37010,37012,37014,37016, +37018,37020,37022,37023,37024,37028,37029,37031,37032,37033,37035,37037,37042, +37047,37052,37053,37055,37056,25722,25783,25784,25753,25786,25792,25808,25815, +25828,25826,25865,25893,25902,24331,24530,29977,24337,21343,21489,21501,21481, +21480,21499,21522,21526,21510,21579,21586,21587,21588,21590,21571,21537,21591, +21593,21539,21554,21634,21652,21623,21617,21604,21658,21659,21636,21622,21606, +21661,21712,21677,21698,21684,21714,21671,21670,21715,21716,21618,21667,21717, +21691,21695,21708,21721,21722,21724,21673,21674,21668,21725,21711,21726,21787, +21735,21792,21757,21780,21747,21794,21795,21775,21777,21799,21802,21863,21903, +21941,21833,21869,21825,21845,21823,21840,21820}, +{37058,37059,37062,37064,37065,37067,37068,37069,37074,37076,37077,37078,37080, +37081,37082,37086,37087,37088,37091,37092,37093,37097,37098,37100,37102,37104, +37105,37106,37107,37109,37110,37111,37113,37114,37115,37116,37119,37120,37121, +37123,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136, +37137,37138,37139,37140,37141,37142,37143,37144,37146,37147,37148,0,37149,37151, +37152,37153,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166, +37168,37170,37171,37172,37173,37174,37175,37176,37178,37179,37180,37181,37182, +37183,37184,37185,37186,37188,21815,21846,21877,21878,21879,21811,21808,21852, +21899,21970,21891,21937,21945,21896,21889,21919,21886,21974,21905,21883,21983, +21949,21950,21908,21913,21994,22007,21961,22047,21969,21995,21996,21972,21990, +21981,21956,21999,21989,22002,22003,21964,21965,21992,22005,21988,36756,22046, +22024,22028,22017,22052,22051,22014,22016,22055,22061,22104,22073,22103,22060, +22093,22114,22105,22108,22092,22100,22150,22116,22129,22123,22139,22140,22149, +22163,22191,22228,22231,22237,22241,22261,22251,22265,22271,22276,22282,22281, +22300,24079,24089,24084,24081,24113,24123,24124}, +{37189,37191,37192,37201,37203,37204,37205,37206,37208,37209,37211,37212,37215, +37216,37222,37223,37224,37227,37229,37235,37242,37243,37244,37248,37249,37250, +37251,37252,37254,37256,37258,37262,37263,37267,37268,37269,37270,37271,37272, +37273,37276,37277,37278,37279,37280,37281,37284,37285,37286,37287,37288,37289, +37291,37292,37296,37297,37298,37299,37302,37303,37304,37305,37307,0,37308,37309, +37310,37311,37312,37313,37314,37315,37316,37317,37318,37320,37323,37328,37330, +37331,37332,37333,37334,37335,37336,37337,37338,37339,37341,37342,37343,37344, +37345,37346,37347,37348,37349,24119,24132,24148,24155,24158,24161,23692,23674, +23693,23696,23702,23688,23704,23705,23697,23706,23708,23733,23714,23741,23724, +23723,23729,23715,23745,23735,23748,23762,23780,23755,23781,23810,23811,23847, +23846,23854,23844,23838,23814,23835,23896,23870,23860,23869,23916,23899,23919, +23901,23915,23883,23882,23913,23924,23938,23961,23965,35955,23991,24005,24435, +24439,24450,24455,24457,24460,24469,24473,24476,24488,24493,24501,24508,34914, +24417,29357,29360,29364,29367,29368,29379,29377,29390,29389,29394,29416,29423, +29417,29426,29428,29431,29441,29427,29443,29434}, +{37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362, +37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375, +37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388, +37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401, +37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,0,37413,37414, +37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427, +37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440, +37441,37442,37443,37444,37445,29435,29463,29459,29473,29450,29470,29469,29461, +29474,29497,29477,29484,29496,29489,29520,29517,29527,29536,29548,29551,29566, +33307,22821,39143,22820,22786,39267,39271,39272,39273,39274,39275,39276,39284, +39287,39293,39296,39300,39303,39306,39309,39312,39313,39315,39316,39317,24192, +24209,24203,24214,24229,24224,24249,24245,24254,24243,36179,24274,24273,24283, +24296,24298,33210,24516,24521,24534,24527,24579,24558,24580,24545,24548,24574, +24581,24582,24554,24557,24568,24601,24629,24614,24603,24591,24589,24617,24619, +24586,24639,24609,24696,24697,24699,24698,24642}, +{37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458, +37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471, +37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484, +37485,37486,37487,37488,37489,37490,37491,37493,37494,37495,37496,37497,37498, +37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,0,37510,37511, +37512,37513,37514,37515,37516,37517,37519,37520,37521,37522,37523,37524,37525, +37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538, +37539,37540,37541,37542,37543,24682,24701,24726,24730,24749,24733,24707,24722, +24716,24731,24812,24763,24753,24797,24792,24774,24794,24756,24864,24870,24853, +24867,24820,24832,24846,24875,24906,24949,25004,24980,24999,25015,25044,25077, +24541,38579,38377,38379,38385,38387,38389,38390,38396,38398,38403,38404,38406, +38408,38410,38411,38412,38413,38415,38418,38421,38422,38423,38425,38426,20012, +29247,25109,27701,27732,27740,27722,27811,27781,27792,27796,27788,27752,27753, +27764,27766,27782,27817,27856,27860,27821,27895,27896,27889,27863,27826,27872, +27862,27898,27883,27886,27825,27859,27887,27902}, +{37544,37545,37546,37547,37548,37549,37551,37552,37553,37554,37555,37556,37557, +37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570, +37571,37572,37573,37574,37575,37577,37578,37579,37580,37581,37582,37583,37584, +37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597, +37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,0,37609,37610, +37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623, +37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636, +37637,37638,37639,37640,37641,27961,27943,27916,27971,27976,27911,27908,27929, +27918,27947,27981,27950,27957,27930,27983,27986,27988,27955,28049,28015,28062, +28064,27998,28051,28052,27996,28000,28028,28003,28186,28103,28101,28126,28174, +28095,28128,28177,28134,28125,28121,28182,28075,28172,28078,28203,28270,28238, +28267,28338,28255,28294,28243,28244,28210,28197,28228,28383,28337,28312,28384, +28461,28386,28325,28327,28349,28347,28343,28375,28340,28367,28303,28354,28319, +28514,28486,28487,28452,28437,28409,28463,28470,28491,28532,28458,28425,28457, +28553,28557,28556,28536,28530,28540,28538,28625}, +{37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654, +37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667, +37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680, +37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693, +37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,0,37706,37707, +37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720, +37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733, +37734,37735,37736,37737,37739,28617,28583,28601,28598,28610,28641,28654,28638, +28640,28655,28698,28707,28699,28729,28725,28751,28766,23424,23428,23445,23443, +23461,23480,29999,39582,25652,23524,23534,35120,23536,36423,35591,36790,36819, +36821,36837,36846,36836,36841,36838,36851,36840,36869,36868,36875,36902,36881, +36877,36886,36897,36917,36918,36909,36911,36932,36945,36946,36944,36968,36952, +36962,36955,26297,36980,36989,36994,37000,36995,37003,24400,24407,24406,24408, +23611,21675,23632,23641,23409,23651,23654,32700,24362,24361,24365,33396,24380, +39739,23662,22913,22915,22925,22953,22954,22947}, +{37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752, +37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765, +37766,37767,37768,37769,37770,37771,37772,37773,37774,37776,37777,37778,37779, +37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792, +37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,0,37804,37805, +37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818, +37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831, +37832,37833,37835,37836,37837,22935,22986,22955,22942,22948,22994,22962,22959, +22999,22974,23045,23046,23005,23048,23011,23000,23033,23052,23049,23090,23092, +23057,23075,23059,23104,23143,23114,23125,23100,23138,23157,33004,23210,23195, +23159,23162,23230,23275,23218,23250,23252,23224,23264,23267,23281,23254,23270, +23256,23260,23305,23319,23318,23346,23351,23360,23573,23580,23386,23397,23411, +23377,23379,23394,39541,39543,39544,39546,39551,39549,39552,39553,39557,39560, +39562,39568,39570,39571,39574,39576,39579,39580,39581,39583,39584,39586,39587, +39589,39591,32415,32417,32419,32421,32424,32425}, +{37838,37839,37840,37841,37842,37843,37844,37845,37847,37848,37849,37850,37851, +37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864, +37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877, +37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890, +37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,0,37902,37903, +37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916, +37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929, +37930,37931,37932,37933,37934,32429,32432,32446,32448,32449,32450,32457,32459, +32460,32464,32468,32471,32475,32480,32481,32488,32491,32494,32495,32497,32498, +32525,32502,32506,32507,32510,32513,32514,32515,32519,32520,32523,32524,32527, +32529,32530,32535,32537,32540,32539,32543,32545,32546,32547,32548,32549,32550, +32551,32554,32555,32556,32557,32559,32560,32561,32562,32563,32565,24186,30079, +24027,30014,37013,29582,29585,29614,29602,29599,29647,29634,29649,29623,29619, +29632,29641,29640,29669,29657,39036,29706,29673,29671,29662,29626,29682,29711, +29738,29787,29734,29733,29736,29744,29742,29740}, +{37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947, +37948,37949,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961, +37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974, +37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987, +37988,37989,37990,37991,37992,37993,37994,37996,37997,37998,37999,0,38000,38001, +38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014, +38015,38016,38017,38018,38019,38020,38033,38038,38040,38087,38095,38099,38100, +38106,38118,38139,38172,38176,29723,29722,29761,29788,29783,29781,29785,29815, +29805,29822,29852,29838,29824,29825,29831,29835,29854,29864,29865,29840,29863, +29906,29882,38890,38891,38892,26444,26451,26462,26440,26473,26533,26503,26474, +26483,26520,26535,26485,26536,26526,26541,26507,26487,26492,26608,26633,26584, +26634,26601,26544,26636,26585,26549,26586,26547,26589,26624,26563,26552,26594, +26638,26561,26621,26674,26675,26720,26721,26702,26722,26692,26724,26755,26653, +26709,26726,26689,26727,26688,26686,26698,26697,26665,26805,26767,26740,26743, +26771,26731,26818,26990,26876,26911,26912,26873}, +{38183,38195,38205,38211,38216,38219,38229,38234,38240,38254,38260,38261,38263, +38264,38265,38266,38267,38268,38269,38270,38272,38273,38274,38275,38276,38277, +38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290, +38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303, +38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,0,38315,38316, +38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329, +38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342, +38343,38344,38345,38346,38347,26916,26864,26891,26881,26967,26851,26896,26993, +26937,26976,26946,26973,27012,26987,27008,27032,27000,26932,27084,27015,27016, +27086,27017,26982,26979,27001,27035,27047,27067,27051,27053,27092,27057,27073, +27082,27103,27029,27104,27021,27135,27183,27117,27159,27160,27237,27122,27204, +27198,27296,27216,27227,27189,27278,27257,27197,27176,27224,27260,27281,27280, +27305,27287,27307,29495,29522,27521,27522,27527,27524,27538,27539,27533,27546, +27547,27553,27562,36715,36717,36721,36722,36723,36725,36726,36728,36727,36729, +36730,36732,36734,36737,36738,36740,36743,36747}, +{38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360, +38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373, +38374,38375,38380,38399,38407,38419,38424,38427,38430,38432,38435,38436,38437, +38438,38439,38440,38441,38443,38444,38445,38447,38448,38455,38456,38457,38458, +38462,38465,38467,38474,38478,38479,38481,38482,38483,38486,38487,0,38488,38489, +38490,38492,38493,38494,38496,38499,38501,38502,38507,38509,38510,38511,38512, +38513,38515,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530, +38531,38532,38535,38537,38538,36749,36750,36751,36760,36762,36558,25099,25111, +25115,25119,25122,25121,25125,25124,25132,33255,29935,29940,29951,29967,29969, +29971,25908,26094,26095,26096,26122,26137,26482,26115,26133,26112,28805,26359, +26141,26164,26161,26166,26165,32774,26207,26196,26177,26191,26198,26209,26199, +26231,26244,26252,26279,26269,26302,26331,26332,26342,26345,36146,36147,36150, +36155,36157,36160,36165,36166,36168,36169,36167,36173,36181,36185,35271,35274, +35275,35276,35278,35279,35280,35281,29294,29343,29277,29286,29295,29310,29311, +29316,29323,29325,29327,29330,25352,25394,25520}, +{38540,38542,38545,38546,38547,38549,38550,38554,38555,38557,38558,38559,38560, +38561,38562,38563,38564,38565,38566,38568,38569,38570,38571,38572,38573,38574, +38575,38577,38578,38580,38581,38583,38584,38586,38587,38591,38594,38595,38600, +38602,38603,38608,38609,38611,38612,38614,38615,38616,38617,38618,38619,38620, +38621,38622,38623,38625,38626,38627,38628,38629,38630,38631,38635,0,38636,38637, +38638,38640,38641,38642,38644,38645,38648,38650,38651,38652,38653,38655,38658, +38659,38661,38666,38667,38668,38672,38673,38674,38676,38677,38679,38680,38681, +38682,38683,38685,38687,38688,25663,25816,32772,27626,27635,27645,27637,27641, +27653,27655,27654,27661,27669,27672,27673,27674,27681,27689,27684,27690,27698, +25909,25941,25963,29261,29266,29270,29232,34402,21014,32927,32924,32915,32956, +26378,32957,32945,32939,32941,32948,32951,32999,33000,33001,33002,32987,32962, +32964,32985,32973,32983,26384,32989,33003,33009,33012,33005,33037,33038,33010, +33020,26389,33042,35930,33078,33054,33068,33048,33074,33096,33100,33107,33140, +33113,33114,33137,33120,33129,33148,33149,33133,33127,22605,23221,33160,33154, +33169,28373,33187,33194,33228,26406,33226,33211}, +{38689,38690,38691,38692,38693,38694,38695,38696,38697,38699,38700,38702,38703, +38705,38707,38708,38709,38710,38711,38714,38715,38716,38717,38719,38720,38721, +38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734, +38735,38736,38737,38740,38741,38743,38744,38746,38748,38749,38751,38755,38756, +38758,38759,38760,38762,38763,38764,38765,38766,38767,38768,38769,0,38770,38773, +38775,38776,38777,38778,38779,38781,38782,38783,38784,38785,38786,38787,38788, +38790,38791,38792,38793,38794,38796,38798,38799,38800,38803,38805,38806,38807, +38809,38810,38811,38812,38813,33217,33190,27428,27447,27449,27459,27462,27481, +39121,39122,39123,39125,39129,39130,27571,24384,27586,35315,26000,40785,26003, +26044,26054,26052,26051,26060,26062,26066,26070,28800,28828,28822,28829,28859, +28864,28855,28843,28849,28904,28874,28944,28947,28950,28975,28977,29043,29020, +29032,28997,29042,29002,29048,29050,29080,29107,29109,29096,29088,29152,29140, +29159,29177,29213,29224,28780,28952,29030,29113,25150,25149,25155,25160,25161, +31035,31040,31046,31049,31067,31068,31059,31066,31074,31063,31072,31087,31079, +31098,31109,31114,31130,31143,31155,24529,24528}, +{38814,38815,38817,38818,38820,38821,38822,38823,38824,38825,38826,38828,38830, +38832,38833,38835,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846, +38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859, +38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872, +38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,0,38884,38885, +38888,38894,38895,38896,38897,38898,38900,38903,38904,38905,38906,38907,38908, +38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921, +38922,38923,38924,38925,38926,24636,24669,24666,24679,24641,24665,24675,24747, +24838,24845,24925,25001,24989,25035,25041,25094,32896,32895,27795,27894,28156, +30710,30712,30720,30729,30743,30744,30737,26027,30765,30748,30749,30777,30778, +30779,30751,30780,30757,30764,30755,30761,30798,30829,30806,30807,30758,30800, +30791,30796,30826,30875,30867,30874,30855,30876,30881,30883,30898,30905,30885, +30932,30937,30921,30956,30962,30981,30964,30995,31012,31006,31028,40859,40697, +40699,40700,30449,30468,30477,30457,30471,30472,30490,30498,30489,30509,30502, +30517,30520,30544,30545,30535,30531,30554,30568}, +{38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939, +38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952, +38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965, +38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978, +38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,0,38990,38991, +38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004, +39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017, +39018,39019,39020,39021,39022,30562,30565,30591,30605,30589,30592,30604,30609, +30623,30624,30640,30645,30653,30010,30016,30030,30027,30024,30043,30066,30073, +30083,32600,32609,32607,35400,32616,32628,32625,32633,32641,32638,30413,30437, +34866,38021,38022,38023,38027,38026,38028,38029,38031,38032,38036,38039,38037, +38042,38043,38044,38051,38052,38059,38058,38061,38060,38063,38064,38066,38068, +38070,38071,38072,38073,38074,38076,38077,38079,38084,38088,38089,38090,38091, +38092,38093,38094,38096,38097,38098,38101,38102,38103,38105,38104,38107,38110, +38111,38112,38114,38116,38117,38119,38120,38122}, +{39023,39024,39025,39026,39027,39028,39051,39054,39058,39061,39065,39075,39080, +39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093, +39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106, +39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39119,39120, +39124,39126,39127,39131,39132,39133,39136,39137,39138,39139,39140,0,39141,39142, +39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157, +39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170, +39171,39172,39173,39174,39175,38121,38123,38126,38127,38131,38132,38133,38135, +38137,38140,38141,38143,38147,38146,38150,38151,38153,38154,38157,38158,38159, +38162,38163,38164,38165,38166,38168,38171,38173,38174,38175,38178,38186,38187, +38185,38188,38193,38194,38196,38198,38199,38200,38204,38206,38207,38210,38197, +38212,38213,38214,38217,38220,38222,38223,38226,38227,38228,38230,38231,38232, +38233,38235,38238,38239,38237,38241,38242,38244,38245,38246,38247,38248,38249, +38250,38251,38252,38255,38257,38258,38259,38202,30695,30700,38601,31189,31213, +31203,31211,31238,23879,31235,31234,31262,31252}, +{39176,39177,39178,39179,39180,39182,39183,39185,39186,39187,39188,39189,39190, +39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203, +39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39215,39216,39217, +39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230, +39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,0,39242,39243, +39244,39245,39246,39247,39248,39249,39250,39251,39254,39255,39256,39257,39258, +39259,39260,39261,39262,39263,39264,39265,39266,39268,39270,39283,39288,39289, +39291,39294,39298,39299,39305,31289,31287,31313,40655,39333,31344,30344,30350, +30355,30361,30372,29918,29920,29996,40480,40482,40488,40489,40490,40491,40492, +40498,40497,40502,40504,40503,40505,40506,40510,40513,40514,40516,40518,40519, +40520,40521,40523,40524,40526,40529,40533,40535,40538,40539,40540,40542,40547, +40550,40551,40552,40553,40554,40555,40556,40561,40557,40563,30098,30100,30102, +30112,30109,30124,30115,30131,30132,30136,30148,30129,30128,30147,30146,30166, +30157,30179,30184,30182,30180,30187,30183,30211,30193,30204,30207,30224,30208, +30213,30220,30231,30218,30245,30232,30229,30233}, +{39308,39310,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332, +39334,39335,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347, +39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360, +39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373, +39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,0,39385,39386, +39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399, +39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412, +39413,39414,39415,39416,39417,30235,30268,30242,30240,30272,30253,30256,30271, +30261,30275,30270,30259,30285,30302,30292,30300,30294,30315,30319,32714,31462, +31352,31353,31360,31366,31368,31381,31398,31392,31404,31400,31405,31411,34916, +34921,34930,34941,34943,34946,34978,35014,34999,35004,35017,35042,35022,35043, +35045,35057,35098,35068,35048,35070,35056,35105,35097,35091,35099,35082,35124, +35115,35126,35137,35174,35195,30091,32997,30386,30388,30684,32786,32788,32790, +32796,32800,32802,32805,32806,32807,32809,32808,32817,32779,32821,32835,32838, +32845,32850,32873,32881,35203,39032,39040,39043}, +{39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430, +39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443, +39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456, +39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469, +39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,0,39481,39482, +39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495, +39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508, +39509,39510,39511,39512,39513,39049,39052,39053,39055,39060,39066,39067,39070, +39071,39073,39074,39077,39078,34381,34388,34412,34414,34431,34426,34428,34427, +34472,34445,34443,34476,34461,34471,34467,34474,34451,34473,34486,34500,34485, +34510,34480,34490,34481,34479,34505,34511,34484,34537,34545,34546,34541,34547, +34512,34579,34526,34548,34527,34520,34513,34563,34567,34552,34568,34570,34573, +34569,34595,34619,34590,34597,34606,34586,34622,34632,34612,34609,34601,34615, +34623,34690,34594,34685,34686,34683,34656,34672,34636,34670,34699,34643,34659, +34684,34660,34649,34661,34707,34735,34728,34770}, +{39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526, +39527,39528,39529,39530,39531,39538,39555,39561,39565,39566,39572,39573,39577, +39590,39593,39594,39595,39596,39597,39598,39599,39602,39603,39604,39605,39609, +39611,39613,39614,39615,39619,39620,39622,39623,39624,39625,39626,39629,39630, +39631,39632,39634,39636,39637,39638,39639,39641,39642,39643,39644,0,39645,39646, +39648,39650,39651,39652,39653,39655,39656,39657,39658,39660,39662,39664,39665, +39666,39667,39668,39669,39670,39671,39672,39674,39676,39677,39678,39679,39680, +39681,39682,39684,39685,39686,34758,34696,34693,34733,34711,34691,34731,34789, +34732,34741,34739,34763,34771,34749,34769,34752,34762,34779,34794,34784,34798, +34838,34835,34814,34826,34843,34849,34873,34876,32566,32578,32580,32581,33296, +31482,31485,31496,31491,31492,31509,31498,31531,31503,31559,31544,31530,31513, +31534,31537,31520,31525,31524,31539,31550,31518,31576,31578,31557,31605,31564, +31581,31584,31598,31611,31586,31602,31601,31632,31654,31655,31672,31660,31645, +31656,31621,31658,31644,31650,31659,31668,31697,31681,31692,31709,31706,31717, +31718,31722,31756,31742,31740,31759,31766,31755}, +{39687,39689,39690,39691,39692,39693,39694,39696,39697,39698,39700,39701,39702, +39703,39704,39705,39706,39707,39708,39709,39710,39712,39713,39714,39716,39717, +39718,39719,39720,39721,39722,39723,39724,39725,39726,39728,39729,39731,39732, +39733,39734,39735,39736,39737,39738,39741,39742,39743,39744,39750,39754,39755, +39756,39758,39760,39762,39763,39765,39766,39767,39768,39769,39770,0,39771,39772, +39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785, +39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798, +39799,39800,39801,39802,39803,31775,31786,31782,31800,31809,31808,33278,33281, +33282,33284,33260,34884,33313,33314,33315,33325,33327,33320,33323,33336,33339, +33331,33332,33342,33348,33353,33355,33359,33370,33375,33384,34942,34949,34952, +35032,35039,35166,32669,32671,32679,32687,32688,32690,31868,25929,31889,31901, +31900,31902,31906,31922,31932,31933,31937,31943,31948,31949,31944,31941,31959, +31976,33390,26280,32703,32718,32725,32741,32737,32742,32745,32750,32755,31992, +32119,32166,32174,32327,32411,40632,40628,36211,36228,36244,36241,36273,36199, +36205,35911,35913,37194,37200,37198,37199,37220}, +{39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816, +39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829, +39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842, +39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855, +39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,0,39867,39868, +39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881, +39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894, +39895,39896,39897,39898,39899,37218,37217,37232,37225,37231,37245,37246,37234, +37236,37241,37260,37253,37264,37261,37265,37282,37283,37290,37293,37294,37295, +37301,37300,37306,35925,40574,36280,36331,36357,36441,36457,36277,36287,36284, +36282,36292,36310,36311,36314,36318,36302,36303,36315,36294,36332,36343,36344, +36323,36345,36347,36324,36361,36349,36372,36381,36383,36396,36398,36387,36399, +36410,36416,36409,36405,36413,36401,36425,36417,36418,36433,36434,36426,36464, +36470,36476,36463,36468,36485,36495,36500,36496,36508,36510,35960,35970,35978, +35973,35992,35988,26011,35286,35294,35290,35292}, +{39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912, +39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925, +39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938, +39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951, +39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,0,39963,39964, +39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977, +39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990, +39991,39992,39993,39994,39995,35301,35307,35311,35390,35622,38739,38633,38643, +38639,38662,38657,38664,38671,38670,38698,38701,38704,38718,40832,40835,40837, +40838,40839,40840,40841,40842,40844,40702,40715,40717,38585,38588,38589,38606, +38610,30655,38624,37518,37550,37576,37694,37738,37834,37775,37950,37995,40063, +40066,40069,40070,40071,40072,31267,40075,40078,40080,40081,40082,40084,40085, +40090,40091,40094,40095,40096,40097,40098,40099,40101,40102,40103,40104,40105, +40107,40109,40110,40112,40113,40114,40115,40116,40117,40118,40119,40122,40123, +40124,40125,40132,40133,40134,40135,40138,40139}, +{39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008, +40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021, +40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034, +40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047, +40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,0,40059,40061, +40062,40064,40067,40068,40073,40074,40076,40079,40083,40086,40087,40088,40089, +40093,40106,40108,40111,40121,40126,40127,40128,40129,40130,40136,40137,40145, +40146,40154,40155,40160,40161,40140,40141,40142,40143,40144,40147,40148,40149, +40151,40152,40153,40156,40157,40159,40162,38780,38789,38801,38802,38804,38831, +38827,38819,38834,38836,39601,39600,39607,40536,39606,39610,39612,39617,39616, +39621,39618,39627,39628,39633,39749,39747,39751,39753,39752,39757,39761,39144, +39181,39214,39253,39252,39647,39649,39654,39663,39659,39675,39661,39673,39688, +39695,39699,39711,39715,40637,40638,32315,40578,40583,40584,40587,40594,37846, +40605,40607,40667,40668,40669,40672,40671,40674,40681,40679,40677,40682,40687, +40738,40748,40751,40761,40759,40765,40766,40772}, +{40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175, +40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188, +40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201, +40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214, +40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,0,40226,40227, +40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240, +40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253, +40254,40255,40256,40257,40258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271, +40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284, +40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297, +40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310, +40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,0,40322,40323, +40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336, +40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349, +40350,40351,40352,40353,40354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367, +40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380, +40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393, +40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406, +40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,0,40418,40419, +40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432, +40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445, +40446,40447,40448,40449,40450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463, +40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476, +40477,40478,40484,40487,40494,40496,40500,40507,40508,40512,40525,40528,40530, +40531,40532,40534,40537,40541,40543,40544,40545,40546,40549,40558,40559,40562, +40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40576,0,40577,40579, +40580,40581,40582,40585,40586,40588,40589,40590,40591,40592,40593,40596,40597, +40598,40599,40600,40601,40602,40603,40604,40606,40608,40609,40610,40611,40612, +40613,40615,40616,40617,40618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{40619,40620,40621,40622,40623,40624,40625,40626,40627,40629,40630,40631,40633, +40634,40636,40639,40640,40641,40642,40643,40645,40646,40647,40648,40650,40651, +40652,40656,40658,40659,40661,40662,40663,40665,40666,40670,40673,40675,40676, +40678,40680,40683,40684,40685,40686,40688,40689,40690,40691,40692,40693,40694, +40695,40696,40698,40701,40703,40704,40705,40706,40707,40708,40709,0,40710,40711, +40712,40713,40714,40716,40719,40721,40722,40724,40725,40726,40728,40730,40731, +40732,40733,40734,40735,40737,40739,40740,40741,40742,40743,40744,40745,40746, +40747,40749,40750,40752,40753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{40754,40755,40756,40757,40758,40760,40762,40764,40767,40768,40769,40770,40771, +40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40786,40787, +40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800, +40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813, +40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,0,40825,40826, +40827,40828,40829,40830,40833,40834,40845,40846,40847,40848,40849,40850,40851, +40852,40853,40854,40855,40856,40860,40861,40862,40865,40866,40867,40868,40869, +63788,63865,63893,63975,63985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, +{64012,64013,64014,64015,64017,64019,64020,64024,64031,64032,64033,64035,64036, +64039,64040,64041,11905,0,0,0,11908,13427,13383,11912,11915,0,13726,13850,13838, +11916,11927,14702,14616,0,14799,14815,14963,14800,0,0,15182,15470,15584,11943, +0,0,11946,16470,16735,11950,17207,11955,11958,11959,0,17329,17324,11963,17373, +17622,18017,17996,0,0,18211,18217,18300,18317,11978,18759,18810,18813,18818, +18819,18821,18822,18847,18843,18871,18870,0,0,19619,19615,19616,19617,19575, +19618,19731,19732,19733,19734,19735,19736,19737,19886,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0}}; + +gb18030_index_to_cp_len4_record = { +{128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146, +147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166, +169,170,171,172,173,174,175,178,179,180,181,182,184,185,186,187,188,189,190, +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209, +210,211,212,213,214,216,217,218,219,220,221,222,223,226,227,228,229,230,231, +235,238,239,240,241,244,245,246,248,251,253,254,255,256,258,259,260,261,262, +263,264,265,266,267,268,269,270,271,272,273,274,276,277,278,279,280,281,282, +284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,300,301,302,303, +304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322, +323,325,326,327,329,330,331,332,334,335,336,337,338,339,340,341,342,343,344, +345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364, +365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383, +384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402, +403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421, +422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440, +441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459, +460,461,463,465,467,469,471,473,475,477,478,479,480,481,482,483,484,485,486, +487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,506, +507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525, +526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544, +545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563, +564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582, +583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,599,600,601,602, +603,604,605,606,607,608,610,611,612,613,614,615,616,617,618,619,620,621,622, +623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641, +642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660, +661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679, +680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698, +699,700,701,702,703,704,705,706,707,708,709,710,712,716,717,718,719,720,721, +722,723,724,725,726,727,728,730,731,732,733,734,735,736,737,738,739,740,741, +742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760, +761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779, +780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798, +799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817, +818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836, +837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855, +856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874, +875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893, +894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912, +930,938,939,940,941,942,943,944,962,970,971,972,973,974,975,976,977,978,979, +980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998, +999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014, +1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1026,1027,1028,1029,1030, +1031,1032,1033,1034,1035,1036,1037,1038,1039,1104,1106,1107,1108,1109,1110, +1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125, +1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140, +1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155, +1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170, +1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185, +1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200, +1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215, +1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230, +1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245, +1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260, +1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275, +1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290, +1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305, +1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320, +1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335, +1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350, +1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365, +1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380, +1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395, +1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410, +1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425, +1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440, +1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455, +1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470, +1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485, +1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500, +1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515, +1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530, +1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545}, +{7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860, +7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875, +7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890, +7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905, +7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920, +7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935, +7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950, +7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965, +7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980, +7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995, +7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010, +8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025, +8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040, +8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055, +8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070, +8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085, +8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100, +8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115, +8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130, +8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145, +8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160, +8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175, +8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190, +8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205, +8206,8207,8209,8210,8215,8218,8219,8222,8223,8224,8225,8226,8227,8228,8231, +8232,8233,8234,8235,8236,8237,8238,8239,8241,8244,8246,8247,8248,8249,8250, +8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266, +8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281, +8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296, +8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311, +8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326, +8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341, +8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356, +8357,8358,8359,8360,8361,8362,8363,8365,8366,8367,8368,8369,8370,8371,8372, +8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387, +8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402, +8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417, +8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432, +8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447, +8448,8449,8450,8452,8454,8455,8456,8458,8459,8460,8461,8462,8463,8464,8465, +8466,8467,8468,8469,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8482, +8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497, +8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512, +8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527, +8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542, +8543,8556,8557,8558,8559,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579, +8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8596,8597,8602, +8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617, +8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632, +8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647, +8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662, +8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677, +8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692, +8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707, +8708,8709,8710,8711,8713,8714,8715,8716,8717,8718,8720,8722,8723,8724,8726, +8727,8728,8729,8731,8732,8737,8738,8740,8742,8748,8749,8751,8752,8753,8754, +8755,8760,8761,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8774, +8775,8777,8778,8779,8781,8782,8783,8784,8785,8787,8788,8789,8790,8791,8792, +8793,8794,8795,8796,8797,8798,8799,8802,8803,8808,8809,8810,8811,8812,8813, +8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830, +8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845, +8846,8847,8848,8849,8850,8851,8852,8854,8855,8856,8858,8859,8860,8861,8862, +8863,8864,8865,8866,8867,8868,8870,8871,8872,8873,8874,8875,8876,8877,8878, +8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893, +8894,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909, +8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924, +8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939, +8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954, +8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969, +8970,8971,8972,8973,8974,8975,8976,8977,8979,8980,8981,8982,8983,8984,8985, +8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000, +9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015, +9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030, +9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045, +9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060, +9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075, +9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090, +9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105, +9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120, +9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135, +9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150, +9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165, +9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180, +9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195}, +{9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210, +9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225, +9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240, +9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255, +9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270, +9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285, +9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300, +9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9322,9323,9324,9325, +9326,9327,9328,9329,9330,9331,9372,9373,9374,9375,9376,9377,9378,9379,9380, +9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395, +9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410, +9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425, +9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440, +9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455, +9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470, +9471,9548,9549,9550,9551,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597, +9598,9599,9600,9616,9617,9618,9622,9623,9624,9625,9626,9627,9628,9629,9630, +9631,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647, +9648,9649,9652,9653,9654,9655,9656,9657,9658,9659,9662,9663,9664,9665,9666, +9667,9668,9669,9672,9673,9674,9676,9677,9680,9681,9682,9683,9684,9685,9686, +9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9702,9703,9704,9705, +9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720, +9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9735,9736,9738, +9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753, +9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768, +9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783, +9784,9785,9786,9787,9788,9789,9790,9791,9793,9795,9796,9797,9798,9799,9800, +9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815, +9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830, +9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845, +9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860, +9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875, +9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890, +9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905, +9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920, +9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935, +9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950, +9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965, +9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980, +9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995, +9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009, +10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022, +10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035, +10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048, +10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061, +10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074, +10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087, +10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100, +10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113, +10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126, +10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139, +10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152, +10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165, +10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178, +10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191, +10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204, +10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217, +10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230, +10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243, +10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256, +10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269, +10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282, +10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295, +10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308, +10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321, +10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334, +10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347, +10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360, +10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373, +10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386, +10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399, +10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412, +10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425, +10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438, +10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451, +10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464, +10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477, +10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490, +10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503, +10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516, +10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529, +10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542, +10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555, +10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568, +10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581, +10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594, +10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607, +10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620, +10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633, +10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646, +10647,10648,10649,10650,10651,10652,10653,10654,10655}, +{10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668, +10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681, +10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694, +10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707, +10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720, +10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733, +10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746, +10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759, +10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772, +10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785, +10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798, +10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811, +10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824, +10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837, +10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850, +10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863, +10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876, +10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889, +10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902, +10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915, +10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928, +10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941, +10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954, +10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967, +10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980, +10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993, +10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006, +11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019, +11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032, +11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045, +11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058, +11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071, +11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084, +11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097, +11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110, +11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123, +11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136, +11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149, +11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162, +11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175, +11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188, +11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201, +11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214, +11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227, +11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240, +11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253, +11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266, +11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279, +11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292, +11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305, +11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318, +11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331, +11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344, +11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357, +11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370, +11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383, +11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396, +11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409, +11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422, +11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435, +11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448, +11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461, +11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474, +11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487, +11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500, +11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513, +11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526, +11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539, +11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552, +11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565, +11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578, +11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591, +11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604, +11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617, +11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630, +11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643, +11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656, +11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669, +11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682, +11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695, +11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708, +11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721, +11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734, +11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747, +11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760, +11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773, +11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786, +11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799, +11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812, +11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825, +11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838, +11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851, +11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864, +11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877, +11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890, +11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903, +11904,11906,11907,11909,11910,11911,11913,11914,11917,11918,11919,11920}, +{11921,11922,11923,11924,11925,11926,11928,11929,11930,11931,11932,11933,11934, +11935,11936,11937,11938,11939,11940,11941,11942,11944,11945,11947,11948,11949, +11951,11952,11953,11954,11956,11957,11960,11961,11962,11964,11965,11966,11967, +11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11979,11980,11981, +11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994, +11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007, +12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020, +12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033, +12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046, +12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059, +12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072, +12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085, +12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098, +12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111, +12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124, +12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137, +12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150, +12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163, +12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176, +12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189, +12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202, +12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215, +12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228, +12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241, +12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254, +12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267, +12268,12269,12270,12271,12284,12285,12286,12287,12292,12312,12313,12314,12315, +12316,12319,12320,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339, +12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12351,12352,12436, +12437,12438,12439,12440,12441,12442,12447,12448,12535,12536,12537,12538,12539, +12543,12544,12545,12546,12547,12548,12586,12587,12588,12589,12590,12591,12592, +12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605, +12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618, +12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631, +12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644, +12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657, +12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670, +12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683, +12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696, +12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709, +12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722, +12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735, +12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748, +12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761, +12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774, +12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787, +12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800, +12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813, +12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826, +12827,12828,12829,12830,12831,12842,12843,12844,12845,12846,12847,12848,12850, +12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863, +12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876, +12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889, +12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902, +12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915, +12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928, +12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941, +12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954, +12955,12956,12957,12958,12959,12960,12961,12962,12964,12965,12966,12967,12968, +12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981, +12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994, +12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007, +13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020, +13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033, +13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046, +13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059, +13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072, +13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085, +13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098, +13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111, +13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124, +13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137, +13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150, +13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163, +13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176, +13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189, +13190,13191,13192,13193,13194,13195,13196,13197,13200,13201,13202,13203,13204, +13205,13206,13207,13208,13209,13210,13211,13215,13216,13218,13219,13220,13221, +13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234, +13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247, +13248,13249,13250,13251,13253,13254,13255,13256,13257,13258,13259,13260,13261, +13263,13264,13267,13268,13270,13271,13272,13273,13274,13275,13276,13277,13278, +13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291, +13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304, +13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317, +13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330, +13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343, +13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356, +13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369, +13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382, +13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396, +13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409, +13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422, +13423,13424,13425,13426,13428,13429,13430,13431,13432,13433,13434,13435,13436, +13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449, +13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462, +13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474}, +{13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487, +13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500, +13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513, +13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526, +13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539, +13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552, +13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565, +13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578, +13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591, +13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604, +13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617, +13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630, +13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643, +13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656, +13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669, +13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682, +13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695, +13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708, +13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721, +13722,13723,13724,13725,13727,13728,13729,13730,13731,13732,13733,13734,13735, +13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748, +13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761, +13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774, +13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787, +13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800, +13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813, +13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826, +13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13839,13840, +13841,13842,13843,13844,13845,13846,13847,13848,13849,13851,13852,13853,13854, +13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867, +13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880, +13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893, +13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906, +13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919, +13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932, +13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945, +13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958, +13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971, +13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984, +13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997, +13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010, +14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023, +14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036, +14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049, +14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062, +14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075, +14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088, +14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101, +14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114, +14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127, +14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140, +14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153, +14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166, +14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179, +14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192, +14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205, +14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218, +14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231, +14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244, +14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257, +14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270, +14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283, +14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296, +14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309, +14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322, +14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335, +14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348, +14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361, +14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374, +14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387, +14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400, +14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413, +14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426, +14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439, +14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452, +14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465, +14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478, +14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491, +14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504, +14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517, +14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530, +14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543, +14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556, +14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569, +14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582, +14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595, +14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608, +14609,14610,14611,14612,14613,14614,14615,14617,14618,14619,14620,14621,14622, +14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635, +14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648, +14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661, +14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674, +14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687, +14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700, +14701,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714, +14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727, +14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739}, +{14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752, +14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765, +14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778, +14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791, +14792,14793,14794,14795,14796,14797,14798,14801,14802,14803,14804,14805,14806, +14807,14808,14809,14810,14811,14812,14813,14814,14816,14817,14818,14819,14820, +14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833, +14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846, +14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859, +14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872, +14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885, +14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898, +14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911, +14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924, +14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937, +14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950, +14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14964, +14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977, +14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990, +14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003, +15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016, +15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029, +15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042, +15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055, +15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068, +15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081, +15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094, +15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107, +15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120, +15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133, +15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146, +15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159, +15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172, +15173,15174,15175,15176,15177,15178,15179,15180,15181,15183,15184,15185,15186, +15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199, +15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212, +15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225, +15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238, +15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251, +15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264, +15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277, +15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290, +15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303, +15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316, +15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329, +15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342, +15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355, +15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368, +15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381, +15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394, +15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407, +15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420, +15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433, +15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446, +15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459, +15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15471,15472,15473, +15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486, +15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499, +15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512, +15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525, +15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538, +15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551, +15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564, +15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577, +15578,15579,15580,15581,15582,15583,15585,15586,15587,15588,15589,15590,15591, +15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604, +15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617, +15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630, +15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643, +15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656, +15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669, +15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682, +15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695, +15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708, +15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721, +15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734, +15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747, +15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760, +15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773, +15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786, +15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799, +15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812, +15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825, +15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838, +15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851, +15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864, +15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877, +15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890, +15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903, +15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916, +15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929, +15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942, +15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955, +15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968, +15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981, +15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994, +15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006}, +{16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019, +16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032, +16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045, +16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058, +16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071, +16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084, +16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097, +16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110, +16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123, +16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136, +16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149, +16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162, +16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175, +16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188, +16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201, +16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214, +16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227, +16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240, +16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253, +16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266, +16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279, +16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292, +16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305, +16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318, +16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331, +16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344, +16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357, +16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370, +16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383, +16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396, +16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409, +16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422, +16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435, +16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448, +16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461, +16462,16463,16464,16465,16466,16467,16468,16469,16471,16472,16473,16474,16475, +16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488, +16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501, +16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514, +16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527, +16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540, +16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553, +16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566, +16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579, +16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592, +16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605, +16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618, +16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631, +16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644, +16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657, +16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670, +16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683, +16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696, +16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709, +16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722, +16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16736, +16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749, +16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762, +16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775, +16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788, +16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801, +16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814, +16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827, +16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840, +16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853, +16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866, +16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879, +16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892, +16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905, +16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918, +16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931, +16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944, +16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957, +16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970, +16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983, +16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996, +16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009, +17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022, +17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035, +17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048, +17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061, +17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074, +17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087, +17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100, +17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113, +17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126, +17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139, +17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152, +17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165, +17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178, +17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191, +17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204, +17205,17206,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218, +17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231, +17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244, +17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257, +17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269}, +{17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282, +17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295, +17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308, +17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321, +17322,17323,17325,17326,17327,17328,17330,17331,17332,17333,17334,17335,17336, +17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349, +17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362, +17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17374,17375,17376, +17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389, +17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402, +17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415, +17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428, +17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441, +17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454, +17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467, +17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480, +17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493, +17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506, +17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519, +17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532, +17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545, +17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558, +17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571, +17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584, +17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597, +17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610, +17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17623,17624, +17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637, +17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650, +17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663, +17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676, +17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689, +17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702, +17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715, +17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728, +17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741, +17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754, +17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767, +17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780, +17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793, +17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806, +17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819, +17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832, +17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845, +17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858, +17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871, +17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884, +17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897, +17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910, +17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923, +17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936, +17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949, +17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962, +17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975, +17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988, +17989,17990,17991,17992,17993,17994,17995,17997,17998,17999,18000,18001,18002, +18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015, +18016,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029, +18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042, +18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055, +18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068, +18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081, +18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094, +18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107, +18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120, +18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133, +18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146, +18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159, +18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172, +18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185, +18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198, +18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18212, +18213,18214,18215,18216,18218,18219,18220,18221,18222,18223,18224,18225,18226, +18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239, +18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252, +18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265, +18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278, +18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291, +18292,18293,18294,18295,18296,18297,18298,18299,18301,18302,18303,18304,18305, +18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18318,18319, +18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332, +18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345, +18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358, +18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371, +18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384, +18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397, +18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410, +18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423, +18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436, +18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449, +18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462, +18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475, +18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488, +18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501, +18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514, +18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527, +18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539}, +{18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552, +18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565, +18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578, +18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591, +18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604, +18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617, +18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630, +18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643, +18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656, +18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669, +18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682, +18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695, +18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708, +18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721, +18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734, +18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747, +18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18760,18761, +18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774, +18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787, +18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800, +18801,18802,18803,18804,18805,18806,18807,18808,18809,18811,18812,18814,18815, +18816,18817,18820,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832, +18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18844,18845,18846, +18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860, +18861,18862,18863,18864,18865,18866,18867,18868,18869,18872,18873,18874,18875, +18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888, +18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901, +18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914, +18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927, +18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940, +18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953, +18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966, +18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979, +18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992, +18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005, +19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018, +19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031, +19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044, +19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057, +19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070, +19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083, +19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096, +19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109, +19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122, +19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135, +19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148, +19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161, +19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174, +19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187, +19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200, +19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213, +19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226, +19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239, +19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252, +19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265, +19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278, +19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291, +19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304, +19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317, +19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330, +19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343, +19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356, +19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369, +19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382, +19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395, +19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408, +19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421, +19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434, +19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447, +19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460, +19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473, +19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486, +19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499, +19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512, +19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525, +19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538, +19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551, +19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564, +19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19576,19577,19578, +19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591, +19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604, +19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19620,19621,19622, +19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635, +19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648, +19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661, +19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674, +19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687, +19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700, +19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713, +19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726, +19727,19728,19729,19730,19738,19739,19740,19741,19742,19743,19744,19745,19746, +19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759, +19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772, +19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785, +19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798, +19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811, +19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823}, +{19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836, +19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849, +19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862, +19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875, +19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19887,19888,19889, +19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902, +19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915, +19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928, +19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941, +19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954, +19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967, +40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882, +40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895, +40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908, +40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921, +40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934, +40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947, +40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960, +40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973, +40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986, +40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999, +41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012, +41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025, +41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038, +41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051, +41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064, +41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077, +41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090, +41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103, +41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116, +41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129, +41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142, +41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155, +41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168, +41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181, +41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194, +41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207, +41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220, +41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233, +41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246, +41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259, +41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272, +41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285, +41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298, +41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311, +41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324, +41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337, +41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350, +41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363, +41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376, +41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389, +41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402, +41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415, +41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428, +41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441, +41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454, +41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467, +41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480, +41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493, +41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506, +41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519, +41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532, +41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545, +41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558, +41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571, +41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584, +41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597, +41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610, +41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623, +41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636, +41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649, +41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662, +41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675, +41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688, +41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701, +41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714, +41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727, +41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740, +41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753, +41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766, +41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779, +41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792, +41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805, +41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818, +41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831, +41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844, +41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857, +41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870, +41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883, +41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896, +41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909, +41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922, +41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935, +41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948, +41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961, +41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974, +41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986}, +{54587,54588,54589,54590,54591,54592,54593,54594,54595,54596,54597,54598,54599, +54600,54601,54602,54603,54604,54605,54606,54607,54608,54609,54610,54611,54612, +54613,54614,54615,54616,54617,54618,54619,54620,54621,54622,54623,54624,54625, +54626,54627,54628,54629,54630,54631,54632,54633,54634,54635,54636,54637,54638, +54639,54640,54641,54642,54643,54644,54645,54646,54647,54648,54649,54650,54651, +54652,54653,54654,54655,54656,54657,54658,54659,54660,54661,54662,54663,54664, +54665,54666,54667,54668,54669,54670,54671,54672,54673,54674,54675,54676,54677, +54678,54679,54680,54681,54682,54683,54684,54685,54686,54687,54688,54689,54690, +54691,54692,54693,54694,54695,54696,54697,54698,54699,54700,54701,54702,54703, +54704,54705,54706,54707,54708,54709,54710,54711,54712,54713,54714,54715,54716, +54717,54718,54719,54720,54721,54722,54723,54724,54725,54726,54727,54728,54729, +54730,54731,54732,54733,54734,54735,54736,54737,54738,54739,54740,54741,54742, +54743,54744,54745,54746,54747,54748,54749,54750,54751,54752,54753,54754,54755, +54756,54757,54758,54759,54760,54761,54762,54763,54764,54765,54766,54767,54768, +54769,54770,54771,54772,54773,54774,54775,54776,54777,54778,54779,54780,54781, +54782,54783,54784,54785,54786,54787,54788,54789,54790,54791,54792,54793,54794, +54795,54796,54797,54798,54799,54800,54801,54802,54803,54804,54805,54806,54807, +54808,54809,54810,54811,54812,54813,54814,54815,54816,54817,54818,54819,54820, +54821,54822,54823,54824,54825,54826,54827,54828,54829,54830,54831,54832,54833, +54834,54835,54836,54837,54838,54839,54840,54841,54842,54843,54844,54845,54846, +54847,54848,54849,54850,54851,54852,54853,54854,54855,54856,54857,54858,54859, +54860,54861,54862,54863,54864,54865,54866,54867,54868,54869,54870,54871,54872, +54873,54874,54875,54876,54877,54878,54879,54880,54881,54882,54883,54884,54885, +54886,54887,54888,54889,54890,54891,54892,54893,54894,54895,54896,54897,54898, +54899,54900,54901,54902,54903,54904,54905,54906,54907,54908,54909,54910,54911, +54912,54913,54914,54915,54916,54917,54918,54919,54920,54921,54922,54923,54924, +54925,54926,54927,54928,54929,54930,54931,54932,54933,54934,54935,54936,54937, +54938,54939,54940,54941,54942,54943,54944,54945,54946,54947,54948,54949,54950, +54951,54952,54953,54954,54955,54956,54957,54958,54959,54960,54961,54962,54963, +54964,54965,54966,54967,54968,54969,54970,54971,54972,54973,54974,54975,54976, +54977,54978,54979,54980,54981,54982,54983,54984,54985,54986,54987,54988,54989, +54990,54991,54992,54993,54994,54995,54996,54997,54998,54999,55000,55001,55002, +55003,55004,55005,55006,55007,55008,55009,55010,55011,55012,55013,55014,55015, +55016,55017,55018,55019,55020,55021,55022,55023,55024,55025,55026,55027,55028, +55029,55030,55031,55032,55033,55034,55035,55036,55037,55038,55039,55040,55041, +55042,55043,55044,55045,55046,55047,55048,55049,55050,55051,55052,55053,55054, +55055,55056,55057,55058,55059,55060,55061,55062,55063,55064,55065,55066,55067, +55068,55069,55070,55071,55072,55073,55074,55075,55076,55077,55078,55079,55080, +55081,55082,55083,55084,55085,55086,55087,55088,55089,55090,55091,55092,55093, +55094,55095,55096,55097,55098,55099,55100,55101,55102,55103,55104,55105,55106, +55107,55108,55109,55110,55111,55112,55113,55114,55115,55116,55117,55118,55119, +55120,55121,55122,55123,55124,55125,55126,55127,55128,55129,55130,55131,55132, +55133,55134,55135,55136,55137,55138,55139,55140,55141,55142,55143,55144,55145, +55146,55147,55148,55149,55150,55151,55152,55153,55154,55155,55156,55157,55158, +55159,55160,55161,55162,55163,55164,55165,55166,55167,55168,55169,55170,55171, +55172,55173,55174,55175,55176,55177,55178,55179,55180,55181,55182,55183,55184, +55185,55186,55187,55188,55189,55190,55191,55192,55193,55194,55195,55196,55197, +55198,55199,55200,55201,55202,55203,55204,55205,55206,55207,55208,55209,55210, +55211,55212,55213,55214,55215,55216,55217,55218,55219,55220,55221,55222,55223, +55224,55225,55226,55227,55228,55229,55230,55231,55232,55233,55234,55235,55236, +55237,55238,55239,55240,55241,55242,55243,55244,55245,55246,55247,55248,55249, +55250,55251,55252,55253,55254,55255,55256,55257,55258,55259,55260,55261,55262, +55263,55264,55265,55266,55267,55268,55269,55270,55271,55272,55273,55274,55275, +55276,55277,55278,55279,55280,55281,55282,55283,55284,55285,55286,55287,55288, +55289,55290,55291,55292,55293,55294,55295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59493,59494,59495,59496, +59497,59498,59499,59500,59501,59502,59503,59504,59505,59506,59507,59508,59509, +59510,59511,59512,59513,59514,59515,59516,59517,59518,59519,59520,59521,59522, +59523,59524,59525,59526,59527,59528,59529,59530,59531,59532,59533,59534,59535, +59536,59537,59538,59539,59540,59541,59542,59543,59544,59545,59546,59547,59548, +59549,59550,59551,59552,59553,59554,59555,59556,59557,59558,59559,59560,59561, +59562,59563,59564,59565,59566,59567,59568,59569,59570,59571,59572,59573,59574, +59575,59576,59577,59578,59579,59580,59581,59582,59583,59584,59585,59586,59587, +59588,59589,59590,59591,59592,59593,59594,59595,59596,59597,59598,59599,59600, +59601,59602,59603,59604,59605,59606,59607,59608,59609,59610,59611,59612,59613, +59614,59615,59616,59617,59618,59619,59620,59621,59622,59623,59624,59625,59626, +59627,59628,59629,59630,59631,59632,59633,59634,59635,59636,59637,59638,59639, +59640,59641,59642,59643,59644,59645,59646,59647,59648,59649,59650,59651,59652, +59653,59654,59655,59656,59657,59658,59659,59660,59661,59662,59663,59664,59665, +59666,59667,59668,59669,59670,59671,59672,59673,59674,59675,59676,59677,59678, +59679,59680,59681,59682,59683,59684,59685,59686,59687,59688,59689,59690,59691, +59692,59693,59694,59695,59696,59697,59698,59699,59700,59701,59702,59703,59704, +59705,59706,59707,59708,59709,59710,59711,59712,59713,59714,59715,59716,59717, +59718,59719,59720,59721,59722,59723,59724,59725,59726,59727,59728,59729,59730, +59731,59732,59733,59734,59735,59736,59737,59738,59739,59740,59741,59742,59743, +59744,59745,59746,59747,59748,59749,59750,59751,59752,59753,59754,59755,59756, +59757,59758,59759,59760,59761,59762,59763,59764,59765,59766,59767,59768,59769, +59770,59771,59772,59773,59774,59775,59776,59777,59778,59779,59780,59781,59782, +59783,59784,59785,59786,59787,59788,59789,59790,59791,59792,59793,59794,59795, +59796,59797,59798,59799,59800,59801,59802,59803,59804,59805,59806,59807,59808, +59809,59810,59811,59812,59813,59814,59815,59816,59817,59818,59819,59820,59821, +59822,59823,59824,59825,59826,59827,59828,59829,59830,59831,59832,59833,59834, +59835,59836,59837,59838,59839,59840,59841,59842,59843,59844,59845,59846,59847, +59848,59849,59850,59851,59852,59853,59854,59855,59856,59857,59858,59859,59860, +59861,59862,59863,59864,59865,59866,59867,59868,59869,59870,59871,59872,59873, +59874,59875,59876,59877,59878,59879,59880,59881,59882,59883,59884,59885,59886, +59887,59888,59889,59890,59891,59892,59893,59894,59895,59896,59897,59898,59899, +59900,59901,59902,59903,59904,59905,59906,59907,59908,59909,59910,59911,59912, +59913,59914,59915,59916,59917,59918,59919,59920,59921,59922,59923,59924,59925, +59926,59927,59928,59929,59930,59931,59932,59933,59934,59935,59936,59937,59938, +59939,59940,59941,59942,59943,59944,59945,59946,59947,59948,59949,59950,59951, +59952,59953,59954,59955,59956,59957,59958,59959,59960,59961,59962}, +{63743,63744,63745,63746,63747,63748,63749,63750,63751,63752,63753,63754,63755, +63756,63757,63758,63759,63760,63761,63762,63763,63764,63765,63766,63767,63768, +63769,63770,63771,63772,63773,63774,63775,63776,63777,63778,63779,63780,63781, +63782,63783,63784,63785,63786,63787,63789,63790,63791,63792,63793,63794,63795, +63796,63797,63798,63799,63800,63801,63802,63803,63804,63805,63806,63807,63808, +63809,63810,63811,63812,63813,63814,63815,63816,63817,63818,63819,63820,63821, +63822,63823,63824,63825,63826,63827,63828,63829,63830,63831,63832,63833,63834, +63835,63836,63837,63838,63839,63840,63841,63842,63843,63844,63845,63846,63847, +63848,63849,63850,63851,63852,63853,63854,63855,63856,63857,63858,63859,63860, +63861,63862,63863,63864,63866,63867,63868,63869,63870,63871,63872,63873,63874, +63875,63876,63877,63878,63879,63880,63881,63882,63883,63884,63885,63886,63887, +63888,63889,63890,63891,63892,63894,63895,63896,63897,63898,63899,63900,63901, +63902,63903,63904,63905,63906,63907,63908,63909,63910,63911,63912,63913,63914, +63915,63916,63917,63918,63919,63920,63921,63922,63923,63924,63925,63926,63927, +63928,63929,63930,63931,63932,63933,63934,63935,63936,63937,63938,63939,63940, +63941,63942,63943,63944,63945,63946,63947,63948,63949,63950,63951,63952,63953, +63954,63955,63956,63957,63958,63959,63960,63961,63962,63963,63964,63965,63966, +63967,63968,63969,63970,63971,63972,63973,63974,63976,63977,63978,63979,63980, +63981,63982,63983,63984,63986,63987,63988,63989,63990,63991,63992,63993,63994, +63995,63996,63997,63998,63999,64000,64001,64002,64003,64004,64005,64006,64007, +64008,64009,64010,64011,64016,64018,64021,64022,64023,64025,64026,64027,64028, +64029,64030,64034,64037,64038,64042,64043,64044,64045,64046,64047,64048,64049, +64050,64051,64052,64053,64054,64055,64056,64057,64058,64059,64060,64061,64062, +64063,64064,64065,64066,64067,64068,64069,64070,64071,64072,64073,64074,64075, +64076,64077,64078,64079,64080,64081,64082,64083,64084,64085,64086,64087,64088, +64089,64090,64091,64092,64093,64094,64095,64096,64097,64098,64099,64100,64101, +64102,64103,64104,64105,64106,64107,64108,64109,64110,64111,64112,64113,64114, +64115,64116,64117,64118,64119,64120,64121,64122,64123,64124,64125,64126,64127, +64128,64129,64130,64131,64132,64133,64134,64135,64136,64137,64138,64139,64140, +64141,64142,64143,64144,64145,64146,64147,64148,64149,64150,64151,64152,64153, +64154,64155,64156,64157,64158,64159,64160,64161,64162,64163,64164,64165,64166, +64167,64168,64169,64170,64171,64172,64173,64174,64175,64176,64177,64178,64179, +64180,64181,64182,64183,64184,64185,64186,64187,64188,64189,64190,64191,64192, +64193,64194,64195,64196,64197,64198,64199,64200,64201,64202,64203,64204,64205, +64206,64207,64208,64209,64210,64211,64212,64213,64214,64215,64216,64217,64218, +64219,64220,64221,64222,64223,64224,64225,64226,64227,64228,64229,64230,64231, +64232,64233,64234,64235,64236,64237,64238,64239,64240,64241,64242,64243,64244, +64245,64246,64247,64248,64249,64250,64251,64252,64253,64254,64255,64256,64257, +64258,64259,64260,64261,64262,64263,64264,64265,64266,64267,64268,64269,64270, +64271,64272,64273,64274,64275,64276,64277,64278,64279,64280,64281,64282,64283, +64284,64285,64286,64287,64288,64289,64290,64291,64292,64293,64294,64295,64296, +64297,64298,64299,64300,64301,64302,64303,64304,64305,64306,64307,64308,64309, +64310,64311,64312,64313,64314,64315,64316,64317,64318,64319,64320,64321,64322, +64323,64324,64325,64326,64327,64328,64329,64330,64331,64332,64333,64334,64335, +64336,64337,64338,64339,64340,64341,64342,64343,64344,64345,64346,64347,64348, +64349,64350,64351,64352,64353,64354,64355,64356,64357,64358,64359,64360,64361, +64362,64363,64364,64365,64366,64367,64368,64369,64370,64371,64372,64373,64374, +64375,64376,64377,64378,64379,64380,64381,64382,64383,64384,64385,64386,64387, +64388,64389,64390,64391,64392,64393,64394,64395,64396,64397,64398,64399,64400, +64401,64402,64403,64404,64405,64406,64407,64408,64409,64410,64411,64412,64413, +64414,64415,64416,64417,64418,64419,64420,64421,64422,64423,64424,64425,64426, +64427,64428,64429,64430,64431,64432,64433,64434,64435,64436,64437,64438,64439, +64440,64441,64442,64443,64444,64445,64446,64447,64448,64449,64450,64451,64452, +64453,64454,64455,64456,64457,64458,64459,64460,64461,64462,64463,64464,64465, +64466,64467,64468,64469,64470,64471,64472,64473,64474,64475,64476,64477,64478, +64479,64480,64481,64482,64483,64484,64485,64486,64487,64488,64489,64490,64491, +64492,64493,64494,64495,64496,64497,64498,64499,64500,64501,64502,64503,64504, +64505,64506,64507,64508,64509,64510,64511,64512,64513,64514,64515,64516,64517, +64518,64519,64520,64521,64522,64523,64524,64525,64526,64527,64528,64529,64530, +64531,64532,64533,64534,64535,64536,64537,64538,64539,64540,64541,64542,64543, +64544,64545,64546,64547,64548,64549,64550,64551,64552,64553,64554,64555,64556, +64557,64558,64559,64560,64561,64562,64563,64564,64565,64566,64567,64568,64569, +64570,64571,64572,64573,64574,64575,64576,64577,64578,64579,64580,64581,64582, +64583,64584,64585,64586,64587,64588,64589,64590,64591,64592,64593,64594,64595, +64596,64597,64598,64599,64600,64601,64602,64603,64604,64605,64606,64607,64608, +64609,64610,64611,64612,64613,64614,64615,64616,64617,64618,64619,64620,64621, +64622,64623,64624,64625,64626,64627,64628,64629,64630,64631,64632,64633,64634, +64635,64636,64637,64638,64639,64640,64641,64642,64643,64644,64645,64646,64647, +64648,64649,64650,64651,64652,64653,64654,64655,64656,64657,64658,64659,64660, +64661,64662,64663,64664,64665,64666,64667,64668,64669,64670,64671,64672,64673, +64674,64675,64676,64677,64678,64679,64680,64681,64682,64683,64684,64685,64686, +64687,64688,64689,64690,64691,64692,64693,64694,64695,64696,64697,64698,64699, +64700,64701,64702,64703,64704,64705,64706,64707,64708,64709,64710,64711,64712, +64713,64714,64715,64716,64717,64718,64719,64720,64721,64722,64723,64724,64725, +64726,64727,64728,64729,64730,64731,64732,64733,64734,64735,64736,64737,64738, +64739,64740,64741,64742,64743,64744,64745,64746,64747,64748,64749,64750,64751, +64752,64753,64754,64755,64756,64757,64758,64759,64760,64761,64762,64763,64764, +64765,64766,64767,64768,64769,64770,64771,64772,64773,64774,64775,64776,64777, +64778,64779,64780,64781,64782,64783,64784,64785,64786,64787,64788,64789,64790, +64791,64792,64793,64794,64795,64796,64797,64798,64799,64800,64801,64802,64803, +64804,64805,64806,64807,64808,64809,64810,64811,64812,64813,64814,64815,64816, +64817,64818,64819,64820,64821,64822,64823,64824,64825,64826,64827,64828,64829, +64830,64831,64832,64833,64834,64835,64836,64837,64838,64839,64840,64841,64842, +64843,64844,64845,64846,64847,64848,64849,64850,64851,64852,64853,64854,64855, +64856,64857,64858,64859,64860,64861,64862,64863,64864,64865,64866,64867,64868, +64869,64870,64871,64872,64873,64874,64875,64876,64877,64878,64879,64880,64881, +64882,64883,64884,64885,64886,64887,64888,64889,64890,64891,64892,64893,64894, +64895,64896,64897,64898,64899,64900,64901,64902,64903,64904,64905,64906,64907, +64908,64909,64910,64911,64912,64913,64914,64915,64916,64917,64918,64919,64920, +64921,64922,64923,64924,64925,64926,64927,64928,64929,64930,64931,64932,64933, +64934,64935,64936,64937,64938,64939,64940,64941,64942,64943,64944,64945,64946, +64947,64948,64949,64950,64951,64952,64953,64954,64955,64956,64957,64958,64959, +64960,64961,64962,64963,64964,64965,64966,64967,64968,64969,64970,64971,64972, +64973,64974,64975,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985, +64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998, +64999,65000,65001,65002,65003,65004,65005,65006,65007,65008,65009,65010,65011, +65012,65013,65014,65015,65016,65017,65018,65019,65020,65021,65022,65023}, +{65024,65025,65026,65027,65028,65029,65030,65031,65032,65033,65034,65035,65036, +65037,65038,65039,65040,65041,65042,65043,65044,65045,65046,65047,65048,65049, +65050,65051,65052,65053,65054,65055,65056,65057,65058,65059,65060,65061,65062, +65063,65064,65065,65066,65067,65068,65069,65070,65071,65074,65093,65094,65095, +65096,65107,65112,65127,65132,65133,65134,65135,65136,65137,65138,65139,65140, +65141,65142,65143,65144,65145,65146,65147,65148,65149,65150,65151,65152,65153, +65154,65155,65156,65157,65158,65159,65160,65161,65162,65163,65164,65165,65166, +65167,65168,65169,65170,65171,65172,65173,65174,65175,65176,65177,65178,65179, +65180,65181,65182,65183,65184,65185,65186,65187,65188,65189,65190,65191,65192, +65193,65194,65195,65196,65197,65198,65199,65200,65201,65202,65203,65204,65205, +65206,65207,65208,65209,65210,65211,65212,65213,65214,65215,65216,65217,65218, +65219,65220,65221,65222,65223,65224,65225,65226,65227,65228,65229,65230,65231, +65232,65233,65234,65235,65236,65237,65238,65239,65240,65241,65242,65243,65244, +65245,65246,65247,65248,65249,65250,65251,65252,65253,65254,65255,65256,65257, +65258,65259,65260,65261,65262,65263,65264,65265,65266,65267,65268,65269,65270, +65271,65272,65273,65274,65275,65276,65277,65278,65279,65280,65375,65376,65377, +65378,65379,65380,65381,65382,65383,65384,65385,65386,65387,65388,65389,65390, +65391,65392,65393,65394,65395,65396,65397,65398,65399,65400,65401,65402,65403, +65404,65405,65406,65407,65408,65409,65410,65411,65412,65413,65414,65415,65416, +65417,65418,65419,65420,65421,65422,65423,65424,65425,65426,65427,65428,65429, +65430,65431,65432,65433,65434,65435,65436,65437,65438,65439,65440,65441,65442, +65443,65444,65445,65446,65447,65448,65449,65450,65451,65452,65453,65454,65455, +65456,65457,65458,65459,65460,65461,65462,65463,65464,65465,65466,65467,65468, +65469,65470,65471,65472,65473,65474,65475,65476,65477,65478,65479,65480,65481, +65482,65483,65484,65485,65486,65487,65488,65489,65490,65491,65492,65493,65494, +65495,65496,65497,65498,65499,65500,65501,65502,65503,65510,65511,65512,65513, +65514,65515,65516,65517,65518,65519,65520,65521,65522,65523,65524,65525,65526, +65527,65528,65529,65530,65531,65532,65533,65534,65535,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}}; + +gb18030_cp_to_index_record = { +0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xc,0xd,0xe,0xf,0x10,0x11, +0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f, +0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,0x2a,0x2b,0x2c,0x2d, +0x2e,0x2f,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x3b, +0x3c,0x3d,0x3e,0x3f,0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49, +0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57, +0x58,0x59,0x5a,0x5b,0x5c,0x5d,0x5e,0x5f,0x60,0x61,0x62,0x63,0x64,0x65, +0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73, +0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x7b,0x7c,0x7d,0x7e,0x7f,0x81308130, +0x81308131,0x81308132,0x81308133,0x81308134,0x81308135,0x81308136,0x81308137, +0x81308138,0x81308139,0x81308230,0x81308231,0x81308232,0x81308233,0x81308234, +0x81308235,0x81308236,0x81308237,0x81308238,0x81308239,0x81308330,0x81308331, +0x81308332,0x81308333,0x81308334,0x81308335,0x81308336,0x81308337,0x81308338, +0x81308339,0x81308430,0x81308431,0x81308432,0x81308433,0x81308434,0x81308435, +0xa1e8,0x81308436,0x81308437,0xa1ec,0xa1a7,0x81308438,0x81308439,0x81308530, +0x81308531,0x81308532,0x81308533,0x81308534,0xa1e3,0xa1c0,0x81308535,0x81308536, +0x81308537,0x81308538,0x81308539,0xa1a4,0x81308630,0x81308631,0x81308632, +0x81308633,0x81308634,0x81308635,0x81308636,0x81308637,0x81308638,0x81308639, +0x81308730,0x81308731,0x81308732,0x81308733,0x81308734,0x81308735,0x81308736, +0x81308737,0x81308738,0x81308739,0x81308830,0x81308831,0x81308832,0x81308833, +0x81308834,0x81308835,0x81308836,0x81308837,0x81308838,0x81308839,0x81308930, +0xa1c1,0x81308931,0x81308932,0x81308933,0x81308934,0x81308935,0x81308936, +0x81308937,0x81308938,0xa8a4,0xa8a2,0x81308939,0x81308a30,0x81308a31,0x81308a32, +0x81308a33,0x81308a34,0xa8a8,0xa8a6,0xa8ba,0x81308a35,0xa8ac,0xa8aa,0x81308a36, +0x81308a37,0x81308a38,0x81308a39,0xa8b0,0xa8ae,0x81308b30,0x81308b31,0x81308b32, +0xa1c2,0x81308b33,0xa8b4,0xa8b2,0x81308b34,0xa8b9,0x81308b35,0x81308b36, +0x81308b37,0x81308b38,0xa8a1,0x81308b39,0x81308c30,0x81308c31,0x81308c32, +0x81308c33,0x81308c34,0x81308c35,0x81308c36,0x81308c37,0x81308c38,0x81308c39, +0x81308d30,0x81308d31,0x81308d32,0x81308d33,0x81308d34,0x81308d35,0xa8a5, +0x81308d36,0x81308d37,0x81308d38,0x81308d39,0x81308e30,0x81308e31,0x81308e32, +0xa8a7,0x81308e33,0x81308e34,0x81308e35,0x81308e36,0x81308e37,0x81308e38, +0x81308e39,0x81308f30,0x81308f31,0x81308f32,0x81308f33,0x81308f34,0x81308f35, +0x81308f36,0x81308f37,0xa8a9,0x81308f38,0x81308f39,0x81309030,0x81309031, +0x81309032,0x81309033,0x81309034,0x81309035,0x81309036,0x81309037,0x81309038, +0x81309039,0x81309130,0x81309131,0x81309132,0x81309133,0x81309134,0x81309135, +0x81309136,0x81309137,0x81309138,0x81309139,0x81309230,0x81309231,0xa8bd, +0x81309232,0x81309233,0x81309234,0xa8be,0x81309235,0x81309236,0x81309237, +0x81309238,0xa8ad,0x81309239,0x81309330,0x81309331,0x81309332,0x81309333, +0x81309334,0x81309335,0x81309336,0x81309337,0x81309338,0x81309339,0x81309430, +0x81309431,0x81309432,0x81309433,0x81309434,0x81309435,0x81309436,0x81309437, +0x81309438,0x81309439,0x81309530,0x81309531,0x81309532,0x81309533,0x81309534, +0x81309535,0x81309536,0x81309537,0xa8b1,0x81309538,0x81309539,0x81309630, +0x81309631,0x81309632,0x81309633,0x81309634,0x81309635,0x81309636,0x81309637, +0x81309638,0x81309639,0x81309730,0x81309731,0x81309732,0x81309733,0x81309734, +0x81309735,0x81309736,0x81309737,0x81309738,0x81309739,0x81309830,0x81309831, +0x81309832,0x81309833,0x81309834,0x81309835,0x81309836,0x81309837,0x81309838, +0x81309839,0x81309930,0x81309931,0x81309932,0x81309933,0x81309934,0x81309935, +0x81309936,0x81309937,0x81309938,0x81309939,0x81309a30,0x81309a31,0x81309a32, +0x81309a33,0x81309a34,0x81309a35,0x81309a36,0x81309a37,0x81309a38,0x81309a39, +0x81309b30,0x81309b31,0x81309b32,0x81309b33,0x81309b34,0x81309b35,0x81309b36, +0x81309b37,0x81309b38,0x81309b39,0x81309c30,0x81309c31,0x81309c32,0x81309c33, +0x81309c34,0x81309c35,0x81309c36,0x81309c37,0x81309c38,0x81309c39,0x81309d30, +0x81309d31,0x81309d32,0x81309d33,0x81309d34,0x81309d35,0x81309d36,0x81309d37, +0x81309d38,0x81309d39,0x81309e30,0x81309e31,0x81309e32,0x81309e33,0x81309e34, +0x81309e35,0x81309e36,0x81309e37,0x81309e38,0x81309e39,0x81309f30,0x81309f31, +0x81309f32,0x81309f33,0x81309f34,0x81309f35,0xa8a3,0x81309f36,0xa8ab,0x81309f37, +0xa8af,0x81309f38,0xa8b3,0x81309f39,0xa8b5,0x8130a030,0xa8b6,0x8130a031, +0xa8b7,0x8130a032,0xa8b8,0x8130a033,0x8130a034,0x8130a035,0x8130a036,0x8130a037, +0x8130a038,0x8130a039,0x8130a130,0x8130a131,0x8130a132,0x8130a133,0x8130a134, +0x8130a135,0x8130a136,0x8130a137,0x8130a138,0x8130a139,0x8130a230,0x8130a231, +0x8130a232,0x8130a233,0x8130a234,0x8130a235,0x8130a236,0x8130a237,0x8130a238, +0x8130a239,0x8130a330,0xa8bf,0x8130a331,0x8130a332,0x8130a333,0x8130a334, +0x8130a335,0x8130a336,0x8130a337,0x8130a338,0x8130a339,0x8130a430,0x8130a431, +0x8130a432,0x8130a433,0x8130a434,0x8130a435,0x8130a436,0x8130a437,0x8130a438, +0x8130a439,0x8130a530,0x8130a531,0x8130a532,0x8130a533,0x8130a534,0x8130a535, +0x8130a536,0x8130a537,0x8130a538,0x8130a539,0x8130a630,0x8130a631,0x8130a632, +0x8130a633,0x8130a634,0x8130a635,0x8130a636,0x8130a637,0x8130a638,0x8130a639, +0x8130a730,0x8130a731,0x8130a732,0x8130a733,0x8130a734,0x8130a735,0x8130a736, +0x8130a737,0x8130a738,0x8130a739,0x8130a830,0x8130a831,0x8130a832,0x8130a833, +0x8130a834,0x8130a835,0x8130a836,0x8130a837,0x8130a838,0x8130a839,0x8130a930, +0x8130a931,0x8130a932,0x8130a933,0x8130a934,0x8130a935,0x8130a936,0x8130a937, +0x8130a938,0x8130a939,0x8130aa30,0x8130aa31,0x8130aa32,0x8130aa33,0x8130aa34, +0x8130aa35,0x8130aa36,0x8130aa37,0x8130aa38,0x8130aa39,0x8130ab30,0x8130ab31, +0x8130ab32,0x8130ab33,0x8130ab34,0x8130ab35,0x8130ab36,0x8130ab37,0xa8bb, +0x8130ab38,0x8130ab39,0x8130ac30,0x8130ac31,0x8130ac32,0x8130ac33,0x8130ac34, +0x8130ac35,0x8130ac36,0x8130ac37,0x8130ac38,0x8130ac39,0x8130ad30,0x8130ad31, +0x8130ad32,0xa8c0,0x8130ad33,0x8130ad34,0x8130ad35,0x8130ad36,0x8130ad37, +0x8130ad38,0x8130ad39,0x8130ae30,0x8130ae31,0x8130ae32,0x8130ae33,0x8130ae34, +0x8130ae35,0x8130ae36,0x8130ae37,0x8130ae38,0x8130ae39,0x8130af30,0x8130af31, +0x8130af32,0x8130af33,0x8130af34,0x8130af35,0x8130af36,0x8130af37,0x8130af38, +0x8130af39,0x8130b030,0x8130b031,0x8130b032,0x8130b033,0x8130b034,0x8130b035, +0x8130b036,0x8130b037,0x8130b038,0x8130b039,0x8130b130,0x8130b131,0x8130b132, +0x8130b133,0x8130b134,0x8130b135,0x8130b136,0x8130b137,0x8130b138,0x8130b139, +0x8130b230,0x8130b231,0x8130b232,0x8130b233,0x8130b234,0x8130b235,0x8130b236, +0x8130b237,0x8130b238,0x8130b239,0x8130b330,0x8130b331,0x8130b332,0x8130b333, +0x8130b334,0x8130b335,0x8130b336,0x8130b337,0x8130b338,0x8130b339,0x8130b430, +0x8130b431,0x8130b432,0x8130b433,0x8130b434,0x8130b435,0x8130b436,0x8130b437, +0x8130b438,0x8130b439,0x8130b530,0x8130b531,0x8130b532,0x8130b533,0x8130b534, +0x8130b535,0x8130b536,0x8130b537,0x8130b538,0x8130b539,0x8130b630,0x8130b631, +0x8130b632,0x8130b633,0x8130b634,0x8130b635,0x8130b636,0x8130b637,0x8130b638, +0x8130b639,0x8130b730,0x8130b731,0x8130b732,0x8130b733,0xa1a6,0x8130b734, +0xa1a5,0xa840,0xa841,0x8130b735,0x8130b736,0x8130b737,0x8130b738,0x8130b739, +0x8130b830,0x8130b831,0x8130b832,0x8130b833,0x8130b834,0x8130b835,0x8130b836, +0x8130b837,0xa842,0x8130b838,0x8130b839,0x8130b930,0x8130b931,0x8130b932, +0x8130b933,0x8130b934,0x8130b935,0x8130b936,0x8130b937,0x8130b938,0x8130b939, +0x8130ba30,0x8130ba31,0x8130ba32,0x8130ba33,0x8130ba34,0x8130ba35,0x8130ba36, +0x8130ba37,0x8130ba38,0x8130ba39,0x8130bb30,0x8130bb31,0x8130bb32,0x8130bb33, +0x8130bb34,0x8130bb35,0x8130bb36,0x8130bb37,0x8130bb38,0x8130bb39,0x8130bc30, +0x8130bc31,0x8130bc32,0x8130bc33,0x8130bc34,0x8130bc35,0x8130bc36,0x8130bc37, +0x8130bc38,0x8130bc39,0x8130bd30,0x8130bd31,0x8130bd32,0x8130bd33,0x8130bd34, +0x8130bd35,0x8130bd36,0x8130bd37,0x8130bd38,0x8130bd39,0x8130be30,0x8130be31, +0x8130be32,0x8130be33,0x8130be34,0x8130be35,0x8130be36,0x8130be37,0x8130be38, +0x8130be39,0x8130bf30,0x8130bf31,0x8130bf32,0x8130bf33,0x8130bf34,0x8130bf35, +0x8130bf36,0x8130bf37,0x8130bf38,0x8130bf39,0x8130c030,0x8130c031,0x8130c032, +0x8130c033,0x8130c034,0x8130c035,0x8130c036,0x8130c037,0x8130c038,0x8130c039, +0x8130c130,0x8130c131,0x8130c132,0x8130c133,0x8130c134,0x8130c135,0x8130c136, +0x8130c137,0x8130c138,0x8130c139,0x8130c230,0x8130c231,0x8130c232,0x8130c233, +0x8130c234,0x8130c235,0x8130c236,0x8130c237,0x8130c238,0x8130c239,0x8130c330, +0x8130c331,0x8130c332,0x8130c333,0x8130c334,0x8130c335,0x8130c336,0x8130c337, +0x8130c338,0x8130c339,0x8130c430,0x8130c431,0x8130c432,0x8130c433,0x8130c434, +0x8130c435,0x8130c436,0x8130c437,0x8130c438,0x8130c439,0x8130c530,0x8130c531, +0x8130c532,0x8130c533,0x8130c534,0x8130c535,0x8130c536,0x8130c537,0x8130c538, +0x8130c539,0x8130c630,0x8130c631,0x8130c632,0x8130c633,0x8130c634,0x8130c635, +0x8130c636,0x8130c637,0x8130c638,0x8130c639,0x8130c730,0x8130c731,0x8130c732, +0x8130c733,0x8130c734,0x8130c735,0x8130c736,0x8130c737,0x8130c738,0x8130c739, +0x8130c830,0x8130c831,0x8130c832,0x8130c833,0x8130c834,0x8130c835,0x8130c836, +0x8130c837,0x8130c838,0x8130c839,0x8130c930,0x8130c931,0x8130c932,0x8130c933, +0x8130c934,0x8130c935,0x8130c936,0x8130c937,0x8130c938,0x8130c939,0x8130ca30, +0x8130ca31,0x8130ca32,0x8130ca33,0x8130ca34,0x8130ca35,0x8130ca36,0x8130ca37, +0x8130ca38,0x8130ca39,0x8130cb30,0xa6a1,0xa6a2,0xa6a3,0xa6a4,0xa6a5,0xa6a6, +0xa6a7,0xa6a8,0xa6a9,0xa6aa,0xa6ab,0xa6ac,0xa6ad,0xa6ae,0xa6af,0xa6b0, +0xa6b1,0x8130cb31,0xa6b2,0xa6b3,0xa6b4,0xa6b5,0xa6b6,0xa6b7,0xa6b8,0x8130cb32, +0x8130cb33,0x8130cb34,0x8130cb35,0x8130cb36,0x8130cb37,0x8130cb38,0xa6c1, +0xa6c2,0xa6c3,0xa6c4,0xa6c5,0xa6c6,0xa6c7,0xa6c8,0xa6c9,0xa6ca,0xa6cb, +0xa6cc,0xa6cd,0xa6ce,0xa6cf,0xa6d0,0xa6d1,0x8130cb39,0xa6d2,0xa6d3,0xa6d4, +0xa6d5,0xa6d6,0xa6d7,0xa6d8,0x8130cc30,0x8130cc31,0x8130cc32,0x8130cc33, +0x8130cc34,0x8130cc35,0x8130cc36,0x8130cc37,0x8130cc38,0x8130cc39,0x8130cd30, +0x8130cd31,0x8130cd32,0x8130cd33,0x8130cd34,0x8130cd35,0x8130cd36,0x8130cd37, +0x8130cd38,0x8130cd39,0x8130ce30,0x8130ce31,0x8130ce32,0x8130ce33,0x8130ce34, +0x8130ce35,0x8130ce36,0x8130ce37,0x8130ce38,0x8130ce39,0x8130cf30,0x8130cf31, +0x8130cf32,0x8130cf33,0x8130cf34,0x8130cf35,0x8130cf36,0x8130cf37,0x8130cf38, +0x8130cf39,0x8130d030,0x8130d031,0x8130d032,0x8130d033,0x8130d034,0x8130d035, +0x8130d036,0x8130d037,0x8130d038,0x8130d039,0x8130d130,0x8130d131,0x8130d132, +0x8130d133,0x8130d134,0xa7a7,0x8130d135,0x8130d136,0x8130d137,0x8130d138, +0x8130d139,0x8130d230,0x8130d231,0x8130d232,0x8130d233,0x8130d234,0x8130d235, +0x8130d236,0x8130d237,0x8130d238,0xa7a1,0xa7a2,0xa7a3,0xa7a4,0xa7a5,0xa7a6, +0xa7a8,0xa7a9,0xa7aa,0xa7ab,0xa7ac,0xa7ad,0xa7ae,0xa7af,0xa7b0,0xa7b1, +0xa7b2,0xa7b3,0xa7b4,0xa7b5,0xa7b6,0xa7b7,0xa7b8,0xa7b9,0xa7ba,0xa7bb, +0xa7bc,0xa7bd,0xa7be,0xa7bf,0xa7c0,0xa7c1,0xa7d1,0xa7d2,0xa7d3,0xa7d4, +0xa7d5,0xa7d6,0xa7d8,0xa7d9,0xa7da,0xa7db,0xa7dc,0xa7dd,0xa7de,0xa7df, +0xa7e0,0xa7e1,0xa7e2,0xa7e3,0xa7e4,0xa7e5,0xa7e6,0xa7e7,0xa7e8,0xa7e9, +0xa7ea,0xa7eb,0xa7ec,0xa7ed,0xa7ee,0xa7ef,0xa7f0,0xa7f1,0x8130d239,0xa7d7, +0x8130d330,0x8130d331,0x8130d332,0x8130d333,0x8130d334,0x8130d335,0x8130d336, +0x8130d337,0x8130d338,0x8130d339,0x8130d430,0x8130d431,0x8130d432,0x8130d433, +0x8130d434,0x8130d435,0x8130d436,0x8130d437,0x8130d438,0x8130d439,0x8130d530, +0x8130d531,0x8130d532,0x8130d533,0x8130d534,0x8130d535,0x8130d536,0x8130d537, +0x8130d538,0x8130d539,0x8130d630,0x8130d631,0x8130d632,0x8130d633,0x8130d634, +0x8130d635,0x8130d636,0x8130d637,0x8130d638,0x8130d639,0x8130d730,0x8130d731, +0x8130d732,0x8130d733,0x8130d734,0x8130d735,0x8130d736,0x8130d737,0x8130d738, +0x8130d739,0x8130d830,0x8130d831,0x8130d832,0x8130d833,0x8130d834,0x8130d835, +0x8130d836,0x8130d837,0x8130d838,0x8130d839,0x8130d930,0x8130d931,0x8130d932, +0x8130d933,0x8130d934,0x8130d935,0x8130d936,0x8130d937,0x8130d938,0x8130d939, +0x8130da30,0x8130da31,0x8130da32,0x8130da33,0x8130da34,0x8130da35,0x8130da36, +0x8130da37,0x8130da38,0x8130da39,0x8130db30,0x8130db31,0x8130db32,0x8130db33, +0x8130db34,0x8130db35,0x8130db36,0x8130db37,0x8130db38,0x8130db39,0x8130dc30, +0x8130dc31,0x8130dc32,0x8130dc33,0x8130dc34,0x8130dc35,0x8130dc36,0x8130dc37, +0x8130dc38,0x8130dc39,0x8130dd30,0x8130dd31,0x8130dd32,0x8130dd33,0x8130dd34, +0x8130dd35,0x8130dd36,0x8130dd37,0x8130dd38,0x8130dd39,0x8130de30,0x8130de31, +0x8130de32,0x8130de33,0x8130de34,0x8130de35,0x8130de36,0x8130de37,0x8130de38, +0x8130de39,0x8130df30,0x8130df31,0x8130df32,0x8130df33,0x8130df34,0x8130df35, +0x8130df36,0x8130df37,0x8130df38,0x8130df39,0x8130e030,0x8130e031,0x8130e032, +0x8130e033,0x8130e034,0x8130e035,0x8130e036,0x8130e037,0x8130e038,0x8130e039, +0x8130e130,0x8130e131,0x8130e132,0x8130e133,0x8130e134,0x8130e135,0x8130e136, +0x8130e137,0x8130e138,0x8130e139,0x8130e230,0x8130e231,0x8130e232,0x8130e233, +0x8130e234,0x8130e235,0x8130e236,0x8130e237,0x8130e238,0x8130e239,0x8130e330, +0x8130e331,0x8130e332,0x8130e333,0x8130e334,0x8130e335,0x8130e336,0x8130e337, +0x8130e338,0x8130e339,0x8130e430,0x8130e431,0x8130e432,0x8130e433,0x8130e434, +0x8130e435,0x8130e436,0x8130e437,0x8130e438,0x8130e439,0x8130e530,0x8130e531, +0x8130e532,0x8130e533,0x8130e534,0x8130e535,0x8130e536,0x8130e537,0x8130e538, +0x8130e539,0x8130e630,0x8130e631,0x8130e632,0x8130e633,0x8130e634,0x8130e635, +0x8130e636,0x8130e637,0x8130e638,0x8130e639,0x8130e730,0x8130e731,0x8130e732, +0x8130e733,0x8130e734,0x8130e735,0x8130e736,0x8130e737,0x8130e738,0x8130e739, +0x8130e830,0x8130e831,0x8130e832,0x8130e833,0x8130e834,0x8130e835,0x8130e836, +0x8130e837,0x8130e838,0x8130e839,0x8130e930,0x8130e931,0x8130e932,0x8130e933, +0x8130e934,0x8130e935,0x8130e936,0x8130e937,0x8130e938,0x8130e939,0x8130ea30, +0x8130ea31,0x8130ea32,0x8130ea33,0x8130ea34,0x8130ea35,0x8130ea36,0x8130ea37, +0x8130ea38,0x8130ea39,0x8130eb30,0x8130eb31,0x8130eb32,0x8130eb33,0x8130eb34, +0x8130eb35,0x8130eb36,0x8130eb37,0x8130eb38,0x8130eb39,0x8130ec30,0x8130ec31, +0x8130ec32,0x8130ec33,0x8130ec34,0x8130ec35,0x8130ec36,0x8130ec37,0x8130ec38, +0x8130ec39,0x8130ed30,0x8130ed31,0x8130ed32,0x8130ed33,0x8130ed34,0x8130ed35, +0x8130ed36,0x8130ed37,0x8130ed38,0x8130ed39,0x8130ee30,0x8130ee31,0x8130ee32, +0x8130ee33,0x8130ee34,0x8130ee35,0x8130ee36,0x8130ee37,0x8130ee38,0x8130ee39, +0x8130ef30,0x8130ef31,0x8130ef32,0x8130ef33,0x8130ef34,0x8130ef35,0x8130ef36, +0x8130ef37,0x8130ef38,0x8130ef39,0x8130f030,0x8130f031,0x8130f032,0x8130f033, +0x8130f034,0x8130f035,0x8130f036,0x8130f037,0x8130f038,0x8130f039,0x8130f130, +0x8130f131,0x8130f132,0x8130f133,0x8130f134,0x8130f135,0x8130f136,0x8130f137, +0x8130f138,0x8130f139,0x8130f230,0x8130f231,0x8130f232,0x8130f233,0x8130f234, +0x8130f235,0x8130f236,0x8130f237,0x8130f238,0x8130f239,0x8130f330,0x8130f331, +0x8130f332,0x8130f333,0x8130f334,0x8130f335,0x8130f336,0x8130f337,0x8130f338, +0x8130f339,0x8130f430,0x8130f431,0x8130f432,0x8130f433,0x8130f434,0x8130f435, +0x8130f436,0x8130f437,0x8130f438,0x8130f439,0x8130f530,0x8130f531,0x8130f532, +0x8130f533,0x8130f534,0x8130f535,0x8130f536,0x8130f537,0x8130f538,0x8130f539, +0x8130f630,0x8130f631,0x8130f632,0x8130f633,0x8130f634,0x8130f635,0x8130f636, +0x8130f637,0x8130f638,0x8130f639,0x8130f730,0x8130f731,0x8130f732,0x8130f733, +0x8130f734,0x8130f735,0x8130f736,0x8130f737,0x8130f738,0x8130f739,0x8130f830, +0x8130f831,0x8130f832,0x8130f833,0x8130f834,0x8130f835,0x8130f836,0x8130f837, +0x8130f838,0x8130f839,0x8130f930,0x8130f931,0x8130f932,0x8130f933,0x8130f934, +0x8130f935,0x8130f936,0x8130f937,0x8130f938,0x8130f939,0x8130fa30,0x8130fa31, +0x8130fa32,0x8130fa33,0x8130fa34,0x8130fa35,0x8130fa36,0x8130fa37,0x8130fa38, +0x8130fa39,0x8130fb30,0x8130fb31,0x8130fb32,0x8130fb33,0x8130fb34,0x8130fb35, +0x8130fb36,0x8130fb37,0x8130fb38,0x8130fb39,0x8130fc30,0x8130fc31,0x8130fc32, +0x8130fc33,0x8130fc34,0x8130fc35,0x8130fc36,0x8130fc37,0x8130fc38,0x8130fc39, +0x8130fd30,0x8130fd31,0x8130fd32,0x8130fd33,0x8130fd34,0x8130fd35,0x8130fd36, +0x8130fd37,0x8130fd38,0x8130fd39,0x8130fe30,0x8130fe31,0x8130fe32,0x8130fe33, +0x8130fe34,0x8130fe35,0x8130fe36,0x8130fe37,0x8130fe38,0x8130fe39,0x81318130, +0x81318131,0x81318132,0x81318133,0x81318134,0x81318135,0x81318136,0x81318137, +0x81318138,0x81318139,0x81318230,0x81318231,0x81318232,0x81318233,0x81318234, +0x81318235,0x81318236,0x81318237,0x81318238,0x81318239,0x81318330,0x81318331, +0x81318332,0x81318333,0x81318334,0x81318335,0x81318336,0x81318337,0x81318338, +0x81318339,0x81318430,0x81318431,0x81318432,0x81318433,0x81318434,0x81318435, +0x81318436,0x81318437,0x81318438,0x81318439,0x81318530,0x81318531,0x81318532, +0x81318533,0x81318534,0x81318535,0x81318536,0x81318537,0x81318538,0x81318539, +0x81318630,0x81318631,0x81318632,0x81318633,0x81318634,0x81318635,0x81318636, +0x81318637,0x81318638,0x81318639,0x81318730,0x81318731,0x81318732,0x81318733, +0x81318734,0x81318735,0x81318736,0x81318737,0x81318738,0x81318739,0x81318830, +0x81318831,0x81318832,0x81318833,0x81318834,0x81318835,0x81318836,0x81318837, +0x81318838,0x81318839,0x81318930,0x81318931,0x81318932,0x81318933,0x81318934, +0x81318935,0x81318936,0x81318937,0x81318938,0x81318939,0x81318a30,0x81318a31, +0x81318a32,0x81318a33,0x81318a34,0x81318a35,0x81318a36,0x81318a37,0x81318a38, +0x81318a39,0x81318b30,0x81318b31,0x81318b32,0x81318b33,0x81318b34,0x81318b35, +0x81318b36,0x81318b37,0x81318b38,0x81318b39,0x81318c30,0x81318c31,0x81318c32, +0x81318c33,0x81318c34,0x81318c35,0x81318c36,0x81318c37,0x81318c38,0x81318c39, +0x81318d30,0x81318d31,0x81318d32,0x81318d33,0x81318d34,0x81318d35,0x81318d36, +0x81318d37,0x81318d38,0x81318d39,0x81318e30,0x81318e31,0x81318e32,0x81318e33, +0x81318e34,0x81318e35,0x81318e36,0x81318e37,0x81318e38,0x81318e39,0x81318f30, +0x81318f31,0x81318f32,0x81318f33,0x81318f34,0x81318f35,0x81318f36,0x81318f37, +0x81318f38,0x81318f39,0x81319030,0x81319031,0x81319032,0x81319033,0x81319034, +0x81319035,0x81319036,0x81319037,0x81319038,0x81319039,0x81319130,0x81319131, +0x81319132,0x81319133,0x81319134,0x81319135,0x81319136,0x81319137,0x81319138, +0x81319139,0x81319230,0x81319231,0x81319232,0x81319233,0x81319234,0x81319235, +0x81319236,0x81319237,0x81319238,0x81319239,0x81319330,0x81319331,0x81319332, +0x81319333,0x81319334,0x81319335,0x81319336,0x81319337,0x81319338,0x81319339, +0x81319430,0x81319431,0x81319432,0x81319433,0x81319434,0x81319435,0x81319436, +0x81319437,0x81319438,0x81319439,0x81319530,0x81319531,0x81319532,0x81319533, +0x81319534,0x81319535,0x81319536,0x81319537,0x81319538,0x81319539,0x81319630, +0x81319631,0x81319632,0x81319633,0x81319634,0x81319635,0x81319636,0x81319637, +0x81319638,0x81319639,0x81319730,0x81319731,0x81319732,0x81319733,0x81319734, +0x81319735,0x81319736,0x81319737,0x81319738,0x81319739,0x81319830,0x81319831, +0x81319832,0x81319833,0x81319834,0x81319835,0x81319836,0x81319837,0x81319838, +0x81319839,0x81319930,0x81319931,0x81319932,0x81319933,0x81319934,0x81319935, +0x81319936,0x81319937,0x81319938,0x81319939,0x81319a30,0x81319a31,0x81319a32, +0x81319a33,0x81319a34,0x81319a35,0x81319a36,0x81319a37,0x81319a38,0x81319a39, +0x81319b30,0x81319b31,0x81319b32,0x81319b33,0x81319b34,0x81319b35,0x81319b36, +0x81319b37,0x81319b38,0x81319b39,0x81319c30,0x81319c31,0x81319c32,0x81319c33, +0x81319c34,0x81319c35,0x81319c36,0x81319c37,0x81319c38,0x81319c39,0x81319d30, +0x81319d31,0x81319d32,0x81319d33,0x81319d34,0x81319d35,0x81319d36,0x81319d37, +0x81319d38,0x81319d39,0x81319e30,0x81319e31,0x81319e32,0x81319e33,0x81319e34, +0x81319e35,0x81319e36,0x81319e37,0x81319e38,0x81319e39,0x81319f30,0x81319f31, +0x81319f32,0x81319f33,0x81319f34,0x81319f35,0x81319f36,0x81319f37,0x81319f38, +0x81319f39,0x8131a030,0x8131a031,0x8131a032,0x8131a033,0x8131a034,0x8131a035, +0x8131a036,0x8131a037,0x8131a038,0x8131a039,0x8131a130,0x8131a131,0x8131a132, +0x8131a133,0x8131a134,0x8131a135,0x8131a136,0x8131a137,0x8131a138,0x8131a139, +0x8131a230,0x8131a231,0x8131a232,0x8131a233,0x8131a234,0x8131a235,0x8131a236, +0x8131a237,0x8131a238,0x8131a239,0x8131a330,0x8131a331,0x8131a332,0x8131a333, +0x8131a334,0x8131a335,0x8131a336,0x8131a337,0x8131a338,0x8131a339,0x8131a430, +0x8131a431,0x8131a432,0x8131a433,0x8131a434,0x8131a435,0x8131a436,0x8131a437, +0x8131a438,0x8131a439,0x8131a530,0x8131a531,0x8131a532,0x8131a533,0x8131a534, +0x8131a535,0x8131a536,0x8131a537,0x8131a538,0x8131a539,0x8131a630,0x8131a631, +0x8131a632,0x8131a633,0x8131a634,0x8131a635,0x8131a636,0x8131a637,0x8131a638, +0x8131a639,0x8131a730,0x8131a731,0x8131a732,0x8131a733,0x8131a734,0x8131a735, +0x8131a736,0x8131a737,0x8131a738,0x8131a739,0x8131a830,0x8131a831,0x8131a832, +0x8131a833,0x8131a834,0x8131a835,0x8131a836,0x8131a837,0x8131a838,0x8131a839, +0x8131a930,0x8131a931,0x8131a932,0x8131a933,0x8131a934,0x8131a935,0x8131a936, +0x8131a937,0x8131a938,0x8131a939,0x8131aa30,0x8131aa31,0x8131aa32,0x8131aa33, +0x8131aa34,0x8131aa35,0x8131aa36,0x8131aa37,0x8131aa38,0x8131aa39,0x8131ab30, +0x8131ab31,0x8131ab32,0x8131ab33,0x8131ab34,0x8131ab35,0x8131ab36,0x8131ab37, +0x8131ab38,0x8131ab39,0x8131ac30,0x8131ac31,0x8131ac32,0x8131ac33,0x8131ac34, +0x8131ac35,0x8131ac36,0x8131ac37,0x8131ac38,0x8131ac39,0x8131ad30,0x8131ad31, +0x8131ad32,0x8131ad33,0x8131ad34,0x8131ad35,0x8131ad36,0x8131ad37,0x8131ad38, +0x8131ad39,0x8131ae30,0x8131ae31,0x8131ae32,0x8131ae33,0x8131ae34,0x8131ae35, +0x8131ae36,0x8131ae37,0x8131ae38,0x8131ae39,0x8131af30,0x8131af31,0x8131af32, +0x8131af33,0x8131af34,0x8131af35,0x8131af36,0x8131af37,0x8131af38,0x8131af39, +0x8131b030,0x8131b031,0x8131b032,0x8131b033,0x8131b034,0x8131b035,0x8131b036, +0x8131b037,0x8131b038,0x8131b039,0x8131b130,0x8131b131,0x8131b132,0x8131b133, +0x8131b134,0x8131b135,0x8131b136,0x8131b137,0x8131b138,0x8131b139,0x8131b230, +0x8131b231,0x8131b232,0x8131b233,0x8131b234,0x8131b235,0x8131b236,0x8131b237, +0x8131b238,0x8131b239,0x8131b330,0x8131b331,0x8131b332,0x8131b333,0x8131b334, +0x8131b335,0x8131b336,0x8131b337,0x8131b338,0x8131b339,0x8131b430,0x8131b431, +0x8131b432,0x8131b433,0x8131b434,0x8131b435,0x8131b436,0x8131b437,0x8131b438, +0x8131b439,0x8131b530,0x8131b531,0x8131b532,0x8131b533,0x8131b534,0x8131b535, +0x8131b536,0x8131b537,0x8131b538,0x8131b539,0x8131b630,0x8131b631,0x8131b632, +0x8131b633,0x8131b634,0x8131b635,0x8131b636,0x8131b637,0x8131b638,0x8131b639, +0x8131b730,0x8131b731,0x8131b732,0x8131b733,0x8131b734,0x8131b735,0x8131b736, +0x8131b737,0x8131b738,0x8131b739,0x8131b830,0x8131b831,0x8131b832,0x8131b833, +0x8131b834,0x8131b835,0x8131b836,0x8131b837,0x8131b838,0x8131b839,0x8131b930, +0x8131b931,0x8131b932,0x8131b933,0x8131b934,0x8131b935,0x8131b936,0x8131b937, +0x8131b938,0x8131b939,0x8131ba30,0x8131ba31,0x8131ba32,0x8131ba33,0x8131ba34, +0x8131ba35,0x8131ba36,0x8131ba37,0x8131ba38,0x8131ba39,0x8131bb30,0x8131bb31, +0x8131bb32,0x8131bb33,0x8131bb34,0x8131bb35,0x8131bb36,0x8131bb37,0x8131bb38, +0x8131bb39,0x8131bc30,0x8131bc31,0x8131bc32,0x8131bc33,0x8131bc34,0x8131bc35, +0x8131bc36,0x8131bc37,0x8131bc38,0x8131bc39,0x8131bd30,0x8131bd31,0x8131bd32, +0x8131bd33,0x8131bd34,0x8131bd35,0x8131bd36,0x8131bd37,0x8131bd38,0x8131bd39, +0x8131be30,0x8131be31,0x8131be32,0x8131be33,0x8131be34,0x8131be35,0x8131be36, +0x8131be37,0x8131be38,0x8131be39,0x8131bf30,0x8131bf31,0x8131bf32,0x8131bf33, +0x8131bf34,0x8131bf35,0x8131bf36,0x8131bf37,0x8131bf38,0x8131bf39,0x8131c030, +0x8131c031,0x8131c032,0x8131c033,0x8131c034,0x8131c035,0x8131c036,0x8131c037, +0x8131c038,0x8131c039,0x8131c130,0x8131c131,0x8131c132,0x8131c133,0x8131c134, +0x8131c135,0x8131c136,0x8131c137,0x8131c138,0x8131c139,0x8131c230,0x8131c231, +0x8131c232,0x8131c233,0x8131c234,0x8131c235,0x8131c236,0x8131c237,0x8131c238, +0x8131c239,0x8131c330,0x8131c331,0x8131c332,0x8131c333,0x8131c334,0x8131c335, +0x8131c336,0x8131c337,0x8131c338,0x8131c339,0x8131c430,0x8131c431,0x8131c432, +0x8131c433,0x8131c434,0x8131c435,0x8131c436,0x8131c437,0x8131c438,0x8131c439, +0x8131c530,0x8131c531,0x8131c532,0x8131c533,0x8131c534,0x8131c535,0x8131c536, +0x8131c537,0x8131c538,0x8131c539,0x8131c630,0x8131c631,0x8131c632,0x8131c633, +0x8131c634,0x8131c635,0x8131c636,0x8131c637,0x8131c638,0x8131c639,0x8131c730, +0x8131c731,0x8131c732,0x8131c733,0x8131c734,0x8131c735,0x8131c736,0x8131c737, +0x8131c738,0x8131c739,0x8131c830,0x8131c831,0x8131c832,0x8131c833,0x8131c834, +0x8131c835,0x8131c836,0x8131c837,0x8131c838,0x8131c839,0x8131c930,0x8131c931, +0x8131c932,0x8131c933,0x8131c934,0x8131c935,0x8131c936,0x8131c937,0x8131c938, +0x8131c939,0x8131ca30,0x8131ca31,0x8131ca32,0x8131ca33,0x8131ca34,0x8131ca35, +0x8131ca36,0x8131ca37,0x8131ca38,0x8131ca39,0x8131cb30,0x8131cb31,0x8131cb32, +0x8131cb33,0x8131cb34,0x8131cb35,0x8131cb36,0x8131cb37,0x8131cb38,0x8131cb39, +0x8131cc30,0x8131cc31,0x8131cc32,0x8131cc33,0x8131cc34,0x8131cc35,0x8131cc36, +0x8131cc37,0x8131cc38,0x8131cc39,0x8131cd30,0x8131cd31,0x8131cd32,0x8131cd33, +0x8131cd34,0x8131cd35,0x8131cd36,0x8131cd37,0x8131cd38,0x8131cd39,0x8131ce30, +0x8131ce31,0x8131ce32,0x8131ce33,0x8131ce34,0x8131ce35,0x8131ce36,0x8131ce37, +0x8131ce38,0x8131ce39,0x8131cf30,0x8131cf31,0x8131cf32,0x8131cf33,0x8131cf34, +0x8131cf35,0x8131cf36,0x8131cf37,0x8131cf38,0x8131cf39,0x8131d030,0x8131d031, +0x8131d032,0x8131d033,0x8131d034,0x8131d035,0x8131d036,0x8131d037,0x8131d038, +0x8131d039,0x8131d130,0x8131d131,0x8131d132,0x8131d133,0x8131d134,0x8131d135, +0x8131d136,0x8131d137,0x8131d138,0x8131d139,0x8131d230,0x8131d231,0x8131d232, +0x8131d233,0x8131d234,0x8131d235,0x8131d236,0x8131d237,0x8131d238,0x8131d239, +0x8131d330,0x8131d331,0x8131d332,0x8131d333,0x8131d334,0x8131d335,0x8131d336, +0x8131d337,0x8131d338,0x8131d339,0x8131d430,0x8131d431,0x8131d432,0x8131d433, +0x8131d434,0x8131d435,0x8131d436,0x8131d437,0x8131d438,0x8131d439,0x8131d530, +0x8131d531,0x8131d532,0x8131d533,0x8131d534,0x8131d535,0x8131d536,0x8131d537, +0x8131d538,0x8131d539,0x8131d630,0x8131d631,0x8131d632,0x8131d633,0x8131d634, +0x8131d635,0x8131d636,0x8131d637,0x8131d638,0x8131d639,0x8131d730,0x8131d731, +0x8131d732,0x8131d733,0x8131d734,0x8131d735,0x8131d736,0x8131d737,0x8131d738, +0x8131d739,0x8131d830,0x8131d831,0x8131d832,0x8131d833,0x8131d834,0x8131d835, +0x8131d836,0x8131d837,0x8131d838,0x8131d839,0x8131d930,0x8131d931,0x8131d932, +0x8131d933,0x8131d934,0x8131d935,0x8131d936,0x8131d937,0x8131d938,0x8131d939, +0x8131da30,0x8131da31,0x8131da32,0x8131da33,0x8131da34,0x8131da35,0x8131da36, +0x8131da37,0x8131da38,0x8131da39,0x8131db30,0x8131db31,0x8131db32,0x8131db33, +0x8131db34,0x8131db35,0x8131db36,0x8131db37,0x8131db38,0x8131db39,0x8131dc30, +0x8131dc31,0x8131dc32,0x8131dc33,0x8131dc34,0x8131dc35,0x8131dc36,0x8131dc37, +0x8131dc38,0x8131dc39,0x8131dd30,0x8131dd31,0x8131dd32,0x8131dd33,0x8131dd34, +0x8131dd35,0x8131dd36,0x8131dd37,0x8131dd38,0x8131dd39,0x8131de30,0x8131de31, +0x8131de32,0x8131de33,0x8131de34,0x8131de35,0x8131de36,0x8131de37,0x8131de38, +0x8131de39,0x8131df30,0x8131df31,0x8131df32,0x8131df33,0x8131df34,0x8131df35, +0x8131df36,0x8131df37,0x8131df38,0x8131df39,0x8131e030,0x8131e031,0x8131e032, +0x8131e033,0x8131e034,0x8131e035,0x8131e036,0x8131e037,0x8131e038,0x8131e039, +0x8131e130,0x8131e131,0x8131e132,0x8131e133,0x8131e134,0x8131e135,0x8131e136, +0x8131e137,0x8131e138,0x8131e139,0x8131e230,0x8131e231,0x8131e232,0x8131e233, +0x8131e234,0x8131e235,0x8131e236,0x8131e237,0x8131e238,0x8131e239,0x8131e330, +0x8131e331,0x8131e332,0x8131e333,0x8131e334,0x8131e335,0x8131e336,0x8131e337, +0x8131e338,0x8131e339,0x8131e430,0x8131e431,0x8131e432,0x8131e433,0x8131e434, +0x8131e435,0x8131e436,0x8131e437,0x8131e438,0x8131e439,0x8131e530,0x8131e531, +0x8131e532,0x8131e533,0x8131e534,0x8131e535,0x8131e536,0x8131e537,0x8131e538, +0x8131e539,0x8131e630,0x8131e631,0x8131e632,0x8131e633,0x8131e634,0x8131e635, +0x8131e636,0x8131e637,0x8131e638,0x8131e639,0x8131e730,0x8131e731,0x8131e732, +0x8131e733,0x8131e734,0x8131e735,0x8131e736,0x8131e737,0x8131e738,0x8131e739, +0x8131e830,0x8131e831,0x8131e832,0x8131e833,0x8131e834,0x8131e835,0x8131e836, +0x8131e837,0x8131e838,0x8131e839,0x8131e930,0x8131e931,0x8131e932,0x8131e933, +0x8131e934,0x8131e935,0x8131e936,0x8131e937,0x8131e938,0x8131e939,0x8131ea30, +0x8131ea31,0x8131ea32,0x8131ea33,0x8131ea34,0x8131ea35,0x8131ea36,0x8131ea37, +0x8131ea38,0x8131ea39,0x8131eb30,0x8131eb31,0x8131eb32,0x8131eb33,0x8131eb34, +0x8131eb35,0x8131eb36,0x8131eb37,0x8131eb38,0x8131eb39,0x8131ec30,0x8131ec31, +0x8131ec32,0x8131ec33,0x8131ec34,0x8131ec35,0x8131ec36,0x8131ec37,0x8131ec38, +0x8131ec39,0x8131ed30,0x8131ed31,0x8131ed32,0x8131ed33,0x8131ed34,0x8131ed35, +0x8131ed36,0x8131ed37,0x8131ed38,0x8131ed39,0x8131ee30,0x8131ee31,0x8131ee32, +0x8131ee33,0x8131ee34,0x8131ee35,0x8131ee36,0x8131ee37,0x8131ee38,0x8131ee39, +0x8131ef30,0x8131ef31,0x8131ef32,0x8131ef33,0x8131ef34,0x8131ef35,0x8131ef36, +0x8131ef37,0x8131ef38,0x8131ef39,0x8131f030,0x8131f031,0x8131f032,0x8131f033, +0x8131f034,0x8131f035,0x8131f036,0x8131f037,0x8131f038,0x8131f039,0x8131f130, +0x8131f131,0x8131f132,0x8131f133,0x8131f134,0x8131f135,0x8131f136,0x8131f137, +0x8131f138,0x8131f139,0x8131f230,0x8131f231,0x8131f232,0x8131f233,0x8131f234, +0x8131f235,0x8131f236,0x8131f237,0x8131f238,0x8131f239,0x8131f330,0x8131f331, +0x8131f332,0x8131f333,0x8131f334,0x8131f335,0x8131f336,0x8131f337,0x8131f338, +0x8131f339,0x8131f430,0x8131f431,0x8131f432,0x8131f433,0x8131f434,0x8131f435, +0x8131f436,0x8131f437,0x8131f438,0x8131f439,0x8131f530,0x8131f531,0x8131f532, +0x8131f533,0x8131f534,0x8131f535,0x8131f536,0x8131f537,0x8131f538,0x8131f539, +0x8131f630,0x8131f631,0x8131f632,0x8131f633,0x8131f634,0x8131f635,0x8131f636, +0x8131f637,0x8131f638,0x8131f639,0x8131f730,0x8131f731,0x8131f732,0x8131f733, +0x8131f734,0x8131f735,0x8131f736,0x8131f737,0x8131f738,0x8131f739,0x8131f830, +0x8131f831,0x8131f832,0x8131f833,0x8131f834,0x8131f835,0x8131f836,0x8131f837, +0x8131f838,0x8131f839,0x8131f930,0x8131f931,0x8131f932,0x8131f933,0x8131f934, +0x8131f935,0x8131f936,0x8131f937,0x8131f938,0x8131f939,0x8131fa30,0x8131fa31, +0x8131fa32,0x8131fa33,0x8131fa34,0x8131fa35,0x8131fa36,0x8131fa37,0x8131fa38, +0x8131fa39,0x8131fb30,0x8131fb31,0x8131fb32,0x8131fb33,0x8131fb34,0x8131fb35, +0x8131fb36,0x8131fb37,0x8131fb38,0x8131fb39,0x8131fc30,0x8131fc31,0x8131fc32, +0x8131fc33,0x8131fc34,0x8131fc35,0x8131fc36,0x8131fc37,0x8131fc38,0x8131fc39, +0x8131fd30,0x8131fd31,0x8131fd32,0x8131fd33,0x8131fd34,0x8131fd35,0x8131fd36, +0x8131fd37,0x8131fd38,0x8131fd39,0x8131fe30,0x8131fe31,0x8131fe32,0x8131fe33, +0x8131fe34,0x8131fe35,0x8131fe36,0x8131fe37,0x8131fe38,0x8131fe39,0x81328130, +0x81328131,0x81328132,0x81328133,0x81328134,0x81328135,0x81328136,0x81328137, +0x81328138,0x81328139,0x81328230,0x81328231,0x81328232,0x81328233,0x81328234, +0x81328235,0x81328236,0x81328237,0x81328238,0x81328239,0x81328330,0x81328331, +0x81328332,0x81328333,0x81328334,0x81328335,0x81328336,0x81328337,0x81328338, +0x81328339,0x81328430,0x81328431,0x81328432,0x81328433,0x81328434,0x81328435, +0x81328436,0x81328437,0x81328438,0x81328439,0x81328530,0x81328531,0x81328532, +0x81328533,0x81328534,0x81328535,0x81328536,0x81328537,0x81328538,0x81328539, +0x81328630,0x81328631,0x81328632,0x81328633,0x81328634,0x81328635,0x81328636, +0x81328637,0x81328638,0x81328639,0x81328730,0x81328731,0x81328732,0x81328733, +0x81328734,0x81328735,0x81328736,0x81328737,0x81328738,0x81328739,0x81328830, +0x81328831,0x81328832,0x81328833,0x81328834,0x81328835,0x81328836,0x81328837, +0x81328838,0x81328839,0x81328930,0x81328931,0x81328932,0x81328933,0x81328934, +0x81328935,0x81328936,0x81328937,0x81328938,0x81328939,0x81328a30,0x81328a31, +0x81328a32,0x81328a33,0x81328a34,0x81328a35,0x81328a36,0x81328a37,0x81328a38, +0x81328a39,0x81328b30,0x81328b31,0x81328b32,0x81328b33,0x81328b34,0x81328b35, +0x81328b36,0x81328b37,0x81328b38,0x81328b39,0x81328c30,0x81328c31,0x81328c32, +0x81328c33,0x81328c34,0x81328c35,0x81328c36,0x81328c37,0x81328c38,0x81328c39, +0x81328d30,0x81328d31,0x81328d32,0x81328d33,0x81328d34,0x81328d35,0x81328d36, +0x81328d37,0x81328d38,0x81328d39,0x81328e30,0x81328e31,0x81328e32,0x81328e33, +0x81328e34,0x81328e35,0x81328e36,0x81328e37,0x81328e38,0x81328e39,0x81328f30, +0x81328f31,0x81328f32,0x81328f33,0x81328f34,0x81328f35,0x81328f36,0x81328f37, +0x81328f38,0x81328f39,0x81329030,0x81329031,0x81329032,0x81329033,0x81329034, +0x81329035,0x81329036,0x81329037,0x81329038,0x81329039,0x81329130,0x81329131, +0x81329132,0x81329133,0x81329134,0x81329135,0x81329136,0x81329137,0x81329138, +0x81329139,0x81329230,0x81329231,0x81329232,0x81329233,0x81329234,0x81329235, +0x81329236,0x81329237,0x81329238,0x81329239,0x81329330,0x81329331,0x81329332, +0x81329333,0x81329334,0x81329335,0x81329336,0x81329337,0x81329338,0x81329339, +0x81329430,0x81329431,0x81329432,0x81329433,0x81329434,0x81329435,0x81329436, +0x81329437,0x81329438,0x81329439,0x81329530,0x81329531,0x81329532,0x81329533, +0x81329534,0x81329535,0x81329536,0x81329537,0x81329538,0x81329539,0x81329630, +0x81329631,0x81329632,0x81329633,0x81329634,0x81329635,0x81329636,0x81329637, +0x81329638,0x81329639,0x81329730,0x81329731,0x81329732,0x81329733,0x81329734, +0x81329735,0x81329736,0x81329737,0x81329738,0x81329739,0x81329830,0x81329831, +0x81329832,0x81329833,0x81329834,0x81329835,0x81329836,0x81329837,0x81329838, +0x81329839,0x81329930,0x81329931,0x81329932,0x81329933,0x81329934,0x81329935, +0x81329936,0x81329937,0x81329938,0x81329939,0x81329a30,0x81329a31,0x81329a32, +0x81329a33,0x81329a34,0x81329a35,0x81329a36,0x81329a37,0x81329a38,0x81329a39, +0x81329b30,0x81329b31,0x81329b32,0x81329b33,0x81329b34,0x81329b35,0x81329b36, +0x81329b37,0x81329b38,0x81329b39,0x81329c30,0x81329c31,0x81329c32,0x81329c33, +0x81329c34,0x81329c35,0x81329c36,0x81329c37,0x81329c38,0x81329c39,0x81329d30, +0x81329d31,0x81329d32,0x81329d33,0x81329d34,0x81329d35,0x81329d36,0x81329d37, +0x81329d38,0x81329d39,0x81329e30,0x81329e31,0x81329e32,0x81329e33,0x81329e34, +0x81329e35,0x81329e36,0x81329e37,0x81329e38,0x81329e39,0x81329f30,0x81329f31, +0x81329f32,0x81329f33,0x81329f34,0x81329f35,0x81329f36,0x81329f37,0x81329f38, +0x81329f39,0x8132a030,0x8132a031,0x8132a032,0x8132a033,0x8132a034,0x8132a035, +0x8132a036,0x8132a037,0x8132a038,0x8132a039,0x8132a130,0x8132a131,0x8132a132, +0x8132a133,0x8132a134,0x8132a135,0x8132a136,0x8132a137,0x8132a138,0x8132a139, +0x8132a230,0x8132a231,0x8132a232,0x8132a233,0x8132a234,0x8132a235,0x8132a236, +0x8132a237,0x8132a238,0x8132a239,0x8132a330,0x8132a331,0x8132a332,0x8132a333, +0x8132a334,0x8132a335,0x8132a336,0x8132a337,0x8132a338,0x8132a339,0x8132a430, +0x8132a431,0x8132a432,0x8132a433,0x8132a434,0x8132a435,0x8132a436,0x8132a437, +0x8132a438,0x8132a439,0x8132a530,0x8132a531,0x8132a532,0x8132a533,0x8132a534, +0x8132a535,0x8132a536,0x8132a537,0x8132a538,0x8132a539,0x8132a630,0x8132a631, +0x8132a632,0x8132a633,0x8132a634,0x8132a635,0x8132a636,0x8132a637,0x8132a638, +0x8132a639,0x8132a730,0x8132a731,0x8132a732,0x8132a733,0x8132a734,0x8132a735, +0x8132a736,0x8132a737,0x8132a738,0x8132a739,0x8132a830,0x8132a831,0x8132a832, +0x8132a833,0x8132a834,0x8132a835,0x8132a836,0x8132a837,0x8132a838,0x8132a839, +0x8132a930,0x8132a931,0x8132a932,0x8132a933,0x8132a934,0x8132a935,0x8132a936, +0x8132a937,0x8132a938,0x8132a939,0x8132aa30,0x8132aa31,0x8132aa32,0x8132aa33, +0x8132aa34,0x8132aa35,0x8132aa36,0x8132aa37,0x8132aa38,0x8132aa39,0x8132ab30, +0x8132ab31,0x8132ab32,0x8132ab33,0x8132ab34,0x8132ab35,0x8132ab36,0x8132ab37, +0x8132ab38,0x8132ab39,0x8132ac30,0x8132ac31,0x8132ac32,0x8132ac33,0x8132ac34, +0x8132ac35,0x8132ac36,0x8132ac37,0x8132ac38,0x8132ac39,0x8132ad30,0x8132ad31, +0x8132ad32,0x8132ad33,0x8132ad34,0x8132ad35,0x8132ad36,0x8132ad37,0x8132ad38, +0x8132ad39,0x8132ae30,0x8132ae31,0x8132ae32,0x8132ae33,0x8132ae34,0x8132ae35, +0x8132ae36,0x8132ae37,0x8132ae38,0x8132ae39,0x8132af30,0x8132af31,0x8132af32, +0x8132af33,0x8132af34,0x8132af35,0x8132af36,0x8132af37,0x8132af38,0x8132af39, +0x8132b030,0x8132b031,0x8132b032,0x8132b033,0x8132b034,0x8132b035,0x8132b036, +0x8132b037,0x8132b038,0x8132b039,0x8132b130,0x8132b131,0x8132b132,0x8132b133, +0x8132b134,0x8132b135,0x8132b136,0x8132b137,0x8132b138,0x8132b139,0x8132b230, +0x8132b231,0x8132b232,0x8132b233,0x8132b234,0x8132b235,0x8132b236,0x8132b237, +0x8132b238,0x8132b239,0x8132b330,0x8132b331,0x8132b332,0x8132b333,0x8132b334, +0x8132b335,0x8132b336,0x8132b337,0x8132b338,0x8132b339,0x8132b430,0x8132b431, +0x8132b432,0x8132b433,0x8132b434,0x8132b435,0x8132b436,0x8132b437,0x8132b438, +0x8132b439,0x8132b530,0x8132b531,0x8132b532,0x8132b533,0x8132b534,0x8132b535, +0x8132b536,0x8132b537,0x8132b538,0x8132b539,0x8132b630,0x8132b631,0x8132b632, +0x8132b633,0x8132b634,0x8132b635,0x8132b636,0x8132b637,0x8132b638,0x8132b639, +0x8132b730,0x8132b731,0x8132b732,0x8132b733,0x8132b734,0x8132b735,0x8132b736, +0x8132b737,0x8132b738,0x8132b739,0x8132b830,0x8132b831,0x8132b832,0x8132b833, +0x8132b834,0x8132b835,0x8132b836,0x8132b837,0x8132b838,0x8132b839,0x8132b930, +0x8132b931,0x8132b932,0x8132b933,0x8132b934,0x8132b935,0x8132b936,0x8132b937, +0x8132b938,0x8132b939,0x8132ba30,0x8132ba31,0x8132ba32,0x8132ba33,0x8132ba34, +0x8132ba35,0x8132ba36,0x8132ba37,0x8132ba38,0x8132ba39,0x8132bb30,0x8132bb31, +0x8132bb32,0x8132bb33,0x8132bb34,0x8132bb35,0x8132bb36,0x8132bb37,0x8132bb38, +0x8132bb39,0x8132bc30,0x8132bc31,0x8132bc32,0x8132bc33,0x8132bc34,0x8132bc35, +0x8132bc36,0x8132bc37,0x8132bc38,0x8132bc39,0x8132bd30,0x8132bd31,0x8132bd32, +0x8132bd33,0x8132bd34,0x8132bd35,0x8132bd36,0x8132bd37,0x8132bd38,0x8132bd39, +0x8132be30,0x8132be31,0x8132be32,0x8132be33,0x8132be34,0x8132be35,0x8132be36, +0x8132be37,0x8132be38,0x8132be39,0x8132bf30,0x8132bf31,0x8132bf32,0x8132bf33, +0x8132bf34,0x8132bf35,0x8132bf36,0x8132bf37,0x8132bf38,0x8132bf39,0x8132c030, +0x8132c031,0x8132c032,0x8132c033,0x8132c034,0x8132c035,0x8132c036,0x8132c037, +0x8132c038,0x8132c039,0x8132c130,0x8132c131,0x8132c132,0x8132c133,0x8132c134, +0x8132c135,0x8132c136,0x8132c137,0x8132c138,0x8132c139,0x8132c230,0x8132c231, +0x8132c232,0x8132c233,0x8132c234,0x8132c235,0x8132c236,0x8132c237,0x8132c238, +0x8132c239,0x8132c330,0x8132c331,0x8132c332,0x8132c333,0x8132c334,0x8132c335, +0x8132c336,0x8132c337,0x8132c338,0x8132c339,0x8132c430,0x8132c431,0x8132c432, +0x8132c433,0x8132c434,0x8132c435,0x8132c436,0x8132c437,0x8132c438,0x8132c439, +0x8132c530,0x8132c531,0x8132c532,0x8132c533,0x8132c534,0x8132c535,0x8132c536, +0x8132c537,0x8132c538,0x8132c539,0x8132c630,0x8132c631,0x8132c632,0x8132c633, +0x8132c634,0x8132c635,0x8132c636,0x8132c637,0x8132c638,0x8132c639,0x8132c730, +0x8132c731,0x8132c732,0x8132c733,0x8132c734,0x8132c735,0x8132c736,0x8132c737, +0x8132c738,0x8132c739,0x8132c830,0x8132c831,0x8132c832,0x8132c833,0x8132c834, +0x8132c835,0x8132c836,0x8132c837,0x8132c838,0x8132c839,0x8132c930,0x8132c931, +0x8132c932,0x8132c933,0x8132c934,0x8132c935,0x8132c936,0x8132c937,0x8132c938, +0x8132c939,0x8132ca30,0x8132ca31,0x8132ca32,0x8132ca33,0x8132ca34,0x8132ca35, +0x8132ca36,0x8132ca37,0x8132ca38,0x8132ca39,0x8132cb30,0x8132cb31,0x8132cb32, +0x8132cb33,0x8132cb34,0x8132cb35,0x8132cb36,0x8132cb37,0x8132cb38,0x8132cb39, +0x8132cc30,0x8132cc31,0x8132cc32,0x8132cc33,0x8132cc34,0x8132cc35,0x8132cc36, +0x8132cc37,0x8132cc38,0x8132cc39,0x8132cd30,0x8132cd31,0x8132cd32,0x8132cd33, +0x8132cd34,0x8132cd35,0x8132cd36,0x8132cd37,0x8132cd38,0x8132cd39,0x8132ce30, +0x8132ce31,0x8132ce32,0x8132ce33,0x8132ce34,0x8132ce35,0x8132ce36,0x8132ce37, +0x8132ce38,0x8132ce39,0x8132cf30,0x8132cf31,0x8132cf32,0x8132cf33,0x8132cf34, +0x8132cf35,0x8132cf36,0x8132cf37,0x8132cf38,0x8132cf39,0x8132d030,0x8132d031, +0x8132d032,0x8132d033,0x8132d034,0x8132d035,0x8132d036,0x8132d037,0x8132d038, +0x8132d039,0x8132d130,0x8132d131,0x8132d132,0x8132d133,0x8132d134,0x8132d135, +0x8132d136,0x8132d137,0x8132d138,0x8132d139,0x8132d230,0x8132d231,0x8132d232, +0x8132d233,0x8132d234,0x8132d235,0x8132d236,0x8132d237,0x8132d238,0x8132d239, +0x8132d330,0x8132d331,0x8132d332,0x8132d333,0x8132d334,0x8132d335,0x8132d336, +0x8132d337,0x8132d338,0x8132d339,0x8132d430,0x8132d431,0x8132d432,0x8132d433, +0x8132d434,0x8132d435,0x8132d436,0x8132d437,0x8132d438,0x8132d439,0x8132d530, +0x8132d531,0x8132d532,0x8132d533,0x8132d534,0x8132d535,0x8132d536,0x8132d537, +0x8132d538,0x8132d539,0x8132d630,0x8132d631,0x8132d632,0x8132d633,0x8132d634, +0x8132d635,0x8132d636,0x8132d637,0x8132d638,0x8132d639,0x8132d730,0x8132d731, +0x8132d732,0x8132d733,0x8132d734,0x8132d735,0x8132d736,0x8132d737,0x8132d738, +0x8132d739,0x8132d830,0x8132d831,0x8132d832,0x8132d833,0x8132d834,0x8132d835, +0x8132d836,0x8132d837,0x8132d838,0x8132d839,0x8132d930,0x8132d931,0x8132d932, +0x8132d933,0x8132d934,0x8132d935,0x8132d936,0x8132d937,0x8132d938,0x8132d939, +0x8132da30,0x8132da31,0x8132da32,0x8132da33,0x8132da34,0x8132da35,0x8132da36, +0x8132da37,0x8132da38,0x8132da39,0x8132db30,0x8132db31,0x8132db32,0x8132db33, +0x8132db34,0x8132db35,0x8132db36,0x8132db37,0x8132db38,0x8132db39,0x8132dc30, +0x8132dc31,0x8132dc32,0x8132dc33,0x8132dc34,0x8132dc35,0x8132dc36,0x8132dc37, +0x8132dc38,0x8132dc39,0x8132dd30,0x8132dd31,0x8132dd32,0x8132dd33,0x8132dd34, +0x8132dd35,0x8132dd36,0x8132dd37,0x8132dd38,0x8132dd39,0x8132de30,0x8132de31, +0x8132de32,0x8132de33,0x8132de34,0x8132de35,0x8132de36,0x8132de37,0x8132de38, +0x8132de39,0x8132df30,0x8132df31,0x8132df32,0x8132df33,0x8132df34,0x8132df35, +0x8132df36,0x8132df37,0x8132df38,0x8132df39,0x8132e030,0x8132e031,0x8132e032, +0x8132e033,0x8132e034,0x8132e035,0x8132e036,0x8132e037,0x8132e038,0x8132e039, +0x8132e130,0x8132e131,0x8132e132,0x8132e133,0x8132e134,0x8132e135,0x8132e136, +0x8132e137,0x8132e138,0x8132e139,0x8132e230,0x8132e231,0x8132e232,0x8132e233, +0x8132e234,0x8132e235,0x8132e236,0x8132e237,0x8132e238,0x8132e239,0x8132e330, +0x8132e331,0x8132e332,0x8132e333,0x8132e334,0x8132e335,0x8132e336,0x8132e337, +0x8132e338,0x8132e339,0x8132e430,0x8132e431,0x8132e432,0x8132e433,0x8132e434, +0x8132e435,0x8132e436,0x8132e437,0x8132e438,0x8132e439,0x8132e530,0x8132e531, +0x8132e532,0x8132e533,0x8132e534,0x8132e535,0x8132e536,0x8132e537,0x8132e538, +0x8132e539,0x8132e630,0x8132e631,0x8132e632,0x8132e633,0x8132e634,0x8132e635, +0x8132e636,0x8132e637,0x8132e638,0x8132e639,0x8132e730,0x8132e731,0x8132e732, +0x8132e733,0x8132e734,0x8132e735,0x8132e736,0x8132e737,0x8132e738,0x8132e739, +0x8132e830,0x8132e831,0x8132e832,0x8132e833,0x8132e834,0x8132e835,0x8132e836, +0x8132e837,0x8132e838,0x8132e839,0x8132e930,0x8132e931,0x8132e932,0x8132e933, +0x8132e934,0x8132e935,0x8132e936,0x8132e937,0x8132e938,0x8132e939,0x8132ea30, +0x8132ea31,0x8132ea32,0x8132ea33,0x8132ea34,0x8132ea35,0x8132ea36,0x8132ea37, +0x8132ea38,0x8132ea39,0x8132eb30,0x8132eb31,0x8132eb32,0x8132eb33,0x8132eb34, +0x8132eb35,0x8132eb36,0x8132eb37,0x8132eb38,0x8132eb39,0x8132ec30,0x8132ec31, +0x8132ec32,0x8132ec33,0x8132ec34,0x8132ec35,0x8132ec36,0x8132ec37,0x8132ec38, +0x8132ec39,0x8132ed30,0x8132ed31,0x8132ed32,0x8132ed33,0x8132ed34,0x8132ed35, +0x8132ed36,0x8132ed37,0x8132ed38,0x8132ed39,0x8132ee30,0x8132ee31,0x8132ee32, +0x8132ee33,0x8132ee34,0x8132ee35,0x8132ee36,0x8132ee37,0x8132ee38,0x8132ee39, +0x8132ef30,0x8132ef31,0x8132ef32,0x8132ef33,0x8132ef34,0x8132ef35,0x8132ef36, +0x8132ef37,0x8132ef38,0x8132ef39,0x8132f030,0x8132f031,0x8132f032,0x8132f033, +0x8132f034,0x8132f035,0x8132f036,0x8132f037,0x8132f038,0x8132f039,0x8132f130, +0x8132f131,0x8132f132,0x8132f133,0x8132f134,0x8132f135,0x8132f136,0x8132f137, +0x8132f138,0x8132f139,0x8132f230,0x8132f231,0x8132f232,0x8132f233,0x8132f234, +0x8132f235,0x8132f236,0x8132f237,0x8132f238,0x8132f239,0x8132f330,0x8132f331, +0x8132f332,0x8132f333,0x8132f334,0x8132f335,0x8132f336,0x8132f337,0x8132f338, +0x8132f339,0x8132f430,0x8132f431,0x8132f432,0x8132f433,0x8132f434,0x8132f435, +0x8132f436,0x8132f437,0x8132f438,0x8132f439,0x8132f530,0x8132f531,0x8132f532, +0x8132f533,0x8132f534,0x8132f535,0x8132f536,0x8132f537,0x8132f538,0x8132f539, +0x8132f630,0x8132f631,0x8132f632,0x8132f633,0x8132f634,0x8132f635,0x8132f636, +0x8132f637,0x8132f638,0x8132f639,0x8132f730,0x8132f731,0x8132f732,0x8132f733, +0x8132f734,0x8132f735,0x8132f736,0x8132f737,0x8132f738,0x8132f739,0x8132f830, +0x8132f831,0x8132f832,0x8132f833,0x8132f834,0x8132f835,0x8132f836,0x8132f837, +0x8132f838,0x8132f839,0x8132f930,0x8132f931,0x8132f932,0x8132f933,0x8132f934, +0x8132f935,0x8132f936,0x8132f937,0x8132f938,0x8132f939,0x8132fa30,0x8132fa31, +0x8132fa32,0x8132fa33,0x8132fa34,0x8132fa35,0x8132fa36,0x8132fa37,0x8132fa38, +0x8132fa39,0x8132fb30,0x8132fb31,0x8132fb32,0x8132fb33,0x8132fb34,0x8132fb35, +0x8132fb36,0x8132fb37,0x8132fb38,0x8132fb39,0x8132fc30,0x8132fc31,0x8132fc32, +0x8132fc33,0x8132fc34,0x8132fc35,0x8132fc36,0x8132fc37,0x8132fc38,0x8132fc39, +0x8132fd30,0x8132fd31,0x8132fd32,0x8132fd33,0x8132fd34,0x8132fd35,0x8132fd36, +0x8132fd37,0x8132fd38,0x8132fd39,0x8132fe30,0x8132fe31,0x8132fe32,0x8132fe33, +0x8132fe34,0x8132fe35,0x8132fe36,0x8132fe37,0x8132fe38,0x8132fe39,0x81338130, +0x81338131,0x81338132,0x81338133,0x81338134,0x81338135,0x81338136,0x81338137, +0x81338138,0x81338139,0x81338230,0x81338231,0x81338232,0x81338233,0x81338234, +0x81338235,0x81338236,0x81338237,0x81338238,0x81338239,0x81338330,0x81338331, +0x81338332,0x81338333,0x81338334,0x81338335,0x81338336,0x81338337,0x81338338, +0x81338339,0x81338430,0x81338431,0x81338432,0x81338433,0x81338434,0x81338435, +0x81338436,0x81338437,0x81338438,0x81338439,0x81338530,0x81338531,0x81338532, +0x81338533,0x81338534,0x81338535,0x81338536,0x81338537,0x81338538,0x81338539, +0x81338630,0x81338631,0x81338632,0x81338633,0x81338634,0x81338635,0x81338636, +0x81338637,0x81338638,0x81338639,0x81338730,0x81338731,0x81338732,0x81338733, +0x81338734,0x81338735,0x81338736,0x81338737,0x81338738,0x81338739,0x81338830, +0x81338831,0x81338832,0x81338833,0x81338834,0x81338835,0x81338836,0x81338837, +0x81338838,0x81338839,0x81338930,0x81338931,0x81338932,0x81338933,0x81338934, +0x81338935,0x81338936,0x81338937,0x81338938,0x81338939,0x81338a30,0x81338a31, +0x81338a32,0x81338a33,0x81338a34,0x81338a35,0x81338a36,0x81338a37,0x81338a38, +0x81338a39,0x81338b30,0x81338b31,0x81338b32,0x81338b33,0x81338b34,0x81338b35, +0x81338b36,0x81338b37,0x81338b38,0x81338b39,0x81338c30,0x81338c31,0x81338c32, +0x81338c33,0x81338c34,0x81338c35,0x81338c36,0x81338c37,0x81338c38,0x81338c39, +0x81338d30,0x81338d31,0x81338d32,0x81338d33,0x81338d34,0x81338d35,0x81338d36, +0x81338d37,0x81338d38,0x81338d39,0x81338e30,0x81338e31,0x81338e32,0x81338e33, +0x81338e34,0x81338e35,0x81338e36,0x81338e37,0x81338e38,0x81338e39,0x81338f30, +0x81338f31,0x81338f32,0x81338f33,0x81338f34,0x81338f35,0x81338f36,0x81338f37, +0x81338f38,0x81338f39,0x81339030,0x81339031,0x81339032,0x81339033,0x81339034, +0x81339035,0x81339036,0x81339037,0x81339038,0x81339039,0x81339130,0x81339131, +0x81339132,0x81339133,0x81339134,0x81339135,0x81339136,0x81339137,0x81339138, +0x81339139,0x81339230,0x81339231,0x81339232,0x81339233,0x81339234,0x81339235, +0x81339236,0x81339237,0x81339238,0x81339239,0x81339330,0x81339331,0x81339332, +0x81339333,0x81339334,0x81339335,0x81339336,0x81339337,0x81339338,0x81339339, +0x81339430,0x81339431,0x81339432,0x81339433,0x81339434,0x81339435,0x81339436, +0x81339437,0x81339438,0x81339439,0x81339530,0x81339531,0x81339532,0x81339533, +0x81339534,0x81339535,0x81339536,0x81339537,0x81339538,0x81339539,0x81339630, +0x81339631,0x81339632,0x81339633,0x81339634,0x81339635,0x81339636,0x81339637, +0x81339638,0x81339639,0x81339730,0x81339731,0x81339732,0x81339733,0x81339734, +0x81339735,0x81339736,0x81339737,0x81339738,0x81339739,0x81339830,0x81339831, +0x81339832,0x81339833,0x81339834,0x81339835,0x81339836,0x81339837,0x81339838, +0x81339839,0x81339930,0x81339931,0x81339932,0x81339933,0x81339934,0x81339935, +0x81339936,0x81339937,0x81339938,0x81339939,0x81339a30,0x81339a31,0x81339a32, +0x81339a33,0x81339a34,0x81339a35,0x81339a36,0x81339a37,0x81339a38,0x81339a39, +0x81339b30,0x81339b31,0x81339b32,0x81339b33,0x81339b34,0x81339b35,0x81339b36, +0x81339b37,0x81339b38,0x81339b39,0x81339c30,0x81339c31,0x81339c32,0x81339c33, +0x81339c34,0x81339c35,0x81339c36,0x81339c37,0x81339c38,0x81339c39,0x81339d30, +0x81339d31,0x81339d32,0x81339d33,0x81339d34,0x81339d35,0x81339d36,0x81339d37, +0x81339d38,0x81339d39,0x81339e30,0x81339e31,0x81339e32,0x81339e33,0x81339e34, +0x81339e35,0x81339e36,0x81339e37,0x81339e38,0x81339e39,0x81339f30,0x81339f31, +0x81339f32,0x81339f33,0x81339f34,0x81339f35,0x81339f36,0x81339f37,0x81339f38, +0x81339f39,0x8133a030,0x8133a031,0x8133a032,0x8133a033,0x8133a034,0x8133a035, +0x8133a036,0x8133a037,0x8133a038,0x8133a039,0x8133a130,0x8133a131,0x8133a132, +0x8133a133,0x8133a134,0x8133a135,0x8133a136,0x8133a137,0x8133a138,0x8133a139, +0x8133a230,0x8133a231,0x8133a232,0x8133a233,0x8133a234,0x8133a235,0x8133a236, +0x8133a237,0x8133a238,0x8133a239,0x8133a330,0x8133a331,0x8133a332,0x8133a333, +0x8133a334,0x8133a335,0x8133a336,0x8133a337,0x8133a338,0x8133a339,0x8133a430, +0x8133a431,0x8133a432,0x8133a433,0x8133a434,0x8133a435,0x8133a436,0x8133a437, +0x8133a438,0x8133a439,0x8133a530,0x8133a531,0x8133a532,0x8133a533,0x8133a534, +0x8133a535,0x8133a536,0x8133a537,0x8133a538,0x8133a539,0x8133a630,0x8133a631, +0x8133a632,0x8133a633,0x8133a634,0x8133a635,0x8133a636,0x8133a637,0x8133a638, +0x8133a639,0x8133a730,0x8133a731,0x8133a732,0x8133a733,0x8133a734,0x8133a735, +0x8133a736,0x8133a737,0x8133a738,0x8133a739,0x8133a830,0x8133a831,0x8133a832, +0x8133a833,0x8133a834,0x8133a835,0x8133a836,0x8133a837,0x8133a838,0x8133a839, +0x8133a930,0x8133a931,0x8133a932,0x8133a933,0x8133a934,0x8133a935,0x8133a936, +0x8133a937,0x8133a938,0x8133a939,0x8133aa30,0x8133aa31,0x8133aa32,0x8133aa33, +0x8133aa34,0x8133aa35,0x8133aa36,0x8133aa37,0x8133aa38,0x8133aa39,0x8133ab30, +0x8133ab31,0x8133ab32,0x8133ab33,0x8133ab34,0x8133ab35,0x8133ab36,0x8133ab37, +0x8133ab38,0x8133ab39,0x8133ac30,0x8133ac31,0x8133ac32,0x8133ac33,0x8133ac34, +0x8133ac35,0x8133ac36,0x8133ac37,0x8133ac38,0x8133ac39,0x8133ad30,0x8133ad31, +0x8133ad32,0x8133ad33,0x8133ad34,0x8133ad35,0x8133ad36,0x8133ad37,0x8133ad38, +0x8133ad39,0x8133ae30,0x8133ae31,0x8133ae32,0x8133ae33,0x8133ae34,0x8133ae35, +0x8133ae36,0x8133ae37,0x8133ae38,0x8133ae39,0x8133af30,0x8133af31,0x8133af32, +0x8133af33,0x8133af34,0x8133af35,0x8133af36,0x8133af37,0x8133af38,0x8133af39, +0x8133b030,0x8133b031,0x8133b032,0x8133b033,0x8133b034,0x8133b035,0x8133b036, +0x8133b037,0x8133b038,0x8133b039,0x8133b130,0x8133b131,0x8133b132,0x8133b133, +0x8133b134,0x8133b135,0x8133b136,0x8133b137,0x8133b138,0x8133b139,0x8133b230, +0x8133b231,0x8133b232,0x8133b233,0x8133b234,0x8133b235,0x8133b236,0x8133b237, +0x8133b238,0x8133b239,0x8133b330,0x8133b331,0x8133b332,0x8133b333,0x8133b334, +0x8133b335,0x8133b336,0x8133b337,0x8133b338,0x8133b339,0x8133b430,0x8133b431, +0x8133b432,0x8133b433,0x8133b434,0x8133b435,0x8133b436,0x8133b437,0x8133b438, +0x8133b439,0x8133b530,0x8133b531,0x8133b532,0x8133b533,0x8133b534,0x8133b535, +0x8133b536,0x8133b537,0x8133b538,0x8133b539,0x8133b630,0x8133b631,0x8133b632, +0x8133b633,0x8133b634,0x8133b635,0x8133b636,0x8133b637,0x8133b638,0x8133b639, +0x8133b730,0x8133b731,0x8133b732,0x8133b733,0x8133b734,0x8133b735,0x8133b736, +0x8133b737,0x8133b738,0x8133b739,0x8133b830,0x8133b831,0x8133b832,0x8133b833, +0x8133b834,0x8133b835,0x8133b836,0x8133b837,0x8133b838,0x8133b839,0x8133b930, +0x8133b931,0x8133b932,0x8133b933,0x8133b934,0x8133b935,0x8133b936,0x8133b937, +0x8133b938,0x8133b939,0x8133ba30,0x8133ba31,0x8133ba32,0x8133ba33,0x8133ba34, +0x8133ba35,0x8133ba36,0x8133ba37,0x8133ba38,0x8133ba39,0x8133bb30,0x8133bb31, +0x8133bb32,0x8133bb33,0x8133bb34,0x8133bb35,0x8133bb36,0x8133bb37,0x8133bb38, +0x8133bb39,0x8133bc30,0x8133bc31,0x8133bc32,0x8133bc33,0x8133bc34,0x8133bc35, +0x8133bc36,0x8133bc37,0x8133bc38,0x8133bc39,0x8133bd30,0x8133bd31,0x8133bd32, +0x8133bd33,0x8133bd34,0x8133bd35,0x8133bd36,0x8133bd37,0x8133bd38,0x8133bd39, +0x8133be30,0x8133be31,0x8133be32,0x8133be33,0x8133be34,0x8133be35,0x8133be36, +0x8133be37,0x8133be38,0x8133be39,0x8133bf30,0x8133bf31,0x8133bf32,0x8133bf33, +0x8133bf34,0x8133bf35,0x8133bf36,0x8133bf37,0x8133bf38,0x8133bf39,0x8133c030, +0x8133c031,0x8133c032,0x8133c033,0x8133c034,0x8133c035,0x8133c036,0x8133c037, +0x8133c038,0x8133c039,0x8133c130,0x8133c131,0x8133c132,0x8133c133,0x8133c134, +0x8133c135,0x8133c136,0x8133c137,0x8133c138,0x8133c139,0x8133c230,0x8133c231, +0x8133c232,0x8133c233,0x8133c234,0x8133c235,0x8133c236,0x8133c237,0x8133c238, +0x8133c239,0x8133c330,0x8133c331,0x8133c332,0x8133c333,0x8133c334,0x8133c335, +0x8133c336,0x8133c337,0x8133c338,0x8133c339,0x8133c430,0x8133c431,0x8133c432, +0x8133c433,0x8133c434,0x8133c435,0x8133c436,0x8133c437,0x8133c438,0x8133c439, +0x8133c530,0x8133c531,0x8133c532,0x8133c533,0x8133c534,0x8133c535,0x8133c536, +0x8133c537,0x8133c538,0x8133c539,0x8133c630,0x8133c631,0x8133c632,0x8133c633, +0x8133c634,0x8133c635,0x8133c636,0x8133c637,0x8133c638,0x8133c639,0x8133c730, +0x8133c731,0x8133c732,0x8133c733,0x8133c734,0x8133c735,0x8133c736,0x8133c737, +0x8133c738,0x8133c739,0x8133c830,0x8133c831,0x8133c832,0x8133c833,0x8133c834, +0x8133c835,0x8133c836,0x8133c837,0x8133c838,0x8133c839,0x8133c930,0x8133c931, +0x8133c932,0x8133c933,0x8133c934,0x8133c935,0x8133c936,0x8133c937,0x8133c938, +0x8133c939,0x8133ca30,0x8133ca31,0x8133ca32,0x8133ca33,0x8133ca34,0x8133ca35, +0x8133ca36,0x8133ca37,0x8133ca38,0x8133ca39,0x8133cb30,0x8133cb31,0x8133cb32, +0x8133cb33,0x8133cb34,0x8133cb35,0x8133cb36,0x8133cb37,0x8133cb38,0x8133cb39, +0x8133cc30,0x8133cc31,0x8133cc32,0x8133cc33,0x8133cc34,0x8133cc35,0x8133cc36, +0x8133cc37,0x8133cc38,0x8133cc39,0x8133cd30,0x8133cd31,0x8133cd32,0x8133cd33, +0x8133cd34,0x8133cd35,0x8133cd36,0x8133cd37,0x8133cd38,0x8133cd39,0x8133ce30, +0x8133ce31,0x8133ce32,0x8133ce33,0x8133ce34,0x8133ce35,0x8133ce36,0x8133ce37, +0x8133ce38,0x8133ce39,0x8133cf30,0x8133cf31,0x8133cf32,0x8133cf33,0x8133cf34, +0x8133cf35,0x8133cf36,0x8133cf37,0x8133cf38,0x8133cf39,0x8133d030,0x8133d031, +0x8133d032,0x8133d033,0x8133d034,0x8133d035,0x8133d036,0x8133d037,0x8133d038, +0x8133d039,0x8133d130,0x8133d131,0x8133d132,0x8133d133,0x8133d134,0x8133d135, +0x8133d136,0x8133d137,0x8133d138,0x8133d139,0x8133d230,0x8133d231,0x8133d232, +0x8133d233,0x8133d234,0x8133d235,0x8133d236,0x8133d237,0x8133d238,0x8133d239, +0x8133d330,0x8133d331,0x8133d332,0x8133d333,0x8133d334,0x8133d335,0x8133d336, +0x8133d337,0x8133d338,0x8133d339,0x8133d430,0x8133d431,0x8133d432,0x8133d433, +0x8133d434,0x8133d435,0x8133d436,0x8133d437,0x8133d438,0x8133d439,0x8133d530, +0x8133d531,0x8133d532,0x8133d533,0x8133d534,0x8133d535,0x8133d536,0x8133d537, +0x8133d538,0x8133d539,0x8133d630,0x8133d631,0x8133d632,0x8133d633,0x8133d634, +0x8133d635,0x8133d636,0x8133d637,0x8133d638,0x8133d639,0x8133d730,0x8133d731, +0x8133d732,0x8133d733,0x8133d734,0x8133d735,0x8133d736,0x8133d737,0x8133d738, +0x8133d739,0x8133d830,0x8133d831,0x8133d832,0x8133d833,0x8133d834,0x8133d835, +0x8133d836,0x8133d837,0x8133d838,0x8133d839,0x8133d930,0x8133d931,0x8133d932, +0x8133d933,0x8133d934,0x8133d935,0x8133d936,0x8133d937,0x8133d938,0x8133d939, +0x8133da30,0x8133da31,0x8133da32,0x8133da33,0x8133da34,0x8133da35,0x8133da36, +0x8133da37,0x8133da38,0x8133da39,0x8133db30,0x8133db31,0x8133db32,0x8133db33, +0x8133db34,0x8133db35,0x8133db36,0x8133db37,0x8133db38,0x8133db39,0x8133dc30, +0x8133dc31,0x8133dc32,0x8133dc33,0x8133dc34,0x8133dc35,0x8133dc36,0x8133dc37, +0x8133dc38,0x8133dc39,0x8133dd30,0x8133dd31,0x8133dd32,0x8133dd33,0x8133dd34, +0x8133dd35,0x8133dd36,0x8133dd37,0x8133dd38,0x8133dd39,0x8133de30,0x8133de31, +0x8133de32,0x8133de33,0x8133de34,0x8133de35,0x8133de36,0x8133de37,0x8133de38, +0x8133de39,0x8133df30,0x8133df31,0x8133df32,0x8133df33,0x8133df34,0x8133df35, +0x8133df36,0x8133df37,0x8133df38,0x8133df39,0x8133e030,0x8133e031,0x8133e032, +0x8133e033,0x8133e034,0x8133e035,0x8133e036,0x8133e037,0x8133e038,0x8133e039, +0x8133e130,0x8133e131,0x8133e132,0x8133e133,0x8133e134,0x8133e135,0x8133e136, +0x8133e137,0x8133e138,0x8133e139,0x8133e230,0x8133e231,0x8133e232,0x8133e233, +0x8133e234,0x8133e235,0x8133e236,0x8133e237,0x8133e238,0x8133e239,0x8133e330, +0x8133e331,0x8133e332,0x8133e333,0x8133e334,0x8133e335,0x8133e336,0x8133e337, +0x8133e338,0x8133e339,0x8133e430,0x8133e431,0x8133e432,0x8133e433,0x8133e434, +0x8133e435,0x8133e436,0x8133e437,0x8133e438,0x8133e439,0x8133e530,0x8133e531, +0x8133e532,0x8133e533,0x8133e534,0x8133e535,0x8133e536,0x8133e537,0x8133e538, +0x8133e539,0x8133e630,0x8133e631,0x8133e632,0x8133e633,0x8133e634,0x8133e635, +0x8133e636,0x8133e637,0x8133e638,0x8133e639,0x8133e730,0x8133e731,0x8133e732, +0x8133e733,0x8133e734,0x8133e735,0x8133e736,0x8133e737,0x8133e738,0x8133e739, +0x8133e830,0x8133e831,0x8133e832,0x8133e833,0x8133e834,0x8133e835,0x8133e836, +0x8133e837,0x8133e838,0x8133e839,0x8133e930,0x8133e931,0x8133e932,0x8133e933, +0x8133e934,0x8133e935,0x8133e936,0x8133e937,0x8133e938,0x8133e939,0x8133ea30, +0x8133ea31,0x8133ea32,0x8133ea33,0x8133ea34,0x8133ea35,0x8133ea36,0x8133ea37, +0x8133ea38,0x8133ea39,0x8133eb30,0x8133eb31,0x8133eb32,0x8133eb33,0x8133eb34, +0x8133eb35,0x8133eb36,0x8133eb37,0x8133eb38,0x8133eb39,0x8133ec30,0x8133ec31, +0x8133ec32,0x8133ec33,0x8133ec34,0x8133ec35,0x8133ec36,0x8133ec37,0x8133ec38, +0x8133ec39,0x8133ed30,0x8133ed31,0x8133ed32,0x8133ed33,0x8133ed34,0x8133ed35, +0x8133ed36,0x8133ed37,0x8133ed38,0x8133ed39,0x8133ee30,0x8133ee31,0x8133ee32, +0x8133ee33,0x8133ee34,0x8133ee35,0x8133ee36,0x8133ee37,0x8133ee38,0x8133ee39, +0x8133ef30,0x8133ef31,0x8133ef32,0x8133ef33,0x8133ef34,0x8133ef35,0x8133ef36, +0x8133ef37,0x8133ef38,0x8133ef39,0x8133f030,0x8133f031,0x8133f032,0x8133f033, +0x8133f034,0x8133f035,0x8133f036,0x8133f037,0x8133f038,0x8133f039,0x8133f130, +0x8133f131,0x8133f132,0x8133f133,0x8133f134,0x8133f135,0x8133f136,0x8133f137, +0x8133f138,0x8133f139,0x8133f230,0x8133f231,0x8133f232,0x8133f233,0x8133f234, +0x8133f235,0x8133f236,0x8133f237,0x8133f238,0x8133f239,0x8133f330,0x8133f331, +0x8133f332,0x8133f333,0x8133f334,0x8133f335,0x8133f336,0x8133f337,0x8133f338, +0x8133f339,0x8133f430,0x8133f431,0x8133f432,0x8133f433,0x8133f434,0x8133f435, +0x8133f436,0x8133f437,0x8133f438,0x8133f439,0x8133f530,0x8133f531,0x8133f532, +0x8133f533,0x8133f534,0x8133f535,0x8133f536,0x8133f537,0x8133f538,0x8133f539, +0x8133f630,0x8133f631,0x8133f632,0x8133f633,0x8133f634,0x8133f635,0x8133f636, +0x8133f637,0x8133f638,0x8133f639,0x8133f730,0x8133f731,0x8133f732,0x8133f733, +0x8133f734,0x8133f735,0x8133f736,0x8133f737,0x8133f738,0x8133f739,0x8133f830, +0x8133f831,0x8133f832,0x8133f833,0x8133f834,0x8133f835,0x8133f836,0x8133f837, +0x8133f838,0x8133f839,0x8133f930,0x8133f931,0x8133f932,0x8133f933,0x8133f934, +0x8133f935,0x8133f936,0x8133f937,0x8133f938,0x8133f939,0x8133fa30,0x8133fa31, +0x8133fa32,0x8133fa33,0x8133fa34,0x8133fa35,0x8133fa36,0x8133fa37,0x8133fa38, +0x8133fa39,0x8133fb30,0x8133fb31,0x8133fb32,0x8133fb33,0x8133fb34,0x8133fb35, +0x8133fb36,0x8133fb37,0x8133fb38,0x8133fb39,0x8133fc30,0x8133fc31,0x8133fc32, +0x8133fc33,0x8133fc34,0x8133fc35,0x8133fc36,0x8133fc37,0x8133fc38,0x8133fc39, +0x8133fd30,0x8133fd31,0x8133fd32,0x8133fd33,0x8133fd34,0x8133fd35,0x8133fd36, +0x8133fd37,0x8133fd38,0x8133fd39,0x8133fe30,0x8133fe31,0x8133fe32,0x8133fe33, +0x8133fe34,0x8133fe35,0x8133fe36,0x8133fe37,0x8133fe38,0x8133fe39,0x81348130, +0x81348131,0x81348132,0x81348133,0x81348134,0x81348135,0x81348136,0x81348137, +0x81348138,0x81348139,0x81348230,0x81348231,0x81348232,0x81348233,0x81348234, +0x81348235,0x81348236,0x81348237,0x81348238,0x81348239,0x81348330,0x81348331, +0x81348332,0x81348333,0x81348334,0x81348335,0x81348336,0x81348337,0x81348338, +0x81348339,0x81348430,0x81348431,0x81348432,0x81348433,0x81348434,0x81348435, +0x81348436,0x81348437,0x81348438,0x81348439,0x81348530,0x81348531,0x81348532, +0x81348533,0x81348534,0x81348535,0x81348536,0x81348537,0x81348538,0x81348539, +0x81348630,0x81348631,0x81348632,0x81348633,0x81348634,0x81348635,0x81348636, +0x81348637,0x81348638,0x81348639,0x81348730,0x81348731,0x81348732,0x81348733, +0x81348734,0x81348735,0x81348736,0x81348737,0x81348738,0x81348739,0x81348830, +0x81348831,0x81348832,0x81348833,0x81348834,0x81348835,0x81348836,0x81348837, +0x81348838,0x81348839,0x81348930,0x81348931,0x81348932,0x81348933,0x81348934, +0x81348935,0x81348936,0x81348937,0x81348938,0x81348939,0x81348a30,0x81348a31, +0x81348a32,0x81348a33,0x81348a34,0x81348a35,0x81348a36,0x81348a37,0x81348a38, +0x81348a39,0x81348b30,0x81348b31,0x81348b32,0x81348b33,0x81348b34,0x81348b35, +0x81348b36,0x81348b37,0x81348b38,0x81348b39,0x81348c30,0x81348c31,0x81348c32, +0x81348c33,0x81348c34,0x81348c35,0x81348c36,0x81348c37,0x81348c38,0x81348c39, +0x81348d30,0x81348d31,0x81348d32,0x81348d33,0x81348d34,0x81348d35,0x81348d36, +0x81348d37,0x81348d38,0x81348d39,0x81348e30,0x81348e31,0x81348e32,0x81348e33, +0x81348e34,0x81348e35,0x81348e36,0x81348e37,0x81348e38,0x81348e39,0x81348f30, +0x81348f31,0x81348f32,0x81348f33,0x81348f34,0x81348f35,0x81348f36,0x81348f37, +0x81348f38,0x81348f39,0x81349030,0x81349031,0x81349032,0x81349033,0x81349034, +0x81349035,0x81349036,0x81349037,0x81349038,0x81349039,0x81349130,0x81349131, +0x81349132,0x81349133,0x81349134,0x81349135,0x81349136,0x81349137,0x81349138, +0x81349139,0x81349230,0x81349231,0x81349232,0x81349233,0x81349234,0x81349235, +0x81349236,0x81349237,0x81349238,0x81349239,0x81349330,0x81349331,0x81349332, +0x81349333,0x81349334,0x81349335,0x81349336,0x81349337,0x81349338,0x81349339, +0x81349430,0x81349431,0x81349432,0x81349433,0x81349434,0x81349435,0x81349436, +0x81349437,0x81349438,0x81349439,0x81349530,0x81349531,0x81349532,0x81349533, +0x81349534,0x81349535,0x81349536,0x81349537,0x81349538,0x81349539,0x81349630, +0x81349631,0x81349632,0x81349633,0x81349634,0x81349635,0x81349636,0x81349637, +0x81349638,0x81349639,0x81349730,0x81349731,0x81349732,0x81349733,0x81349734, +0x81349735,0x81349736,0x81349737,0x81349738,0x81349739,0x81349830,0x81349831, +0x81349832,0x81349833,0x81349834,0x81349835,0x81349836,0x81349837,0x81349838, +0x81349839,0x81349930,0x81349931,0x81349932,0x81349933,0x81349934,0x81349935, +0x81349936,0x81349937,0x81349938,0x81349939,0x81349a30,0x81349a31,0x81349a32, +0x81349a33,0x81349a34,0x81349a35,0x81349a36,0x81349a37,0x81349a38,0x81349a39, +0x81349b30,0x81349b31,0x81349b32,0x81349b33,0x81349b34,0x81349b35,0x81349b36, +0x81349b37,0x81349b38,0x81349b39,0x81349c30,0x81349c31,0x81349c32,0x81349c33, +0x81349c34,0x81349c35,0x81349c36,0x81349c37,0x81349c38,0x81349c39,0x81349d30, +0x81349d31,0x81349d32,0x81349d33,0x81349d34,0x81349d35,0x81349d36,0x81349d37, +0x81349d38,0x81349d39,0x81349e30,0x81349e31,0x81349e32,0x81349e33,0x81349e34, +0x81349e35,0x81349e36,0x81349e37,0x81349e38,0x81349e39,0x81349f30,0x81349f31, +0x81349f32,0x81349f33,0x81349f34,0x81349f35,0x81349f36,0x81349f37,0x81349f38, +0x81349f39,0x8134a030,0x8134a031,0x8134a032,0x8134a033,0x8134a034,0x8134a035, +0x8134a036,0x8134a037,0x8134a038,0x8134a039,0x8134a130,0x8134a131,0x8134a132, +0x8134a133,0x8134a134,0x8134a135,0x8134a136,0x8134a137,0x8134a138,0x8134a139, +0x8134a230,0x8134a231,0x8134a232,0x8134a233,0x8134a234,0x8134a235,0x8134a236, +0x8134a237,0x8134a238,0x8134a239,0x8134a330,0x8134a331,0x8134a332,0x8134a333, +0x8134a334,0x8134a335,0x8134a336,0x8134a337,0x8134a338,0x8134a339,0x8134a430, +0x8134a431,0x8134a432,0x8134a433,0x8134a434,0x8134a435,0x8134a436,0x8134a437, +0x8134a438,0x8134a439,0x8134a530,0x8134a531,0x8134a532,0x8134a533,0x8134a534, +0x8134a535,0x8134a536,0x8134a537,0x8134a538,0x8134a539,0x8134a630,0x8134a631, +0x8134a632,0x8134a633,0x8134a634,0x8134a635,0x8134a636,0x8134a637,0x8134a638, +0x8134a639,0x8134a730,0x8134a731,0x8134a732,0x8134a733,0x8134a734,0x8134a735, +0x8134a736,0x8134a737,0x8134a738,0x8134a739,0x8134a830,0x8134a831,0x8134a832, +0x8134a833,0x8134a834,0x8134a835,0x8134a836,0x8134a837,0x8134a838,0x8134a839, +0x8134a930,0x8134a931,0x8134a932,0x8134a933,0x8134a934,0x8134a935,0x8134a936, +0x8134a937,0x8134a938,0x8134a939,0x8134aa30,0x8134aa31,0x8134aa32,0x8134aa33, +0x8134aa34,0x8134aa35,0x8134aa36,0x8134aa37,0x8134aa38,0x8134aa39,0x8134ab30, +0x8134ab31,0x8134ab32,0x8134ab33,0x8134ab34,0x8134ab35,0x8134ab36,0x8134ab37, +0x8134ab38,0x8134ab39,0x8134ac30,0x8134ac31,0x8134ac32,0x8134ac33,0x8134ac34, +0x8134ac35,0x8134ac36,0x8134ac37,0x8134ac38,0x8134ac39,0x8134ad30,0x8134ad31, +0x8134ad32,0x8134ad33,0x8134ad34,0x8134ad35,0x8134ad36,0x8134ad37,0x8134ad38, +0x8134ad39,0x8134ae30,0x8134ae31,0x8134ae32,0x8134ae33,0x8134ae34,0x8134ae35, +0x8134ae36,0x8134ae37,0x8134ae38,0x8134ae39,0x8134af30,0x8134af31,0x8134af32, +0x8134af33,0x8134af34,0x8134af35,0x8134af36,0x8134af37,0x8134af38,0x8134af39, +0x8134b030,0x8134b031,0x8134b032,0x8134b033,0x8134b034,0x8134b035,0x8134b036, +0x8134b037,0x8134b038,0x8134b039,0x8134b130,0x8134b131,0x8134b132,0x8134b133, +0x8134b134,0x8134b135,0x8134b136,0x8134b137,0x8134b138,0x8134b139,0x8134b230, +0x8134b231,0x8134b232,0x8134b233,0x8134b234,0x8134b235,0x8134b236,0x8134b237, +0x8134b238,0x8134b239,0x8134b330,0x8134b331,0x8134b332,0x8134b333,0x8134b334, +0x8134b335,0x8134b336,0x8134b337,0x8134b338,0x8134b339,0x8134b430,0x8134b431, +0x8134b432,0x8134b433,0x8134b434,0x8134b435,0x8134b436,0x8134b437,0x8134b438, +0x8134b439,0x8134b530,0x8134b531,0x8134b532,0x8134b533,0x8134b534,0x8134b535, +0x8134b536,0x8134b537,0x8134b538,0x8134b539,0x8134b630,0x8134b631,0x8134b632, +0x8134b633,0x8134b634,0x8134b635,0x8134b636,0x8134b637,0x8134b638,0x8134b639, +0x8134b730,0x8134b731,0x8134b732,0x8134b733,0x8134b734,0x8134b735,0x8134b736, +0x8134b737,0x8134b738,0x8134b739,0x8134b830,0x8134b831,0x8134b832,0x8134b833, +0x8134b834,0x8134b835,0x8134b836,0x8134b837,0x8134b838,0x8134b839,0x8134b930, +0x8134b931,0x8134b932,0x8134b933,0x8134b934,0x8134b935,0x8134b936,0x8134b937, +0x8134b938,0x8134b939,0x8134ba30,0x8134ba31,0x8134ba32,0x8134ba33,0x8134ba34, +0x8134ba35,0x8134ba36,0x8134ba37,0x8134ba38,0x8134ba39,0x8134bb30,0x8134bb31, +0x8134bb32,0x8134bb33,0x8134bb34,0x8134bb35,0x8134bb36,0x8134bb37,0x8134bb38, +0x8134bb39,0x8134bc30,0x8134bc31,0x8134bc32,0x8134bc33,0x8134bc34,0x8134bc35, +0x8134bc36,0x8134bc37,0x8134bc38,0x8134bc39,0x8134bd30,0x8134bd31,0x8134bd32, +0x8134bd33,0x8134bd34,0x8134bd35,0x8134bd36,0x8134bd37,0x8134bd38,0x8134bd39, +0x8134be30,0x8134be31,0x8134be32,0x8134be33,0x8134be34,0x8134be35,0x8134be36, +0x8134be37,0x8134be38,0x8134be39,0x8134bf30,0x8134bf31,0x8134bf32,0x8134bf33, +0x8134bf34,0x8134bf35,0x8134bf36,0x8134bf37,0x8134bf38,0x8134bf39,0x8134c030, +0x8134c031,0x8134c032,0x8134c033,0x8134c034,0x8134c035,0x8134c036,0x8134c037, +0x8134c038,0x8134c039,0x8134c130,0x8134c131,0x8134c132,0x8134c133,0x8134c134, +0x8134c135,0x8134c136,0x8134c137,0x8134c138,0x8134c139,0x8134c230,0x8134c231, +0x8134c232,0x8134c233,0x8134c234,0x8134c235,0x8134c236,0x8134c237,0x8134c238, +0x8134c239,0x8134c330,0x8134c331,0x8134c332,0x8134c333,0x8134c334,0x8134c335, +0x8134c336,0x8134c337,0x8134c338,0x8134c339,0x8134c430,0x8134c431,0x8134c432, +0x8134c433,0x8134c434,0x8134c435,0x8134c436,0x8134c437,0x8134c438,0x8134c439, +0x8134c530,0x8134c531,0x8134c532,0x8134c533,0x8134c534,0x8134c535,0x8134c536, +0x8134c537,0x8134c538,0x8134c539,0x8134c630,0x8134c631,0x8134c632,0x8134c633, +0x8134c634,0x8134c635,0x8134c636,0x8134c637,0x8134c638,0x8134c639,0x8134c730, +0x8134c731,0x8134c732,0x8134c733,0x8134c734,0x8134c735,0x8134c736,0x8134c737, +0x8134c738,0x8134c739,0x8134c830,0x8134c831,0x8134c832,0x8134c833,0x8134c834, +0x8134c835,0x8134c836,0x8134c837,0x8134c838,0x8134c839,0x8134c930,0x8134c931, +0x8134c932,0x8134c933,0x8134c934,0x8134c935,0x8134c936,0x8134c937,0x8134c938, +0x8134c939,0x8134ca30,0x8134ca31,0x8134ca32,0x8134ca33,0x8134ca34,0x8134ca35, +0x8134ca36,0x8134ca37,0x8134ca38,0x8134ca39,0x8134cb30,0x8134cb31,0x8134cb32, +0x8134cb33,0x8134cb34,0x8134cb35,0x8134cb36,0x8134cb37,0x8134cb38,0x8134cb39, +0x8134cc30,0x8134cc31,0x8134cc32,0x8134cc33,0x8134cc34,0x8134cc35,0x8134cc36, +0x8134cc37,0x8134cc38,0x8134cc39,0x8134cd30,0x8134cd31,0x8134cd32,0x8134cd33, +0x8134cd34,0x8134cd35,0x8134cd36,0x8134cd37,0x8134cd38,0x8134cd39,0x8134ce30, +0x8134ce31,0x8134ce32,0x8134ce33,0x8134ce34,0x8134ce35,0x8134ce36,0x8134ce37, +0x8134ce38,0x8134ce39,0x8134cf30,0x8134cf31,0x8134cf32,0x8134cf33,0x8134cf34, +0x8134cf35,0x8134cf36,0x8134cf37,0x8134cf38,0x8134cf39,0x8134d030,0x8134d031, +0x8134d032,0x8134d033,0x8134d034,0x8134d035,0x8134d036,0x8134d037,0x8134d038, +0x8134d039,0x8134d130,0x8134d131,0x8134d132,0x8134d133,0x8134d134,0x8134d135, +0x8134d136,0x8134d137,0x8134d138,0x8134d139,0x8134d230,0x8134d231,0x8134d232, +0x8134d233,0x8134d234,0x8134d235,0x8134d236,0x8134d237,0x8134d238,0x8134d239, +0x8134d330,0x8134d331,0x8134d332,0x8134d333,0x8134d334,0x8134d335,0x8134d336, +0x8134d337,0x8134d338,0x8134d339,0x8134d430,0x8134d431,0x8134d432,0x8134d433, +0x8134d434,0x8134d435,0x8134d436,0x8134d437,0x8134d438,0x8134d439,0x8134d530, +0x8134d531,0x8134d532,0x8134d533,0x8134d534,0x8134d535,0x8134d536,0x8134d537, +0x8134d538,0x8134d539,0x8134d630,0x8134d631,0x8134d632,0x8134d633,0x8134d634, +0x8134d635,0x8134d636,0x8134d637,0x8134d638,0x8134d639,0x8134d730,0x8134d731, +0x8134d732,0x8134d733,0x8134d734,0x8134d735,0x8134d736,0x8134d737,0x8134d738, +0x8134d739,0x8134d830,0x8134d831,0x8134d832,0x8134d833,0x8134d834,0x8134d835, +0x8134d836,0x8134d837,0x8134d838,0x8134d839,0x8134d930,0x8134d931,0x8134d932, +0x8134d933,0x8134d934,0x8134d935,0x8134d936,0x8134d937,0x8134d938,0x8134d939, +0x8134da30,0x8134da31,0x8134da32,0x8134da33,0x8134da34,0x8134da35,0x8134da36, +0x8134da37,0x8134da38,0x8134da39,0x8134db30,0x8134db31,0x8134db32,0x8134db33, +0x8134db34,0x8134db35,0x8134db36,0x8134db37,0x8134db38,0x8134db39,0x8134dc30, +0x8134dc31,0x8134dc32,0x8134dc33,0x8134dc34,0x8134dc35,0x8134dc36,0x8134dc37, +0x8134dc38,0x8134dc39,0x8134dd30,0x8134dd31,0x8134dd32,0x8134dd33,0x8134dd34, +0x8134dd35,0x8134dd36,0x8134dd37,0x8134dd38,0x8134dd39,0x8134de30,0x8134de31, +0x8134de32,0x8134de33,0x8134de34,0x8134de35,0x8134de36,0x8134de37,0x8134de38, +0x8134de39,0x8134df30,0x8134df31,0x8134df32,0x8134df33,0x8134df34,0x8134df35, +0x8134df36,0x8134df37,0x8134df38,0x8134df39,0x8134e030,0x8134e031,0x8134e032, +0x8134e033,0x8134e034,0x8134e035,0x8134e036,0x8134e037,0x8134e038,0x8134e039, +0x8134e130,0x8134e131,0x8134e132,0x8134e133,0x8134e134,0x8134e135,0x8134e136, +0x8134e137,0x8134e138,0x8134e139,0x8134e230,0x8134e231,0x8134e232,0x8134e233, +0x8134e234,0x8134e235,0x8134e236,0x8134e237,0x8134e238,0x8134e239,0x8134e330, +0x8134e331,0x8134e332,0x8134e333,0x8134e334,0x8134e335,0x8134e336,0x8134e337, +0x8134e338,0x8134e339,0x8134e430,0x8134e431,0x8134e432,0x8134e433,0x8134e434, +0x8134e435,0x8134e436,0x8134e437,0x8134e438,0x8134e439,0x8134e530,0x8134e531, +0x8134e532,0x8134e533,0x8134e534,0x8134e535,0x8134e536,0x8134e537,0x8134e538, +0x8134e539,0x8134e630,0x8134e631,0x8134e632,0x8134e633,0x8134e634,0x8134e635, +0x8134e636,0x8134e637,0x8134e638,0x8134e639,0x8134e730,0x8134e731,0x8134e732, +0x8134e733,0x8134e734,0x8134e735,0x8134e736,0x8134e737,0x8134e738,0x8134e739, +0x8134e830,0x8134e831,0x8134e832,0x8134e833,0x8134e834,0x8134e835,0x8134e836, +0x8134e837,0x8134e838,0x8134e839,0x8134e930,0x8134e931,0x8134e932,0x8134e933, +0x8134e934,0x8134e935,0x8134e936,0x8134e937,0x8134e938,0x8134e939,0x8134ea30, +0x8134ea31,0x8134ea32,0x8134ea33,0x8134ea34,0x8134ea35,0x8134ea36,0x8134ea37, +0x8134ea38,0x8134ea39,0x8134eb30,0x8134eb31,0x8134eb32,0x8134eb33,0x8134eb34, +0x8134eb35,0x8134eb36,0x8134eb37,0x8134eb38,0x8134eb39,0x8134ec30,0x8134ec31, +0x8134ec32,0x8134ec33,0x8134ec34,0x8134ec35,0x8134ec36,0x8134ec37,0x8134ec38, +0x8134ec39,0x8134ed30,0x8134ed31,0x8134ed32,0x8134ed33,0x8134ed34,0x8134ed35, +0x8134ed36,0x8134ed37,0x8134ed38,0x8134ed39,0x8134ee30,0x8134ee31,0x8134ee32, +0x8134ee33,0x8134ee34,0x8134ee35,0x8134ee36,0x8134ee37,0x8134ee38,0x8134ee39, +0x8134ef30,0x8134ef31,0x8134ef32,0x8134ef33,0x8134ef34,0x8134ef35,0x8134ef36, +0x8134ef37,0x8134ef38,0x8134ef39,0x8134f030,0x8134f031,0x8134f032,0x8134f033, +0x8134f034,0x8134f035,0x8134f036,0x8134f037,0x8134f038,0x8134f039,0x8134f130, +0x8134f131,0x8134f132,0x8134f133,0x8134f134,0x8134f135,0x8134f136,0x8134f137, +0x8134f138,0x8134f139,0x8134f230,0x8134f231,0x8134f232,0x8134f233,0x8134f234, +0x8134f235,0x8134f236,0x8134f237,0x8134f238,0x8134f239,0x8134f330,0x8134f331, +0x8134f332,0x8134f333,0x8134f334,0x8134f335,0x8134f336,0x8134f337,0x8134f338, +0x8134f339,0x8134f430,0x8134f431,0x8134f432,0x8134f433,0x8134f434,0x8134f435, +0x8134f436,0x8134f437,0x8134f438,0x8134f439,0x8134f530,0x8134f531,0x8134f532, +0x8134f533,0x8134f534,0x8134f535,0x8134f536,0x8134f537,0x8134f538,0x8134f539, +0x8134f630,0x8134f631,0x8134f632,0x8134f633,0x8134f634,0x8134f635,0x8134f636, +0x8134f637,0x8134f638,0x8134f639,0x8134f730,0x8134f731,0x8134f732,0x8134f733, +0x8134f734,0x8134f735,0x8134f736,0x8134f737,0x8134f738,0x8134f739,0x8134f830, +0x8134f831,0x8134f832,0x8134f833,0x8134f834,0x8134f835,0x8134f836,0x8134f837, +0x8134f838,0x8134f839,0x8134f930,0x8134f931,0x8134f932,0x8134f933,0x8134f934, +0x8134f935,0x8134f936,0x8134f937,0x8134f938,0x8134f939,0x8134fa30,0x8134fa31, +0x8134fa32,0x8134fa33,0x8134fa34,0x8134fa35,0x8134fa36,0x8134fa37,0x8134fa38, +0x8134fa39,0x8134fb30,0x8134fb31,0x8134fb32,0x8134fb33,0x8134fb34,0x8134fb35, +0x8134fb36,0x8134fb37,0x8134fb38,0x8134fb39,0x8134fc30,0x8134fc31,0x8134fc32, +0x8134fc33,0x8134fc34,0x8134fc35,0x8134fc36,0x8134fc37,0x8134fc38,0x8134fc39, +0x8134fd30,0x8134fd31,0x8134fd32,0x8134fd33,0x8134fd34,0x8134fd35,0x8134fd36, +0x8134fd37,0x8134fd38,0x8134fd39,0x8134fe30,0x8134fe31,0x8134fe32,0x8134fe33, +0x8134fe34,0x8134fe35,0x8134fe36,0x8134fe37,0x8134fe38,0x8134fe39,0x81358130, +0x81358131,0x81358132,0x81358133,0x81358134,0x81358135,0x81358136,0x81358137, +0x81358138,0x81358139,0x81358230,0x81358231,0x81358232,0x81358233,0x81358234, +0x81358235,0x81358236,0x81358237,0x81358238,0x81358239,0x81358330,0x81358331, +0x81358332,0x81358333,0x81358334,0x81358335,0x81358336,0x81358337,0x81358338, +0x81358339,0x81358430,0x81358431,0x81358432,0x81358433,0x81358434,0x81358435, +0x81358436,0x81358437,0x81358438,0x81358439,0x81358530,0x81358531,0x81358532, +0x81358533,0x81358534,0x81358535,0x81358536,0x81358537,0x81358538,0x81358539, +0x81358630,0x81358631,0x81358632,0x81358633,0x81358634,0x81358635,0x81358636, +0x81358637,0x81358638,0x81358639,0x81358730,0x81358731,0x81358732,0x81358733, +0x81358734,0x81358735,0x81358736,0x81358737,0x81358738,0x81358739,0x81358830, +0x81358831,0x81358832,0x81358833,0x81358834,0x81358835,0x81358836,0x81358837, +0x81358838,0x81358839,0x81358930,0x81358931,0x81358932,0x81358933,0x81358934, +0x81358935,0x81358936,0x81358937,0x81358938,0x81358939,0x81358a30,0x81358a31, +0x81358a32,0x81358a33,0x81358a34,0x81358a35,0x81358a36,0x81358a37,0x81358a38, +0x81358a39,0x81358b30,0x81358b31,0x81358b32,0x81358b33,0x81358b34,0x81358b35, +0x81358b36,0x81358b37,0x81358b38,0x81358b39,0x81358c30,0x81358c31,0x81358c32, +0x81358c33,0x81358c34,0x81358c35,0x81358c36,0x81358c37,0x81358c38,0x81358c39, +0x81358d30,0x81358d31,0x81358d32,0x81358d33,0x81358d34,0x81358d35,0x81358d36, +0x81358d37,0x81358d38,0x81358d39,0x81358e30,0x81358e31,0x81358e32,0x81358e33, +0x81358e34,0x81358e35,0x81358e36,0x81358e37,0x81358e38,0x81358e39,0x81358f30, +0x81358f31,0x81358f32,0x81358f33,0x81358f34,0x81358f35,0x81358f36,0x81358f37, +0x81358f38,0x81358f39,0x81359030,0x81359031,0x81359032,0x81359033,0x81359034, +0x81359035,0x81359036,0x81359037,0x81359038,0x81359039,0x81359130,0x81359131, +0x81359132,0x81359133,0x81359134,0x81359135,0x81359136,0x81359137,0x81359138, +0x81359139,0x81359230,0x81359231,0x81359232,0x81359233,0x81359234,0x81359235, +0x81359236,0x81359237,0x81359238,0x81359239,0x81359330,0x81359331,0x81359332, +0x81359333,0x81359334,0x81359335,0x81359336,0x81359337,0x81359338,0x81359339, +0x81359430,0x81359431,0x81359432,0x81359433,0x81359434,0x81359435,0x81359436, +0x81359437,0x81359438,0x81359439,0x81359530,0x81359531,0x81359532,0x81359533, +0x81359534,0x81359535,0x81359536,0x81359537,0x81359538,0x81359539,0x81359630, +0x81359631,0x81359632,0x81359633,0x81359634,0x81359635,0x81359636,0x81359637, +0x81359638,0x81359639,0x81359730,0x81359731,0x81359732,0x81359733,0x81359734, +0x81359735,0x81359736,0x81359737,0x81359738,0x81359739,0x81359830,0x81359831, +0x81359832,0x81359833,0x81359834,0x81359835,0x81359836,0x81359837,0x81359838, +0x81359839,0x81359930,0x81359931,0x81359932,0x81359933,0x81359934,0x81359935, +0x81359936,0x81359937,0x81359938,0x81359939,0x81359a30,0x81359a31,0x81359a32, +0x81359a33,0x81359a34,0x81359a35,0x81359a36,0x81359a37,0x81359a38,0x81359a39, +0x81359b30,0x81359b31,0x81359b32,0x81359b33,0x81359b34,0x81359b35,0x81359b36, +0x81359b37,0x81359b38,0x81359b39,0x81359c30,0x81359c31,0x81359c32,0x81359c33, +0x81359c34,0x81359c35,0x81359c36,0x81359c37,0x81359c38,0x81359c39,0x81359d30, +0x81359d31,0x81359d32,0x81359d33,0x81359d34,0x81359d35,0x81359d36,0x81359d37, +0x81359d38,0x81359d39,0x81359e30,0x81359e31,0x81359e32,0x81359e33,0x81359e34, +0x81359e35,0x81359e36,0x81359e37,0x81359e38,0x81359e39,0x81359f30,0x81359f31, +0x81359f32,0x81359f33,0x81359f34,0x81359f35,0x81359f36,0x81359f37,0x81359f38, +0x81359f39,0x8135a030,0x8135a031,0x8135a032,0x8135a033,0x8135a034,0x8135a035, +0x8135a036,0x8135a037,0x8135a038,0x8135a039,0x8135a130,0x8135a131,0x8135a132, +0x8135a133,0x8135a134,0x8135a135,0x8135a136,0x8135a137,0x8135a138,0x8135a139, +0x8135a230,0x8135a231,0x8135a232,0x8135a233,0x8135a234,0x8135a235,0x8135a236, +0x8135a237,0x8135a238,0x8135a239,0x8135a330,0x8135a331,0x8135a332,0x8135a333, +0x8135a334,0x8135a335,0x8135a336,0x8135a337,0x8135a338,0x8135a339,0x8135a430, +0x8135a431,0x8135a432,0x8135a433,0x8135a434,0x8135a435,0x8135a436,0x8135a437, +0x8135a438,0x8135a439,0x8135a530,0x8135a531,0x8135a532,0x8135a533,0x8135a534, +0x8135a535,0x8135a536,0x8135a537,0x8135a538,0x8135a539,0x8135a630,0x8135a631, +0x8135a632,0x8135a633,0x8135a634,0x8135a635,0x8135a636,0x8135a637,0x8135a638, +0x8135a639,0x8135a730,0x8135a731,0x8135a732,0x8135a733,0x8135a734,0x8135a735, +0x8135a736,0x8135a737,0x8135a738,0x8135a739,0x8135a830,0x8135a831,0x8135a832, +0x8135a833,0x8135a834,0x8135a835,0x8135a836,0x8135a837,0x8135a838,0x8135a839, +0x8135a930,0x8135a931,0x8135a932,0x8135a933,0x8135a934,0x8135a935,0x8135a936, +0x8135a937,0x8135a938,0x8135a939,0x8135aa30,0x8135aa31,0x8135aa32,0x8135aa33, +0x8135aa34,0x8135aa35,0x8135aa36,0x8135aa37,0x8135aa38,0x8135aa39,0x8135ab30, +0x8135ab31,0x8135ab32,0x8135ab33,0x8135ab34,0x8135ab35,0x8135ab36,0x8135ab37, +0x8135ab38,0x8135ab39,0x8135ac30,0x8135ac31,0x8135ac32,0x8135ac33,0x8135ac34, +0x8135ac35,0x8135ac36,0x8135ac37,0x8135ac38,0x8135ac39,0x8135ad30,0x8135ad31, +0x8135ad32,0x8135ad33,0x8135ad34,0x8135ad35,0x8135ad36,0x8135ad37,0x8135ad38, +0x8135ad39,0x8135ae30,0x8135ae31,0x8135ae32,0x8135ae33,0x8135ae34,0x8135ae35, +0x8135ae36,0x8135ae37,0x8135ae38,0x8135ae39,0x8135af30,0x8135af31,0x8135af32, +0x8135af33,0x8135af34,0x8135af35,0x8135af36,0x8135af37,0x8135af38,0x8135af39, +0x8135b030,0x8135b031,0x8135b032,0x8135b033,0x8135b034,0x8135b035,0x8135b036, +0x8135b037,0x8135b038,0x8135b039,0x8135b130,0x8135b131,0x8135b132,0x8135b133, +0x8135b134,0x8135b135,0x8135b136,0x8135b137,0x8135b138,0x8135b139,0x8135b230, +0x8135b231,0x8135b232,0x8135b233,0x8135b234,0x8135b235,0x8135b236,0x8135b237, +0x8135b238,0x8135b239,0x8135b330,0x8135b331,0x8135b332,0x8135b333,0x8135b334, +0x8135b335,0x8135b336,0x8135b337,0x8135b338,0x8135b339,0x8135b430,0x8135b431, +0x8135b432,0x8135b433,0x8135b434,0x8135b435,0x8135b436,0x8135b437,0x8135b438, +0x8135b439,0x8135b530,0x8135b531,0x8135b532,0x8135b533,0x8135b534,0x8135b535, +0x8135b536,0x8135b537,0x8135b538,0x8135b539,0x8135b630,0x8135b631,0x8135b632, +0x8135b633,0x8135b634,0x8135b635,0x8135b636,0x8135b637,0x8135b638,0x8135b639, +0x8135b730,0x8135b731,0x8135b732,0x8135b733,0x8135b734,0x8135b735,0x8135b736, +0x8135b737,0x8135b738,0x8135b739,0x8135b830,0x8135b831,0x8135b832,0x8135b833, +0x8135b834,0x8135b835,0x8135b836,0x8135b837,0x8135b838,0x8135b839,0x8135b930, +0x8135b931,0x8135b932,0x8135b933,0x8135b934,0x8135b935,0x8135b936,0x8135b937, +0x8135b938,0x8135b939,0x8135ba30,0x8135ba31,0x8135ba32,0x8135ba33,0x8135ba34, +0x8135ba35,0x8135ba36,0x8135ba37,0x8135ba38,0x8135ba39,0x8135bb30,0x8135bb31, +0x8135bb32,0x8135bb33,0x8135bb34,0x8135bb35,0x8135bb36,0x8135bb37,0x8135bb38, +0x8135bb39,0x8135bc30,0x8135bc31,0x8135bc32,0x8135bc33,0x8135bc34,0x8135bc35, +0x8135bc36,0x8135bc37,0x8135bc38,0x8135bc39,0x8135bd30,0x8135bd31,0x8135bd32, +0x8135bd33,0x8135bd34,0x8135bd35,0x8135bd36,0x8135bd37,0x8135bd38,0x8135bd39, +0x8135be30,0x8135be31,0x8135be32,0x8135be33,0x8135be34,0x8135be35,0x8135be36, +0x8135be37,0x8135be38,0x8135be39,0x8135bf30,0x8135bf31,0x8135bf32,0x8135bf33, +0x8135bf34,0x8135bf35,0x8135bf36,0x8135bf37,0x8135bf38,0x8135bf39,0x8135c030, +0x8135c031,0x8135c032,0x8135c033,0x8135c034,0x8135c035,0x8135c036,0x8135c037, +0x8135c038,0x8135c039,0x8135c130,0x8135c131,0x8135c132,0x8135c133,0x8135c134, +0x8135c135,0x8135c136,0x8135c137,0x8135c138,0x8135c139,0x8135c230,0x8135c231, +0x8135c232,0x8135c233,0x8135c234,0x8135c235,0x8135c236,0x8135c237,0x8135c238, +0x8135c239,0x8135c330,0x8135c331,0x8135c332,0x8135c333,0x8135c334,0x8135c335, +0x8135c336,0x8135c337,0x8135c338,0x8135c339,0x8135c430,0x8135c431,0x8135c432, +0x8135c433,0x8135c434,0x8135c435,0x8135c436,0x8135c437,0x8135c438,0x8135c439, +0x8135c530,0x8135c531,0x8135c532,0x8135c533,0x8135c534,0x8135c535,0x8135c536, +0x8135c537,0x8135c538,0x8135c539,0x8135c630,0x8135c631,0x8135c632,0x8135c633, +0x8135c634,0x8135c635,0x8135c636,0x8135c637,0x8135c638,0x8135c639,0x8135c730, +0x8135c731,0x8135c732,0x8135c733,0x8135c734,0x8135c735,0x8135c736,0x8135c737, +0x8135c738,0x8135c739,0x8135c830,0x8135c831,0x8135c832,0x8135c833,0x8135c834, +0x8135c835,0x8135c836,0x8135c837,0x8135c838,0x8135c839,0x8135c930,0x8135c931, +0x8135c932,0x8135c933,0x8135c934,0x8135c935,0x8135c936,0x8135c937,0x8135c938, +0x8135c939,0x8135ca30,0x8135ca31,0x8135ca32,0x8135ca33,0x8135ca34,0x8135ca35, +0x8135ca36,0x8135ca37,0x8135ca38,0x8135ca39,0x8135cb30,0x8135cb31,0x8135cb32, +0x8135cb33,0x8135cb34,0x8135cb35,0x8135cb36,0x8135cb37,0x8135cb38,0x8135cb39, +0x8135cc30,0x8135cc31,0x8135cc32,0x8135cc33,0x8135cc34,0x8135cc35,0x8135cc36, +0x8135cc37,0x8135cc38,0x8135cc39,0x8135cd30,0x8135cd31,0x8135cd32,0x8135cd33, +0x8135cd34,0x8135cd35,0x8135cd36,0x8135cd37,0x8135cd38,0x8135cd39,0x8135ce30, +0x8135ce31,0x8135ce32,0x8135ce33,0x8135ce34,0x8135ce35,0x8135ce36,0x8135ce37, +0x8135ce38,0x8135ce39,0x8135cf30,0x8135cf31,0x8135cf32,0x8135cf33,0x8135cf34, +0x8135cf35,0x8135cf36,0x8135cf37,0x8135cf38,0x8135cf39,0x8135d030,0x8135d031, +0x8135d032,0x8135d033,0x8135d034,0x8135d035,0x8135d036,0x8135d037,0x8135d038, +0x8135d039,0x8135d130,0x8135d131,0x8135d132,0x8135d133,0x8135d134,0x8135d135, +0x8135d136,0x8135d137,0x8135d138,0x8135d139,0x8135d230,0x8135d231,0x8135d232, +0x8135d233,0x8135d234,0x8135d235,0x8135d236,0x8135d237,0x8135d238,0x8135d239, +0x8135d330,0x8135d331,0x8135d332,0x8135d333,0x8135d334,0x8135d335,0x8135d336, +0x8135d337,0x8135d338,0x8135d339,0x8135d430,0x8135d431,0x8135d432,0x8135d433, +0x8135d434,0x8135d435,0x8135d436,0x8135d437,0x8135d438,0x8135d439,0x8135d530, +0x8135d531,0x8135d532,0x8135d533,0x8135d534,0x8135d535,0x8135d536,0x8135d537, +0x8135d538,0x8135d539,0x8135d630,0x8135d631,0x8135d632,0x8135d633,0x8135d634, +0x8135d635,0x8135d636,0x8135d637,0x8135d638,0x8135d639,0x8135d730,0x8135d731, +0x8135d732,0x8135d733,0x8135d734,0x8135d735,0x8135d736,0x8135d737,0x8135d738, +0x8135d739,0x8135d830,0x8135d831,0x8135d832,0x8135d833,0x8135d834,0x8135d835, +0x8135d836,0x8135d837,0x8135d838,0x8135d839,0x8135d930,0x8135d931,0x8135d932, +0x8135d933,0x8135d934,0x8135d935,0x8135d936,0x8135d937,0x8135d938,0x8135d939, +0x8135da30,0x8135da31,0x8135da32,0x8135da33,0x8135da34,0x8135da35,0x8135da36, +0x8135da37,0x8135da38,0x8135da39,0x8135db30,0x8135db31,0x8135db32,0x8135db33, +0x8135db34,0x8135db35,0x8135db36,0x8135db37,0x8135db38,0x8135db39,0x8135dc30, +0x8135dc31,0x8135dc32,0x8135dc33,0x8135dc34,0x8135dc35,0x8135dc36,0x8135dc37, +0x8135dc38,0x8135dc39,0x8135dd30,0x8135dd31,0x8135dd32,0x8135dd33,0x8135dd34, +0x8135dd35,0x8135dd36,0x8135dd37,0x8135dd38,0x8135dd39,0x8135de30,0x8135de31, +0x8135de32,0x8135de33,0x8135de34,0x8135de35,0x8135de36,0x8135de37,0x8135de38, +0x8135de39,0x8135df30,0x8135df31,0x8135df32,0x8135df33,0x8135df34,0x8135df35, +0x8135df36,0x8135df37,0x8135df38,0x8135df39,0x8135e030,0x8135e031,0x8135e032, +0x8135e033,0x8135e034,0x8135e035,0x8135e036,0x8135e037,0x8135e038,0x8135e039, +0x8135e130,0x8135e131,0x8135e132,0x8135e133,0x8135e134,0x8135e135,0x8135e136, +0x8135e137,0x8135e138,0x8135e139,0x8135e230,0x8135e231,0x8135e232,0x8135e233, +0x8135e234,0x8135e235,0x8135e236,0x8135e237,0x8135e238,0x8135e239,0x8135e330, +0x8135e331,0x8135e332,0x8135e333,0x8135e334,0x8135e335,0x8135e336,0x8135e337, +0x8135e338,0x8135e339,0x8135e430,0x8135e431,0x8135e432,0x8135e433,0x8135e434, +0x8135e435,0x8135e436,0x8135e437,0x8135e438,0x8135e439,0x8135e530,0x8135e531, +0x8135e532,0x8135e533,0x8135e534,0x8135e535,0x8135e536,0x8135e537,0x8135e538, +0x8135e539,0x8135e630,0x8135e631,0x8135e632,0x8135e633,0x8135e634,0x8135e635, +0x8135e636,0x8135e637,0x8135e638,0x8135e639,0x8135e730,0x8135e731,0x8135e732, +0x8135e733,0x8135e734,0x8135e735,0x8135e736,0x8135e737,0x8135e738,0x8135e739, +0x8135e830,0x8135e831,0x8135e832,0x8135e833,0x8135e834,0x8135e835,0x8135e836, +0x8135e837,0x8135e838,0x8135e839,0x8135e930,0x8135e931,0x8135e932,0x8135e933, +0x8135e934,0x8135e935,0x8135e936,0x8135e937,0x8135e938,0x8135e939,0x8135ea30, +0x8135ea31,0x8135ea32,0x8135ea33,0x8135ea34,0x8135ea35,0x8135ea36,0x8135ea37, +0x8135ea38,0x8135ea39,0x8135eb30,0x8135eb31,0x8135eb32,0x8135eb33,0x8135eb34, +0x8135eb35,0x8135eb36,0x8135eb37,0x8135eb38,0x8135eb39,0x8135ec30,0x8135ec31, +0x8135ec32,0x8135ec33,0x8135ec34,0x8135ec35,0x8135ec36,0x8135ec37,0x8135ec38, +0x8135ec39,0x8135ed30,0x8135ed31,0x8135ed32,0x8135ed33,0x8135ed34,0x8135ed35, +0x8135ed36,0x8135ed37,0x8135ed38,0x8135ed39,0x8135ee30,0x8135ee31,0x8135ee32, +0x8135ee33,0x8135ee34,0x8135ee35,0x8135ee36,0x8135ee37,0x8135ee38,0x8135ee39, +0x8135ef30,0x8135ef31,0x8135ef32,0x8135ef33,0x8135ef34,0x8135ef35,0x8135ef36, +0x8135ef37,0x8135ef38,0x8135ef39,0x8135f030,0x8135f031,0x8135f032,0x8135f033, +0x8135f034,0x8135f035,0x8135f036,0x8135f037,0x8135f038,0x8135f039,0x8135f130, +0x8135f131,0x8135f132,0x8135f133,0x8135f134,0x8135f135,0x8135f136,0x8135f137, +0x8135f138,0x8135f139,0x8135f230,0x8135f231,0x8135f232,0x8135f233,0x8135f234, +0x8135f235,0x8135f236,0x8135f237,0x8135f238,0x8135f239,0x8135f330,0x8135f331, +0x8135f332,0x8135f333,0x8135f334,0x8135f335,0x8135f336,0x8135f337,0x8135f338, +0x8135f339,0x8135f430,0x8135f431,0x8135f432,0x8135f433,0x8135f434,0x8135f435, +0x8135f436,0x8135f437,0x8135f438,0x8135f439,0x8135f530,0x8135f531,0x8135f532, +0x8135f533,0x8135f534,0x8135f535,0x8135f536,0x8135f537,0x8135f538,0x8135f539, +0x8135f630,0x8135f631,0x8135f632,0x8135f633,0x8135f634,0x8135f635,0x8135f636, +0x8135f637,0x8135f638,0x8135f639,0x8135f730,0x8135f731,0x8135f732,0x8135f733, +0x8135f734,0x8135f735,0x8135f736,0x8135f737,0x8135f738,0x8135f739,0x8135f830, +0x8135f831,0x8135f832,0x8135f833,0x8135f834,0x8135f835,0x8135f836,0x8135f837, +0x8135f838,0x8135f839,0x8135f930,0x8135f931,0x8135f932,0x8135f933,0x8135f934, +0x8135f935,0x8135f936,0x8135f937,0x8135f938,0x8135f939,0x8135fa30,0x8135fa31, +0x8135fa32,0x8135fa33,0x8135fa34,0x8135fa35,0x8135fa36,0x8135fa37,0x8135fa38, +0x8135fa39,0x8135fb30,0x8135fb31,0x8135fb32,0x8135fb33,0x8135fb34,0x8135fb35, +0x8135fb36,0x8135fb37,0x8135fb38,0x8135fb39,0x8135fc30,0x8135fc31,0x8135fc32, +0x8135fc33,0x8135fc34,0x8135fc35,0x8135fc36,0x8135fc37,0x8135fc38,0x8135fc39, +0x8135fd30,0x8135fd31,0x8135fd32,0x8135fd33,0x8135fd34,0x8135fd35,0x8135fd36, +0x8135fd37,0x8135fd38,0x8135fd39,0x8135fe30,0x8135fe31,0x8135fe32,0x8135fe33, +0x8135fe34,0x8135fe35,0x8135fe36,0x8135fe37,0x8135fe38,0x8135fe39,0x81368130, +0x81368131,0x81368132,0x81368133,0x81368134,0x81368135,0x81368136,0x81368137, +0x81368138,0x81368139,0x81368230,0x81368231,0x81368232,0x81368233,0x81368234, +0x81368235,0x81368236,0x81368237,0x81368238,0x81368239,0x81368330,0x81368331, +0x81368332,0x81368333,0x81368334,0x81368335,0x81368336,0x81368337,0x81368338, +0x81368339,0x81368430,0x81368431,0x81368432,0x81368433,0x81368434,0x81368435, +0x81368436,0x81368437,0x81368438,0x81368439,0x81368530,0x81368531,0x81368532, +0x81368533,0x81368534,0x81368535,0x81368536,0x81368537,0x81368538,0x81368539, +0x81368630,0x81368631,0x81368632,0x81368633,0x81368634,0x81368635,0x81368636, +0x81368637,0x81368638,0x81368639,0x81368730,0x81368731,0x81368732,0x81368733, +0x81368734,0x81368735,0x81368736,0x81368737,0x81368738,0x81368739,0x81368830, +0x81368831,0x81368832,0x81368833,0x81368834,0x81368835,0x81368836,0x81368837, +0x81368838,0x81368839,0x81368930,0x81368931,0x81368932,0x81368933,0x81368934, +0x81368935,0x81368936,0x81368937,0x81368938,0x81368939,0x81368a30,0x81368a31, +0x81368a32,0x81368a33,0x81368a34,0x81368a35,0x81368a36,0x81368a37,0x81368a38, +0x81368a39,0x81368b30,0x81368b31,0x81368b32,0x81368b33,0x81368b34,0x81368b35, +0x81368b36,0x81368b37,0x81368b38,0x81368b39,0x81368c30,0x81368c31,0x81368c32, +0x81368c33,0x81368c34,0x81368c35,0x81368c36,0x81368c37,0x81368c38,0x81368c39, +0x81368d30,0x81368d31,0x81368d32,0x81368d33,0x81368d34,0x81368d35,0x81368d36, +0x81368d37,0x81368d38,0x81368d39,0x81368e30,0x81368e31,0x81368e32,0x81368e33, +0x81368e34,0x81368e35,0x81368e36,0x81368e37,0x81368e38,0x81368e39,0x81368f30, +0x81368f31,0x81368f32,0x81368f33,0x81368f34,0x81368f35,0x81368f36,0x81368f37, +0x81368f38,0x81368f39,0x81369030,0x81369031,0x81369032,0x81369033,0x81369034, +0x81369035,0x81369036,0x81369037,0x81369038,0x81369039,0x81369130,0x81369131, +0x81369132,0x81369133,0x81369134,0x81369135,0x81369136,0x81369137,0x81369138, +0x81369139,0x81369230,0x81369231,0x81369232,0x81369233,0x81369234,0x81369235, +0x81369236,0x81369237,0x81369238,0x81369239,0x81369330,0x81369331,0x81369332, +0x81369333,0x81369334,0x81369335,0x81369336,0x81369337,0x81369338,0x81369339, +0x81369430,0x81369431,0x81369432,0x81369433,0x81369434,0x81369435,0x81369436, +0x81369437,0x81369438,0x81369439,0x81369530,0x81369531,0x81369532,0x81369533, +0x81369534,0x81369535,0x81369536,0x81369537,0x81369538,0x81369539,0x81369630, +0x81369631,0x81369632,0x81369633,0x81369634,0x81369635,0x81369636,0x81369637, +0x81369638,0x81369639,0x81369730,0x81369731,0x81369732,0x81369733,0x81369734, +0x81369735,0x81369736,0x81369737,0x81369738,0x81369739,0x81369830,0x81369831, +0x81369832,0x81369833,0x81369834,0x81369835,0x81369836,0x81369837,0x81369838, +0x81369839,0x81369930,0x81369931,0x81369932,0x81369933,0x81369934,0x81369935, +0x81369936,0x81369937,0x81369938,0x81369939,0x81369a30,0x81369a31,0x81369a32, +0x81369a33,0x81369a34,0x81369a35,0x81369a36,0x81369a37,0x81369a38,0x81369a39, +0x81369b30,0x81369b31,0x81369b32,0x81369b33,0x81369b34,0x81369b35,0x81369b36, +0x81369b37,0x81369b38,0x81369b39,0x81369c30,0x81369c31,0x81369c32,0x81369c33, +0x81369c34,0x81369c35,0x81369c36,0x81369c37,0x81369c38,0x81369c39,0x81369d30, +0x81369d31,0x81369d32,0x81369d33,0x81369d34,0x81369d35,0x81369d36,0x81369d37, +0x81369d38,0x81369d39,0x81369e30,0x81369e31,0x81369e32,0x81369e33,0x81369e34, +0x81369e35,0x81369e36,0x81369e37,0x81369e38,0x81369e39,0x81369f30,0x81369f31, +0x81369f32,0x81369f33,0x81369f34,0x81369f35,0x81369f36,0x81369f37,0x81369f38, +0x81369f39,0x8136a030,0x8136a031,0x8136a032,0x8136a033,0x8136a034,0x8136a035, +0x8136a036,0x8136a037,0x8136a038,0x8136a039,0x8136a130,0x8136a131,0x8136a132, +0x8136a133,0x8136a134,0x8136a135,0x8136a136,0x8136a137,0x8136a138,0x8136a139, +0x8136a230,0x8136a231,0x8136a232,0x8136a233,0x8136a234,0x8136a235,0x8136a236, +0x8136a237,0x8136a238,0x8136a239,0x8136a330,0x8136a331,0x8136a332,0x8136a333, +0x8136a334,0x8136a335,0x8136a336,0x8136a337,0x8136a338,0x8136a339,0x8136a430, +0x8136a431,0x8136a432,0x8136a433,0x8136a434,0x8136a435,0x8136a436,0x8136a437, +0x8136a438,0x8136a439,0x8136a530,0x8136a531,0xa95c,0x8136a532,0x8136a533, +0xa843,0xa1aa,0xa844,0xa1ac,0x8136a534,0xa1ae,0xa1af,0x8136a535,0x8136a536, +0xa1b0,0xa1b1,0x8136a537,0x8136a538,0x8136a539,0x8136a630,0x8136a631,0x8136a632, +0x8136a633,0xa845,0xa1ad,0x8136a634,0x8136a635,0x8136a636,0x8136a637,0x8136a638, +0x8136a639,0x8136a730,0x8136a731,0x8136a732,0xa1eb,0x8136a733,0xa1e4,0xa1e5, +0x8136a734,0xa846,0x8136a735,0x8136a736,0x8136a737,0x8136a738,0x8136a739, +0xa1f9,0x8136a830,0x8136a831,0x8136a832,0x8136a833,0x8136a834,0x8136a835, +0x8136a836,0x8136a837,0x8136a838,0x8136a839,0x8136a930,0x8136a931,0x8136a932, +0x8136a933,0x8136a934,0x8136a935,0x8136a936,0x8136a937,0x8136a938,0x8136a939, +0x8136aa30,0x8136aa31,0x8136aa32,0x8136aa33,0x8136aa34,0x8136aa35,0x8136aa36, +0x8136aa37,0x8136aa38,0x8136aa39,0x8136ab30,0x8136ab31,0x8136ab32,0x8136ab33, +0x8136ab34,0x8136ab35,0x8136ab36,0x8136ab37,0x8136ab38,0x8136ab39,0x8136ac30, +0x8136ac31,0x8136ac32,0x8136ac33,0x8136ac34,0x8136ac35,0x8136ac36,0x8136ac37, +0x8136ac38,0x8136ac39,0x8136ad30,0x8136ad31,0x8136ad32,0x8136ad33,0x8136ad34, +0x8136ad35,0x8136ad36,0x8136ad37,0x8136ad38,0x8136ad39,0x8136ae30,0x8136ae31, +0x8136ae32,0x8136ae33,0x8136ae34,0x8136ae35,0x8136ae36,0x8136ae37,0x8136ae38, +0x8136ae39,0x8136af30,0x8136af31,0x8136af32,0x8136af33,0x8136af34,0x8136af35, +0x8136af36,0x8136af37,0x8136af38,0x8136af39,0x8136b030,0x8136b031,0x8136b032, +0x8136b033,0x8136b034,0x8136b035,0x8136b036,0x8136b037,0x8136b038,0x8136b039, +0x8136b130,0x8136b131,0x8136b132,0x8136b133,0x8136b134,0x8136b135,0x8136b136, +0x8136b137,0x8136b138,0x8136b139,0x8136b230,0x8136b231,0x8136b232,0x8136b233, +0x8136b234,0x8136b235,0x8136b236,0x8136b237,0x8136b238,0x8136b239,0x8136b330, +0x8136b331,0xa2e3,0x8136b332,0x8136b333,0x8136b334,0x8136b335,0x8136b336, +0x8136b337,0x8136b338,0x8136b339,0x8136b430,0x8136b431,0x8136b432,0x8136b433, +0x8136b434,0x8136b435,0x8136b436,0x8136b437,0x8136b438,0x8136b439,0x8136b530, +0x8136b531,0x8136b532,0x8136b533,0x8136b534,0x8136b535,0x8136b536,0x8136b537, +0x8136b538,0x8136b539,0x8136b630,0x8136b631,0x8136b632,0x8136b633,0x8136b634, +0x8136b635,0x8136b636,0x8136b637,0x8136b638,0x8136b639,0x8136b730,0x8136b731, +0x8136b732,0x8136b733,0x8136b734,0x8136b735,0x8136b736,0x8136b737,0x8136b738, +0x8136b739,0x8136b830,0x8136b831,0x8136b832,0x8136b833,0x8136b834,0x8136b835, +0x8136b836,0x8136b837,0x8136b838,0x8136b839,0x8136b930,0x8136b931,0x8136b932, +0x8136b933,0x8136b934,0x8136b935,0x8136b936,0x8136b937,0x8136b938,0x8136b939, +0x8136ba30,0x8136ba31,0x8136ba32,0x8136ba33,0x8136ba34,0x8136ba35,0x8136ba36, +0x8136ba37,0x8136ba38,0x8136ba39,0x8136bb30,0x8136bb31,0x8136bb32,0x8136bb33, +0x8136bb34,0x8136bb35,0x8136bb36,0x8136bb37,0xa1e6,0x8136bb38,0xa847,0x8136bb39, +0x8136bc30,0x8136bc31,0xa848,0x8136bc32,0x8136bc33,0x8136bc34,0x8136bc35, +0x8136bc36,0x8136bc37,0x8136bc38,0x8136bc39,0x8136bd30,0x8136bd31,0x8136bd32, +0x8136bd33,0xa1ed,0x8136bd34,0x8136bd35,0x8136bd36,0x8136bd37,0x8136bd38, +0x8136bd39,0x8136be30,0x8136be31,0x8136be32,0x8136be33,0xa959,0x8136be34, +0x8136be35,0x8136be36,0x8136be37,0x8136be38,0x8136be39,0x8136bf30,0x8136bf31, +0x8136bf32,0x8136bf33,0x8136bf34,0x8136bf35,0x8136bf36,0x8136bf37,0x8136bf38, +0x8136bf39,0x8136c030,0x8136c031,0x8136c032,0x8136c033,0x8136c034,0x8136c035, +0x8136c036,0x8136c037,0x8136c038,0x8136c039,0x8136c130,0x8136c131,0x8136c132, +0x8136c133,0x8136c134,0x8136c135,0x8136c136,0x8136c137,0x8136c138,0x8136c139, +0x8136c230,0x8136c231,0x8136c232,0x8136c233,0x8136c234,0x8136c235,0x8136c236, +0x8136c237,0x8136c238,0x8136c239,0x8136c330,0x8136c331,0x8136c332,0x8136c333, +0x8136c334,0x8136c335,0x8136c336,0x8136c337,0x8136c338,0x8136c339,0x8136c430, +0x8136c431,0x8136c432,0x8136c433,0x8136c434,0x8136c435,0xa2f1,0xa2f2,0xa2f3, +0xa2f4,0xa2f5,0xa2f6,0xa2f7,0xa2f8,0xa2f9,0xa2fa,0xa2fb,0xa2fc,0x8136c436, +0x8136c437,0x8136c438,0x8136c439,0xa2a1,0xa2a2,0xa2a3,0xa2a4,0xa2a5,0xa2a6, +0xa2a7,0xa2a8,0xa2a9,0xa2aa,0x8136c530,0x8136c531,0x8136c532,0x8136c533, +0x8136c534,0x8136c535,0x8136c536,0x8136c537,0x8136c538,0x8136c539,0x8136c630, +0x8136c631,0x8136c632,0x8136c633,0x8136c634,0x8136c635,0x8136c636,0x8136c637, +0x8136c638,0x8136c639,0x8136c730,0x8136c731,0xa1fb,0xa1fc,0xa1fa,0xa1fd, +0x8136c732,0x8136c733,0xa849,0xa84a,0xa84b,0xa84c,0x8136c734,0x8136c735, +0x8136c736,0x8136c737,0x8136c738,0x8136c739,0x8136c830,0x8136c831,0x8136c832, +0x8136c833,0x8136c834,0x8136c835,0x8136c836,0x8136c837,0x8136c838,0x8136c839, +0x8136c930,0x8136c931,0x8136c932,0x8136c933,0x8136c934,0x8136c935,0x8136c936, +0x8136c937,0x8136c938,0x8136c939,0x8136ca30,0x8136ca31,0x8136ca32,0x8136ca33, +0x8136ca34,0x8136ca35,0x8136ca36,0x8136ca37,0x8136ca38,0x8136ca39,0x8136cb30, +0x8136cb31,0x8136cb32,0x8136cb33,0x8136cb34,0x8136cb35,0x8136cb36,0x8136cb37, +0x8136cb38,0x8136cb39,0x8136cc30,0x8136cc31,0x8136cc32,0x8136cc33,0x8136cc34, +0x8136cc35,0x8136cc36,0x8136cc37,0x8136cc38,0x8136cc39,0x8136cd30,0x8136cd31, +0x8136cd32,0x8136cd33,0x8136cd34,0x8136cd35,0x8136cd36,0x8136cd37,0x8136cd38, +0x8136cd39,0x8136ce30,0x8136ce31,0x8136ce32,0x8136ce33,0x8136ce34,0x8136ce35, +0x8136ce36,0x8136ce37,0x8136ce38,0x8136ce39,0x8136cf30,0x8136cf31,0x8136cf32, +0x8136cf33,0x8136cf34,0x8136cf35,0x8136cf36,0x8136cf37,0x8136cf38,0x8136cf39, +0x8136d030,0x8136d031,0x8136d032,0x8136d033,0x8136d034,0x8136d035,0x8136d036, +0x8136d037,0x8136d038,0x8136d039,0x8136d130,0x8136d131,0x8136d132,0x8136d133, +0x8136d134,0x8136d135,0x8136d136,0x8136d137,0x8136d138,0x8136d139,0x8136d230, +0x8136d231,0x8136d232,0x8136d233,0xa1ca,0x8136d234,0x8136d235,0x8136d236, +0x8136d237,0x8136d238,0x8136d239,0xa1c7,0x8136d330,0xa1c6,0x8136d331,0x8136d332, +0x8136d333,0xa84d,0x8136d334,0x8136d335,0x8136d336,0x8136d337,0xa1cc,0x8136d338, +0x8136d339,0xa1d8,0xa1de,0xa84e,0xa1cf,0x8136d430,0x8136d431,0xa84f,0x8136d432, +0xa1ce,0x8136d433,0xa1c4,0xa1c5,0xa1c9,0xa1c8,0xa1d2,0x8136d434,0x8136d435, +0xa1d3,0x8136d436,0x8136d437,0x8136d438,0x8136d439,0x8136d530,0xa1e0,0xa1df, +0xa1c3,0xa1cb,0x8136d531,0x8136d532,0x8136d533,0x8136d534,0x8136d535,0xa1d7, +0x8136d536,0x8136d537,0x8136d538,0x8136d539,0x8136d630,0x8136d631,0x8136d632, +0x8136d633,0x8136d634,0x8136d635,0xa1d6,0x8136d636,0x8136d637,0x8136d638, +0xa1d5,0x8136d639,0x8136d730,0x8136d731,0x8136d732,0x8136d733,0xa850,0x8136d734, +0x8136d735,0x8136d736,0x8136d737,0x8136d738,0x8136d739,0x8136d830,0x8136d831, +0x8136d832,0x8136d833,0x8136d834,0x8136d835,0x8136d836,0xa1d9,0xa1d4,0x8136d837, +0x8136d838,0xa1dc,0xa1dd,0xa851,0xa852,0x8136d839,0x8136d930,0x8136d931, +0x8136d932,0x8136d933,0x8136d934,0xa1da,0xa1db,0x8136d935,0x8136d936,0x8136d937, +0x8136d938,0x8136d939,0x8136da30,0x8136da31,0x8136da32,0x8136da33,0x8136da34, +0x8136da35,0x8136da36,0x8136da37,0x8136da38,0x8136da39,0x8136db30,0x8136db31, +0x8136db32,0x8136db33,0x8136db34,0x8136db35,0x8136db36,0x8136db37,0x8136db38, +0x8136db39,0x8136dc30,0x8136dc31,0x8136dc32,0x8136dc33,0x8136dc34,0x8136dc35, +0x8136dc36,0x8136dc37,0x8136dc38,0x8136dc39,0x8136dd30,0x8136dd31,0xa892, +0x8136dd32,0x8136dd33,0x8136dd34,0xa1d1,0x8136dd35,0x8136dd36,0x8136dd37, +0x8136dd38,0x8136dd39,0x8136de30,0x8136de31,0x8136de32,0x8136de33,0x8136de34, +0x8136de35,0xa1cd,0x8136de36,0x8136de37,0x8136de38,0x8136de39,0x8136df30, +0x8136df31,0x8136df32,0x8136df33,0x8136df34,0x8136df35,0x8136df36,0x8136df37, +0x8136df38,0x8136df39,0x8136e030,0x8136e031,0x8136e032,0x8136e033,0x8136e034, +0x8136e035,0x8136e036,0x8136e037,0x8136e038,0x8136e039,0x8136e130,0xa853, +0x8136e131,0x8136e132,0x8136e133,0x8136e134,0x8136e135,0x8136e136,0x8136e137, +0x8136e138,0x8136e139,0x8136e230,0x8136e231,0x8136e232,0x8136e233,0x8136e234, +0x8136e235,0x8136e236,0x8136e237,0x8136e238,0x8136e239,0x8136e330,0x8136e331, +0x8136e332,0x8136e333,0x8136e334,0x8136e335,0x8136e336,0x8136e337,0x8136e338, +0x8136e339,0x8136e430,0x8136e431,0x8136e432,0x8136e433,0x8136e434,0x8136e435, +0x8136e436,0x8136e437,0x8136e438,0x8136e439,0x8136e530,0x8136e531,0x8136e532, +0x8136e533,0x8136e534,0x8136e535,0x8136e536,0x8136e537,0x8136e538,0x8136e539, +0x8136e630,0x8136e631,0x8136e632,0x8136e633,0x8136e634,0x8136e635,0x8136e636, +0x8136e637,0x8136e638,0x8136e639,0x8136e730,0x8136e731,0x8136e732,0x8136e733, +0x8136e734,0x8136e735,0x8136e736,0x8136e737,0x8136e738,0x8136e739,0x8136e830, +0x8136e831,0x8136e832,0x8136e833,0x8136e834,0x8136e835,0x8136e836,0x8136e837, +0x8136e838,0x8136e839,0x8136e930,0x8136e931,0x8136e932,0xa1d0,0x8136e933, +0x8136e934,0x8136e935,0x8136e936,0x8136e937,0x8136e938,0x8136e939,0x8136ea30, +0x8136ea31,0x8136ea32,0x8136ea33,0x8136ea34,0x8136ea35,0x8136ea36,0x8136ea37, +0x8136ea38,0x8136ea39,0x8136eb30,0x8136eb31,0x8136eb32,0x8136eb33,0x8136eb34, +0x8136eb35,0x8136eb36,0x8136eb37,0x8136eb38,0x8136eb39,0x8136ec30,0x8136ec31, +0x8136ec32,0x8136ec33,0x8136ec34,0x8136ec35,0x8136ec36,0x8136ec37,0x8136ec38, +0x8136ec39,0x8136ed30,0x8136ed31,0x8136ed32,0x8136ed33,0x8136ed34,0x8136ed35, +0x8136ed36,0x8136ed37,0x8136ed38,0x8136ed39,0x8136ee30,0x8136ee31,0x8136ee32, +0x8136ee33,0x8136ee34,0x8136ee35,0x8136ee36,0x8136ee37,0x8136ee38,0x8136ee39, +0x8136ef30,0x8136ef31,0x8136ef32,0x8136ef33,0x8136ef34,0x8136ef35,0x8136ef36, +0x8136ef37,0x8136ef38,0x8136ef39,0x8136f030,0x8136f031,0x8136f032,0x8136f033, +0x8136f034,0x8136f035,0x8136f036,0x8136f037,0x8136f038,0x8136f039,0x8136f130, +0x8136f131,0x8136f132,0x8136f133,0x8136f134,0x8136f135,0x8136f136,0x8136f137, +0x8136f138,0x8136f139,0x8136f230,0x8136f231,0x8136f232,0x8136f233,0x8136f234, +0x8136f235,0x8136f236,0x8136f237,0x8136f238,0x8136f239,0x8136f330,0x8136f331, +0x8136f332,0x8136f333,0x8136f334,0x8136f335,0x8136f336,0x8136f337,0x8136f338, +0x8136f339,0x8136f430,0x8136f431,0x8136f432,0x8136f433,0x8136f434,0x8136f435, +0x8136f436,0x8136f437,0x8136f438,0x8136f439,0x8136f530,0x8136f531,0x8136f532, +0x8136f533,0x8136f534,0x8136f535,0x8136f536,0x8136f537,0x8136f538,0x8136f539, +0x8136f630,0x8136f631,0x8136f632,0x8136f633,0x8136f634,0x8136f635,0x8136f636, +0x8136f637,0x8136f638,0x8136f639,0x8136f730,0x8136f731,0x8136f732,0x8136f733, +0x8136f734,0x8136f735,0x8136f736,0x8136f737,0x8136f738,0x8136f739,0x8136f830, +0x8136f831,0x8136f832,0x8136f833,0x8136f834,0x8136f835,0x8136f836,0x8136f837, +0x8136f838,0x8136f839,0x8136f930,0x8136f931,0x8136f932,0x8136f933,0x8136f934, +0x8136f935,0x8136f936,0x8136f937,0x8136f938,0x8136f939,0x8136fa30,0x8136fa31, +0x8136fa32,0x8136fa33,0x8136fa34,0x8136fa35,0x8136fa36,0x8136fa37,0x8136fa38, +0x8136fa39,0x8136fb30,0x8136fb31,0x8136fb32,0x8136fb33,0x8136fb34,0x8136fb35, +0x8136fb36,0x8136fb37,0x8136fb38,0x8136fb39,0x8136fc30,0x8136fc31,0x8136fc32, +0x8136fc33,0x8136fc34,0x8136fc35,0x8136fc36,0x8136fc37,0x8136fc38,0x8136fc39, +0x8136fd30,0x8136fd31,0x8136fd32,0x8136fd33,0x8136fd34,0x8136fd35,0x8136fd36, +0x8136fd37,0x8136fd38,0x8136fd39,0x8136fe30,0x8136fe31,0x8136fe32,0x8136fe33, +0x8136fe34,0x8136fe35,0x8136fe36,0x8136fe37,0x8136fe38,0x8136fe39,0x81378130, +0x81378131,0x81378132,0x81378133,0x81378134,0x81378135,0x81378136,0x81378137, +0x81378138,0x81378139,0x81378230,0x81378231,0x81378232,0x81378233,0x81378234, +0x81378235,0x81378236,0x81378237,0x81378238,0x81378239,0x81378330,0x81378331, +0x81378332,0x81378333,0x81378334,0x81378335,0x81378336,0x81378337,0x81378338, +0x81378339,0x81378430,0x81378431,0x81378432,0x81378433,0x81378434,0x81378435, +0x81378436,0x81378437,0x81378438,0x81378439,0x81378530,0x81378531,0x81378532, +0x81378533,0x81378534,0x81378535,0x81378536,0x81378537,0x81378538,0x81378539, +0x81378630,0x81378631,0x81378632,0x81378633,0x81378634,0x81378635,0x81378636, +0x81378637,0x81378638,0x81378639,0x81378730,0x81378731,0x81378732,0x81378733, +0x81378734,0x81378735,0x81378736,0x81378737,0x81378738,0x81378739,0x81378830, +0x81378831,0x81378832,0x81378833,0x81378834,0x81378835,0x81378836,0x81378837, +0x81378838,0x81378839,0x81378930,0x81378931,0x81378932,0x81378933,0x81378934, +0x81378935,0x81378936,0x81378937,0x81378938,0x81378939,0x81378a30,0x81378a31, +0x81378a32,0x81378a33,0x81378a34,0x81378a35,0x81378a36,0x81378a37,0x81378a38, +0x81378a39,0x81378b30,0x81378b31,0x81378b32,0x81378b33,0x81378b34,0x81378b35, +0x81378b36,0x81378b37,0x81378b38,0x81378b39,0x81378c30,0x81378c31,0x81378c32, +0x81378c33,0x81378c34,0x81378c35,0xa2d9,0xa2da,0xa2db,0xa2dc,0xa2dd,0xa2de, +0xa2df,0xa2e0,0xa2e1,0xa2e2,0x81378c36,0x81378c37,0x81378c38,0x81378c39, +0x81378d30,0x81378d31,0x81378d32,0x81378d33,0x81378d34,0x81378d35,0xa2c5, +0xa2c6,0xa2c7,0xa2c8,0xa2c9,0xa2ca,0xa2cb,0xa2cc,0xa2cd,0xa2ce,0xa2cf, +0xa2d0,0xa2d1,0xa2d2,0xa2d3,0xa2d4,0xa2d5,0xa2d6,0xa2d7,0xa2d8,0xa2b1, +0xa2b2,0xa2b3,0xa2b4,0xa2b5,0xa2b6,0xa2b7,0xa2b8,0xa2b9,0xa2ba,0xa2bb, +0xa2bc,0xa2bd,0xa2be,0xa2bf,0xa2c0,0xa2c1,0xa2c2,0xa2c3,0xa2c4,0x81378d36, +0x81378d37,0x81378d38,0x81378d39,0x81378e30,0x81378e31,0x81378e32,0x81378e33, +0x81378e34,0x81378e35,0x81378e36,0x81378e37,0x81378e38,0x81378e39,0x81378f30, +0x81378f31,0x81378f32,0x81378f33,0x81378f34,0x81378f35,0x81378f36,0x81378f37, +0x81378f38,0x81378f39,0x81379030,0x81379031,0x81379032,0x81379033,0x81379034, +0x81379035,0x81379036,0x81379037,0x81379038,0x81379039,0x81379130,0x81379131, +0x81379132,0x81379133,0x81379134,0x81379135,0x81379136,0x81379137,0x81379138, +0x81379139,0x81379230,0x81379231,0x81379232,0x81379233,0x81379234,0x81379235, +0x81379236,0x81379237,0x81379238,0x81379239,0x81379330,0x81379331,0x81379332, +0x81379333,0x81379334,0x81379335,0x81379336,0x81379337,0x81379338,0x81379339, +0x81379430,0x81379431,0x81379432,0x81379433,0x81379434,0x81379435,0x81379436, +0x81379437,0x81379438,0x81379439,0x81379530,0x81379531,0x81379532,0x81379533, +0x81379534,0x81379535,0x81379536,0x81379537,0x81379538,0x81379539,0x81379630, +0x81379631,0x81379632,0x81379633,0x81379634,0x81379635,0x81379636,0x81379637, +0x81379638,0x81379639,0x81379730,0x81379731,0x81379732,0x81379733,0x81379734, +0x81379735,0xa9a4,0xa9a5,0xa9a6,0xa9a7,0xa9a8,0xa9a9,0xa9aa,0xa9ab,0xa9ac, +0xa9ad,0xa9ae,0xa9af,0xa9b0,0xa9b1,0xa9b2,0xa9b3,0xa9b4,0xa9b5,0xa9b6, +0xa9b7,0xa9b8,0xa9b9,0xa9ba,0xa9bb,0xa9bc,0xa9bd,0xa9be,0xa9bf,0xa9c0, +0xa9c1,0xa9c2,0xa9c3,0xa9c4,0xa9c5,0xa9c6,0xa9c7,0xa9c8,0xa9c9,0xa9ca, +0xa9cb,0xa9cc,0xa9cd,0xa9ce,0xa9cf,0xa9d0,0xa9d1,0xa9d2,0xa9d3,0xa9d4, +0xa9d5,0xa9d6,0xa9d7,0xa9d8,0xa9d9,0xa9da,0xa9db,0xa9dc,0xa9dd,0xa9de, +0xa9df,0xa9e0,0xa9e1,0xa9e2,0xa9e3,0xa9e4,0xa9e5,0xa9e6,0xa9e7,0xa9e8, +0xa9e9,0xa9ea,0xa9eb,0xa9ec,0xa9ed,0xa9ee,0xa9ef,0x81379736,0x81379737, +0x81379738,0x81379739,0xa854,0xa855,0xa856,0xa857,0xa858,0xa859,0xa85a, +0xa85b,0xa85c,0xa85d,0xa85e,0xa85f,0xa860,0xa861,0xa862,0xa863,0xa864, +0xa865,0xa866,0xa867,0xa868,0xa869,0xa86a,0xa86b,0xa86c,0xa86d,0xa86e, +0xa86f,0xa870,0xa871,0xa872,0xa873,0xa874,0xa875,0xa876,0xa877,0x81379830, +0x81379831,0x81379832,0x81379833,0x81379834,0x81379835,0x81379836,0x81379837, +0x81379838,0x81379839,0x81379930,0x81379931,0x81379932,0xa878,0xa879,0xa87a, +0xa87b,0xa87c,0xa87d,0xa87e,0xa880,0xa881,0xa882,0xa883,0xa884,0xa885, +0xa886,0xa887,0x81379933,0x81379934,0x81379935,0xa888,0xa889,0xa88a,0x81379936, +0x81379937,0x81379938,0x81379939,0x81379a30,0x81379a31,0x81379a32,0x81379a33, +0x81379a34,0x81379a35,0xa1f6,0xa1f5,0x81379a36,0x81379a37,0x81379a38,0x81379a39, +0x81379b30,0x81379b31,0x81379b32,0x81379b33,0x81379b34,0x81379b35,0x81379b36, +0x81379b37,0x81379b38,0x81379b39,0x81379c30,0x81379c31,0xa1f8,0xa1f7,0x81379c32, +0x81379c33,0x81379c34,0x81379c35,0x81379c36,0x81379c37,0x81379c38,0x81379c39, +0xa88b,0xa88c,0x81379d30,0x81379d31,0x81379d32,0x81379d33,0x81379d34,0x81379d35, +0x81379d36,0x81379d37,0xa1f4,0xa1f3,0x81379d38,0x81379d39,0x81379e30,0xa1f0, +0x81379e31,0x81379e32,0xa1f2,0xa1f1,0x81379e33,0x81379e34,0x81379e35,0x81379e36, +0x81379e37,0x81379e38,0x81379e39,0x81379f30,0x81379f31,0x81379f32,0x81379f33, +0x81379f34,0x81379f35,0x81379f36,0x81379f37,0x81379f38,0x81379f39,0x8137a030, +0xa88d,0xa88e,0xa88f,0xa890,0x8137a031,0x8137a032,0x8137a033,0x8137a034, +0x8137a035,0x8137a036,0x8137a037,0x8137a038,0x8137a039,0x8137a130,0x8137a131, +0x8137a132,0x8137a133,0x8137a134,0x8137a135,0x8137a136,0x8137a137,0x8137a138, +0x8137a139,0x8137a230,0x8137a231,0x8137a232,0x8137a233,0x8137a234,0x8137a235, +0x8137a236,0x8137a237,0x8137a238,0x8137a239,0x8137a330,0x8137a331,0xa1ef, +0xa1ee,0x8137a332,0x8137a333,0xa891,0x8137a334,0x8137a335,0x8137a336,0x8137a337, +0x8137a338,0x8137a339,0x8137a430,0x8137a431,0x8137a432,0x8137a433,0x8137a434, +0x8137a435,0x8137a436,0x8137a437,0x8137a438,0x8137a439,0x8137a530,0x8137a531, +0x8137a532,0x8137a533,0x8137a534,0x8137a535,0x8137a536,0x8137a537,0x8137a538, +0x8137a539,0x8137a630,0x8137a631,0x8137a632,0x8137a633,0x8137a634,0x8137a635, +0x8137a636,0x8137a637,0x8137a638,0x8137a639,0x8137a730,0x8137a731,0x8137a732, +0x8137a733,0x8137a734,0x8137a735,0x8137a736,0x8137a737,0x8137a738,0x8137a739, +0x8137a830,0x8137a831,0x8137a832,0x8137a833,0x8137a834,0x8137a835,0x8137a836, +0x8137a837,0xa1e2,0x8137a838,0xa1e1,0x8137a839,0x8137a930,0x8137a931,0x8137a932, +0x8137a933,0x8137a934,0x8137a935,0x8137a936,0x8137a937,0x8137a938,0x8137a939, +0x8137aa30,0x8137aa31,0x8137aa32,0x8137aa33,0x8137aa34,0x8137aa35,0x8137aa36, +0x8137aa37,0x8137aa38,0x8137aa39,0x8137ab30,0x8137ab31,0x8137ab32,0x8137ab33, +0x8137ab34,0x8137ab35,0x8137ab36,0x8137ab37,0x8137ab38,0x8137ab39,0x8137ac30, +0x8137ac31,0x8137ac32,0x8137ac33,0x8137ac34,0x8137ac35,0x8137ac36,0x8137ac37, +0x8137ac38,0x8137ac39,0x8137ad30,0x8137ad31,0x8137ad32,0x8137ad33,0x8137ad34, +0x8137ad35,0x8137ad36,0x8137ad37,0x8137ad38,0x8137ad39,0x8137ae30,0x8137ae31, +0x8137ae32,0x8137ae33,0x8137ae34,0x8137ae35,0x8137ae36,0x8137ae37,0x8137ae38, +0x8137ae39,0x8137af30,0x8137af31,0x8137af32,0x8137af33,0x8137af34,0x8137af35, +0x8137af36,0x8137af37,0x8137af38,0x8137af39,0x8137b030,0x8137b031,0x8137b032, +0x8137b033,0x8137b034,0x8137b035,0x8137b036,0x8137b037,0x8137b038,0x8137b039, +0x8137b130,0x8137b131,0x8137b132,0x8137b133,0x8137b134,0x8137b135,0x8137b136, +0x8137b137,0x8137b138,0x8137b139,0x8137b230,0x8137b231,0x8137b232,0x8137b233, +0x8137b234,0x8137b235,0x8137b236,0x8137b237,0x8137b238,0x8137b239,0x8137b330, +0x8137b331,0x8137b332,0x8137b333,0x8137b334,0x8137b335,0x8137b336,0x8137b337, +0x8137b338,0x8137b339,0x8137b430,0x8137b431,0x8137b432,0x8137b433,0x8137b434, +0x8137b435,0x8137b436,0x8137b437,0x8137b438,0x8137b439,0x8137b530,0x8137b531, +0x8137b532,0x8137b533,0x8137b534,0x8137b535,0x8137b536,0x8137b537,0x8137b538, +0x8137b539,0x8137b630,0x8137b631,0x8137b632,0x8137b633,0x8137b634,0x8137b635, +0x8137b636,0x8137b637,0x8137b638,0x8137b639,0x8137b730,0x8137b731,0x8137b732, +0x8137b733,0x8137b734,0x8137b735,0x8137b736,0x8137b737,0x8137b738,0x8137b739, +0x8137b830,0x8137b831,0x8137b832,0x8137b833,0x8137b834,0x8137b835,0x8137b836, +0x8137b837,0x8137b838,0x8137b839,0x8137b930,0x8137b931,0x8137b932,0x8137b933, +0x8137b934,0x8137b935,0x8137b936,0x8137b937,0x8137b938,0x8137b939,0x8137ba30, +0x8137ba31,0x8137ba32,0x8137ba33,0x8137ba34,0x8137ba35,0x8137ba36,0x8137ba37, +0x8137ba38,0x8137ba39,0x8137bb30,0x8137bb31,0x8137bb32,0x8137bb33,0x8137bb34, +0x8137bb35,0x8137bb36,0x8137bb37,0x8137bb38,0x8137bb39,0x8137bc30,0x8137bc31, +0x8137bc32,0x8137bc33,0x8137bc34,0x8137bc35,0x8137bc36,0x8137bc37,0x8137bc38, +0x8137bc39,0x8137bd30,0x8137bd31,0x8137bd32,0x8137bd33,0x8137bd34,0x8137bd35, +0x8137bd36,0x8137bd37,0x8137bd38,0x8137bd39,0x8137be30,0x8137be31,0x8137be32, +0x8137be33,0x8137be34,0x8137be35,0x8137be36,0x8137be37,0x8137be38,0x8137be39, +0x8137bf30,0x8137bf31,0x8137bf32,0x8137bf33,0x8137bf34,0x8137bf35,0x8137bf36, +0x8137bf37,0x8137bf38,0x8137bf39,0x8137c030,0x8137c031,0x8137c032,0x8137c033, +0x8137c034,0x8137c035,0x8137c036,0x8137c037,0x8137c038,0x8137c039,0x8137c130, +0x8137c131,0x8137c132,0x8137c133,0x8137c134,0x8137c135,0x8137c136,0x8137c137, +0x8137c138,0x8137c139,0x8137c230,0x8137c231,0x8137c232,0x8137c233,0x8137c234, +0x8137c235,0x8137c236,0x8137c237,0x8137c238,0x8137c239,0x8137c330,0x8137c331, +0x8137c332,0x8137c333,0x8137c334,0x8137c335,0x8137c336,0x8137c337,0x8137c338, +0x8137c339,0x8137c430,0x8137c431,0x8137c432,0x8137c433,0x8137c434,0x8137c435, +0x8137c436,0x8137c437,0x8137c438,0x8137c439,0x8137c530,0x8137c531,0x8137c532, +0x8137c533,0x8137c534,0x8137c535,0x8137c536,0x8137c537,0x8137c538,0x8137c539, +0x8137c630,0x8137c631,0x8137c632,0x8137c633,0x8137c634,0x8137c635,0x8137c636, +0x8137c637,0x8137c638,0x8137c639,0x8137c730,0x8137c731,0x8137c732,0x8137c733, +0x8137c734,0x8137c735,0x8137c736,0x8137c737,0x8137c738,0x8137c739,0x8137c830, +0x8137c831,0x8137c832,0x8137c833,0x8137c834,0x8137c835,0x8137c836,0x8137c837, +0x8137c838,0x8137c839,0x8137c930,0x8137c931,0x8137c932,0x8137c933,0x8137c934, +0x8137c935,0x8137c936,0x8137c937,0x8137c938,0x8137c939,0x8137ca30,0x8137ca31, +0x8137ca32,0x8137ca33,0x8137ca34,0x8137ca35,0x8137ca36,0x8137ca37,0x8137ca38, +0x8137ca39,0x8137cb30,0x8137cb31,0x8137cb32,0x8137cb33,0x8137cb34,0x8137cb35, +0x8137cb36,0x8137cb37,0x8137cb38,0x8137cb39,0x8137cc30,0x8137cc31,0x8137cc32, +0x8137cc33,0x8137cc34,0x8137cc35,0x8137cc36,0x8137cc37,0x8137cc38,0x8137cc39, +0x8137cd30,0x8137cd31,0x8137cd32,0x8137cd33,0x8137cd34,0x8137cd35,0x8137cd36, +0x8137cd37,0x8137cd38,0x8137cd39,0x8137ce30,0x8137ce31,0x8137ce32,0x8137ce33, +0x8137ce34,0x8137ce35,0x8137ce36,0x8137ce37,0x8137ce38,0x8137ce39,0x8137cf30, +0x8137cf31,0x8137cf32,0x8137cf33,0x8137cf34,0x8137cf35,0x8137cf36,0x8137cf37, +0x8137cf38,0x8137cf39,0x8137d030,0x8137d031,0x8137d032,0x8137d033,0x8137d034, +0x8137d035,0x8137d036,0x8137d037,0x8137d038,0x8137d039,0x8137d130,0x8137d131, +0x8137d132,0x8137d133,0x8137d134,0x8137d135,0x8137d136,0x8137d137,0x8137d138, +0x8137d139,0x8137d230,0x8137d231,0x8137d232,0x8137d233,0x8137d234,0x8137d235, +0x8137d236,0x8137d237,0x8137d238,0x8137d239,0x8137d330,0x8137d331,0x8137d332, +0x8137d333,0x8137d334,0x8137d335,0x8137d336,0x8137d337,0x8137d338,0x8137d339, +0x8137d430,0x8137d431,0x8137d432,0x8137d433,0x8137d434,0x8137d435,0x8137d436, +0x8137d437,0x8137d438,0x8137d439,0x8137d530,0x8137d531,0x8137d532,0x8137d533, +0x8137d534,0x8137d535,0x8137d536,0x8137d537,0x8137d538,0x8137d539,0x8137d630, +0x8137d631,0x8137d632,0x8137d633,0x8137d634,0x8137d635,0x8137d636,0x8137d637, +0x8137d638,0x8137d639,0x8137d730,0x8137d731,0x8137d732,0x8137d733,0x8137d734, +0x8137d735,0x8137d736,0x8137d737,0x8137d738,0x8137d739,0x8137d830,0x8137d831, +0x8137d832,0x8137d833,0x8137d834,0x8137d835,0x8137d836,0x8137d837,0x8137d838, +0x8137d839,0x8137d930,0x8137d931,0x8137d932,0x8137d933,0x8137d934,0x8137d935, +0x8137d936,0x8137d937,0x8137d938,0x8137d939,0x8137da30,0x8137da31,0x8137da32, +0x8137da33,0x8137da34,0x8137da35,0x8137da36,0x8137da37,0x8137da38,0x8137da39, +0x8137db30,0x8137db31,0x8137db32,0x8137db33,0x8137db34,0x8137db35,0x8137db36, +0x8137db37,0x8137db38,0x8137db39,0x8137dc30,0x8137dc31,0x8137dc32,0x8137dc33, +0x8137dc34,0x8137dc35,0x8137dc36,0x8137dc37,0x8137dc38,0x8137dc39,0x8137dd30, +0x8137dd31,0x8137dd32,0x8137dd33,0x8137dd34,0x8137dd35,0x8137dd36,0x8137dd37, +0x8137dd38,0x8137dd39,0x8137de30,0x8137de31,0x8137de32,0x8137de33,0x8137de34, +0x8137de35,0x8137de36,0x8137de37,0x8137de38,0x8137de39,0x8137df30,0x8137df31, +0x8137df32,0x8137df33,0x8137df34,0x8137df35,0x8137df36,0x8137df37,0x8137df38, +0x8137df39,0x8137e030,0x8137e031,0x8137e032,0x8137e033,0x8137e034,0x8137e035, +0x8137e036,0x8137e037,0x8137e038,0x8137e039,0x8137e130,0x8137e131,0x8137e132, +0x8137e133,0x8137e134,0x8137e135,0x8137e136,0x8137e137,0x8137e138,0x8137e139, +0x8137e230,0x8137e231,0x8137e232,0x8137e233,0x8137e234,0x8137e235,0x8137e236, +0x8137e237,0x8137e238,0x8137e239,0x8137e330,0x8137e331,0x8137e332,0x8137e333, +0x8137e334,0x8137e335,0x8137e336,0x8137e337,0x8137e338,0x8137e339,0x8137e430, +0x8137e431,0x8137e432,0x8137e433,0x8137e434,0x8137e435,0x8137e436,0x8137e437, +0x8137e438,0x8137e439,0x8137e530,0x8137e531,0x8137e532,0x8137e533,0x8137e534, +0x8137e535,0x8137e536,0x8137e537,0x8137e538,0x8137e539,0x8137e630,0x8137e631, +0x8137e632,0x8137e633,0x8137e634,0x8137e635,0x8137e636,0x8137e637,0x8137e638, +0x8137e639,0x8137e730,0x8137e731,0x8137e732,0x8137e733,0x8137e734,0x8137e735, +0x8137e736,0x8137e737,0x8137e738,0x8137e739,0x8137e830,0x8137e831,0x8137e832, +0x8137e833,0x8137e834,0x8137e835,0x8137e836,0x8137e837,0x8137e838,0x8137e839, +0x8137e930,0x8137e931,0x8137e932,0x8137e933,0x8137e934,0x8137e935,0x8137e936, +0x8137e937,0x8137e938,0x8137e939,0x8137ea30,0x8137ea31,0x8137ea32,0x8137ea33, +0x8137ea34,0x8137ea35,0x8137ea36,0x8137ea37,0x8137ea38,0x8137ea39,0x8137eb30, +0x8137eb31,0x8137eb32,0x8137eb33,0x8137eb34,0x8137eb35,0x8137eb36,0x8137eb37, +0x8137eb38,0x8137eb39,0x8137ec30,0x8137ec31,0x8137ec32,0x8137ec33,0x8137ec34, +0x8137ec35,0x8137ec36,0x8137ec37,0x8137ec38,0x8137ec39,0x8137ed30,0x8137ed31, +0x8137ed32,0x8137ed33,0x8137ed34,0x8137ed35,0x8137ed36,0x8137ed37,0x8137ed38, +0x8137ed39,0x8137ee30,0x8137ee31,0x8137ee32,0x8137ee33,0x8137ee34,0x8137ee35, +0x8137ee36,0x8137ee37,0x8137ee38,0x8137ee39,0x8137ef30,0x8137ef31,0x8137ef32, +0x8137ef33,0x8137ef34,0x8137ef35,0x8137ef36,0x8137ef37,0x8137ef38,0x8137ef39, +0x8137f030,0x8137f031,0x8137f032,0x8137f033,0x8137f034,0x8137f035,0x8137f036, +0x8137f037,0x8137f038,0x8137f039,0x8137f130,0x8137f131,0x8137f132,0x8137f133, +0x8137f134,0x8137f135,0x8137f136,0x8137f137,0x8137f138,0x8137f139,0x8137f230, +0x8137f231,0x8137f232,0x8137f233,0x8137f234,0x8137f235,0x8137f236,0x8137f237, +0x8137f238,0x8137f239,0x8137f330,0x8137f331,0x8137f332,0x8137f333,0x8137f334, +0x8137f335,0x8137f336,0x8137f337,0x8137f338,0x8137f339,0x8137f430,0x8137f431, +0x8137f432,0x8137f433,0x8137f434,0x8137f435,0x8137f436,0x8137f437,0x8137f438, +0x8137f439,0x8137f530,0x8137f531,0x8137f532,0x8137f533,0x8137f534,0x8137f535, +0x8137f536,0x8137f537,0x8137f538,0x8137f539,0x8137f630,0x8137f631,0x8137f632, +0x8137f633,0x8137f634,0x8137f635,0x8137f636,0x8137f637,0x8137f638,0x8137f639, +0x8137f730,0x8137f731,0x8137f732,0x8137f733,0x8137f734,0x8137f735,0x8137f736, +0x8137f737,0x8137f738,0x8137f739,0x8137f830,0x8137f831,0x8137f832,0x8137f833, +0x8137f834,0x8137f835,0x8137f836,0x8137f837,0x8137f838,0x8137f839,0x8137f930, +0x8137f931,0x8137f932,0x8137f933,0x8137f934,0x8137f935,0x8137f936,0x8137f937, +0x8137f938,0x8137f939,0x8137fa30,0x8137fa31,0x8137fa32,0x8137fa33,0x8137fa34, +0x8137fa35,0x8137fa36,0x8137fa37,0x8137fa38,0x8137fa39,0x8137fb30,0x8137fb31, +0x8137fb32,0x8137fb33,0x8137fb34,0x8137fb35,0x8137fb36,0x8137fb37,0x8137fb38, +0x8137fb39,0x8137fc30,0x8137fc31,0x8137fc32,0x8137fc33,0x8137fc34,0x8137fc35, +0x8137fc36,0x8137fc37,0x8137fc38,0x8137fc39,0x8137fd30,0x8137fd31,0x8137fd32, +0x8137fd33,0x8137fd34,0x8137fd35,0x8137fd36,0x8137fd37,0x8137fd38,0x8137fd39, +0x8137fe30,0x8137fe31,0x8137fe32,0x8137fe33,0x8137fe34,0x8137fe35,0x8137fe36, +0x8137fe37,0x8137fe38,0x8137fe39,0x81388130,0x81388131,0x81388132,0x81388133, +0x81388134,0x81388135,0x81388136,0x81388137,0x81388138,0x81388139,0x81388230, +0x81388231,0x81388232,0x81388233,0x81388234,0x81388235,0x81388236,0x81388237, +0x81388238,0x81388239,0x81388330,0x81388331,0x81388332,0x81388333,0x81388334, +0x81388335,0x81388336,0x81388337,0x81388338,0x81388339,0x81388430,0x81388431, +0x81388432,0x81388433,0x81388434,0x81388435,0x81388436,0x81388437,0x81388438, +0x81388439,0x81388530,0x81388531,0x81388532,0x81388533,0x81388534,0x81388535, +0x81388536,0x81388537,0x81388538,0x81388539,0x81388630,0x81388631,0x81388632, +0x81388633,0x81388634,0x81388635,0x81388636,0x81388637,0x81388638,0x81388639, +0x81388730,0x81388731,0x81388732,0x81388733,0x81388734,0x81388735,0x81388736, +0x81388737,0x81388738,0x81388739,0x81388830,0x81388831,0x81388832,0x81388833, +0x81388834,0x81388835,0x81388836,0x81388837,0x81388838,0x81388839,0x81388930, +0x81388931,0x81388932,0x81388933,0x81388934,0x81388935,0x81388936,0x81388937, +0x81388938,0x81388939,0x81388a30,0x81388a31,0x81388a32,0x81388a33,0x81388a34, +0x81388a35,0x81388a36,0x81388a37,0x81388a38,0x81388a39,0x81388b30,0x81388b31, +0x81388b32,0x81388b33,0x81388b34,0x81388b35,0x81388b36,0x81388b37,0x81388b38, +0x81388b39,0x81388c30,0x81388c31,0x81388c32,0x81388c33,0x81388c34,0x81388c35, +0x81388c36,0x81388c37,0x81388c38,0x81388c39,0x81388d30,0x81388d31,0x81388d32, +0x81388d33,0x81388d34,0x81388d35,0x81388d36,0x81388d37,0x81388d38,0x81388d39, +0x81388e30,0x81388e31,0x81388e32,0x81388e33,0x81388e34,0x81388e35,0x81388e36, +0x81388e37,0x81388e38,0x81388e39,0x81388f30,0x81388f31,0x81388f32,0x81388f33, +0x81388f34,0x81388f35,0x81388f36,0x81388f37,0x81388f38,0x81388f39,0x81389030, +0x81389031,0x81389032,0x81389033,0x81389034,0x81389035,0x81389036,0x81389037, +0x81389038,0x81389039,0x81389130,0x81389131,0x81389132,0x81389133,0x81389134, +0x81389135,0x81389136,0x81389137,0x81389138,0x81389139,0x81389230,0x81389231, +0x81389232,0x81389233,0x81389234,0x81389235,0x81389236,0x81389237,0x81389238, +0x81389239,0x81389330,0x81389331,0x81389332,0x81389333,0x81389334,0x81389335, +0x81389336,0x81389337,0x81389338,0x81389339,0x81389430,0x81389431,0x81389432, +0x81389433,0x81389434,0x81389435,0x81389436,0x81389437,0x81389438,0x81389439, +0x81389530,0x81389531,0x81389532,0x81389533,0x81389534,0x81389535,0x81389536, +0x81389537,0x81389538,0x81389539,0x81389630,0x81389631,0x81389632,0x81389633, +0x81389634,0x81389635,0x81389636,0x81389637,0x81389638,0x81389639,0x81389730, +0x81389731,0x81389732,0x81389733,0x81389734,0x81389735,0x81389736,0x81389737, +0x81389738,0x81389739,0x81389830,0x81389831,0x81389832,0x81389833,0x81389834, +0x81389835,0x81389836,0x81389837,0x81389838,0x81389839,0x81389930,0x81389931, +0x81389932,0x81389933,0x81389934,0x81389935,0x81389936,0x81389937,0x81389938, +0x81389939,0x81389a30,0x81389a31,0x81389a32,0x81389a33,0x81389a34,0x81389a35, +0x81389a36,0x81389a37,0x81389a38,0x81389a39,0x81389b30,0x81389b31,0x81389b32, +0x81389b33,0x81389b34,0x81389b35,0x81389b36,0x81389b37,0x81389b38,0x81389b39, +0x81389c30,0x81389c31,0x81389c32,0x81389c33,0x81389c34,0x81389c35,0x81389c36, +0x81389c37,0x81389c38,0x81389c39,0x81389d30,0x81389d31,0x81389d32,0x81389d33, +0x81389d34,0x81389d35,0x81389d36,0x81389d37,0x81389d38,0x81389d39,0x81389e30, +0x81389e31,0x81389e32,0x81389e33,0x81389e34,0x81389e35,0x81389e36,0x81389e37, +0x81389e38,0x81389e39,0x81389f30,0x81389f31,0x81389f32,0x81389f33,0x81389f34, +0x81389f35,0x81389f36,0x81389f37,0x81389f38,0x81389f39,0x8138a030,0x8138a031, +0x8138a032,0x8138a033,0x8138a034,0x8138a035,0x8138a036,0x8138a037,0x8138a038, +0x8138a039,0x8138a130,0x8138a131,0x8138a132,0x8138a133,0x8138a134,0x8138a135, +0x8138a136,0x8138a137,0x8138a138,0x8138a139,0x8138a230,0x8138a231,0x8138a232, +0x8138a233,0x8138a234,0x8138a235,0x8138a236,0x8138a237,0x8138a238,0x8138a239, +0x8138a330,0x8138a331,0x8138a332,0x8138a333,0x8138a334,0x8138a335,0x8138a336, +0x8138a337,0x8138a338,0x8138a339,0x8138a430,0x8138a431,0x8138a432,0x8138a433, +0x8138a434,0x8138a435,0x8138a436,0x8138a437,0x8138a438,0x8138a439,0x8138a530, +0x8138a531,0x8138a532,0x8138a533,0x8138a534,0x8138a535,0x8138a536,0x8138a537, +0x8138a538,0x8138a539,0x8138a630,0x8138a631,0x8138a632,0x8138a633,0x8138a634, +0x8138a635,0x8138a636,0x8138a637,0x8138a638,0x8138a639,0x8138a730,0x8138a731, +0x8138a732,0x8138a733,0x8138a734,0x8138a735,0x8138a736,0x8138a737,0x8138a738, +0x8138a739,0x8138a830,0x8138a831,0x8138a832,0x8138a833,0x8138a834,0x8138a835, +0x8138a836,0x8138a837,0x8138a838,0x8138a839,0x8138a930,0x8138a931,0x8138a932, +0x8138a933,0x8138a934,0x8138a935,0x8138a936,0x8138a937,0x8138a938,0x8138a939, +0x8138aa30,0x8138aa31,0x8138aa32,0x8138aa33,0x8138aa34,0x8138aa35,0x8138aa36, +0x8138aa37,0x8138aa38,0x8138aa39,0x8138ab30,0x8138ab31,0x8138ab32,0x8138ab33, +0x8138ab34,0x8138ab35,0x8138ab36,0x8138ab37,0x8138ab38,0x8138ab39,0x8138ac30, +0x8138ac31,0x8138ac32,0x8138ac33,0x8138ac34,0x8138ac35,0x8138ac36,0x8138ac37, +0x8138ac38,0x8138ac39,0x8138ad30,0x8138ad31,0x8138ad32,0x8138ad33,0x8138ad34, +0x8138ad35,0x8138ad36,0x8138ad37,0x8138ad38,0x8138ad39,0x8138ae30,0x8138ae31, +0x8138ae32,0x8138ae33,0x8138ae34,0x8138ae35,0x8138ae36,0x8138ae37,0x8138ae38, +0x8138ae39,0x8138af30,0x8138af31,0x8138af32,0x8138af33,0x8138af34,0x8138af35, +0x8138af36,0x8138af37,0x8138af38,0x8138af39,0x8138b030,0x8138b031,0x8138b032, +0x8138b033,0x8138b034,0x8138b035,0x8138b036,0x8138b037,0x8138b038,0x8138b039, +0x8138b130,0x8138b131,0x8138b132,0x8138b133,0x8138b134,0x8138b135,0x8138b136, +0x8138b137,0x8138b138,0x8138b139,0x8138b230,0x8138b231,0x8138b232,0x8138b233, +0x8138b234,0x8138b235,0x8138b236,0x8138b237,0x8138b238,0x8138b239,0x8138b330, +0x8138b331,0x8138b332,0x8138b333,0x8138b334,0x8138b335,0x8138b336,0x8138b337, +0x8138b338,0x8138b339,0x8138b430,0x8138b431,0x8138b432,0x8138b433,0x8138b434, +0x8138b435,0x8138b436,0x8138b437,0x8138b438,0x8138b439,0x8138b530,0x8138b531, +0x8138b532,0x8138b533,0x8138b534,0x8138b535,0x8138b536,0x8138b537,0x8138b538, +0x8138b539,0x8138b630,0x8138b631,0x8138b632,0x8138b633,0x8138b634,0x8138b635, +0x8138b636,0x8138b637,0x8138b638,0x8138b639,0x8138b730,0x8138b731,0x8138b732, +0x8138b733,0x8138b734,0x8138b735,0x8138b736,0x8138b737,0x8138b738,0x8138b739, +0x8138b830,0x8138b831,0x8138b832,0x8138b833,0x8138b834,0x8138b835,0x8138b836, +0x8138b837,0x8138b838,0x8138b839,0x8138b930,0x8138b931,0x8138b932,0x8138b933, +0x8138b934,0x8138b935,0x8138b936,0x8138b937,0x8138b938,0x8138b939,0x8138ba30, +0x8138ba31,0x8138ba32,0x8138ba33,0x8138ba34,0x8138ba35,0x8138ba36,0x8138ba37, +0x8138ba38,0x8138ba39,0x8138bb30,0x8138bb31,0x8138bb32,0x8138bb33,0x8138bb34, +0x8138bb35,0x8138bb36,0x8138bb37,0x8138bb38,0x8138bb39,0x8138bc30,0x8138bc31, +0x8138bc32,0x8138bc33,0x8138bc34,0x8138bc35,0x8138bc36,0x8138bc37,0x8138bc38, +0x8138bc39,0x8138bd30,0x8138bd31,0x8138bd32,0x8138bd33,0x8138bd34,0x8138bd35, +0x8138bd36,0x8138bd37,0x8138bd38,0x8138bd39,0x8138be30,0x8138be31,0x8138be32, +0x8138be33,0x8138be34,0x8138be35,0x8138be36,0x8138be37,0x8138be38,0x8138be39, +0x8138bf30,0x8138bf31,0x8138bf32,0x8138bf33,0x8138bf34,0x8138bf35,0x8138bf36, +0x8138bf37,0x8138bf38,0x8138bf39,0x8138c030,0x8138c031,0x8138c032,0x8138c033, +0x8138c034,0x8138c035,0x8138c036,0x8138c037,0x8138c038,0x8138c039,0x8138c130, +0x8138c131,0x8138c132,0x8138c133,0x8138c134,0x8138c135,0x8138c136,0x8138c137, +0x8138c138,0x8138c139,0x8138c230,0x8138c231,0x8138c232,0x8138c233,0x8138c234, +0x8138c235,0x8138c236,0x8138c237,0x8138c238,0x8138c239,0x8138c330,0x8138c331, +0x8138c332,0x8138c333,0x8138c334,0x8138c335,0x8138c336,0x8138c337,0x8138c338, +0x8138c339,0x8138c430,0x8138c431,0x8138c432,0x8138c433,0x8138c434,0x8138c435, +0x8138c436,0x8138c437,0x8138c438,0x8138c439,0x8138c530,0x8138c531,0x8138c532, +0x8138c533,0x8138c534,0x8138c535,0x8138c536,0x8138c537,0x8138c538,0x8138c539, +0x8138c630,0x8138c631,0x8138c632,0x8138c633,0x8138c634,0x8138c635,0x8138c636, +0x8138c637,0x8138c638,0x8138c639,0x8138c730,0x8138c731,0x8138c732,0x8138c733, +0x8138c734,0x8138c735,0x8138c736,0x8138c737,0x8138c738,0x8138c739,0x8138c830, +0x8138c831,0x8138c832,0x8138c833,0x8138c834,0x8138c835,0x8138c836,0x8138c837, +0x8138c838,0x8138c839,0x8138c930,0x8138c931,0x8138c932,0x8138c933,0x8138c934, +0x8138c935,0x8138c936,0x8138c937,0x8138c938,0x8138c939,0x8138ca30,0x8138ca31, +0x8138ca32,0x8138ca33,0x8138ca34,0x8138ca35,0x8138ca36,0x8138ca37,0x8138ca38, +0x8138ca39,0x8138cb30,0x8138cb31,0x8138cb32,0x8138cb33,0x8138cb34,0x8138cb35, +0x8138cb36,0x8138cb37,0x8138cb38,0x8138cb39,0x8138cc30,0x8138cc31,0x8138cc32, +0x8138cc33,0x8138cc34,0x8138cc35,0x8138cc36,0x8138cc37,0x8138cc38,0x8138cc39, +0x8138cd30,0x8138cd31,0x8138cd32,0x8138cd33,0x8138cd34,0x8138cd35,0x8138cd36, +0x8138cd37,0x8138cd38,0x8138cd39,0x8138ce30,0x8138ce31,0x8138ce32,0x8138ce33, +0x8138ce34,0x8138ce35,0x8138ce36,0x8138ce37,0x8138ce38,0x8138ce39,0x8138cf30, +0x8138cf31,0x8138cf32,0x8138cf33,0x8138cf34,0x8138cf35,0x8138cf36,0x8138cf37, +0x8138cf38,0x8138cf39,0x8138d030,0x8138d031,0x8138d032,0x8138d033,0x8138d034, +0x8138d035,0x8138d036,0x8138d037,0x8138d038,0x8138d039,0x8138d130,0x8138d131, +0x8138d132,0x8138d133,0x8138d134,0x8138d135,0x8138d136,0x8138d137,0x8138d138, +0x8138d139,0x8138d230,0x8138d231,0x8138d232,0x8138d233,0x8138d234,0x8138d235, +0x8138d236,0x8138d237,0x8138d238,0x8138d239,0x8138d330,0x8138d331,0x8138d332, +0x8138d333,0x8138d334,0x8138d335,0x8138d336,0x8138d337,0x8138d338,0x8138d339, +0x8138d430,0x8138d431,0x8138d432,0x8138d433,0x8138d434,0x8138d435,0x8138d436, +0x8138d437,0x8138d438,0x8138d439,0x8138d530,0x8138d531,0x8138d532,0x8138d533, +0x8138d534,0x8138d535,0x8138d536,0x8138d537,0x8138d538,0x8138d539,0x8138d630, +0x8138d631,0x8138d632,0x8138d633,0x8138d634,0x8138d635,0x8138d636,0x8138d637, +0x8138d638,0x8138d639,0x8138d730,0x8138d731,0x8138d732,0x8138d733,0x8138d734, +0x8138d735,0x8138d736,0x8138d737,0x8138d738,0x8138d739,0x8138d830,0x8138d831, +0x8138d832,0x8138d833,0x8138d834,0x8138d835,0x8138d836,0x8138d837,0x8138d838, +0x8138d839,0x8138d930,0x8138d931,0x8138d932,0x8138d933,0x8138d934,0x8138d935, +0x8138d936,0x8138d937,0x8138d938,0x8138d939,0x8138da30,0x8138da31,0x8138da32, +0x8138da33,0x8138da34,0x8138da35,0x8138da36,0x8138da37,0x8138da38,0x8138da39, +0x8138db30,0x8138db31,0x8138db32,0x8138db33,0x8138db34,0x8138db35,0x8138db36, +0x8138db37,0x8138db38,0x8138db39,0x8138dc30,0x8138dc31,0x8138dc32,0x8138dc33, +0x8138dc34,0x8138dc35,0x8138dc36,0x8138dc37,0x8138dc38,0x8138dc39,0x8138dd30, +0x8138dd31,0x8138dd32,0x8138dd33,0x8138dd34,0x8138dd35,0x8138dd36,0x8138dd37, +0x8138dd38,0x8138dd39,0x8138de30,0x8138de31,0x8138de32,0x8138de33,0x8138de34, +0x8138de35,0x8138de36,0x8138de37,0x8138de38,0x8138de39,0x8138df30,0x8138df31, +0x8138df32,0x8138df33,0x8138df34,0x8138df35,0x8138df36,0x8138df37,0x8138df38, +0x8138df39,0x8138e030,0x8138e031,0x8138e032,0x8138e033,0x8138e034,0x8138e035, +0x8138e036,0x8138e037,0x8138e038,0x8138e039,0x8138e130,0x8138e131,0x8138e132, +0x8138e133,0x8138e134,0x8138e135,0x8138e136,0x8138e137,0x8138e138,0x8138e139, +0x8138e230,0x8138e231,0x8138e232,0x8138e233,0x8138e234,0x8138e235,0x8138e236, +0x8138e237,0x8138e238,0x8138e239,0x8138e330,0x8138e331,0x8138e332,0x8138e333, +0x8138e334,0x8138e335,0x8138e336,0x8138e337,0x8138e338,0x8138e339,0x8138e430, +0x8138e431,0x8138e432,0x8138e433,0x8138e434,0x8138e435,0x8138e436,0x8138e437, +0x8138e438,0x8138e439,0x8138e530,0x8138e531,0x8138e532,0x8138e533,0x8138e534, +0x8138e535,0x8138e536,0x8138e537,0x8138e538,0x8138e539,0x8138e630,0x8138e631, +0x8138e632,0x8138e633,0x8138e634,0x8138e635,0x8138e636,0x8138e637,0x8138e638, +0x8138e639,0x8138e730,0x8138e731,0x8138e732,0x8138e733,0x8138e734,0x8138e735, +0x8138e736,0x8138e737,0x8138e738,0x8138e739,0x8138e830,0x8138e831,0x8138e832, +0x8138e833,0x8138e834,0x8138e835,0x8138e836,0x8138e837,0x8138e838,0x8138e839, +0x8138e930,0x8138e931,0x8138e932,0x8138e933,0x8138e934,0x8138e935,0x8138e936, +0x8138e937,0x8138e938,0x8138e939,0x8138ea30,0x8138ea31,0x8138ea32,0x8138ea33, +0x8138ea34,0x8138ea35,0x8138ea36,0x8138ea37,0x8138ea38,0x8138ea39,0x8138eb30, +0x8138eb31,0x8138eb32,0x8138eb33,0x8138eb34,0x8138eb35,0x8138eb36,0x8138eb37, +0x8138eb38,0x8138eb39,0x8138ec30,0x8138ec31,0x8138ec32,0x8138ec33,0x8138ec34, +0x8138ec35,0x8138ec36,0x8138ec37,0x8138ec38,0x8138ec39,0x8138ed30,0x8138ed31, +0x8138ed32,0x8138ed33,0x8138ed34,0x8138ed35,0x8138ed36,0x8138ed37,0x8138ed38, +0x8138ed39,0x8138ee30,0x8138ee31,0x8138ee32,0x8138ee33,0x8138ee34,0x8138ee35, +0x8138ee36,0x8138ee37,0x8138ee38,0x8138ee39,0x8138ef30,0x8138ef31,0x8138ef32, +0x8138ef33,0x8138ef34,0x8138ef35,0x8138ef36,0x8138ef37,0x8138ef38,0x8138ef39, +0x8138f030,0x8138f031,0x8138f032,0x8138f033,0x8138f034,0x8138f035,0x8138f036, +0x8138f037,0x8138f038,0x8138f039,0x8138f130,0x8138f131,0x8138f132,0x8138f133, +0x8138f134,0x8138f135,0x8138f136,0x8138f137,0x8138f138,0x8138f139,0x8138f230, +0x8138f231,0x8138f232,0x8138f233,0x8138f234,0x8138f235,0x8138f236,0x8138f237, +0x8138f238,0x8138f239,0x8138f330,0x8138f331,0x8138f332,0x8138f333,0x8138f334, +0x8138f335,0x8138f336,0x8138f337,0x8138f338,0x8138f339,0x8138f430,0x8138f431, +0x8138f432,0x8138f433,0x8138f434,0x8138f435,0x8138f436,0x8138f437,0x8138f438, +0x8138f439,0x8138f530,0x8138f531,0x8138f532,0x8138f533,0x8138f534,0x8138f535, +0x8138f536,0x8138f537,0x8138f538,0x8138f539,0x8138f630,0x8138f631,0x8138f632, +0x8138f633,0x8138f634,0x8138f635,0x8138f636,0x8138f637,0x8138f638,0x8138f639, +0x8138f730,0x8138f731,0x8138f732,0x8138f733,0x8138f734,0x8138f735,0x8138f736, +0x8138f737,0x8138f738,0x8138f739,0x8138f830,0x8138f831,0x8138f832,0x8138f833, +0x8138f834,0x8138f835,0x8138f836,0x8138f837,0x8138f838,0x8138f839,0x8138f930, +0x8138f931,0x8138f932,0x8138f933,0x8138f934,0x8138f935,0x8138f936,0x8138f937, +0x8138f938,0x8138f939,0x8138fa30,0x8138fa31,0x8138fa32,0x8138fa33,0x8138fa34, +0x8138fa35,0x8138fa36,0x8138fa37,0x8138fa38,0x8138fa39,0x8138fb30,0x8138fb31, +0x8138fb32,0x8138fb33,0x8138fb34,0x8138fb35,0x8138fb36,0x8138fb37,0x8138fb38, +0x8138fb39,0x8138fc30,0x8138fc31,0x8138fc32,0x8138fc33,0x8138fc34,0x8138fc35, +0x8138fc36,0x8138fc37,0x8138fc38,0x8138fc39,0x8138fd30,0x8138fd31,0x8138fd32, +0x8138fd33,0x8138fd34,0x8138fd35,0x8138fd36,0x8138fd37,0x8138fd38,0xfe50, +0x8138fd39,0x8138fe30,0xfe54,0x8138fe31,0x8138fe32,0x8138fe33,0xfe57,0x8138fe34, +0x8138fe35,0xfe58,0xfe5d,0x8138fe36,0x8138fe37,0x8138fe38,0x8138fe39,0x81398130, +0x81398131,0x81398132,0x81398133,0x81398134,0x81398135,0xfe5e,0x81398136, +0x81398137,0x81398138,0x81398139,0x81398230,0x81398231,0x81398232,0x81398233, +0x81398234,0x81398235,0x81398236,0x81398237,0x81398238,0x81398239,0x81398330, +0xfe6b,0x81398331,0x81398332,0xfe6e,0x81398333,0x81398334,0x81398335,0xfe71, +0x81398336,0x81398337,0x81398338,0x81398339,0xfe73,0x81398430,0x81398431, +0xfe74,0xfe75,0x81398432,0x81398433,0x81398434,0xfe79,0x81398435,0x81398436, +0x81398437,0x81398438,0x81398439,0x81398530,0x81398531,0x81398532,0x81398533, +0x81398534,0x81398535,0x81398536,0x81398537,0x81398538,0xfe84,0x81398539, +0x81398630,0x81398631,0x81398632,0x81398633,0x81398634,0x81398635,0x81398636, +0x81398637,0x81398638,0x81398639,0x81398730,0x81398731,0x81398732,0x81398733, +0x81398734,0x81398735,0x81398736,0x81398737,0x81398738,0x81398739,0x81398830, +0x81398831,0x81398832,0x81398833,0x81398834,0x81398835,0x81398836,0x81398837, +0x81398838,0x81398839,0x81398930,0x81398931,0x81398932,0x81398933,0x81398934, +0x81398935,0x81398936,0x81398937,0x81398938,0x81398939,0x81398a30,0x81398a31, +0x81398a32,0x81398a33,0x81398a34,0x81398a35,0x81398a36,0x81398a37,0x81398a38, +0x81398a39,0x81398b30,0x81398b31,0x81398b32,0x81398b33,0x81398b34,0x81398b35, +0x81398b36,0x81398b37,0x81398b38,0x81398b39,0x81398c30,0x81398c31,0x81398c32, +0x81398c33,0x81398c34,0x81398c35,0x81398c36,0x81398c37,0x81398c38,0x81398c39, +0x81398d30,0x81398d31,0x81398d32,0x81398d33,0x81398d34,0x81398d35,0x81398d36, +0x81398d37,0x81398d38,0x81398d39,0x81398e30,0x81398e31,0x81398e32,0x81398e33, +0x81398e34,0x81398e35,0x81398e36,0x81398e37,0x81398e38,0x81398e39,0x81398f30, +0x81398f31,0x81398f32,0x81398f33,0x81398f34,0x81398f35,0x81398f36,0x81398f37, +0x81398f38,0x81398f39,0x81399030,0x81399031,0x81399032,0x81399033,0x81399034, +0x81399035,0x81399036,0x81399037,0x81399038,0x81399039,0x81399130,0x81399131, +0x81399132,0x81399133,0x81399134,0x81399135,0x81399136,0x81399137,0x81399138, +0x81399139,0x81399230,0x81399231,0x81399232,0x81399233,0x81399234,0x81399235, +0x81399236,0x81399237,0x81399238,0x81399239,0x81399330,0x81399331,0x81399332, +0x81399333,0x81399334,0x81399335,0x81399336,0x81399337,0x81399338,0x81399339, +0x81399430,0x81399431,0x81399432,0x81399433,0x81399434,0x81399435,0x81399436, +0x81399437,0x81399438,0x81399439,0x81399530,0x81399531,0x81399532,0x81399533, +0x81399534,0x81399535,0x81399536,0x81399537,0x81399538,0x81399539,0x81399630, +0x81399631,0x81399632,0x81399633,0x81399634,0x81399635,0x81399636,0x81399637, +0x81399638,0x81399639,0x81399730,0x81399731,0x81399732,0x81399733,0x81399734, +0x81399735,0x81399736,0x81399737,0x81399738,0x81399739,0x81399830,0x81399831, +0x81399832,0x81399833,0x81399834,0x81399835,0x81399836,0x81399837,0x81399838, +0x81399839,0x81399930,0x81399931,0x81399932,0x81399933,0x81399934,0x81399935, +0x81399936,0x81399937,0x81399938,0x81399939,0x81399a30,0x81399a31,0x81399a32, +0x81399a33,0x81399a34,0x81399a35,0x81399a36,0x81399a37,0x81399a38,0x81399a39, +0x81399b30,0x81399b31,0x81399b32,0x81399b33,0x81399b34,0x81399b35,0x81399b36, +0x81399b37,0x81399b38,0x81399b39,0x81399c30,0x81399c31,0x81399c32,0x81399c33, +0x81399c34,0x81399c35,0x81399c36,0x81399c37,0x81399c38,0x81399c39,0x81399d30, +0x81399d31,0x81399d32,0x81399d33,0x81399d34,0x81399d35,0x81399d36,0x81399d37, +0x81399d38,0x81399d39,0x81399e30,0x81399e31,0x81399e32,0x81399e33,0x81399e34, +0x81399e35,0x81399e36,0x81399e37,0x81399e38,0x81399e39,0x81399f30,0x81399f31, +0x81399f32,0x81399f33,0x81399f34,0x81399f35,0x81399f36,0x81399f37,0x81399f38, +0x81399f39,0x8139a030,0x8139a031,0x8139a032,0x8139a033,0x8139a034,0x8139a035, +0x8139a036,0x8139a037,0x8139a038,0x8139a039,0x8139a130,0x8139a131,0x8139a132, +0x8139a133,0x8139a134,0x8139a135,0x8139a136,0x8139a137,0x8139a138,0x8139a139, +0x8139a230,0x8139a231,0x8139a232,0x8139a233,0x8139a234,0x8139a235,0x8139a236, +0x8139a237,0x8139a238,0x8139a239,0x8139a330,0x8139a331,0xa98a,0xa98b,0xa98c, +0xa98d,0xa98e,0xa98f,0xa990,0xa991,0xa992,0xa993,0xa994,0xa995,0x8139a332, +0x8139a333,0x8139a334,0x8139a335,0xa1a1,0xa1a2,0xa1a3,0xa1a8,0x8139a336, +0xa1a9,0xa965,0xa996,0xa1b4,0xa1b5,0xa1b6,0xa1b7,0xa1b8,0xa1b9,0xa1ba, +0xa1bb,0xa1be,0xa1bf,0xa893,0xa1fe,0xa1b2,0xa1b3,0xa1bc,0xa1bd,0x8139a337, +0x8139a338,0x8139a339,0x8139a430,0x8139a431,0xa894,0xa895,0x8139a432,0x8139a433, +0xa940,0xa941,0xa942,0xa943,0xa944,0xa945,0xa946,0xa947,0xa948,0x8139a434, +0x8139a435,0x8139a436,0x8139a437,0x8139a438,0x8139a439,0x8139a530,0x8139a531, +0x8139a532,0x8139a533,0x8139a534,0x8139a535,0x8139a536,0x8139a537,0x8139a538, +0x8139a539,0x8139a630,0x8139a631,0x8139a632,0x8139a633,0xa989,0x8139a634, +0x8139a635,0xa4a1,0xa4a2,0xa4a3,0xa4a4,0xa4a5,0xa4a6,0xa4a7,0xa4a8,0xa4a9, +0xa4aa,0xa4ab,0xa4ac,0xa4ad,0xa4ae,0xa4af,0xa4b0,0xa4b1,0xa4b2,0xa4b3, +0xa4b4,0xa4b5,0xa4b6,0xa4b7,0xa4b8,0xa4b9,0xa4ba,0xa4bb,0xa4bc,0xa4bd, +0xa4be,0xa4bf,0xa4c0,0xa4c1,0xa4c2,0xa4c3,0xa4c4,0xa4c5,0xa4c6,0xa4c7, +0xa4c8,0xa4c9,0xa4ca,0xa4cb,0xa4cc,0xa4cd,0xa4ce,0xa4cf,0xa4d0,0xa4d1, +0xa4d2,0xa4d3,0xa4d4,0xa4d5,0xa4d6,0xa4d7,0xa4d8,0xa4d9,0xa4da,0xa4db, +0xa4dc,0xa4dd,0xa4de,0xa4df,0xa4e0,0xa4e1,0xa4e2,0xa4e3,0xa4e4,0xa4e5, +0xa4e6,0xa4e7,0xa4e8,0xa4e9,0xa4ea,0xa4eb,0xa4ec,0xa4ed,0xa4ee,0xa4ef, +0xa4f0,0xa4f1,0xa4f2,0xa4f3,0x8139a636,0x8139a637,0x8139a638,0x8139a639, +0x8139a730,0x8139a731,0x8139a732,0xa961,0xa962,0xa966,0xa967,0x8139a733, +0x8139a734,0xa5a1,0xa5a2,0xa5a3,0xa5a4,0xa5a5,0xa5a6,0xa5a7,0xa5a8,0xa5a9, +0xa5aa,0xa5ab,0xa5ac,0xa5ad,0xa5ae,0xa5af,0xa5b0,0xa5b1,0xa5b2,0xa5b3, +0xa5b4,0xa5b5,0xa5b6,0xa5b7,0xa5b8,0xa5b9,0xa5ba,0xa5bb,0xa5bc,0xa5bd, +0xa5be,0xa5bf,0xa5c0,0xa5c1,0xa5c2,0xa5c3,0xa5c4,0xa5c5,0xa5c6,0xa5c7, +0xa5c8,0xa5c9,0xa5ca,0xa5cb,0xa5cc,0xa5cd,0xa5ce,0xa5cf,0xa5d0,0xa5d1, +0xa5d2,0xa5d3,0xa5d4,0xa5d5,0xa5d6,0xa5d7,0xa5d8,0xa5d9,0xa5da,0xa5db, +0xa5dc,0xa5dd,0xa5de,0xa5df,0xa5e0,0xa5e1,0xa5e2,0xa5e3,0xa5e4,0xa5e5, +0xa5e6,0xa5e7,0xa5e8,0xa5e9,0xa5ea,0xa5eb,0xa5ec,0xa5ed,0xa5ee,0xa5ef, +0xa5f0,0xa5f1,0xa5f2,0xa5f3,0xa5f4,0xa5f5,0xa5f6,0x8139a735,0x8139a736, +0x8139a737,0x8139a738,0x8139a739,0xa960,0xa963,0xa964,0x8139a830,0x8139a831, +0x8139a832,0x8139a833,0x8139a834,0x8139a835,0xa8c5,0xa8c6,0xa8c7,0xa8c8, +0xa8c9,0xa8ca,0xa8cb,0xa8cc,0xa8cd,0xa8ce,0xa8cf,0xa8d0,0xa8d1,0xa8d2, +0xa8d3,0xa8d4,0xa8d5,0xa8d6,0xa8d7,0xa8d8,0xa8d9,0xa8da,0xa8db,0xa8dc, +0xa8dd,0xa8de,0xa8df,0xa8e0,0xa8e1,0xa8e2,0xa8e3,0xa8e4,0xa8e5,0xa8e6, +0xa8e7,0xa8e8,0xa8e9,0x8139a836,0x8139a837,0x8139a838,0x8139a839,0x8139a930, +0x8139a931,0x8139a932,0x8139a933,0x8139a934,0x8139a935,0x8139a936,0x8139a937, +0x8139a938,0x8139a939,0x8139aa30,0x8139aa31,0x8139aa32,0x8139aa33,0x8139aa34, +0x8139aa35,0x8139aa36,0x8139aa37,0x8139aa38,0x8139aa39,0x8139ab30,0x8139ab31, +0x8139ab32,0x8139ab33,0x8139ab34,0x8139ab35,0x8139ab36,0x8139ab37,0x8139ab38, +0x8139ab39,0x8139ac30,0x8139ac31,0x8139ac32,0x8139ac33,0x8139ac34,0x8139ac35, +0x8139ac36,0x8139ac37,0x8139ac38,0x8139ac39,0x8139ad30,0x8139ad31,0x8139ad32, +0x8139ad33,0x8139ad34,0x8139ad35,0x8139ad36,0x8139ad37,0x8139ad38,0x8139ad39, +0x8139ae30,0x8139ae31,0x8139ae32,0x8139ae33,0x8139ae34,0x8139ae35,0x8139ae36, +0x8139ae37,0x8139ae38,0x8139ae39,0x8139af30,0x8139af31,0x8139af32,0x8139af33, +0x8139af34,0x8139af35,0x8139af36,0x8139af37,0x8139af38,0x8139af39,0x8139b030, +0x8139b031,0x8139b032,0x8139b033,0x8139b034,0x8139b035,0x8139b036,0x8139b037, +0x8139b038,0x8139b039,0x8139b130,0x8139b131,0x8139b132,0x8139b133,0x8139b134, +0x8139b135,0x8139b136,0x8139b137,0x8139b138,0x8139b139,0x8139b230,0x8139b231, +0x8139b232,0x8139b233,0x8139b234,0x8139b235,0x8139b236,0x8139b237,0x8139b238, +0x8139b239,0x8139b330,0x8139b331,0x8139b332,0x8139b333,0x8139b334,0x8139b335, +0x8139b336,0x8139b337,0x8139b338,0x8139b339,0x8139b430,0x8139b431,0x8139b432, +0x8139b433,0x8139b434,0x8139b435,0x8139b436,0x8139b437,0x8139b438,0x8139b439, +0x8139b530,0x8139b531,0x8139b532,0x8139b533,0x8139b534,0x8139b535,0x8139b536, +0x8139b537,0x8139b538,0x8139b539,0x8139b630,0x8139b631,0x8139b632,0x8139b633, +0x8139b634,0x8139b635,0x8139b636,0x8139b637,0x8139b638,0x8139b639,0x8139b730, +0x8139b731,0x8139b732,0x8139b733,0x8139b734,0x8139b735,0x8139b736,0x8139b737, +0x8139b738,0x8139b739,0x8139b830,0x8139b831,0x8139b832,0x8139b833,0x8139b834, +0x8139b835,0x8139b836,0x8139b837,0x8139b838,0x8139b839,0x8139b930,0x8139b931, +0x8139b932,0x8139b933,0x8139b934,0x8139b935,0x8139b936,0x8139b937,0x8139b938, +0x8139b939,0x8139ba30,0x8139ba31,0x8139ba32,0x8139ba33,0x8139ba34,0x8139ba35, +0x8139ba36,0x8139ba37,0x8139ba38,0x8139ba39,0x8139bb30,0x8139bb31,0x8139bb32, +0x8139bb33,0x8139bb34,0x8139bb35,0x8139bb36,0x8139bb37,0x8139bb38,0x8139bb39, +0x8139bc30,0x8139bc31,0x8139bc32,0x8139bc33,0x8139bc34,0x8139bc35,0x8139bc36, +0x8139bc37,0x8139bc38,0x8139bc39,0x8139bd30,0x8139bd31,0x8139bd32,0x8139bd33, +0x8139bd34,0x8139bd35,0x8139bd36,0x8139bd37,0x8139bd38,0x8139bd39,0x8139be30, +0x8139be31,0x8139be32,0x8139be33,0x8139be34,0x8139be35,0x8139be36,0x8139be37, +0x8139be38,0x8139be39,0x8139bf30,0x8139bf31,0x8139bf32,0x8139bf33,0x8139bf34, +0x8139bf35,0x8139bf36,0x8139bf37,0x8139bf38,0x8139bf39,0x8139c030,0x8139c031, +0x8139c032,0x8139c033,0x8139c034,0x8139c035,0x8139c036,0x8139c037,0x8139c038, +0x8139c039,0x8139c130,0x8139c131,0xa2e5,0xa2e6,0xa2e7,0xa2e8,0xa2e9,0xa2ea, +0xa2eb,0xa2ec,0xa2ed,0xa2ee,0x8139c132,0x8139c133,0x8139c134,0x8139c135, +0x8139c136,0x8139c137,0x8139c138,0xa95a,0x8139c139,0x8139c230,0x8139c231, +0x8139c232,0x8139c233,0x8139c234,0x8139c235,0x8139c236,0x8139c237,0x8139c238, +0x8139c239,0x8139c330,0x8139c331,0x8139c332,0x8139c333,0x8139c334,0x8139c335, +0x8139c336,0x8139c337,0x8139c338,0x8139c339,0x8139c430,0x8139c431,0x8139c432, +0x8139c433,0x8139c434,0x8139c435,0x8139c436,0x8139c437,0x8139c438,0x8139c439, +0x8139c530,0x8139c531,0x8139c532,0x8139c533,0x8139c534,0x8139c535,0x8139c536, +0x8139c537,0x8139c538,0x8139c539,0x8139c630,0x8139c631,0x8139c632,0x8139c633, +0x8139c634,0x8139c635,0x8139c636,0x8139c637,0x8139c638,0x8139c639,0x8139c730, +0x8139c731,0x8139c732,0x8139c733,0x8139c734,0x8139c735,0x8139c736,0x8139c737, +0x8139c738,0x8139c739,0x8139c830,0x8139c831,0x8139c832,0x8139c833,0x8139c834, +0x8139c835,0x8139c836,0x8139c837,0x8139c838,0x8139c839,0x8139c930,0x8139c931, +0x8139c932,0x8139c933,0x8139c934,0x8139c935,0x8139c936,0x8139c937,0x8139c938, +0x8139c939,0x8139ca30,0x8139ca31,0x8139ca32,0x8139ca33,0x8139ca34,0x8139ca35, +0x8139ca36,0x8139ca37,0x8139ca38,0x8139ca39,0x8139cb30,0x8139cb31,0x8139cb32, +0x8139cb33,0x8139cb34,0x8139cb35,0x8139cb36,0x8139cb37,0x8139cb38,0x8139cb39, +0x8139cc30,0x8139cc31,0x8139cc32,0x8139cc33,0x8139cc34,0x8139cc35,0x8139cc36, +0x8139cc37,0x8139cc38,0x8139cc39,0x8139cd30,0x8139cd31,0xa949,0x8139cd32, +0x8139cd33,0x8139cd34,0x8139cd35,0x8139cd36,0x8139cd37,0x8139cd38,0x8139cd39, +0x8139ce30,0x8139ce31,0x8139ce32,0x8139ce33,0x8139ce34,0x8139ce35,0x8139ce36, +0x8139ce37,0x8139ce38,0x8139ce39,0x8139cf30,0x8139cf31,0x8139cf32,0x8139cf33, +0x8139cf34,0x8139cf35,0x8139cf36,0x8139cf37,0x8139cf38,0x8139cf39,0x8139d030, +0x8139d031,0x8139d032,0x8139d033,0x8139d034,0x8139d035,0x8139d036,0x8139d037, +0x8139d038,0x8139d039,0x8139d130,0x8139d131,0x8139d132,0x8139d133,0x8139d134, +0x8139d135,0x8139d136,0x8139d137,0x8139d138,0x8139d139,0x8139d230,0x8139d231, +0x8139d232,0x8139d233,0x8139d234,0x8139d235,0x8139d236,0x8139d237,0x8139d238, +0x8139d239,0x8139d330,0x8139d331,0x8139d332,0x8139d333,0x8139d334,0x8139d335, +0x8139d336,0x8139d337,0x8139d338,0x8139d339,0x8139d430,0x8139d431,0x8139d432, +0x8139d433,0x8139d434,0x8139d435,0x8139d436,0x8139d437,0x8139d438,0x8139d439, +0x8139d530,0x8139d531,0x8139d532,0x8139d533,0x8139d534,0x8139d535,0x8139d536, +0x8139d537,0x8139d538,0x8139d539,0x8139d630,0x8139d631,0x8139d632,0x8139d633, +0x8139d634,0x8139d635,0x8139d636,0x8139d637,0x8139d638,0x8139d639,0x8139d730, +0x8139d731,0x8139d732,0x8139d733,0x8139d734,0x8139d735,0x8139d736,0x8139d737, +0x8139d738,0x8139d739,0x8139d830,0x8139d831,0x8139d832,0x8139d833,0x8139d834, +0x8139d835,0x8139d836,0x8139d837,0x8139d838,0x8139d839,0x8139d930,0x8139d931, +0x8139d932,0x8139d933,0x8139d934,0x8139d935,0x8139d936,0x8139d937,0x8139d938, +0x8139d939,0x8139da30,0x8139da31,0x8139da32,0x8139da33,0x8139da34,0x8139da35, +0x8139da36,0x8139da37,0x8139da38,0x8139da39,0x8139db30,0x8139db31,0x8139db32, +0x8139db33,0x8139db34,0x8139db35,0x8139db36,0x8139db37,0x8139db38,0x8139db39, +0x8139dc30,0x8139dc31,0x8139dc32,0x8139dc33,0x8139dc34,0x8139dc35,0x8139dc36, +0x8139dc37,0x8139dc38,0x8139dc39,0x8139dd30,0x8139dd31,0x8139dd32,0x8139dd33, +0x8139dd34,0x8139dd35,0x8139dd36,0x8139dd37,0x8139dd38,0x8139dd39,0x8139de30, +0x8139de31,0x8139de32,0x8139de33,0x8139de34,0x8139de35,0x8139de36,0x8139de37, +0x8139de38,0x8139de39,0x8139df30,0x8139df31,0x8139df32,0x8139df33,0x8139df34, +0x8139df35,0x8139df36,0x8139df37,0x8139df38,0x8139df39,0x8139e030,0x8139e031, +0x8139e032,0x8139e033,0x8139e034,0x8139e035,0x8139e036,0x8139e037,0x8139e038, +0x8139e039,0x8139e130,0x8139e131,0x8139e132,0x8139e133,0x8139e134,0x8139e135, +0x8139e136,0x8139e137,0x8139e138,0x8139e139,0x8139e230,0x8139e231,0x8139e232, +0x8139e233,0x8139e234,0x8139e235,0x8139e236,0x8139e237,0x8139e238,0x8139e239, +0x8139e330,0x8139e331,0x8139e332,0x8139e333,0x8139e334,0x8139e335,0x8139e336, +0x8139e337,0x8139e338,0x8139e339,0x8139e430,0x8139e431,0x8139e432,0x8139e433, +0x8139e434,0x8139e435,0xa94a,0xa94b,0x8139e436,0x8139e437,0x8139e438,0x8139e439, +0x8139e530,0x8139e531,0x8139e532,0x8139e533,0x8139e534,0x8139e535,0x8139e536, +0x8139e537,0xa94c,0xa94d,0xa94e,0x8139e538,0x8139e539,0xa94f,0x8139e630, +0x8139e631,0x8139e632,0x8139e633,0x8139e634,0x8139e635,0x8139e636,0x8139e637, +0x8139e638,0x8139e639,0x8139e730,0x8139e731,0x8139e732,0x8139e733,0x8139e734, +0x8139e735,0x8139e736,0x8139e737,0x8139e738,0x8139e739,0x8139e830,0x8139e831, +0x8139e832,0x8139e833,0x8139e834,0x8139e835,0x8139e836,0x8139e837,0x8139e838, +0x8139e839,0x8139e930,0x8139e931,0x8139e932,0x8139e933,0xa950,0x8139e934, +0x8139e935,0x8139e936,0x8139e937,0x8139e938,0x8139e939,0x8139ea30,0x8139ea31, +0x8139ea32,0xa951,0x8139ea33,0x8139ea34,0xa952,0xa953,0x8139ea35,0x8139ea36, +0xa954,0x8139ea37,0x8139ea38,0x8139ea39,0x8139eb30,0x8139eb31,0x8139eb32, +0x8139eb33,0x8139eb34,0x8139eb35,0x8139eb36,0x8139eb37,0x8139eb38,0x8139eb39, +0x8139ec30,0x8139ec31,0x8139ec32,0x8139ec33,0x8139ec34,0x8139ec35,0x8139ec36, +0x8139ec37,0x8139ec38,0x8139ec39,0x8139ed30,0x8139ed31,0x8139ed32,0x8139ed33, +0x8139ed34,0x8139ed35,0x8139ed36,0x8139ed37,0x8139ed38,0x8139ed39,0x8139ee30, +0x8139ee31,0x8139ee32,0x8139ee33,0x8139ee34,0x8139ee35,0x8139ee36,0x8139ee37, +0x8139ee38,0x8139ee39,0x8139ef30,0x8139ef31,0x8139ef32,0x8139ef33,0x8139ef34, +0x8139ef35,0x8139ef36,0x8139ef37,0x8139ef38,0x8139ef39,0x8139f030,0x8139f031, +0x8139f032,0x8139f033,0x8139f034,0x8139f035,0x8139f036,0x8139f037,0x8139f038, +0x8139f039,0x8139f130,0x8139f131,0x8139f132,0x8139f133,0x8139f134,0x8139f135, +0x8139f136,0x8139f137,0x8139f138,0x8139f139,0x8139f230,0x8139f231,0x8139f232, +0x8139f233,0x8139f234,0x8139f235,0x8139f236,0x8139f237,0x8139f238,0x8139f239, +0x8139f330,0x8139f331,0x8139f332,0x8139f333,0x8139f334,0x8139f335,0x8139f336, +0x8139f337,0x8139f338,0x8139f339,0x8139f430,0x8139f431,0x8139f432,0x8139f433, +0x8139f434,0x8139f435,0x8139f436,0x8139f437,0x8139f438,0x8139f439,0x8139f530, +0x8139f531,0x8139f532,0x8139f533,0x8139f534,0x8139f535,0x8139f536,0x8139f537, +0x8139f538,0x8139f539,0xfe56,0x8139f630,0x8139f631,0x8139f632,0x8139f633, +0x8139f634,0x8139f635,0x8139f636,0x8139f637,0x8139f638,0x8139f639,0x8139f730, +0x8139f731,0x8139f732,0x8139f733,0x8139f734,0x8139f735,0x8139f736,0x8139f737, +0x8139f738,0x8139f739,0x8139f830,0x8139f831,0x8139f832,0x8139f833,0x8139f834, +0x8139f835,0x8139f836,0x8139f837,0x8139f838,0x8139f839,0x8139f930,0x8139f931, +0x8139f932,0x8139f933,0x8139f934,0x8139f935,0x8139f936,0x8139f937,0x8139f938, +0x8139f939,0x8139fa30,0x8139fa31,0x8139fa32,0xfe55,0x8139fa33,0x8139fa34, +0x8139fa35,0x8139fa36,0x8139fa37,0x8139fa38,0x8139fa39,0x8139fb30,0x8139fb31, +0x8139fb32,0x8139fb33,0x8139fb34,0x8139fb35,0x8139fb36,0x8139fb37,0x8139fb38, +0x8139fb39,0x8139fc30,0x8139fc31,0x8139fc32,0x8139fc33,0x8139fc34,0x8139fc35, +0x8139fc36,0x8139fc37,0x8139fc38,0x8139fc39,0x8139fd30,0x8139fd31,0x8139fd32, +0x8139fd33,0x8139fd34,0x8139fd35,0x8139fd36,0x8139fd37,0x8139fd38,0x8139fd39, +0x8139fe30,0x8139fe31,0x8139fe32,0x8139fe33,0x8139fe34,0x8139fe35,0x8139fe36, +0x8139fe37,0x8139fe38,0x8139fe39,0x82308130,0x82308131,0x82308132,0x82308133, +0x82308134,0x82308135,0x82308136,0x82308137,0x82308138,0x82308139,0x82308230, +0x82308231,0x82308232,0x82308233,0x82308234,0x82308235,0x82308236,0x82308237, +0x82308238,0x82308239,0x82308330,0x82308331,0x82308332,0x82308333,0x82308334, +0x82308335,0x82308336,0x82308337,0x82308338,0x82308339,0x82308430,0x82308431, +0x82308432,0x82308433,0x82308434,0x82308435,0x82308436,0x82308437,0x82308438, +0x82308439,0x82308530,0x82308531,0x82308532,0x82308533,0x82308534,0x82308535, +0x82308536,0x82308537,0x82308538,0x82308539,0x82308630,0x82308631,0x82308632, +0x82308633,0x82308634,0x82308635,0x82308636,0x82308637,0x82308638,0x82308639, +0x82308730,0x82308731,0x82308732,0x82308733,0x82308734,0x82308735,0x82308736, +0x82308737,0x82308738,0x82308739,0x82308830,0x82308831,0x82308832,0x82308833, +0x82308834,0x82308835,0x82308836,0x82308837,0x82308838,0x82308839,0x82308930, +0x82308931,0x82308932,0x82308933,0x82308934,0x82308935,0x82308936,0x82308937, +0x82308938,0x82308939,0x82308a30,0x82308a31,0x82308a32,0x82308a33,0x82308a34, +0x82308a35,0x82308a36,0x82308a37,0x82308a38,0x82308a39,0x82308b30,0x82308b31, +0x82308b32,0x82308b33,0x82308b34,0x82308b35,0x82308b36,0x82308b37,0x82308b38, +0x82308b39,0x82308c30,0x82308c31,0x82308c32,0x82308c33,0x82308c34,0x82308c35, +0x82308c36,0x82308c37,0x82308c38,0x82308c39,0x82308d30,0x82308d31,0x82308d32, +0x82308d33,0x82308d34,0x82308d35,0x82308d36,0x82308d37,0x82308d38,0x82308d39, +0x82308e30,0x82308e31,0x82308e32,0x82308e33,0x82308e34,0x82308e35,0x82308e36, +0x82308e37,0x82308e38,0x82308e39,0x82308f30,0x82308f31,0x82308f32,0x82308f33, +0x82308f34,0x82308f35,0x82308f36,0x82308f37,0x82308f38,0x82308f39,0x82309030, +0x82309031,0x82309032,0x82309033,0x82309034,0x82309035,0x82309036,0x82309037, +0x82309038,0x82309039,0x82309130,0x82309131,0x82309132,0x82309133,0x82309134, +0x82309135,0x82309136,0x82309137,0x82309138,0x82309139,0x82309230,0x82309231, +0x82309232,0x82309233,0x82309234,0x82309235,0x82309236,0x82309237,0x82309238, +0x82309239,0x82309330,0x82309331,0x82309332,0x82309333,0x82309334,0x82309335, +0x82309336,0x82309337,0x82309338,0x82309339,0x82309430,0x82309431,0x82309432, +0x82309433,0x82309434,0x82309435,0x82309436,0x82309437,0x82309438,0x82309439, +0x82309530,0x82309531,0x82309532,0x82309533,0x82309534,0x82309535,0x82309536, +0x82309537,0x82309538,0x82309539,0x82309630,0x82309631,0x82309632,0x82309633, +0x82309634,0x82309635,0x82309636,0x82309637,0x82309638,0x82309639,0x82309730, +0x82309731,0x82309732,0x82309733,0x82309734,0x82309735,0x82309736,0x82309737, +0x82309738,0x82309739,0x82309830,0x82309831,0x82309832,0x82309833,0x82309834, +0x82309835,0x82309836,0x82309837,0x82309838,0x82309839,0x82309930,0x82309931, +0x82309932,0x82309933,0x82309934,0x82309935,0x82309936,0x82309937,0x82309938, +0x82309939,0x82309a30,0xfe5a,0x82309a31,0x82309a32,0x82309a33,0x82309a34, +0x82309a35,0x82309a36,0x82309a37,0x82309a38,0x82309a39,0x82309b30,0x82309b31, +0x82309b32,0x82309b33,0x82309b34,0x82309b35,0x82309b36,0x82309b37,0x82309b38, +0x82309b39,0x82309c30,0x82309c31,0x82309c32,0x82309c33,0x82309c34,0x82309c35, +0x82309c36,0x82309c37,0x82309c38,0x82309c39,0x82309d30,0x82309d31,0x82309d32, +0x82309d33,0x82309d34,0x82309d35,0x82309d36,0x82309d37,0x82309d38,0x82309d39, +0x82309e30,0x82309e31,0x82309e32,0x82309e33,0x82309e34,0x82309e35,0x82309e36, +0x82309e37,0x82309e38,0x82309e39,0x82309f30,0x82309f31,0x82309f32,0x82309f33, +0x82309f34,0x82309f35,0x82309f36,0x82309f37,0x82309f38,0x82309f39,0x8230a030, +0x8230a031,0x8230a032,0x8230a033,0x8230a034,0x8230a035,0x8230a036,0x8230a037, +0x8230a038,0x8230a039,0x8230a130,0x8230a131,0x8230a132,0x8230a133,0x8230a134, +0x8230a135,0x8230a136,0x8230a137,0x8230a138,0x8230a139,0x8230a230,0x8230a231, +0x8230a232,0x8230a233,0x8230a234,0x8230a235,0x8230a236,0x8230a237,0x8230a238, +0x8230a239,0x8230a330,0x8230a331,0x8230a332,0x8230a333,0x8230a334,0x8230a335, +0x8230a336,0x8230a337,0x8230a338,0x8230a339,0x8230a430,0x8230a431,0x8230a432, +0x8230a433,0x8230a434,0x8230a435,0x8230a436,0x8230a437,0x8230a438,0x8230a439, +0x8230a530,0x8230a531,0xfe5c,0x8230a532,0x8230a533,0x8230a534,0x8230a535, +0x8230a536,0x8230a537,0x8230a538,0x8230a539,0x8230a630,0x8230a631,0x8230a632, +0xfe5b,0x8230a633,0x8230a634,0x8230a635,0x8230a636,0x8230a637,0x8230a638, +0x8230a639,0x8230a730,0x8230a731,0x8230a732,0x8230a733,0x8230a734,0x8230a735, +0x8230a736,0x8230a737,0x8230a738,0x8230a739,0x8230a830,0x8230a831,0x8230a832, +0x8230a833,0x8230a834,0x8230a835,0x8230a836,0x8230a837,0x8230a838,0x8230a839, +0x8230a930,0x8230a931,0x8230a932,0x8230a933,0x8230a934,0x8230a935,0x8230a936, +0x8230a937,0x8230a938,0x8230a939,0x8230aa30,0x8230aa31,0x8230aa32,0x8230aa33, +0x8230aa34,0x8230aa35,0x8230aa36,0x8230aa37,0x8230aa38,0x8230aa39,0x8230ab30, +0x8230ab31,0x8230ab32,0x8230ab33,0x8230ab34,0x8230ab35,0x8230ab36,0x8230ab37, +0x8230ab38,0x8230ab39,0x8230ac30,0x8230ac31,0x8230ac32,0x8230ac33,0x8230ac34, +0x8230ac35,0x8230ac36,0x8230ac37,0x8230ac38,0x8230ac39,0x8230ad30,0x8230ad31, +0x8230ad32,0x8230ad33,0x8230ad34,0x8230ad35,0x8230ad36,0x8230ad37,0x8230ad38, +0x8230ad39,0x8230ae30,0x8230ae31,0x8230ae32,0x8230ae33,0x8230ae34,0x8230ae35, +0x8230ae36,0x8230ae37,0x8230ae38,0x8230ae39,0x8230af30,0x8230af31,0x8230af32, +0x8230af33,0x8230af34,0x8230af35,0x8230af36,0x8230af37,0x8230af38,0x8230af39, +0x8230b030,0x8230b031,0x8230b032,0x8230b033,0x8230b034,0x8230b035,0x8230b036, +0x8230b037,0x8230b038,0x8230b039,0x8230b130,0x8230b131,0x8230b132,0x8230b133, +0x8230b134,0x8230b135,0x8230b136,0x8230b137,0x8230b138,0x8230b139,0x8230b230, +0x8230b231,0x8230b232,0x8230b233,0x8230b234,0x8230b235,0x8230b236,0x8230b237, +0x8230b238,0x8230b239,0x8230b330,0x8230b331,0x8230b332,0x8230b333,0x8230b334, +0x8230b335,0x8230b336,0x8230b337,0x8230b338,0x8230b339,0x8230b430,0x8230b431, +0x8230b432,0x8230b433,0x8230b434,0x8230b435,0x8230b436,0x8230b437,0x8230b438, +0x8230b439,0x8230b530,0x8230b531,0x8230b532,0x8230b533,0x8230b534,0x8230b535, +0x8230b536,0x8230b537,0x8230b538,0x8230b539,0x8230b630,0x8230b631,0x8230b632, +0x8230b633,0x8230b634,0x8230b635,0x8230b636,0x8230b637,0x8230b638,0x8230b639, +0x8230b730,0x8230b731,0x8230b732,0x8230b733,0x8230b734,0x8230b735,0x8230b736, +0x8230b737,0x8230b738,0x8230b739,0x8230b830,0x8230b831,0x8230b832,0x8230b833, +0x8230b834,0x8230b835,0x8230b836,0x8230b837,0x8230b838,0x8230b839,0x8230b930, +0x8230b931,0x8230b932,0x8230b933,0x8230b934,0x8230b935,0x8230b936,0x8230b937, +0x8230b938,0x8230b939,0x8230ba30,0x8230ba31,0x8230ba32,0x8230ba33,0x8230ba34, +0x8230ba35,0x8230ba36,0x8230ba37,0x8230ba38,0x8230ba39,0x8230bb30,0x8230bb31, +0x8230bb32,0x8230bb33,0x8230bb34,0x8230bb35,0x8230bb36,0x8230bb37,0x8230bb38, +0x8230bb39,0x8230bc30,0x8230bc31,0x8230bc32,0x8230bc33,0x8230bc34,0x8230bc35, +0x8230bc36,0x8230bc37,0x8230bc38,0x8230bc39,0x8230bd30,0x8230bd31,0x8230bd32, +0x8230bd33,0x8230bd34,0x8230bd35,0x8230bd36,0x8230bd37,0x8230bd38,0x8230bd39, +0x8230be30,0x8230be31,0x8230be32,0x8230be33,0x8230be34,0x8230be35,0x8230be36, +0x8230be37,0x8230be38,0x8230be39,0x8230bf30,0x8230bf31,0x8230bf32,0x8230bf33, +0x8230bf34,0x8230bf35,0x8230bf36,0x8230bf37,0x8230bf38,0x8230bf39,0x8230c030, +0x8230c031,0x8230c032,0x8230c033,0x8230c034,0x8230c035,0x8230c036,0x8230c037, +0x8230c038,0x8230c039,0x8230c130,0x8230c131,0x8230c132,0x8230c133,0x8230c134, +0x8230c135,0x8230c136,0x8230c137,0x8230c138,0x8230c139,0x8230c230,0x8230c231, +0x8230c232,0x8230c233,0x8230c234,0x8230c235,0x8230c236,0x8230c237,0x8230c238, +0x8230c239,0x8230c330,0x8230c331,0x8230c332,0x8230c333,0x8230c334,0x8230c335, +0x8230c336,0x8230c337,0x8230c338,0x8230c339,0x8230c430,0x8230c431,0x8230c432, +0x8230c433,0x8230c434,0x8230c435,0x8230c436,0x8230c437,0x8230c438,0x8230c439, +0x8230c530,0x8230c531,0x8230c532,0x8230c533,0x8230c534,0x8230c535,0x8230c536, +0x8230c537,0x8230c538,0x8230c539,0x8230c630,0x8230c631,0x8230c632,0x8230c633, +0x8230c634,0x8230c635,0x8230c636,0x8230c637,0x8230c638,0x8230c639,0x8230c730, +0x8230c731,0x8230c732,0x8230c733,0x8230c734,0x8230c735,0x8230c736,0x8230c737, +0x8230c738,0x8230c739,0x8230c830,0x8230c831,0x8230c832,0x8230c833,0x8230c834, +0x8230c835,0x8230c836,0x8230c837,0x8230c838,0x8230c839,0x8230c930,0x8230c931, +0x8230c932,0x8230c933,0x8230c934,0x8230c935,0x8230c936,0x8230c937,0x8230c938, +0x8230c939,0x8230ca30,0x8230ca31,0x8230ca32,0x8230ca33,0x8230ca34,0x8230ca35, +0x8230ca36,0x8230ca37,0x8230ca38,0x8230ca39,0x8230cb30,0x8230cb31,0x8230cb32, +0x8230cb33,0x8230cb34,0x8230cb35,0x8230cb36,0x8230cb37,0x8230cb38,0x8230cb39, +0x8230cc30,0x8230cc31,0x8230cc32,0x8230cc33,0x8230cc34,0x8230cc35,0x8230cc36, +0x8230cc37,0x8230cc38,0x8230cc39,0x8230cd30,0x8230cd31,0x8230cd32,0x8230cd33, +0x8230cd34,0x8230cd35,0x8230cd36,0x8230cd37,0x8230cd38,0x8230cd39,0x8230ce30, +0x8230ce31,0x8230ce32,0x8230ce33,0x8230ce34,0x8230ce35,0x8230ce36,0x8230ce37, +0x8230ce38,0x8230ce39,0x8230cf30,0x8230cf31,0x8230cf32,0x8230cf33,0x8230cf34, +0x8230cf35,0x8230cf36,0x8230cf37,0x8230cf38,0x8230cf39,0x8230d030,0x8230d031, +0x8230d032,0x8230d033,0x8230d034,0x8230d035,0x8230d036,0x8230d037,0x8230d038, +0x8230d039,0x8230d130,0x8230d131,0x8230d132,0x8230d133,0x8230d134,0x8230d135, +0x8230d136,0x8230d137,0x8230d138,0x8230d139,0x8230d230,0x8230d231,0x8230d232, +0x8230d233,0x8230d234,0x8230d235,0x8230d236,0x8230d237,0x8230d238,0x8230d239, +0x8230d330,0x8230d331,0x8230d332,0x8230d333,0x8230d334,0x8230d335,0x8230d336, +0x8230d337,0x8230d338,0x8230d339,0x8230d430,0x8230d431,0x8230d432,0x8230d433, +0x8230d434,0x8230d435,0x8230d436,0x8230d437,0x8230d438,0x8230d439,0x8230d530, +0x8230d531,0x8230d532,0x8230d533,0x8230d534,0x8230d535,0x8230d536,0x8230d537, +0x8230d538,0x8230d539,0x8230d630,0x8230d631,0x8230d632,0x8230d633,0x8230d634, +0x8230d635,0x8230d636,0x8230d637,0x8230d638,0x8230d639,0x8230d730,0x8230d731, +0x8230d732,0x8230d733,0x8230d734,0x8230d735,0x8230d736,0x8230d737,0x8230d738, +0x8230d739,0x8230d830,0x8230d831,0x8230d832,0x8230d833,0x8230d834,0x8230d835, +0x8230d836,0x8230d837,0x8230d838,0x8230d839,0x8230d930,0x8230d931,0x8230d932, +0x8230d933,0x8230d934,0x8230d935,0x8230d936,0x8230d937,0x8230d938,0x8230d939, +0x8230da30,0x8230da31,0x8230da32,0x8230da33,0x8230da34,0x8230da35,0x8230da36, +0x8230da37,0x8230da38,0x8230da39,0x8230db30,0x8230db31,0x8230db32,0x8230db33, +0x8230db34,0x8230db35,0x8230db36,0x8230db37,0x8230db38,0x8230db39,0x8230dc30, +0x8230dc31,0x8230dc32,0x8230dc33,0x8230dc34,0x8230dc35,0x8230dc36,0x8230dc37, +0x8230dc38,0x8230dc39,0x8230dd30,0x8230dd31,0x8230dd32,0x8230dd33,0x8230dd34, +0x8230dd35,0x8230dd36,0x8230dd37,0x8230dd38,0x8230dd39,0x8230de30,0x8230de31, +0x8230de32,0x8230de33,0x8230de34,0x8230de35,0x8230de36,0x8230de37,0x8230de38, +0x8230de39,0x8230df30,0x8230df31,0x8230df32,0x8230df33,0x8230df34,0x8230df35, +0x8230df36,0x8230df37,0x8230df38,0x8230df39,0x8230e030,0x8230e031,0x8230e032, +0x8230e033,0x8230e034,0x8230e035,0x8230e036,0x8230e037,0x8230e038,0x8230e039, +0x8230e130,0x8230e131,0x8230e132,0x8230e133,0x8230e134,0x8230e135,0x8230e136, +0x8230e137,0x8230e138,0x8230e139,0x8230e230,0x8230e231,0x8230e232,0x8230e233, +0x8230e234,0x8230e235,0x8230e236,0x8230e237,0x8230e238,0x8230e239,0x8230e330, +0x8230e331,0x8230e332,0x8230e333,0x8230e334,0x8230e335,0x8230e336,0x8230e337, +0x8230e338,0x8230e339,0x8230e430,0x8230e431,0x8230e432,0x8230e433,0x8230e434, +0x8230e435,0x8230e436,0x8230e437,0x8230e438,0x8230e439,0x8230e530,0x8230e531, +0x8230e532,0x8230e533,0x8230e534,0x8230e535,0x8230e536,0x8230e537,0x8230e538, +0x8230e539,0x8230e630,0x8230e631,0x8230e632,0x8230e633,0x8230e634,0x8230e635, +0x8230e636,0x8230e637,0x8230e638,0x8230e639,0x8230e730,0x8230e731,0x8230e732, +0x8230e733,0x8230e734,0x8230e735,0x8230e736,0x8230e737,0x8230e738,0x8230e739, +0x8230e830,0x8230e831,0x8230e832,0x8230e833,0x8230e834,0x8230e835,0x8230e836, +0x8230e837,0x8230e838,0x8230e839,0x8230e930,0x8230e931,0x8230e932,0x8230e933, +0x8230e934,0x8230e935,0x8230e936,0x8230e937,0x8230e938,0x8230e939,0x8230ea30, +0x8230ea31,0x8230ea32,0x8230ea33,0x8230ea34,0x8230ea35,0x8230ea36,0x8230ea37, +0x8230ea38,0x8230ea39,0x8230eb30,0x8230eb31,0x8230eb32,0x8230eb33,0x8230eb34, +0x8230eb35,0x8230eb36,0x8230eb37,0x8230eb38,0x8230eb39,0x8230ec30,0x8230ec31, +0x8230ec32,0x8230ec33,0x8230ec34,0x8230ec35,0x8230ec36,0x8230ec37,0x8230ec38, +0x8230ec39,0x8230ed30,0x8230ed31,0x8230ed32,0x8230ed33,0x8230ed34,0x8230ed35, +0x8230ed36,0x8230ed37,0x8230ed38,0x8230ed39,0x8230ee30,0x8230ee31,0x8230ee32, +0x8230ee33,0x8230ee34,0x8230ee35,0x8230ee36,0x8230ee37,0x8230ee38,0x8230ee39, +0x8230ef30,0x8230ef31,0x8230ef32,0x8230ef33,0x8230ef34,0x8230ef35,0x8230ef36, +0x8230ef37,0x8230ef38,0x8230ef39,0x8230f030,0x8230f031,0x8230f032,0x8230f033, +0x8230f034,0x8230f035,0x8230f036,0x8230f037,0x8230f038,0x8230f039,0x8230f130, +0x8230f131,0x8230f132,0x8230f133,0x8230f134,0x8230f135,0x8230f136,0x8230f137, +0x8230f138,0x8230f139,0x8230f230,0x8230f231,0x8230f232,0x8230f233,0x8230f234, +0x8230f235,0x8230f236,0x8230f237,0xfe60,0x8230f238,0x8230f239,0x8230f330, +0x8230f331,0x8230f332,0x8230f333,0x8230f334,0x8230f335,0x8230f336,0x8230f337, +0x8230f338,0x8230f339,0x8230f430,0x8230f431,0x8230f432,0x8230f433,0x8230f434, +0x8230f435,0x8230f436,0x8230f437,0x8230f438,0x8230f439,0x8230f530,0x8230f531, +0x8230f532,0x8230f533,0x8230f534,0x8230f535,0x8230f536,0x8230f537,0x8230f538, +0x8230f539,0x8230f630,0x8230f631,0x8230f632,0x8230f633,0x8230f634,0x8230f635, +0x8230f636,0x8230f637,0x8230f638,0x8230f639,0x8230f730,0x8230f731,0x8230f732, +0x8230f733,0x8230f734,0x8230f735,0x8230f736,0x8230f737,0x8230f738,0x8230f739, +0x8230f830,0x8230f831,0x8230f832,0x8230f833,0x8230f834,0x8230f835,0x8230f836, +0x8230f837,0x8230f838,0x8230f839,0x8230f930,0x8230f931,0x8230f932,0x8230f933, +0x8230f934,0x8230f935,0x8230f936,0x8230f937,0x8230f938,0x8230f939,0x8230fa30, +0x8230fa31,0x8230fa32,0x8230fa33,0x8230fa34,0x8230fa35,0x8230fa36,0x8230fa37, +0x8230fa38,0x8230fa39,0x8230fb30,0x8230fb31,0x8230fb32,0xfe5f,0x8230fb33, +0x8230fb34,0x8230fb35,0x8230fb36,0x8230fb37,0x8230fb38,0x8230fb39,0x8230fc30, +0x8230fc31,0x8230fc32,0x8230fc33,0x8230fc34,0x8230fc35,0x8230fc36,0x8230fc37, +0x8230fc38,0x8230fc39,0x8230fd30,0x8230fd31,0x8230fd32,0x8230fd33,0x8230fd34, +0x8230fd35,0x8230fd36,0x8230fd37,0x8230fd38,0x8230fd39,0x8230fe30,0x8230fe31, +0x8230fe32,0x8230fe33,0x8230fe34,0x8230fe35,0x8230fe36,0x8230fe37,0x8230fe38, +0x8230fe39,0x82318130,0x82318131,0x82318132,0x82318133,0x82318134,0x82318135, +0x82318136,0x82318137,0x82318138,0x82318139,0x82318230,0x82318231,0x82318232, +0x82318233,0x82318234,0x82318235,0x82318236,0x82318237,0x82318238,0x82318239, +0x82318330,0x82318331,0x82318332,0x82318333,0x82318334,0x82318335,0x82318336, +0x82318337,0x82318338,0x82318339,0x82318430,0x82318431,0x82318432,0x82318433, +0x82318434,0x82318435,0x82318436,0x82318437,0x82318438,0x82318439,0x82318530, +0x82318531,0x82318532,0x82318533,0x82318534,0x82318535,0x82318536,0x82318537, +0x82318538,0x82318539,0x82318630,0x82318631,0x82318632,0x82318633,0x82318634, +0x82318635,0x82318636,0x82318637,0x82318638,0xfe62,0xfe65,0x82318639,0x82318730, +0x82318731,0x82318732,0x82318733,0x82318734,0x82318735,0x82318736,0x82318737, +0x82318738,0x82318739,0x82318830,0x82318831,0x82318832,0xfe63,0x82318833, +0x82318834,0x82318835,0x82318836,0x82318837,0x82318838,0x82318839,0x82318930, +0x82318931,0x82318932,0x82318933,0x82318934,0x82318935,0x82318936,0x82318937, +0x82318938,0x82318939,0x82318a30,0x82318a31,0x82318a32,0x82318a33,0x82318a34, +0x82318a35,0x82318a36,0x82318a37,0x82318a38,0x82318a39,0x82318b30,0x82318b31, +0x82318b32,0x82318b33,0x82318b34,0x82318b35,0x82318b36,0x82318b37,0x82318b38, +0x82318b39,0x82318c30,0x82318c31,0x82318c32,0x82318c33,0x82318c34,0x82318c35, +0x82318c36,0x82318c37,0x82318c38,0x82318c39,0x82318d30,0x82318d31,0x82318d32, +0x82318d33,0x82318d34,0x82318d35,0x82318d36,0x82318d37,0x82318d38,0x82318d39, +0x82318e30,0x82318e31,0x82318e32,0x82318e33,0x82318e34,0x82318e35,0x82318e36, +0x82318e37,0x82318e38,0x82318e39,0x82318f30,0x82318f31,0x82318f32,0x82318f33, +0x82318f34,0x82318f35,0x82318f36,0x82318f37,0x82318f38,0x82318f39,0x82319030, +0x82319031,0x82319032,0x82319033,0x82319034,0x82319035,0x82319036,0x82319037, +0x82319038,0x82319039,0x82319130,0x82319131,0x82319132,0x82319133,0x82319134, +0x82319135,0x82319136,0x82319137,0x82319138,0x82319139,0x82319230,0x82319231, +0x82319232,0x82319233,0x82319234,0x82319235,0x82319236,0x82319237,0x82319238, +0x82319239,0x82319330,0x82319331,0x82319332,0x82319333,0x82319334,0x82319335, +0x82319336,0x82319337,0x82319338,0x82319339,0x82319430,0x82319431,0x82319432, +0x82319433,0x82319434,0x82319435,0x82319436,0x82319437,0x82319438,0x82319439, +0x82319530,0x82319531,0x82319532,0x82319533,0x82319534,0x82319535,0x82319536, +0x82319537,0x82319538,0x82319539,0x82319630,0x82319631,0x82319632,0x82319633, +0x82319634,0x82319635,0x82319636,0x82319637,0x82319638,0x82319639,0xfe64, +0x82319730,0x82319731,0x82319732,0x82319733,0x82319734,0x82319735,0x82319736, +0x82319737,0x82319738,0x82319739,0x82319830,0x82319831,0x82319832,0x82319833, +0x82319834,0x82319835,0x82319836,0x82319837,0x82319838,0x82319839,0x82319930, +0x82319931,0x82319932,0x82319933,0x82319934,0x82319935,0x82319936,0x82319937, +0x82319938,0x82319939,0x82319a30,0x82319a31,0x82319a32,0x82319a33,0x82319a34, +0x82319a35,0x82319a36,0x82319a37,0x82319a38,0x82319a39,0x82319b30,0x82319b31, +0x82319b32,0x82319b33,0x82319b34,0x82319b35,0x82319b36,0x82319b37,0x82319b38, +0x82319b39,0x82319c30,0x82319c31,0x82319c32,0x82319c33,0x82319c34,0x82319c35, +0x82319c36,0x82319c37,0x82319c38,0x82319c39,0x82319d30,0x82319d31,0x82319d32, +0x82319d33,0x82319d34,0x82319d35,0x82319d36,0x82319d37,0x82319d38,0x82319d39, +0x82319e30,0x82319e31,0x82319e32,0x82319e33,0x82319e34,0x82319e35,0x82319e36, +0x82319e37,0x82319e38,0x82319e39,0x82319f30,0x82319f31,0x82319f32,0x82319f33, +0x82319f34,0x82319f35,0x82319f36,0x82319f37,0x82319f38,0x82319f39,0x8231a030, +0x8231a031,0x8231a032,0x8231a033,0x8231a034,0x8231a035,0x8231a036,0x8231a037, +0x8231a038,0x8231a039,0x8231a130,0x8231a131,0x8231a132,0x8231a133,0x8231a134, +0x8231a135,0x8231a136,0x8231a137,0x8231a138,0x8231a139,0x8231a230,0x8231a231, +0x8231a232,0x8231a233,0x8231a234,0x8231a235,0x8231a236,0x8231a237,0x8231a238, +0x8231a239,0x8231a330,0x8231a331,0x8231a332,0x8231a333,0x8231a334,0x8231a335, +0x8231a336,0x8231a337,0x8231a338,0x8231a339,0x8231a430,0x8231a431,0x8231a432, +0x8231a433,0x8231a434,0x8231a435,0x8231a436,0x8231a437,0x8231a438,0x8231a439, +0x8231a530,0x8231a531,0x8231a532,0x8231a533,0x8231a534,0x8231a535,0x8231a536, +0x8231a537,0x8231a538,0x8231a539,0x8231a630,0x8231a631,0x8231a632,0x8231a633, +0x8231a634,0x8231a635,0x8231a636,0x8231a637,0x8231a638,0x8231a639,0x8231a730, +0x8231a731,0x8231a732,0x8231a733,0x8231a734,0x8231a735,0x8231a736,0x8231a737, +0x8231a738,0x8231a739,0x8231a830,0x8231a831,0x8231a832,0x8231a833,0x8231a834, +0x8231a835,0x8231a836,0x8231a837,0x8231a838,0x8231a839,0x8231a930,0x8231a931, +0x8231a932,0x8231a933,0x8231a934,0x8231a935,0x8231a936,0x8231a937,0x8231a938, +0x8231a939,0x8231aa30,0x8231aa31,0x8231aa32,0x8231aa33,0x8231aa34,0x8231aa35, +0x8231aa36,0x8231aa37,0x8231aa38,0x8231aa39,0x8231ab30,0x8231ab31,0x8231ab32, +0x8231ab33,0x8231ab34,0x8231ab35,0x8231ab36,0x8231ab37,0x8231ab38,0x8231ab39, +0x8231ac30,0x8231ac31,0x8231ac32,0x8231ac33,0x8231ac34,0x8231ac35,0x8231ac36, +0x8231ac37,0xfe68,0x8231ac38,0x8231ac39,0x8231ad30,0x8231ad31,0x8231ad32, +0x8231ad33,0x8231ad34,0x8231ad35,0x8231ad36,0x8231ad37,0x8231ad38,0x8231ad39, +0x8231ae30,0x8231ae31,0x8231ae32,0x8231ae33,0x8231ae34,0x8231ae35,0x8231ae36, +0x8231ae37,0x8231ae38,0x8231ae39,0x8231af30,0x8231af31,0x8231af32,0x8231af33, +0x8231af34,0x8231af35,0x8231af36,0x8231af37,0x8231af38,0x8231af39,0x8231b030, +0x8231b031,0x8231b032,0x8231b033,0x8231b034,0x8231b035,0x8231b036,0x8231b037, +0x8231b038,0x8231b039,0x8231b130,0x8231b131,0x8231b132,0x8231b133,0x8231b134, +0x8231b135,0x8231b136,0x8231b137,0x8231b138,0x8231b139,0x8231b230,0x8231b231, +0x8231b232,0x8231b233,0x8231b234,0x8231b235,0x8231b236,0x8231b237,0x8231b238, +0x8231b239,0x8231b330,0x8231b331,0x8231b332,0x8231b333,0x8231b334,0x8231b335, +0x8231b336,0x8231b337,0x8231b338,0x8231b339,0x8231b430,0x8231b431,0x8231b432, +0x8231b433,0x8231b434,0x8231b435,0x8231b436,0x8231b437,0x8231b438,0x8231b439, +0x8231b530,0x8231b531,0x8231b532,0x8231b533,0x8231b534,0x8231b535,0x8231b536, +0x8231b537,0x8231b538,0x8231b539,0x8231b630,0x8231b631,0x8231b632,0x8231b633, +0x8231b634,0x8231b635,0x8231b636,0x8231b637,0x8231b638,0x8231b639,0x8231b730, +0x8231b731,0x8231b732,0x8231b733,0x8231b734,0x8231b735,0x8231b736,0x8231b737, +0x8231b738,0x8231b739,0x8231b830,0x8231b831,0x8231b832,0x8231b833,0x8231b834, +0x8231b835,0x8231b836,0x8231b837,0x8231b838,0x8231b839,0x8231b930,0x8231b931, +0x8231b932,0x8231b933,0x8231b934,0x8231b935,0x8231b936,0x8231b937,0x8231b938, +0x8231b939,0x8231ba30,0x8231ba31,0x8231ba32,0x8231ba33,0x8231ba34,0x8231ba35, +0x8231ba36,0x8231ba37,0x8231ba38,0x8231ba39,0x8231bb30,0x8231bb31,0x8231bb32, +0x8231bb33,0x8231bb34,0x8231bb35,0x8231bb36,0x8231bb37,0x8231bb38,0x8231bb39, +0x8231bc30,0x8231bc31,0x8231bc32,0x8231bc33,0x8231bc34,0x8231bc35,0x8231bc36, +0x8231bc37,0x8231bc38,0x8231bc39,0x8231bd30,0x8231bd31,0x8231bd32,0x8231bd33, +0x8231bd34,0x8231bd35,0x8231bd36,0x8231bd37,0x8231bd38,0x8231bd39,0x8231be30, +0x8231be31,0x8231be32,0x8231be33,0x8231be34,0x8231be35,0x8231be36,0x8231be37, +0x8231be38,0x8231be39,0x8231bf30,0x8231bf31,0x8231bf32,0x8231bf33,0x8231bf34, +0x8231bf35,0x8231bf36,0x8231bf37,0x8231bf38,0x8231bf39,0x8231c030,0x8231c031, +0x8231c032,0x8231c033,0x8231c034,0x8231c035,0x8231c036,0x8231c037,0x8231c038, +0x8231c039,0x8231c130,0x8231c131,0x8231c132,0x8231c133,0x8231c134,0x8231c135, +0x8231c136,0x8231c137,0x8231c138,0x8231c139,0x8231c230,0x8231c231,0x8231c232, +0x8231c233,0x8231c234,0x8231c235,0x8231c236,0x8231c237,0x8231c238,0x8231c239, +0x8231c330,0x8231c331,0x8231c332,0x8231c333,0x8231c334,0x8231c335,0x8231c336, +0x8231c337,0x8231c338,0x8231c339,0x8231c430,0x8231c431,0x8231c432,0x8231c433, +0x8231c434,0x8231c435,0x8231c436,0x8231c437,0x8231c438,0x8231c439,0x8231c530, +0x8231c531,0x8231c532,0x8231c533,0x8231c534,0x8231c535,0x8231c536,0x8231c537, +0x8231c538,0x8231c539,0x8231c630,0x8231c631,0x8231c632,0x8231c633,0x8231c634, +0x8231c635,0x8231c636,0x8231c637,0x8231c638,0x8231c639,0x8231c730,0x8231c731, +0x8231c732,0x8231c733,0x8231c734,0x8231c735,0x8231c736,0x8231c737,0x8231c738, +0x8231c739,0x8231c830,0x8231c831,0x8231c832,0x8231c833,0x8231c834,0x8231c835, +0x8231c836,0x8231c837,0x8231c838,0x8231c839,0x8231c930,0x8231c931,0x8231c932, +0x8231c933,0x8231c934,0xfe69,0x8231c935,0x8231c936,0x8231c937,0x8231c938, +0x8231c939,0x8231ca30,0x8231ca31,0x8231ca32,0x8231ca33,0x8231ca34,0x8231ca35, +0x8231ca36,0x8231ca37,0x8231ca38,0x8231ca39,0x8231cb30,0x8231cb31,0x8231cb32, +0x8231cb33,0x8231cb34,0x8231cb35,0x8231cb36,0x8231cb37,0x8231cb38,0x8231cb39, +0x8231cc30,0x8231cc31,0x8231cc32,0x8231cc33,0x8231cc34,0x8231cc35,0x8231cc36, +0x8231cc37,0x8231cc38,0x8231cc39,0x8231cd30,0x8231cd31,0x8231cd32,0x8231cd33, +0x8231cd34,0x8231cd35,0x8231cd36,0x8231cd37,0x8231cd38,0x8231cd39,0x8231ce30, +0x8231ce31,0x8231ce32,0x8231ce33,0x8231ce34,0x8231ce35,0x8231ce36,0x8231ce37, +0x8231ce38,0x8231ce39,0x8231cf30,0x8231cf31,0x8231cf32,0x8231cf33,0x8231cf34, +0x8231cf35,0x8231cf36,0x8231cf37,0x8231cf38,0x8231cf39,0x8231d030,0x8231d031, +0x8231d032,0x8231d033,0x8231d034,0x8231d035,0x8231d036,0x8231d037,0x8231d038, +0x8231d039,0x8231d130,0x8231d131,0x8231d132,0x8231d133,0x8231d134,0x8231d135, +0x8231d136,0x8231d137,0x8231d138,0x8231d139,0x8231d230,0x8231d231,0x8231d232, +0x8231d233,0x8231d234,0x8231d235,0x8231d236,0x8231d237,0x8231d238,0x8231d239, +0x8231d330,0x8231d331,0x8231d332,0x8231d333,0x8231d334,0x8231d335,0x8231d336, +0x8231d337,0x8231d338,0x8231d339,0x8231d430,0x8231d431,0x8231d432,0x8231d433, +0x8231d434,0x8231d435,0x8231d436,0x8231d437,0xfe6a,0x8231d438,0x8231d439, +0x8231d530,0x8231d531,0x8231d532,0x8231d533,0x8231d534,0x8231d535,0x8231d536, +0x8231d537,0x8231d538,0x8231d539,0x8231d630,0x8231d631,0x8231d632,0x8231d633, +0x8231d634,0x8231d635,0x8231d636,0x8231d637,0x8231d638,0x8231d639,0x8231d730, +0x8231d731,0x8231d732,0x8231d733,0x8231d734,0x8231d735,0x8231d736,0x8231d737, +0x8231d738,0x8231d739,0x8231d830,0x8231d831,0x8231d832,0x8231d833,0x8231d834, +0x8231d835,0x8231d836,0x8231d837,0x8231d838,0x8231d839,0x8231d930,0x8231d931, +0x8231d932,0x8231d933,0x8231d934,0x8231d935,0x8231d936,0x8231d937,0x8231d938, +0x8231d939,0x8231da30,0x8231da31,0x8231da32,0x8231da33,0x8231da34,0x8231da35, +0x8231da36,0x8231da37,0x8231da38,0x8231da39,0x8231db30,0x8231db31,0x8231db32, +0x8231db33,0x8231db34,0x8231db35,0x8231db36,0x8231db37,0x8231db38,0x8231db39, +0x8231dc30,0x8231dc31,0x8231dc32,0x8231dc33,0x8231dc34,0x8231dc35,0x8231dc36, +0x8231dc37,0x8231dc38,0x8231dc39,0x8231dd30,0x8231dd31,0x8231dd32,0x8231dd33, +0x8231dd34,0x8231dd35,0x8231dd36,0x8231dd37,0x8231dd38,0x8231dd39,0x8231de30, +0x8231de31,0x8231de32,0x8231de33,0x8231de34,0x8231de35,0x8231de36,0x8231de37, +0x8231de38,0x8231de39,0x8231df30,0x8231df31,0x8231df32,0x8231df33,0x8231df34, +0x8231df35,0x8231df36,0x8231df37,0x8231df38,0x8231df39,0x8231e030,0x8231e031, +0x8231e032,0x8231e033,0x8231e034,0x8231e035,0x8231e036,0x8231e037,0x8231e038, +0x8231e039,0x8231e130,0x8231e131,0x8231e132,0x8231e133,0x8231e134,0x8231e135, +0x8231e136,0x8231e137,0x8231e138,0x8231e139,0x8231e230,0x8231e231,0x8231e232, +0x8231e233,0x8231e234,0x8231e235,0x8231e236,0x8231e237,0x8231e238,0x8231e239, +0x8231e330,0x8231e331,0x8231e332,0x8231e333,0x8231e334,0x8231e335,0x8231e336, +0x8231e337,0x8231e338,0x8231e339,0x8231e430,0x8231e431,0x8231e432,0x8231e433, +0x8231e434,0x8231e435,0x8231e436,0x8231e437,0x8231e438,0x8231e439,0x8231e530, +0x8231e531,0x8231e532,0x8231e533,0x8231e534,0x8231e535,0x8231e536,0x8231e537, +0x8231e538,0x8231e539,0x8231e630,0x8231e631,0x8231e632,0x8231e633,0x8231e634, +0x8231e635,0x8231e636,0x8231e637,0x8231e638,0x8231e639,0x8231e730,0x8231e731, +0x8231e732,0x8231e733,0x8231e734,0x8231e735,0x8231e736,0x8231e737,0x8231e738, +0x8231e739,0x8231e830,0x8231e831,0x8231e832,0x8231e833,0x8231e834,0x8231e835, +0x8231e836,0x8231e837,0x8231e838,0x8231e839,0x8231e930,0x8231e931,0x8231e932, +0x8231e933,0x8231e934,0x8231e935,0x8231e936,0x8231e937,0x8231e938,0x8231e939, +0x8231ea30,0x8231ea31,0x8231ea32,0x8231ea33,0x8231ea34,0x8231ea35,0x8231ea36, +0x8231ea37,0x8231ea38,0x8231ea39,0x8231eb30,0x8231eb31,0x8231eb32,0x8231eb33, +0x8231eb34,0x8231eb35,0x8231eb36,0x8231eb37,0x8231eb38,0x8231eb39,0x8231ec30, +0x8231ec31,0x8231ec32,0x8231ec33,0x8231ec34,0x8231ec35,0x8231ec36,0x8231ec37, +0x8231ec38,0x8231ec39,0x8231ed30,0x8231ed31,0x8231ed32,0x8231ed33,0x8231ed34, +0x8231ed35,0x8231ed36,0x8231ed37,0x8231ed38,0x8231ed39,0x8231ee30,0x8231ee31, +0x8231ee32,0x8231ee33,0x8231ee34,0x8231ee35,0x8231ee36,0x8231ee37,0x8231ee38, +0x8231ee39,0x8231ef30,0x8231ef31,0x8231ef32,0x8231ef33,0x8231ef34,0x8231ef35, +0x8231ef36,0x8231ef37,0x8231ef38,0x8231ef39,0x8231f030,0x8231f031,0x8231f032, +0x8231f033,0x8231f034,0x8231f035,0x8231f036,0x8231f037,0x8231f038,0x8231f039, +0x8231f130,0x8231f131,0x8231f132,0x8231f133,0x8231f134,0x8231f135,0x8231f136, +0x8231f137,0x8231f138,0x8231f139,0x8231f230,0x8231f231,0x8231f232,0x8231f233, +0x8231f234,0x8231f235,0x8231f236,0x8231f237,0x8231f238,0x8231f239,0x8231f330, +0x8231f331,0x8231f332,0x8231f333,0x8231f334,0x8231f335,0x8231f336,0x8231f337, +0x8231f338,0x8231f339,0x8231f430,0x8231f431,0x8231f432,0x8231f433,0x8231f434, +0x8231f435,0x8231f436,0x8231f437,0x8231f438,0x8231f439,0x8231f530,0x8231f531, +0x8231f532,0x8231f533,0x8231f534,0x8231f535,0x8231f536,0x8231f537,0x8231f538, +0x8231f539,0x8231f630,0x8231f631,0x8231f632,0x8231f633,0x8231f634,0x8231f635, +0x8231f636,0x8231f637,0x8231f638,0x8231f639,0x8231f730,0x8231f731,0x8231f732, +0x8231f733,0x8231f734,0x8231f735,0x8231f736,0x8231f737,0x8231f738,0x8231f739, +0x8231f830,0x8231f831,0x8231f832,0x8231f833,0x8231f834,0x8231f835,0x8231f836, +0x8231f837,0x8231f838,0x8231f839,0x8231f930,0x8231f931,0x8231f932,0x8231f933, +0x8231f934,0x8231f935,0x8231f936,0x8231f937,0x8231f938,0x8231f939,0x8231fa30, +0x8231fa31,0x8231fa32,0x8231fa33,0x8231fa34,0x8231fa35,0x8231fa36,0x8231fa37, +0x8231fa38,0x8231fa39,0x8231fb30,0x8231fb31,0x8231fb32,0x8231fb33,0x8231fb34, +0x8231fb35,0x8231fb36,0x8231fb37,0x8231fb38,0x8231fb39,0x8231fc30,0x8231fc31, +0x8231fc32,0x8231fc33,0x8231fc34,0x8231fc35,0x8231fc36,0x8231fc37,0x8231fc38, +0x8231fc39,0x8231fd30,0x8231fd31,0x8231fd32,0x8231fd33,0x8231fd34,0x8231fd35, +0x8231fd36,0x8231fd37,0x8231fd38,0x8231fd39,0x8231fe30,0x8231fe31,0x8231fe32, +0x8231fe33,0x8231fe34,0x8231fe35,0x8231fe36,0x8231fe37,0x8231fe38,0x8231fe39, +0x82328130,0x82328131,0x82328132,0x82328133,0x82328134,0x82328135,0x82328136, +0x82328137,0x82328138,0x82328139,0x82328230,0x82328231,0x82328232,0x82328233, +0x82328234,0x82328235,0x82328236,0x82328237,0x82328238,0x82328239,0x82328330, +0x82328331,0x82328332,0x82328333,0x82328334,0x82328335,0x82328336,0x82328337, +0x82328338,0x82328339,0x82328430,0x82328431,0x82328432,0x82328433,0x82328434, +0x82328435,0x82328436,0x82328437,0x82328438,0x82328439,0x82328530,0x82328531, +0x82328532,0x82328533,0x82328534,0x82328535,0x82328536,0x82328537,0x82328538, +0x82328539,0x82328630,0x82328631,0x82328632,0x82328633,0x82328634,0x82328635, +0x82328636,0x82328637,0x82328638,0x82328639,0x82328730,0x82328731,0x82328732, +0x82328733,0x82328734,0x82328735,0x82328736,0x82328737,0x82328738,0x82328739, +0x82328830,0x82328831,0x82328832,0x82328833,0x82328834,0x82328835,0x82328836, +0x82328837,0x82328838,0x82328839,0x82328930,0x82328931,0x82328932,0x82328933, +0x82328934,0x82328935,0x82328936,0x82328937,0x82328938,0x82328939,0x82328a30, +0x82328a31,0x82328a32,0x82328a33,0x82328a34,0x82328a35,0x82328a36,0x82328a37, +0x82328a38,0x82328a39,0x82328b30,0x82328b31,0x82328b32,0x82328b33,0x82328b34, +0x82328b35,0x82328b36,0x82328b37,0x82328b38,0x82328b39,0x82328c30,0x82328c31, +0x82328c32,0x82328c33,0x82328c34,0x82328c35,0x82328c36,0x82328c37,0x82328c38, +0x82328c39,0x82328d30,0x82328d31,0x82328d32,0x82328d33,0x82328d34,0x82328d35, +0x82328d36,0x82328d37,0x82328d38,0x82328d39,0x82328e30,0x82328e31,0x82328e32, +0x82328e33,0x82328e34,0x82328e35,0x82328e36,0x82328e37,0x82328e38,0x82328e39, +0x82328f30,0x82328f31,0x82328f32,0x82328f33,0x82328f34,0x82328f35,0x82328f36, +0x82328f37,0x82328f38,0x82328f39,0x82329030,0x82329031,0x82329032,0x82329033, +0x82329034,0x82329035,0x82329036,0x82329037,0x82329038,0x82329039,0x82329130, +0x82329131,0x82329132,0x82329133,0x82329134,0x82329135,0x82329136,0x82329137, +0x82329138,0x82329139,0x82329230,0x82329231,0x82329232,0x82329233,0x82329234, +0x82329235,0x82329236,0x82329237,0x82329238,0x82329239,0x82329330,0x82329331, +0x82329332,0x82329333,0x82329334,0x82329335,0x82329336,0x82329337,0x82329338, +0x82329339,0x82329430,0x82329431,0x82329432,0x82329433,0x82329434,0x82329435, +0x82329436,0x82329437,0x82329438,0x82329439,0x82329530,0x82329531,0x82329532, +0x82329533,0x82329534,0x82329535,0x82329536,0x82329537,0x82329538,0x82329539, +0x82329630,0x82329631,0x82329632,0x82329633,0x82329634,0x82329635,0x82329636, +0x82329637,0x82329638,0x82329639,0x82329730,0x82329731,0x82329732,0x82329733, +0x82329734,0x82329735,0x82329736,0x82329737,0x82329738,0x82329739,0x82329830, +0x82329831,0x82329832,0x82329833,0x82329834,0x82329835,0x82329836,0x82329837, +0x82329838,0x82329839,0x82329930,0x82329931,0x82329932,0x82329933,0x82329934, +0x82329935,0x82329936,0x82329937,0x82329938,0x82329939,0x82329a30,0x82329a31, +0x82329a32,0x82329a33,0x82329a34,0x82329a35,0x82329a36,0x82329a37,0x82329a38, +0x82329a39,0x82329b30,0x82329b31,0x82329b32,0x82329b33,0x82329b34,0x82329b35, +0x82329b36,0x82329b37,0x82329b38,0x82329b39,0x82329c30,0x82329c31,0x82329c32, +0x82329c33,0x82329c34,0x82329c35,0x82329c36,0x82329c37,0x82329c38,0x82329c39, +0x82329d30,0x82329d31,0x82329d32,0x82329d33,0x82329d34,0x82329d35,0x82329d36, +0x82329d37,0x82329d38,0x82329d39,0x82329e30,0x82329e31,0x82329e32,0x82329e33, +0x82329e34,0x82329e35,0x82329e36,0x82329e37,0x82329e38,0x82329e39,0x82329f30, +0x82329f31,0x82329f32,0x82329f33,0x82329f34,0x82329f35,0x82329f36,0x82329f37, +0x82329f38,0x82329f39,0x8232a030,0x8232a031,0x8232a032,0x8232a033,0x8232a034, +0x8232a035,0x8232a036,0x8232a037,0x8232a038,0x8232a039,0x8232a130,0x8232a131, +0x8232a132,0x8232a133,0x8232a134,0x8232a135,0x8232a136,0x8232a137,0x8232a138, +0x8232a139,0x8232a230,0x8232a231,0x8232a232,0x8232a233,0x8232a234,0x8232a235, +0x8232a236,0x8232a237,0x8232a238,0x8232a239,0x8232a330,0x8232a331,0x8232a332, +0x8232a333,0x8232a334,0x8232a335,0x8232a336,0x8232a337,0x8232a338,0x8232a339, +0x8232a430,0x8232a431,0x8232a432,0x8232a433,0x8232a434,0x8232a435,0x8232a436, +0x8232a437,0x8232a438,0x8232a439,0x8232a530,0x8232a531,0x8232a532,0x8232a533, +0x8232a534,0x8232a535,0x8232a536,0x8232a537,0x8232a538,0x8232a539,0x8232a630, +0x8232a631,0x8232a632,0x8232a633,0x8232a634,0x8232a635,0x8232a636,0x8232a637, +0x8232a638,0x8232a639,0x8232a730,0x8232a731,0x8232a732,0x8232a733,0x8232a734, +0x8232a735,0x8232a736,0x8232a737,0x8232a738,0x8232a739,0x8232a830,0x8232a831, +0x8232a832,0x8232a833,0x8232a834,0x8232a835,0x8232a836,0x8232a837,0x8232a838, +0x8232a839,0x8232a930,0x8232a931,0x8232a932,0x8232a933,0x8232a934,0x8232a935, +0x8232a936,0x8232a937,0x8232a938,0x8232a939,0x8232aa30,0x8232aa31,0x8232aa32, +0x8232aa33,0x8232aa34,0x8232aa35,0x8232aa36,0x8232aa37,0x8232aa38,0x8232aa39, +0x8232ab30,0x8232ab31,0x8232ab32,0x8232ab33,0x8232ab34,0x8232ab35,0x8232ab36, +0x8232ab37,0x8232ab38,0x8232ab39,0x8232ac30,0x8232ac31,0x8232ac32,0x8232ac33, +0x8232ac34,0x8232ac35,0x8232ac36,0x8232ac37,0x8232ac38,0x8232ac39,0x8232ad30, +0x8232ad31,0x8232ad32,0x8232ad33,0x8232ad34,0x8232ad35,0x8232ad36,0x8232ad37, +0x8232ad38,0x8232ad39,0x8232ae30,0x8232ae31,0x8232ae32,0x8232ae33,0x8232ae34, +0x8232ae35,0x8232ae36,0x8232ae37,0x8232ae38,0x8232ae39,0x8232af30,0x8232af31, +0x8232af32,0xfe6f,0x8232af33,0x8232af34,0x8232af35,0x8232af36,0x8232af37, +0x8232af38,0x8232af39,0x8232b030,0x8232b031,0x8232b032,0x8232b033,0x8232b034, +0x8232b035,0x8232b036,0x8232b037,0x8232b038,0x8232b039,0x8232b130,0x8232b131, +0x8232b132,0x8232b133,0x8232b134,0x8232b135,0x8232b136,0x8232b137,0x8232b138, +0x8232b139,0x8232b230,0x8232b231,0x8232b232,0x8232b233,0x8232b234,0x8232b235, +0x8232b236,0x8232b237,0x8232b238,0x8232b239,0x8232b330,0x8232b331,0x8232b332, +0x8232b333,0x8232b334,0x8232b335,0x8232b336,0x8232b337,0x8232b338,0x8232b339, +0x8232b430,0x8232b431,0x8232b432,0x8232b433,0x8232b434,0x8232b435,0x8232b436, +0x8232b437,0x8232b438,0x8232b439,0x8232b530,0x8232b531,0x8232b532,0x8232b533, +0x8232b534,0x8232b535,0x8232b536,0x8232b537,0x8232b538,0x8232b539,0x8232b630, +0x8232b631,0x8232b632,0x8232b633,0x8232b634,0x8232b635,0x8232b636,0x8232b637, +0x8232b638,0x8232b639,0x8232b730,0x8232b731,0x8232b732,0x8232b733,0x8232b734, +0x8232b735,0x8232b736,0x8232b737,0x8232b738,0x8232b739,0x8232b830,0x8232b831, +0x8232b832,0x8232b833,0x8232b834,0x8232b835,0x8232b836,0x8232b837,0x8232b838, +0x8232b839,0x8232b930,0x8232b931,0x8232b932,0x8232b933,0x8232b934,0x8232b935, +0x8232b936,0x8232b937,0x8232b938,0x8232b939,0x8232ba30,0x8232ba31,0x8232ba32, +0x8232ba33,0x8232ba34,0x8232ba35,0x8232ba36,0x8232ba37,0x8232ba38,0x8232ba39, +0x8232bb30,0x8232bb31,0x8232bb32,0x8232bb33,0x8232bb34,0x8232bb35,0x8232bb36, +0x8232bb37,0x8232bb38,0x8232bb39,0x8232bc30,0x8232bc31,0x8232bc32,0x8232bc33, +0x8232bc34,0x8232bc35,0x8232bc36,0x8232bc37,0x8232bc38,0x8232bc39,0x8232bd30, +0x8232bd31,0x8232bd32,0x8232bd33,0x8232bd34,0x8232bd35,0x8232bd36,0x8232bd37, +0x8232bd38,0x8232bd39,0x8232be30,0x8232be31,0x8232be32,0x8232be33,0x8232be34, +0x8232be35,0x8232be36,0x8232be37,0x8232be38,0x8232be39,0x8232bf30,0x8232bf31, +0x8232bf32,0x8232bf33,0x8232bf34,0x8232bf35,0x8232bf36,0x8232bf37,0x8232bf38, +0x8232bf39,0x8232c030,0x8232c031,0x8232c032,0x8232c033,0x8232c034,0x8232c035, +0x8232c036,0x8232c037,0x8232c038,0x8232c039,0x8232c130,0x8232c131,0x8232c132, +0x8232c133,0x8232c134,0x8232c135,0x8232c136,0x8232c137,0x8232c138,0x8232c139, +0x8232c230,0x8232c231,0x8232c232,0x8232c233,0x8232c234,0x8232c235,0x8232c236, +0x8232c237,0x8232c238,0x8232c239,0x8232c330,0x8232c331,0x8232c332,0x8232c333, +0x8232c334,0x8232c335,0x8232c336,0x8232c337,0x8232c338,0x8232c339,0x8232c430, +0x8232c431,0x8232c432,0x8232c433,0x8232c434,0x8232c435,0x8232c436,0x8232c437, +0x8232c438,0x8232c439,0x8232c530,0x8232c531,0x8232c532,0x8232c533,0x8232c534, +0x8232c535,0x8232c536,0x8232c537,0x8232c538,0x8232c539,0x8232c630,0x8232c631, +0x8232c632,0x8232c633,0x8232c634,0x8232c635,0x8232c636,0x8232c637,0x8232c638, +0x8232c639,0x8232c730,0x8232c731,0x8232c732,0x8232c733,0x8232c734,0x8232c735, +0x8232c736,0x8232c737,0x8232c738,0x8232c739,0x8232c830,0x8232c831,0x8232c832, +0x8232c833,0x8232c834,0x8232c835,0x8232c836,0x8232c837,0x8232c838,0x8232c839, +0x8232c930,0x8232c931,0x8232c932,0x8232c933,0x8232c934,0x8232c935,0x8232c936, +0xfe70,0x8232c937,0x8232c938,0x8232c939,0x8232ca30,0x8232ca31,0x8232ca32, +0x8232ca33,0x8232ca34,0x8232ca35,0x8232ca36,0x8232ca37,0x8232ca38,0x8232ca39, +0x8232cb30,0x8232cb31,0x8232cb32,0x8232cb33,0x8232cb34,0x8232cb35,0x8232cb36, +0x8232cb37,0x8232cb38,0x8232cb39,0x8232cc30,0x8232cc31,0x8232cc32,0x8232cc33, +0x8232cc34,0x8232cc35,0x8232cc36,0x8232cc37,0x8232cc38,0x8232cc39,0x8232cd30, +0x8232cd31,0x8232cd32,0x8232cd33,0x8232cd34,0x8232cd35,0x8232cd36,0x8232cd37, +0x8232cd38,0x8232cd39,0x8232ce30,0x8232ce31,0x8232ce32,0x8232ce33,0x8232ce34, +0x8232ce35,0x8232ce36,0x8232ce37,0x8232ce38,0x8232ce39,0x8232cf30,0x8232cf31, +0x8232cf32,0x8232cf33,0x8232cf34,0x8232cf35,0x8232cf36,0x8232cf37,0x8232cf38, +0x8232cf39,0x8232d030,0x8232d031,0x8232d032,0x8232d033,0x8232d034,0x8232d035, +0x8232d036,0x8232d037,0x8232d038,0x8232d039,0x8232d130,0x8232d131,0x8232d132, +0x8232d133,0x8232d134,0x8232d135,0x8232d136,0x8232d137,0x8232d138,0x8232d139, +0x8232d230,0x8232d231,0x8232d232,0x8232d233,0x8232d234,0x8232d235,0x8232d236, +0x8232d237,0x8232d238,0x8232d239,0x8232d330,0x8232d331,0x8232d332,0x8232d333, +0x8232d334,0x8232d335,0x8232d336,0x8232d337,0x8232d338,0x8232d339,0x8232d430, +0x8232d431,0x8232d432,0x8232d433,0x8232d434,0x8232d435,0x8232d436,0x8232d437, +0x8232d438,0x8232d439,0x8232d530,0x8232d531,0x8232d532,0x8232d533,0x8232d534, +0x8232d535,0x8232d536,0x8232d537,0x8232d538,0x8232d539,0x8232d630,0x8232d631, +0x8232d632,0x8232d633,0x8232d634,0x8232d635,0x8232d636,0x8232d637,0x8232d638, +0x8232d639,0x8232d730,0x8232d731,0x8232d732,0x8232d733,0x8232d734,0x8232d735, +0x8232d736,0x8232d737,0x8232d738,0x8232d739,0x8232d830,0x8232d831,0x8232d832, +0x8232d833,0x8232d834,0x8232d835,0x8232d836,0x8232d837,0x8232d838,0x8232d839, +0x8232d930,0x8232d931,0x8232d932,0x8232d933,0x8232d934,0x8232d935,0x8232d936, +0x8232d937,0x8232d938,0x8232d939,0x8232da30,0x8232da31,0x8232da32,0x8232da33, +0x8232da34,0x8232da35,0x8232da36,0x8232da37,0x8232da38,0x8232da39,0x8232db30, +0x8232db31,0x8232db32,0x8232db33,0x8232db34,0x8232db35,0x8232db36,0x8232db37, +0x8232db38,0x8232db39,0x8232dc30,0x8232dc31,0x8232dc32,0x8232dc33,0x8232dc34, +0x8232dc35,0x8232dc36,0x8232dc37,0x8232dc38,0x8232dc39,0x8232dd30,0x8232dd31, +0x8232dd32,0x8232dd33,0x8232dd34,0x8232dd35,0x8232dd36,0x8232dd37,0x8232dd38, +0x8232dd39,0x8232de30,0x8232de31,0x8232de32,0x8232de33,0x8232de34,0x8232de35, +0x8232de36,0x8232de37,0x8232de38,0x8232de39,0x8232df30,0x8232df31,0x8232df32, +0x8232df33,0x8232df34,0x8232df35,0x8232df36,0x8232df37,0x8232df38,0x8232df39, +0x8232e030,0x8232e031,0x8232e032,0x8232e033,0x8232e034,0x8232e035,0x8232e036, +0x8232e037,0x8232e038,0x8232e039,0x8232e130,0x8232e131,0x8232e132,0x8232e133, +0x8232e134,0x8232e135,0x8232e136,0x8232e137,0x8232e138,0x8232e139,0x8232e230, +0x8232e231,0x8232e232,0x8232e233,0x8232e234,0x8232e235,0x8232e236,0x8232e237, +0x8232e238,0x8232e239,0x8232e330,0x8232e331,0x8232e332,0x8232e333,0x8232e334, +0x8232e335,0x8232e336,0x8232e337,0x8232e338,0x8232e339,0x8232e430,0x8232e431, +0x8232e432,0x8232e433,0x8232e434,0x8232e435,0x8232e436,0x8232e437,0x8232e438, +0x8232e439,0x8232e530,0x8232e531,0x8232e532,0x8232e533,0x8232e534,0x8232e535, +0x8232e536,0x8232e537,0x8232e538,0x8232e539,0x8232e630,0x8232e631,0x8232e632, +0x8232e633,0x8232e634,0x8232e635,0x8232e636,0x8232e637,0x8232e638,0x8232e639, +0x8232e730,0x8232e731,0x8232e732,0x8232e733,0x8232e734,0x8232e735,0x8232e736, +0x8232e737,0x8232e738,0x8232e739,0x8232e830,0x8232e831,0x8232e832,0x8232e833, +0x8232e834,0x8232e835,0x8232e836,0x8232e837,0x8232e838,0x8232e839,0x8232e930, +0x8232e931,0x8232e932,0x8232e933,0x8232e934,0x8232e935,0x8232e936,0x8232e937, +0x8232e938,0x8232e939,0x8232ea30,0x8232ea31,0x8232ea32,0x8232ea33,0x8232ea34, +0x8232ea35,0x8232ea36,0x8232ea37,0x8232ea38,0x8232ea39,0x8232eb30,0x8232eb31, +0x8232eb32,0x8232eb33,0x8232eb34,0x8232eb35,0x8232eb36,0x8232eb37,0x8232eb38, +0x8232eb39,0x8232ec30,0x8232ec31,0x8232ec32,0x8232ec33,0x8232ec34,0x8232ec35, +0x8232ec36,0x8232ec37,0x8232ec38,0x8232ec39,0x8232ed30,0x8232ed31,0x8232ed32, +0x8232ed33,0x8232ed34,0x8232ed35,0x8232ed36,0x8232ed37,0x8232ed38,0x8232ed39, +0x8232ee30,0x8232ee31,0x8232ee32,0x8232ee33,0x8232ee34,0x8232ee35,0x8232ee36, +0x8232ee37,0x8232ee38,0x8232ee39,0x8232ef30,0x8232ef31,0x8232ef32,0x8232ef33, +0x8232ef34,0x8232ef35,0x8232ef36,0x8232ef37,0x8232ef38,0x8232ef39,0x8232f030, +0x8232f031,0x8232f032,0x8232f033,0x8232f034,0x8232f035,0x8232f036,0x8232f037, +0x8232f038,0x8232f039,0x8232f130,0x8232f131,0x8232f132,0x8232f133,0x8232f134, +0x8232f135,0x8232f136,0x8232f137,0x8232f138,0x8232f139,0x8232f230,0x8232f231, +0x8232f232,0x8232f233,0x8232f234,0x8232f235,0x8232f236,0x8232f237,0x8232f238, +0x8232f239,0x8232f330,0x8232f331,0x8232f332,0x8232f333,0x8232f334,0x8232f335, +0x8232f336,0x8232f337,0x8232f338,0x8232f339,0x8232f430,0x8232f431,0x8232f432, +0x8232f433,0x8232f434,0x8232f435,0x8232f436,0x8232f437,0x8232f438,0x8232f439, +0x8232f530,0x8232f531,0x8232f532,0x8232f533,0x8232f534,0x8232f535,0x8232f536, +0x8232f537,0x8232f538,0x8232f539,0x8232f630,0x8232f631,0x8232f632,0x8232f633, +0x8232f634,0x8232f635,0x8232f636,0x8232f637,0x8232f638,0x8232f639,0x8232f730, +0x8232f731,0x8232f732,0x8232f733,0x8232f734,0x8232f735,0x8232f736,0x8232f737, +0x8232f738,0x8232f739,0x8232f830,0x8232f831,0x8232f832,0x8232f833,0x8232f834, +0x8232f835,0x8232f836,0x8232f837,0xfe72,0x8232f838,0x8232f839,0x8232f930, +0x8232f931,0x8232f932,0x8232f933,0x8232f934,0x8232f935,0x8232f936,0x8232f937, +0x8232f938,0x8232f939,0x8232fa30,0x8232fa31,0x8232fa32,0x8232fa33,0x8232fa34, +0x8232fa35,0x8232fa36,0x8232fa37,0x8232fa38,0x8232fa39,0x8232fb30,0x8232fb31, +0x8232fb32,0x8232fb33,0x8232fb34,0x8232fb35,0x8232fb36,0x8232fb37,0x8232fb38, +0x8232fb39,0x8232fc30,0x8232fc31,0x8232fc32,0x8232fc33,0x8232fc34,0x8232fc35, +0x8232fc36,0x8232fc37,0x8232fc38,0x8232fc39,0x8232fd30,0x8232fd31,0x8232fd32, +0x8232fd33,0x8232fd34,0x8232fd35,0x8232fd36,0x8232fd37,0x8232fd38,0x8232fd39, +0x8232fe30,0x8232fe31,0x8232fe32,0x8232fe33,0x8232fe34,0x8232fe35,0x8232fe36, +0x8232fe37,0x8232fe38,0x8232fe39,0x82338130,0x82338131,0x82338132,0x82338133, +0x82338134,0x82338135,0x82338136,0x82338137,0x82338138,0x82338139,0x82338230, +0x82338231,0x82338232,0x82338233,0x82338234,0x82338235,0x82338236,0x82338237, +0x82338238,0x82338239,0x82338330,0x82338331,0x82338332,0x82338333,0x82338334, +0x82338335,0x82338336,0x82338337,0x82338338,0x82338339,0x82338430,0x82338431, +0x82338432,0x82338433,0x82338434,0x82338435,0x82338436,0x82338437,0x82338438, +0x82338439,0x82338530,0x82338531,0x82338532,0x82338533,0x82338534,0x82338535, +0x82338536,0x82338537,0x82338538,0x82338539,0x82338630,0x82338631,0x82338632, +0x82338633,0xfe78,0x82338634,0x82338635,0x82338636,0x82338637,0xfe77,0x82338638, +0x82338639,0x82338730,0x82338731,0x82338732,0x82338733,0x82338734,0x82338735, +0x82338736,0x82338737,0x82338738,0x82338739,0x82338830,0x82338831,0x82338832, +0x82338833,0x82338834,0x82338835,0x82338836,0x82338837,0x82338838,0x82338839, +0x82338930,0x82338931,0x82338932,0x82338933,0x82338934,0x82338935,0x82338936, +0x82338937,0x82338938,0x82338939,0x82338a30,0x82338a31,0x82338a32,0x82338a33, +0x82338a34,0x82338a35,0x82338a36,0x82338a37,0x82338a38,0x82338a39,0x82338b30, +0xfe7a,0x82338b31,0x82338b32,0x82338b33,0x82338b34,0x82338b35,0x82338b36, +0x82338b37,0x82338b38,0x82338b39,0x82338c30,0x82338c31,0x82338c32,0x82338c33, +0x82338c34,0x82338c35,0x82338c36,0x82338c37,0x82338c38,0x82338c39,0x82338d30, +0x82338d31,0x82338d32,0x82338d33,0x82338d34,0x82338d35,0x82338d36,0x82338d37, +0x82338d38,0x82338d39,0x82338e30,0x82338e31,0x82338e32,0x82338e33,0x82338e34, +0x82338e35,0x82338e36,0x82338e37,0x82338e38,0x82338e39,0x82338f30,0x82338f31, +0x82338f32,0x82338f33,0x82338f34,0x82338f35,0x82338f36,0x82338f37,0x82338f38, +0x82338f39,0x82339030,0x82339031,0x82339032,0x82339033,0x82339034,0x82339035, +0x82339036,0x82339037,0x82339038,0x82339039,0x82339130,0x82339131,0x82339132, +0x82339133,0x82339134,0x82339135,0x82339136,0x82339137,0x82339138,0x82339139, +0x82339230,0x82339231,0x82339232,0x82339233,0x82339234,0x82339235,0x82339236, +0x82339237,0x82339238,0x82339239,0x82339330,0x82339331,0x82339332,0x82339333, +0x82339334,0x82339335,0x82339336,0x82339337,0x82339338,0x82339339,0x82339430, +0x82339431,0x82339432,0x82339433,0x82339434,0x82339435,0x82339436,0x82339437, +0x82339438,0x82339439,0x82339530,0x82339531,0x82339532,0x82339533,0x82339534, +0x82339535,0x82339536,0x82339537,0x82339538,0x82339539,0x82339630,0x82339631, +0x82339632,0x82339633,0x82339634,0x82339635,0x82339636,0x82339637,0x82339638, +0x82339639,0x82339730,0x82339731,0x82339732,0x82339733,0x82339734,0x82339735, +0x82339736,0x82339737,0x82339738,0x82339739,0x82339830,0x82339831,0x82339832, +0x82339833,0x82339834,0x82339835,0x82339836,0x82339837,0x82339838,0x82339839, +0x82339930,0x82339931,0x82339932,0x82339933,0x82339934,0x82339935,0x82339936, +0x82339937,0x82339938,0x82339939,0x82339a30,0x82339a31,0x82339a32,0x82339a33, +0x82339a34,0x82339a35,0x82339a36,0x82339a37,0x82339a38,0x82339a39,0x82339b30, +0x82339b31,0x82339b32,0x82339b33,0x82339b34,0x82339b35,0x82339b36,0x82339b37, +0x82339b38,0x82339b39,0x82339c30,0x82339c31,0x82339c32,0x82339c33,0x82339c34, +0x82339c35,0x82339c36,0x82339c37,0x82339c38,0x82339c39,0x82339d30,0x82339d31, +0x82339d32,0x82339d33,0x82339d34,0x82339d35,0x82339d36,0x82339d37,0x82339d38, +0x82339d39,0x82339e30,0x82339e31,0x82339e32,0x82339e33,0x82339e34,0x82339e35, +0x82339e36,0x82339e37,0x82339e38,0x82339e39,0x82339f30,0x82339f31,0x82339f32, +0x82339f33,0x82339f34,0x82339f35,0x82339f36,0x82339f37,0x82339f38,0x82339f39, +0x8233a030,0x8233a031,0x8233a032,0x8233a033,0x8233a034,0x8233a035,0x8233a036, +0x8233a037,0x8233a038,0x8233a039,0x8233a130,0x8233a131,0x8233a132,0x8233a133, +0x8233a134,0x8233a135,0x8233a136,0x8233a137,0x8233a138,0x8233a139,0x8233a230, +0x8233a231,0x8233a232,0x8233a233,0x8233a234,0x8233a235,0x8233a236,0x8233a237, +0x8233a238,0x8233a239,0x8233a330,0x8233a331,0x8233a332,0x8233a333,0x8233a334, +0x8233a335,0x8233a336,0x8233a337,0x8233a338,0xfe7b,0x8233a339,0x8233a430, +0x8233a431,0x8233a432,0x8233a433,0x8233a434,0x8233a435,0x8233a436,0x8233a437, +0x8233a438,0x8233a439,0x8233a530,0x8233a531,0x8233a532,0x8233a533,0x8233a534, +0x8233a535,0x8233a536,0x8233a537,0x8233a538,0x8233a539,0x8233a630,0x8233a631, +0x8233a632,0x8233a633,0x8233a634,0x8233a635,0x8233a636,0x8233a637,0x8233a638, +0x8233a639,0x8233a730,0x8233a731,0x8233a732,0x8233a733,0x8233a734,0x8233a735, +0x8233a736,0x8233a737,0x8233a738,0x8233a739,0x8233a830,0x8233a831,0x8233a832, +0x8233a833,0x8233a834,0x8233a835,0x8233a836,0x8233a837,0x8233a838,0x8233a839, +0x8233a930,0x8233a931,0x8233a932,0x8233a933,0x8233a934,0x8233a935,0x8233a936, +0x8233a937,0x8233a938,0x8233a939,0x8233aa30,0x8233aa31,0x8233aa32,0x8233aa33, +0x8233aa34,0x8233aa35,0x8233aa36,0x8233aa37,0x8233aa38,0x8233aa39,0x8233ab30, +0x8233ab31,0x8233ab32,0x8233ab33,0x8233ab34,0x8233ab35,0x8233ab36,0x8233ab37, +0x8233ab38,0x8233ab39,0x8233ac30,0x8233ac31,0x8233ac32,0x8233ac33,0x8233ac34, +0x8233ac35,0x8233ac36,0x8233ac37,0x8233ac38,0x8233ac39,0x8233ad30,0x8233ad31, +0x8233ad32,0x8233ad33,0x8233ad34,0x8233ad35,0x8233ad36,0x8233ad37,0x8233ad38, +0x8233ad39,0x8233ae30,0x8233ae31,0x8233ae32,0x8233ae33,0x8233ae34,0x8233ae35, +0x8233ae36,0x8233ae37,0x8233ae38,0x8233ae39,0x8233af30,0x8233af31,0x8233af32, +0x8233af33,0x8233af34,0x8233af35,0x8233af36,0x8233af37,0x8233af38,0x8233af39, +0x8233b030,0x8233b031,0x8233b032,0x8233b033,0x8233b034,0x8233b035,0x8233b036, +0x8233b037,0x8233b038,0x8233b039,0x8233b130,0x8233b131,0x8233b132,0x8233b133, +0x8233b134,0x8233b135,0x8233b136,0x8233b137,0x8233b138,0x8233b139,0x8233b230, +0x8233b231,0x8233b232,0x8233b233,0x8233b234,0x8233b235,0x8233b236,0x8233b237, +0x8233b238,0x8233b239,0x8233b330,0x8233b331,0x8233b332,0x8233b333,0x8233b334, +0x8233b335,0x8233b336,0x8233b337,0x8233b338,0x8233b339,0x8233b430,0x8233b431, +0x8233b432,0x8233b433,0x8233b434,0x8233b435,0x8233b436,0x8233b437,0x8233b438, +0x8233b439,0x8233b530,0x8233b531,0x8233b532,0x8233b533,0x8233b534,0x8233b535, +0x8233b536,0x8233b537,0x8233b538,0x8233b539,0x8233b630,0x8233b631,0x8233b632, +0x8233b633,0x8233b634,0x8233b635,0x8233b636,0x8233b637,0x8233b638,0x8233b639, +0x8233b730,0x8233b731,0x8233b732,0x8233b733,0x8233b734,0x8233b735,0x8233b736, +0x8233b737,0x8233b738,0x8233b739,0x8233b830,0x8233b831,0x8233b832,0x8233b833, +0x8233b834,0x8233b835,0x8233b836,0x8233b837,0x8233b838,0x8233b839,0x8233b930, +0x8233b931,0x8233b932,0x8233b933,0x8233b934,0x8233b935,0x8233b936,0x8233b937, +0x8233b938,0x8233b939,0x8233ba30,0x8233ba31,0x8233ba32,0x8233ba33,0x8233ba34, +0x8233ba35,0x8233ba36,0x8233ba37,0x8233ba38,0x8233ba39,0x8233bb30,0x8233bb31, +0x8233bb32,0x8233bb33,0x8233bb34,0x8233bb35,0x8233bb36,0x8233bb37,0x8233bb38, +0x8233bb39,0x8233bc30,0x8233bc31,0x8233bc32,0x8233bc33,0x8233bc34,0x8233bc35, +0x8233bc36,0x8233bc37,0x8233bc38,0x8233bc39,0x8233bd30,0x8233bd31,0x8233bd32, +0x8233bd33,0x8233bd34,0x8233bd35,0x8233bd36,0x8233bd37,0x8233bd38,0x8233bd39, +0x8233be30,0x8233be31,0x8233be32,0x8233be33,0x8233be34,0x8233be35,0x8233be36, +0x8233be37,0x8233be38,0x8233be39,0x8233bf30,0x8233bf31,0x8233bf32,0x8233bf33, +0x8233bf34,0x8233bf35,0x8233bf36,0x8233bf37,0x8233bf38,0x8233bf39,0x8233c030, +0x8233c031,0x8233c032,0x8233c033,0x8233c034,0x8233c035,0x8233c036,0x8233c037, +0x8233c038,0x8233c039,0x8233c130,0x8233c131,0x8233c132,0x8233c133,0x8233c134, +0x8233c135,0x8233c136,0x8233c137,0x8233c138,0x8233c139,0x8233c230,0x8233c231, +0x8233c232,0x8233c233,0x8233c234,0x8233c235,0x8233c236,0x8233c237,0x8233c238, +0x8233c239,0x8233c330,0x8233c331,0x8233c332,0x8233c333,0x8233c334,0x8233c335, +0x8233c336,0x8233c337,0x8233c338,0x8233c339,0x8233c430,0x8233c431,0x8233c432, +0x8233c433,0x8233c434,0x8233c435,0x8233c436,0x8233c437,0x8233c438,0x8233c439, +0x8233c530,0x8233c531,0x8233c532,0x8233c533,0x8233c534,0x8233c535,0x8233c536, +0x8233c537,0x8233c538,0x8233c539,0x8233c630,0x8233c631,0x8233c632,0x8233c633, +0x8233c634,0x8233c635,0x8233c636,0x8233c637,0x8233c638,0x8233c639,0x8233c730, +0x8233c731,0x8233c732,0x8233c733,0x8233c734,0x8233c735,0x8233c736,0x8233c737, +0x8233c738,0x8233c739,0x8233c830,0x8233c831,0x8233c832,0x8233c833,0x8233c834, +0x8233c835,0x8233c836,0x8233c837,0x8233c838,0x8233c839,0x8233c930,0x8233c931, +0xfe7d,0x8233c932,0x8233c933,0x8233c934,0x8233c935,0x8233c936,0x8233c937, +0x8233c938,0x8233c939,0x8233ca30,0x8233ca31,0x8233ca32,0x8233ca33,0x8233ca34, +0x8233ca35,0x8233ca36,0x8233ca37,0x8233ca38,0x8233ca39,0x8233cb30,0x8233cb31, +0xfe7c,0x8233cb32,0x8233cb33,0x8233cb34,0x8233cb35,0x8233cb36,0x8233cb37, +0x8233cb38,0x8233cb39,0x8233cc30,0x8233cc31,0x8233cc32,0x8233cc33,0x8233cc34, +0x8233cc35,0x8233cc36,0x8233cc37,0x8233cc38,0x8233cc39,0x8233cd30,0x8233cd31, +0x8233cd32,0x8233cd33,0x8233cd34,0x8233cd35,0x8233cd36,0x8233cd37,0x8233cd38, +0x8233cd39,0x8233ce30,0x8233ce31,0x8233ce32,0x8233ce33,0x8233ce34,0x8233ce35, +0x8233ce36,0x8233ce37,0x8233ce38,0x8233ce39,0x8233cf30,0x8233cf31,0x8233cf32, +0x8233cf33,0x8233cf34,0x8233cf35,0x8233cf36,0x8233cf37,0x8233cf38,0x8233cf39, +0x8233d030,0x8233d031,0x8233d032,0x8233d033,0x8233d034,0x8233d035,0x8233d036, +0x8233d037,0x8233d038,0x8233d039,0x8233d130,0x8233d131,0x8233d132,0x8233d133, +0x8233d134,0x8233d135,0x8233d136,0x8233d137,0x8233d138,0x8233d139,0x8233d230, +0x8233d231,0x8233d232,0x8233d233,0x8233d234,0x8233d235,0x8233d236,0x8233d237, +0x8233d238,0x8233d239,0x8233d330,0x8233d331,0x8233d332,0x8233d333,0x8233d334, +0x8233d335,0x8233d336,0x8233d337,0x8233d338,0x8233d339,0x8233d430,0x8233d431, +0x8233d432,0x8233d433,0x8233d434,0x8233d435,0x8233d436,0x8233d437,0x8233d438, +0x8233d439,0x8233d530,0x8233d531,0x8233d532,0x8233d533,0x8233d534,0x8233d535, +0x8233d536,0x8233d537,0x8233d538,0x8233d539,0x8233d630,0x8233d631,0x8233d632, +0x8233d633,0x8233d634,0x8233d635,0x8233d636,0x8233d637,0x8233d638,0x8233d639, +0x8233d730,0x8233d731,0x8233d732,0x8233d733,0x8233d734,0x8233d735,0x8233d736, +0x8233d737,0x8233d738,0x8233d739,0x8233d830,0x8233d831,0x8233d832,0x8233d833, +0x8233d834,0x8233d835,0x8233d836,0x8233d837,0x8233d838,0x8233d839,0x8233d930, +0x8233d931,0x8233d932,0x8233d933,0x8233d934,0x8233d935,0x8233d936,0x8233d937, +0x8233d938,0x8233d939,0x8233da30,0x8233da31,0x8233da32,0x8233da33,0x8233da34, +0x8233da35,0x8233da36,0x8233da37,0x8233da38,0x8233da39,0x8233db30,0x8233db31, +0x8233db32,0x8233db33,0x8233db34,0x8233db35,0x8233db36,0x8233db37,0x8233db38, +0x8233db39,0x8233dc30,0x8233dc31,0x8233dc32,0x8233dc33,0x8233dc34,0x8233dc35, +0x8233dc36,0x8233dc37,0x8233dc38,0x8233dc39,0x8233dd30,0x8233dd31,0x8233dd32, +0x8233dd33,0x8233dd34,0x8233dd35,0x8233dd36,0x8233dd37,0x8233dd38,0x8233dd39, +0x8233de30,0x8233de31,0x8233de32,0x8233de33,0x8233de34,0xfe80,0x8233de35, +0x8233de36,0x8233de37,0x8233de38,0x8233de39,0xfe81,0x8233df30,0x8233df31, +0x8233df32,0x8233df33,0x8233df34,0x8233df35,0x8233df36,0x8233df37,0x8233df38, +0x8233df39,0x8233e030,0x8233e031,0x8233e032,0x8233e033,0x8233e034,0x8233e035, +0x8233e036,0x8233e037,0x8233e038,0x8233e039,0x8233e130,0x8233e131,0x8233e132, +0x8233e133,0x8233e134,0x8233e135,0x8233e136,0x8233e137,0x8233e138,0x8233e139, +0x8233e230,0x8233e231,0x8233e232,0x8233e233,0x8233e234,0x8233e235,0x8233e236, +0x8233e237,0x8233e238,0x8233e239,0x8233e330,0x8233e331,0x8233e332,0x8233e333, +0x8233e334,0x8233e335,0x8233e336,0x8233e337,0x8233e338,0x8233e339,0x8233e430, +0x8233e431,0x8233e432,0x8233e433,0x8233e434,0x8233e435,0x8233e436,0x8233e437, +0x8233e438,0x8233e439,0x8233e530,0x8233e531,0x8233e532,0x8233e533,0x8233e534, +0x8233e535,0x8233e536,0x8233e537,0x8233e538,0x8233e539,0x8233e630,0x8233e631, +0x8233e632,0x8233e633,0x8233e634,0x8233e635,0x8233e636,0x8233e637,0x8233e638, +0x8233e639,0x8233e730,0x8233e731,0xfe82,0x8233e732,0x8233e733,0x8233e734, +0x8233e735,0x8233e736,0x8233e737,0x8233e738,0x8233e739,0x8233e830,0x8233e831, +0x8233e832,0x8233e833,0x8233e834,0x8233e835,0x8233e836,0x8233e837,0xfe83, +0x8233e838,0x8233e839,0x8233e930,0x8233e931,0x8233e932,0x8233e933,0x8233e934, +0x8233e935,0x8233e936,0x8233e937,0x8233e938,0x8233e939,0x8233ea30,0x8233ea31, +0x8233ea32,0x8233ea33,0x8233ea34,0x8233ea35,0x8233ea36,0x8233ea37,0x8233ea38, +0x8233ea39,0x8233eb30,0x8233eb31,0x8233eb32,0x8233eb33,0x8233eb34,0x8233eb35, +0x8233eb36,0x8233eb37,0x8233eb38,0x8233eb39,0x8233ec30,0x8233ec31,0x8233ec32, +0x8233ec33,0x8233ec34,0x8233ec35,0x8233ec36,0x8233ec37,0x8233ec38,0x8233ec39, +0x8233ed30,0x8233ed31,0x8233ed32,0x8233ed33,0x8233ed34,0x8233ed35,0x8233ed36, +0x8233ed37,0x8233ed38,0x8233ed39,0x8233ee30,0x8233ee31,0x8233ee32,0x8233ee33, +0x8233ee34,0x8233ee35,0x8233ee36,0x8233ee37,0x8233ee38,0x8233ee39,0x8233ef30, +0x8233ef31,0x8233ef32,0x8233ef33,0x8233ef34,0x8233ef35,0x8233ef36,0x8233ef37, +0x8233ef38,0x8233ef39,0x8233f030,0x8233f031,0x8233f032,0x8233f033,0x8233f034, +0x8233f035,0x8233f036,0x8233f037,0x8233f038,0x8233f039,0x8233f130,0x8233f131, +0x8233f132,0x8233f133,0x8233f134,0x8233f135,0x8233f136,0x8233f137,0x8233f138, +0x8233f139,0x8233f230,0x8233f231,0x8233f232,0x8233f233,0x8233f234,0x8233f235, +0x8233f236,0x8233f237,0x8233f238,0x8233f239,0x8233f330,0x8233f331,0x8233f332, +0x8233f333,0x8233f334,0x8233f335,0x8233f336,0x8233f337,0x8233f338,0x8233f339, +0x8233f430,0x8233f431,0x8233f432,0x8233f433,0x8233f434,0x8233f435,0x8233f436, +0x8233f437,0x8233f438,0x8233f439,0x8233f530,0x8233f531,0x8233f532,0x8233f533, +0x8233f534,0x8233f535,0x8233f536,0x8233f537,0x8233f538,0x8233f539,0x8233f630, +0x8233f631,0x8233f632,0x8233f633,0x8233f634,0x8233f635,0x8233f636,0x8233f637, +0x8233f638,0x8233f639,0x8233f730,0x8233f731,0x8233f732,0x8233f733,0x8233f734, +0x8233f735,0x8233f736,0x8233f737,0x8233f738,0x8233f739,0x8233f830,0x8233f831, +0x8233f832,0x8233f833,0x8233f834,0x8233f835,0x8233f836,0x8233f837,0x8233f838, +0x8233f839,0x8233f930,0x8233f931,0x8233f932,0x8233f933,0x8233f934,0x8233f935, +0x8233f936,0x8233f937,0x8233f938,0x8233f939,0x8233fa30,0x8233fa31,0x8233fa32, +0x8233fa33,0x8233fa34,0x8233fa35,0x8233fa36,0x8233fa37,0x8233fa38,0x8233fa39, +0x8233fb30,0x8233fb31,0x8233fb32,0x8233fb33,0x8233fb34,0x8233fb35,0x8233fb36, +0x8233fb37,0x8233fb38,0x8233fb39,0x8233fc30,0x8233fc31,0x8233fc32,0x8233fc33, +0x8233fc34,0x8233fc35,0x8233fc36,0x8233fc37,0x8233fc38,0x8233fc39,0x8233fd30, +0x8233fd31,0x8233fd32,0x8233fd33,0x8233fd34,0x8233fd35,0x8233fd36,0x8233fd37, +0x8233fd38,0x8233fd39,0x8233fe30,0x8233fe31,0x8233fe32,0x8233fe33,0x8233fe34, +0x8233fe35,0x8233fe36,0x8233fe37,0x8233fe38,0x8233fe39,0x82348130,0x82348131, +0x82348132,0x82348133,0x82348134,0x82348135,0x82348136,0x82348137,0x82348138, +0x82348139,0x82348230,0x82348231,0x82348232,0x82348233,0x82348234,0x82348235, +0x82348236,0x82348237,0x82348238,0x82348239,0x82348330,0x82348331,0x82348332, +0x82348333,0x82348334,0x82348335,0x82348336,0x82348337,0x82348338,0x82348339, +0x82348430,0x82348431,0x82348432,0x82348433,0x82348434,0x82348435,0x82348436, +0x82348437,0x82348438,0x82348439,0x82348530,0x82348531,0x82348532,0x82348533, +0x82348534,0x82348535,0x82348536,0x82348537,0x82348538,0x82348539,0x82348630, +0x82348631,0x82348632,0x82348633,0x82348634,0x82348635,0x82348636,0x82348637, +0x82348638,0x82348639,0x82348730,0x82348731,0x82348732,0x82348733,0x82348734, +0x82348735,0x82348736,0x82348737,0x82348738,0x82348739,0x82348830,0x82348831, +0x82348832,0x82348833,0x82348834,0x82348835,0x82348836,0x82348837,0x82348838, +0x82348839,0x82348930,0x82348931,0x82348932,0x82348933,0x82348934,0x82348935, +0x82348936,0x82348937,0x82348938,0x82348939,0x82348a30,0x82348a31,0x82348a32, +0x82348a33,0x82348a34,0x82348a35,0x82348a36,0x82348a37,0x82348a38,0x82348a39, +0x82348b30,0x82348b31,0x82348b32,0x82348b33,0x82348b34,0x82348b35,0x82348b36, +0x82348b37,0x82348b38,0x82348b39,0x82348c30,0x82348c31,0x82348c32,0x82348c33, +0x82348c34,0x82348c35,0x82348c36,0x82348c37,0x82348c38,0x82348c39,0x82348d30, +0x82348d31,0x82348d32,0x82348d33,0x82348d34,0x82348d35,0x82348d36,0x82348d37, +0x82348d38,0x82348d39,0x82348e30,0x82348e31,0x82348e32,0x82348e33,0x82348e34, +0x82348e35,0x82348e36,0x82348e37,0x82348e38,0x82348e39,0x82348f30,0x82348f31, +0x82348f32,0x82348f33,0x82348f34,0x82348f35,0x82348f36,0x82348f37,0x82348f38, +0x82348f39,0x82349030,0x82349031,0x82349032,0x82349033,0x82349034,0x82349035, +0x82349036,0x82349037,0x82349038,0x82349039,0x82349130,0x82349131,0x82349132, +0x82349133,0x82349134,0x82349135,0x82349136,0x82349137,0x82349138,0x82349139, +0x82349230,0x82349231,0x82349232,0x82349233,0x82349234,0x82349235,0x82349236, +0x82349237,0x82349238,0x82349239,0x82349330,0x82349331,0x82349332,0x82349333, +0x82349334,0x82349335,0x82349336,0x82349337,0x82349338,0x82349339,0x82349430, +0x82349431,0x82349432,0x82349433,0x82349434,0x82349435,0x82349436,0x82349437, +0x82349438,0x82349439,0x82349530,0x82349531,0x82349532,0x82349533,0x82349534, +0x82349535,0x82349536,0x82349537,0x82349538,0x82349539,0x82349630,0x82349631, +0x82349632,0x82349633,0x82349634,0x82349635,0x82349636,0x82349637,0x82349638, +0xfe85,0x82349639,0x82349730,0x82349731,0x82349732,0x82349733,0x82349734, +0x82349735,0x82349736,0x82349737,0x82349738,0x82349739,0x82349830,0x82349831, +0x82349832,0x82349833,0x82349834,0x82349835,0x82349836,0x82349837,0x82349838, +0x82349839,0x82349930,0x82349931,0x82349932,0x82349933,0x82349934,0x82349935, +0x82349936,0x82349937,0x82349938,0x82349939,0x82349a30,0x82349a31,0x82349a32, +0x82349a33,0x82349a34,0x82349a35,0x82349a36,0x82349a37,0x82349a38,0x82349a39, +0x82349b30,0x82349b31,0x82349b32,0x82349b33,0x82349b34,0x82349b35,0x82349b36, +0x82349b37,0x82349b38,0xfe86,0x82349b39,0x82349c30,0xfe87,0x82349c31,0x82349c32, +0x82349c33,0x82349c34,0xfe88,0xfe89,0x82349c35,0xfe8a,0xfe8b,0x82349c36, +0x82349c37,0x82349c38,0x82349c39,0x82349d30,0x82349d31,0x82349d32,0x82349d33, +0x82349d34,0x82349d35,0x82349d36,0x82349d37,0x82349d38,0x82349d39,0x82349e30, +0x82349e31,0x82349e32,0x82349e33,0x82349e34,0x82349e35,0xfe8d,0x82349e36, +0x82349e37,0x82349e38,0xfe8c,0x82349e39,0x82349f30,0x82349f31,0x82349f32, +0x82349f33,0x82349f34,0x82349f35,0x82349f36,0x82349f37,0x82349f38,0x82349f39, +0x8234a030,0x8234a031,0x8234a032,0x8234a033,0x8234a034,0x8234a035,0x8234a036, +0x8234a037,0x8234a038,0x8234a039,0x8234a130,0xfe8f,0xfe8e,0x8234a131,0x8234a132, +0x8234a133,0x8234a134,0x8234a135,0x8234a136,0x8234a137,0x8234a138,0x8234a139, +0x8234a230,0x8234a231,0x8234a232,0x8234a233,0x8234a234,0x8234a235,0x8234a236, +0x8234a237,0x8234a238,0x8234a239,0x8234a330,0x8234a331,0x8234a332,0x8234a333, +0x8234a334,0x8234a335,0x8234a336,0x8234a337,0x8234a338,0x8234a339,0x8234a430, +0x8234a431,0x8234a432,0x8234a433,0x8234a434,0x8234a435,0x8234a436,0x8234a437, +0x8234a438,0x8234a439,0x8234a530,0x8234a531,0x8234a532,0x8234a533,0x8234a534, +0x8234a535,0x8234a536,0x8234a537,0x8234a538,0x8234a539,0x8234a630,0x8234a631, +0x8234a632,0x8234a633,0x8234a634,0x8234a635,0x8234a636,0x8234a637,0x8234a638, +0x8234a639,0x8234a730,0x8234a731,0x8234a732,0x8234a733,0x8234a734,0x8234a735, +0x8234a736,0x8234a737,0x8234a738,0x8234a739,0x8234a830,0x8234a831,0x8234a832, +0x8234a833,0x8234a834,0x8234a835,0x8234a836,0x8234a837,0x8234a838,0x8234a839, +0x8234a930,0x8234a931,0x8234a932,0x8234a933,0x8234a934,0x8234a935,0x8234a936, +0x8234a937,0x8234a938,0x8234a939,0x8234aa30,0x8234aa31,0x8234aa32,0x8234aa33, +0x8234aa34,0x8234aa35,0x8234aa36,0x8234aa37,0x8234aa38,0x8234aa39,0x8234ab30, +0x8234ab31,0x8234ab32,0x8234ab33,0x8234ab34,0x8234ab35,0x8234ab36,0x8234ab37, +0x8234ab38,0x8234ab39,0x8234ac30,0x8234ac31,0x8234ac32,0x8234ac33,0x8234ac34, +0x8234ac35,0x8234ac36,0x8234ac37,0x8234ac38,0x8234ac39,0x8234ad30,0x8234ad31, +0x8234ad32,0x8234ad33,0x8234ad34,0x8234ad35,0x8234ad36,0x8234ad37,0x8234ad38, +0x8234ad39,0x8234ae30,0x8234ae31,0x8234ae32,0x8234ae33,0x8234ae34,0x8234ae35, +0x8234ae36,0x8234ae37,0x8234ae38,0x8234ae39,0x8234af30,0x8234af31,0x8234af32, +0x8234af33,0x8234af34,0x8234af35,0x8234af36,0x8234af37,0x8234af38,0x8234af39, +0x8234b030,0x8234b031,0x8234b032,0x8234b033,0x8234b034,0x8234b035,0x8234b036, +0x8234b037,0x8234b038,0x8234b039,0x8234b130,0x8234b131,0x8234b132,0x8234b133, +0x8234b134,0x8234b135,0x8234b136,0x8234b137,0x8234b138,0x8234b139,0x8234b230, +0x8234b231,0x8234b232,0x8234b233,0x8234b234,0x8234b235,0x8234b236,0x8234b237, +0x8234b238,0x8234b239,0x8234b330,0x8234b331,0x8234b332,0x8234b333,0x8234b334, +0x8234b335,0x8234b336,0x8234b337,0x8234b338,0x8234b339,0x8234b430,0x8234b431, +0x8234b432,0x8234b433,0x8234b434,0x8234b435,0x8234b436,0x8234b437,0x8234b438, +0x8234b439,0x8234b530,0x8234b531,0x8234b532,0x8234b533,0x8234b534,0x8234b535, +0x8234b536,0x8234b537,0x8234b538,0x8234b539,0x8234b630,0x8234b631,0x8234b632, +0x8234b633,0x8234b634,0x8234b635,0x8234b636,0x8234b637,0x8234b638,0x8234b639, +0x8234b730,0x8234b731,0x8234b732,0x8234b733,0x8234b734,0x8234b735,0x8234b736, +0x8234b737,0x8234b738,0x8234b739,0x8234b830,0x8234b831,0x8234b832,0x8234b833, +0x8234b834,0x8234b835,0x8234b836,0x8234b837,0x8234b838,0x8234b839,0x8234b930, +0x8234b931,0x8234b932,0x8234b933,0x8234b934,0x8234b935,0x8234b936,0x8234b937, +0x8234b938,0x8234b939,0x8234ba30,0x8234ba31,0x8234ba32,0x8234ba33,0x8234ba34, +0x8234ba35,0x8234ba36,0x8234ba37,0x8234ba38,0x8234ba39,0x8234bb30,0x8234bb31, +0x8234bb32,0x8234bb33,0x8234bb34,0x8234bb35,0x8234bb36,0x8234bb37,0x8234bb38, +0x8234bb39,0x8234bc30,0x8234bc31,0x8234bc32,0x8234bc33,0x8234bc34,0x8234bc35, +0x8234bc36,0x8234bc37,0x8234bc38,0x8234bc39,0x8234bd30,0x8234bd31,0x8234bd32, +0x8234bd33,0x8234bd34,0x8234bd35,0x8234bd36,0x8234bd37,0x8234bd38,0x8234bd39, +0x8234be30,0x8234be31,0x8234be32,0x8234be33,0x8234be34,0x8234be35,0x8234be36, +0x8234be37,0x8234be38,0x8234be39,0x8234bf30,0x8234bf31,0x8234bf32,0x8234bf33, +0x8234bf34,0x8234bf35,0x8234bf36,0x8234bf37,0x8234bf38,0x8234bf39,0x8234c030, +0x8234c031,0x8234c032,0x8234c033,0x8234c034,0x8234c035,0x8234c036,0x8234c037, +0x8234c038,0x8234c039,0x8234c130,0x8234c131,0x8234c132,0x8234c133,0x8234c134, +0x8234c135,0x8234c136,0x8234c137,0x8234c138,0x8234c139,0x8234c230,0x8234c231, +0x8234c232,0x8234c233,0x8234c234,0x8234c235,0x8234c236,0x8234c237,0x8234c238, +0x8234c239,0x8234c330,0x8234c331,0x8234c332,0x8234c333,0x8234c334,0x8234c335, +0x8234c336,0x8234c337,0x8234c338,0x8234c339,0x8234c430,0x8234c431,0x8234c432, +0x8234c433,0x8234c434,0x8234c435,0x8234c436,0x8234c437,0x8234c438,0x8234c439, +0x8234c530,0x8234c531,0x8234c532,0x8234c533,0x8234c534,0x8234c535,0x8234c536, +0x8234c537,0x8234c538,0x8234c539,0x8234c630,0x8234c631,0x8234c632,0x8234c633, +0x8234c634,0x8234c635,0x8234c636,0x8234c637,0x8234c638,0x8234c639,0x8234c730, +0x8234c731,0x8234c732,0x8234c733,0x8234c734,0x8234c735,0x8234c736,0x8234c737, +0x8234c738,0x8234c739,0x8234c830,0x8234c831,0x8234c832,0x8234c833,0x8234c834, +0x8234c835,0x8234c836,0x8234c837,0x8234c838,0x8234c839,0x8234c930,0x8234c931, +0x8234c932,0x8234c933,0x8234c934,0x8234c935,0x8234c936,0x8234c937,0x8234c938, +0x8234c939,0x8234ca30,0x8234ca31,0x8234ca32,0x8234ca33,0x8234ca34,0x8234ca35, +0x8234ca36,0x8234ca37,0x8234ca38,0x8234ca39,0x8234cb30,0x8234cb31,0x8234cb32, +0x8234cb33,0x8234cb34,0x8234cb35,0x8234cb36,0x8234cb37,0x8234cb38,0x8234cb39, +0x8234cc30,0x8234cc31,0x8234cc32,0x8234cc33,0x8234cc34,0x8234cc35,0x8234cc36, +0x8234cc37,0x8234cc38,0x8234cc39,0x8234cd30,0x8234cd31,0x8234cd32,0x8234cd33, +0x8234cd34,0x8234cd35,0x8234cd36,0x8234cd37,0x8234cd38,0x8234cd39,0x8234ce30, +0x8234ce31,0x8234ce32,0x8234ce33,0x8234ce34,0x8234ce35,0x8234ce36,0x8234ce37, +0x8234ce38,0x8234ce39,0x8234cf30,0x8234cf31,0x8234cf32,0x8234cf33,0x8234cf34, +0x8234cf35,0x8234cf36,0x8234cf37,0x8234cf38,0x8234cf39,0x8234d030,0x8234d031, +0x8234d032,0x8234d033,0x8234d034,0x8234d035,0x8234d036,0x8234d037,0x8234d038, +0x8234d039,0x8234d130,0x8234d131,0x8234d132,0x8234d133,0x8234d134,0x8234d135, +0x8234d136,0x8234d137,0x8234d138,0x8234d139,0x8234d230,0x8234d231,0x8234d232, +0x8234d233,0x8234d234,0x8234d235,0x8234d236,0x8234d237,0x8234d238,0x8234d239, +0x8234d330,0x8234d331,0x8234d332,0x8234d333,0x8234d334,0x8234d335,0x8234d336, +0x8234d337,0x8234d338,0x8234d339,0x8234d430,0x8234d431,0x8234d432,0x8234d433, +0x8234d434,0x8234d435,0x8234d436,0x8234d437,0x8234d438,0x8234d439,0x8234d530, +0x8234d531,0x8234d532,0x8234d533,0x8234d534,0x8234d535,0x8234d536,0x8234d537, +0x8234d538,0x8234d539,0x8234d630,0x8234d631,0x8234d632,0x8234d633,0x8234d634, +0x8234d635,0x8234d636,0x8234d637,0x8234d638,0x8234d639,0x8234d730,0x8234d731, +0x8234d732,0x8234d733,0x8234d734,0x8234d735,0x8234d736,0x8234d737,0x8234d738, +0x8234d739,0x8234d830,0x8234d831,0x8234d832,0x8234d833,0x8234d834,0x8234d835, +0x8234d836,0x8234d837,0x8234d838,0x8234d839,0x8234d930,0x8234d931,0x8234d932, +0x8234d933,0x8234d934,0x8234d935,0x8234d936,0x8234d937,0x8234d938,0x8234d939, +0x8234da30,0x8234da31,0x8234da32,0x8234da33,0x8234da34,0x8234da35,0x8234da36, +0x8234da37,0x8234da38,0x8234da39,0x8234db30,0x8234db31,0x8234db32,0x8234db33, +0x8234db34,0x8234db35,0x8234db36,0x8234db37,0x8234db38,0x8234db39,0x8234dc30, +0x8234dc31,0x8234dc32,0x8234dc33,0x8234dc34,0x8234dc35,0x8234dc36,0x8234dc37, +0x8234dc38,0x8234dc39,0x8234dd30,0x8234dd31,0x8234dd32,0x8234dd33,0x8234dd34, +0x8234dd35,0x8234dd36,0x8234dd37,0x8234dd38,0x8234dd39,0x8234de30,0x8234de31, +0x8234de32,0x8234de33,0x8234de34,0x8234de35,0x8234de36,0x8234de37,0x8234de38, +0x8234de39,0x8234df30,0x8234df31,0x8234df32,0x8234df33,0x8234df34,0x8234df35, +0x8234df36,0x8234df37,0x8234df38,0x8234df39,0x8234e030,0x8234e031,0x8234e032, +0x8234e033,0x8234e034,0x8234e035,0x8234e036,0x8234e037,0x8234e038,0x8234e039, +0x8234e130,0x8234e131,0x8234e132,0x8234e133,0x8234e134,0x8234e135,0x8234e136, +0x8234e137,0x8234e138,0x8234e139,0x8234e230,0x8234e231,0x8234e232,0x8234e233, +0x8234e234,0x8234e235,0x8234e236,0x8234e237,0x8234e238,0x8234e239,0x8234e330, +0x8234e331,0x8234e332,0x8234e333,0x8234e334,0x8234e335,0x8234e336,0x8234e337, +0x8234e338,0x8234e339,0x8234e430,0x8234e431,0x8234e432,0x8234e433,0x8234e434, +0x8234e435,0x8234e436,0x8234e437,0x8234e438,0x8234e439,0x8234e530,0x8234e531, +0x8234e532,0x8234e533,0x8234e534,0x8234e535,0x8234e536,0x8234e537,0x8234e538, +0x8234e539,0x8234e630,0x8234e631,0x8234e632,0x8234e633,0x8234e634,0x8234e635, +0x8234e636,0x8234e637,0x8234e638,0x8234e639,0x8234e730,0x8234e731,0x8234e732, +0x8234e733,0xfe96,0x8234e734,0x8234e735,0x8234e736,0x8234e737,0x8234e738, +0x8234e739,0x8234e830,0x8234e831,0x8234e832,0x8234e833,0x8234e834,0x8234e835, +0x8234e836,0x8234e837,0x8234e838,0x8234e839,0x8234e930,0x8234e931,0x8234e932, +0x8234e933,0x8234e934,0x8234e935,0x8234e936,0x8234e937,0x8234e938,0x8234e939, +0x8234ea30,0x8234ea31,0x8234ea32,0x8234ea33,0x8234ea34,0x8234ea35,0x8234ea36, +0x8234ea37,0x8234ea38,0x8234ea39,0x8234eb30,0x8234eb31,0x8234eb32,0xfe93, +0xfe94,0xfe95,0xfe97,0xfe92,0x8234eb33,0x8234eb34,0x8234eb35,0x8234eb36, +0x8234eb37,0x8234eb38,0x8234eb39,0x8234ec30,0x8234ec31,0x8234ec32,0x8234ec33, +0x8234ec34,0x8234ec35,0x8234ec36,0x8234ec37,0x8234ec38,0x8234ec39,0x8234ed30, +0x8234ed31,0x8234ed32,0x8234ed33,0x8234ed34,0x8234ed35,0x8234ed36,0x8234ed37, +0x8234ed38,0x8234ed39,0x8234ee30,0x8234ee31,0x8234ee32,0x8234ee33,0x8234ee34, +0x8234ee35,0x8234ee36,0x8234ee37,0x8234ee38,0x8234ee39,0x8234ef30,0x8234ef31, +0x8234ef32,0x8234ef33,0x8234ef34,0x8234ef35,0x8234ef36,0x8234ef37,0x8234ef38, +0x8234ef39,0x8234f030,0x8234f031,0x8234f032,0x8234f033,0x8234f034,0x8234f035, +0x8234f036,0x8234f037,0x8234f038,0x8234f039,0x8234f130,0x8234f131,0x8234f132, +0x8234f133,0x8234f134,0x8234f135,0x8234f136,0x8234f137,0x8234f138,0x8234f139, +0x8234f230,0x8234f231,0x8234f232,0x8234f233,0x8234f234,0x8234f235,0x8234f236, +0x8234f237,0x8234f238,0x8234f239,0x8234f330,0x8234f331,0x8234f332,0x8234f333, +0x8234f334,0x8234f335,0x8234f336,0x8234f337,0x8234f338,0x8234f339,0x8234f430, +0x8234f431,0x8234f432,0x8234f433,0x8234f434,0x8234f435,0x8234f436,0x8234f437, +0x8234f438,0x8234f439,0x8234f530,0x8234f531,0x8234f532,0x8234f533,0x8234f534, +0x8234f535,0x8234f536,0x8234f537,0x8234f538,0x8234f539,0x8234f630,0x8234f631, +0x8234f632,0x8234f633,0xfe98,0xfe99,0xfe9a,0xfe9b,0xfe9c,0xfe9d,0xfe9e, +0x8234f634,0x8234f635,0x8234f636,0x8234f637,0x8234f638,0x8234f639,0x8234f730, +0x8234f731,0x8234f732,0x8234f733,0x8234f734,0x8234f735,0x8234f736,0x8234f737, +0x8234f738,0x8234f739,0x8234f830,0x8234f831,0x8234f832,0x8234f833,0x8234f834, +0x8234f835,0x8234f836,0x8234f837,0x8234f838,0x8234f839,0x8234f930,0x8234f931, +0x8234f932,0x8234f933,0x8234f934,0x8234f935,0x8234f936,0x8234f937,0x8234f938, +0x8234f939,0x8234fa30,0x8234fa31,0x8234fa32,0x8234fa33,0x8234fa34,0x8234fa35, +0x8234fa36,0x8234fa37,0x8234fa38,0x8234fa39,0x8234fb30,0x8234fb31,0x8234fb32, +0x8234fb33,0x8234fb34,0x8234fb35,0x8234fb36,0x8234fb37,0x8234fb38,0x8234fb39, +0x8234fc30,0x8234fc31,0x8234fc32,0x8234fc33,0x8234fc34,0x8234fc35,0x8234fc36, +0x8234fc37,0x8234fc38,0x8234fc39,0x8234fd30,0x8234fd31,0x8234fd32,0x8234fd33, +0x8234fd34,0x8234fd35,0x8234fd36,0x8234fd37,0x8234fd38,0x8234fd39,0x8234fe30, +0x8234fe31,0x8234fe32,0x8234fe33,0x8234fe34,0x8234fe35,0x8234fe36,0x8234fe37, +0x8234fe38,0x8234fe39,0x82358130,0x82358131,0x82358132,0x82358133,0x82358134, +0x82358135,0x82358136,0x82358137,0x82358138,0x82358139,0x82358230,0x82358231, +0x82358232,0x82358233,0x82358234,0x82358235,0x82358236,0x82358237,0x82358238, +0x82358239,0x82358330,0x82358331,0x82358332,0x82358333,0x82358334,0x82358335, +0x82358336,0x82358337,0x82358338,0x82358339,0x82358430,0x82358431,0x82358432, +0x82358433,0x82358434,0x82358435,0x82358436,0x82358437,0x82358438,0x82358439, +0x82358530,0x82358531,0x82358532,0x82358533,0x82358534,0x82358535,0x82358536, +0x82358537,0x82358538,0x82358539,0x82358630,0x82358631,0x82358632,0x82358633, +0x82358634,0x82358635,0x82358636,0x82358637,0x82358638,0x82358639,0x82358730, +0x82358731,0xfe9f,0x82358732,0x82358733,0x82358734,0x82358735,0x82358736, +0x82358737,0x82358738,0x82358739,0x82358830,0x82358831,0x82358832,0x82358833, +0x82358834,0x82358835,0x82358836,0x82358837,0x82358838,0x82358839,0x82358930, +0x82358931,0x82358932,0x82358933,0x82358934,0x82358935,0x82358936,0x82358937, +0x82358938,0x82358939,0x82358a30,0x82358a31,0x82358a32,0x82358a33,0x82358a34, +0x82358a35,0x82358a36,0x82358a37,0x82358a38,0x82358a39,0x82358b30,0x82358b31, +0x82358b32,0x82358b33,0x82358b34,0x82358b35,0x82358b36,0x82358b37,0x82358b38, +0x82358b39,0x82358c30,0x82358c31,0x82358c32,0x82358c33,0x82358c34,0x82358c35, +0x82358c36,0x82358c37,0x82358c38,0x82358c39,0x82358d30,0x82358d31,0x82358d32, +0x82358d33,0x82358d34,0x82358d35,0x82358d36,0x82358d37,0x82358d38,0x82358d39, +0x82358e30,0x82358e31,0x82358e32,0x82358e33,0x82358e34,0x82358e35,0x82358e36, +0x82358e37,0x82358e38,0x82358e39,0x82358f30,0x82358f31,0x82358f32,0xd2bb, +0xb6a1,0x8140,0xc6df,0x8141,0x8142,0x8143,0xcdf2,0xd5c9,0xc8fd,0xc9cf, +0xcfc2,0xd8a2,0xb2bb,0xd3eb,0x8144,0xd8a4,0xb3f3,0x8145,0xd7a8,0xc7d2, +0xd8a7,0xcac0,0x8146,0xc7f0,0xb1fb,0xd2b5,0xb4d4,0xb6ab,0xcbbf,0xd8a9, +0x8147,0x8148,0x8149,0xb6aa,0x814a,0xc1bd,0xd1cf,0x814b,0xc9a5,0xd8ad, +0x814c,0xb8f6,0xd1be,0xe3dc,0xd6d0,0x814d,0x814e,0xb7e1,0x814f,0xb4ae, +0x8150,0xc1d9,0x8151,0xd8bc,0x8152,0xcde8,0xb5a4,0xceaa,0xd6f7,0x8153, +0xc0f6,0xbed9,0xd8af,0x8154,0x8155,0x8156,0xc4cb,0x8157,0xbec3,0x8158, +0xd8b1,0xc3b4,0xd2e5,0x8159,0xd6ae,0xceda,0xd5a7,0xbaf5,0xb7a6,0xc0d6, +0x815a,0xc6b9,0xc5d2,0xc7c7,0x815b,0xb9d4,0x815c,0xb3cb,0xd2d2,0x815d, +0x815e,0xd8bf,0xbec5,0xc6f2,0xd2b2,0xcfb0,0xcfe7,0x815f,0x8160,0x8161, +0x8162,0xcae9,0x8163,0x8164,0xd8c0,0x8165,0x8166,0x8167,0x8168,0x8169, +0x816a,0xc2f2,0xc2d2,0x816b,0xc8e9,0x816c,0x816d,0x816e,0x816f,0x8170, +0x8171,0x8172,0x8173,0x8174,0x8175,0xc7ac,0x8176,0x8177,0x8178,0x8179, +0x817a,0x817b,0x817c,0xc1cb,0x817d,0xd3e8,0xd5f9,0x817e,0xcac2,0xb6fe, +0xd8a1,0xd3da,0xbff7,0x8180,0xd4c6,0xbba5,0xd8c1,0xcee5,0xbeae,0x8181, +0x8182,0xd8a8,0x8183,0xd1c7,0xd0a9,0x8184,0x8185,0x8186,0xd8bd,0xd9ef, +0xcdf6,0xbfba,0x8187,0xbdbb,0xbaa5,0xd2e0,0xb2fa,0xbae0,0xc4b6,0x8188, +0xcfed,0xbea9,0xcda4,0xc1c1,0x8189,0x818a,0x818b,0xc7d7,0xd9f1,0x818c, +0xd9f4,0x818d,0x818e,0x818f,0x8190,0xc8cb,0xd8e9,0x8191,0x8192,0x8193, +0xd2da,0xcab2,0xc8ca,0xd8ec,0xd8ea,0xd8c6,0xbdf6,0xc6cd,0xb3f0,0x8194, +0xd8eb,0xbdf1,0xbde9,0x8195,0xc8d4,0xb4d3,0x8196,0x8197,0xc2d8,0x8198, +0xb2d6,0xd7d0,0xcacb,0xcbfb,0xd5cc,0xb8b6,0xcfc9,0x8199,0x819a,0x819b, +0xd9da,0xd8f0,0xc7aa,0x819c,0xd8ee,0x819d,0xb4fa,0xc1ee,0xd2d4,0x819e, +0x819f,0xd8ed,0x81a0,0xd2c7,0xd8ef,0xc3c7,0x81a1,0x81a2,0x81a3,0xd1f6, +0x81a4,0xd6d9,0xd8f2,0x81a5,0xd8f5,0xbcfe,0xbcdb,0x81a6,0x81a7,0x81a8, +0xc8ce,0x81a9,0xb7dd,0x81aa,0xb7c2,0x81ab,0xc6f3,0x81ac,0x81ad,0x81ae, +0x81af,0x81b0,0x81b1,0x81b2,0xd8f8,0xd2c1,0x81b3,0x81b4,0xcee9,0xbcbf, +0xb7fc,0xb7a5,0xd0dd,0x81b5,0x81b6,0x81b7,0x81b8,0x81b9,0xd6da,0xd3c5, +0xbbef,0xbbe1,0xd8f1,0x81ba,0x81bb,0xc9a1,0xceb0,0xb4ab,0x81bc,0xd8f3, +0x81bd,0xc9cb,0xd8f6,0xc2d7,0xd8f7,0x81be,0x81bf,0xceb1,0xd8f9,0x81c0, +0x81c1,0x81c2,0xb2ae,0xb9c0,0x81c3,0xd9a3,0x81c4,0xb0e9,0x81c5,0xc1e6, +0x81c6,0xc9ec,0x81c7,0xcbc5,0x81c8,0xcbc6,0xd9a4,0x81c9,0x81ca,0x81cb, +0x81cc,0x81cd,0xb5e8,0x81ce,0x81cf,0xb5ab,0x81d0,0x81d1,0x81d2,0x81d3, +0x81d4,0x81d5,0xcebb,0xb5cd,0xd7a1,0xd7f4,0xd3d3,0x81d6,0xcce5,0x81d7, +0xbace,0x81d8,0xd9a2,0xd9dc,0xd3e0,0xd8fd,0xb7f0,0xd7f7,0xd8fe,0xd8fa, +0xd9a1,0xc4e3,0x81d9,0x81da,0xd3b6,0xd8f4,0xd9dd,0x81db,0xd8fb,0x81dc, +0xc5e5,0x81dd,0x81de,0xc0d0,0x81df,0x81e0,0xd1f0,0xb0db,0x81e1,0x81e2, +0xbcd1,0xd9a6,0x81e3,0xd9a5,0x81e4,0x81e5,0x81e6,0x81e7,0xd9ac,0xd9ae, +0x81e8,0xd9ab,0xcab9,0x81e9,0x81ea,0x81eb,0xd9a9,0xd6b6,0x81ec,0x81ed, +0x81ee,0xb3de,0xd9a8,0x81ef,0xc0fd,0x81f0,0xcacc,0x81f1,0xd9aa,0x81f2, +0xd9a7,0x81f3,0x81f4,0xd9b0,0x81f5,0x81f6,0xb6b1,0x81f7,0x81f8,0x81f9, +0xb9a9,0x81fa,0xd2c0,0x81fb,0x81fc,0xcfc0,0x81fd,0x81fe,0xc2c2,0x8240, +0xbdc4,0xd5ec,0xb2e0,0xc7c8,0xbfeb,0xd9ad,0x8241,0xd9af,0x8242,0xceea, +0xbaee,0x8243,0x8244,0x8245,0x8246,0x8247,0xc7d6,0x8248,0x8249,0x824a, +0x824b,0x824c,0x824d,0x824e,0x824f,0x8250,0xb1e3,0x8251,0x8252,0x8253, +0xb4d9,0xb6ed,0xd9b4,0x8254,0x8255,0x8256,0x8257,0xbfa1,0x8258,0x8259, +0x825a,0xd9de,0xc7ce,0xc0fe,0xd9b8,0x825b,0x825c,0x825d,0x825e,0x825f, +0xcbd7,0xb7fd,0x8260,0xd9b5,0x8261,0xd9b7,0xb1a3,0xd3e1,0xd9b9,0x8262, +0xd0c5,0x8263,0xd9b6,0x8264,0x8265,0xd9b1,0x8266,0xd9b2,0xc1a9,0xd9b3, +0x8267,0x8268,0xbcf3,0xd0de,0xb8a9,0x8269,0xbee3,0x826a,0xd9bd,0x826b, +0x826c,0x826d,0x826e,0xd9ba,0x826f,0xb0b3,0x8270,0x8271,0x8272,0xd9c2, +0x8273,0x8274,0x8275,0x8276,0x8277,0x8278,0x8279,0x827a,0x827b,0x827c, +0x827d,0x827e,0x8280,0xd9c4,0xb1b6,0x8281,0xd9bf,0x8282,0x8283,0xb5b9, +0x8284,0xbef3,0x8285,0x8286,0x8287,0xccc8,0xbaf2,0xd2d0,0x8288,0xd9c3, +0x8289,0x828a,0xbde8,0x828b,0xb3ab,0x828c,0x828d,0x828e,0xd9c5,0xbeeb, +0x828f,0xd9c6,0xd9bb,0xc4df,0x8290,0xd9be,0xd9c1,0xd9c0,0x8291,0x8292, +0x8293,0x8294,0x8295,0x8296,0x8297,0x8298,0x8299,0x829a,0x829b,0xd5ae, +0x829c,0xd6b5,0x829d,0xc7e3,0x829e,0x829f,0x82a0,0x82a1,0xd9c8,0x82a2, +0x82a3,0x82a4,0xbcd9,0xd9ca,0x82a5,0x82a6,0x82a7,0xd9bc,0x82a8,0xd9cb, +0xc6ab,0x82a9,0x82aa,0x82ab,0x82ac,0x82ad,0xd9c9,0x82ae,0x82af,0x82b0, +0x82b1,0xd7f6,0x82b2,0xcda3,0x82b3,0x82b4,0x82b5,0x82b6,0x82b7,0x82b8, +0x82b9,0x82ba,0xbda1,0x82bb,0x82bc,0x82bd,0x82be,0x82bf,0x82c0,0xd9cc, +0x82c1,0x82c2,0x82c3,0x82c4,0x82c5,0x82c6,0x82c7,0x82c8,0x82c9,0xc5bc, +0xcdb5,0x82ca,0x82cb,0x82cc,0xd9cd,0x82cd,0x82ce,0xd9c7,0xb3a5,0xbffe, +0x82cf,0x82d0,0x82d1,0x82d2,0xb8b5,0x82d3,0x82d4,0xc0fc,0x82d5,0x82d6, +0x82d7,0x82d8,0xb0f8,0x82d9,0x82da,0x82db,0x82dc,0x82dd,0x82de,0x82df, +0x82e0,0x82e1,0x82e2,0x82e3,0x82e4,0x82e5,0x82e6,0x82e7,0x82e8,0x82e9, +0x82ea,0x82eb,0x82ec,0x82ed,0xb4f6,0x82ee,0xd9ce,0x82ef,0xd9cf,0xb4a2, +0xd9d0,0x82f0,0x82f1,0xb4df,0x82f2,0x82f3,0x82f4,0x82f5,0x82f6,0xb0c1, +0x82f7,0x82f8,0x82f9,0x82fa,0x82fb,0x82fc,0x82fd,0xd9d1,0xc9b5,0x82fe, +0x8340,0x8341,0x8342,0x8343,0x8344,0x8345,0x8346,0x8347,0x8348,0x8349, +0x834a,0x834b,0x834c,0x834d,0x834e,0x834f,0x8350,0x8351,0xcff1,0x8352, +0x8353,0x8354,0x8355,0x8356,0x8357,0xd9d2,0x8358,0x8359,0x835a,0xc1c5, +0x835b,0x835c,0x835d,0x835e,0x835f,0x8360,0x8361,0x8362,0x8363,0x8364, +0x8365,0xd9d6,0xc9ae,0x8366,0x8367,0x8368,0x8369,0xd9d5,0xd9d4,0xd9d7, +0x836a,0x836b,0x836c,0x836d,0xcbdb,0x836e,0xbda9,0x836f,0x8370,0x8371, +0x8372,0x8373,0xc6a7,0x8374,0x8375,0x8376,0x8377,0x8378,0x8379,0x837a, +0x837b,0x837c,0x837d,0xd9d3,0xd9d8,0x837e,0x8380,0x8381,0xd9d9,0x8382, +0x8383,0x8384,0x8385,0x8386,0x8387,0xc8e5,0x8388,0x8389,0x838a,0x838b, +0x838c,0x838d,0x838e,0x838f,0x8390,0x8391,0x8392,0x8393,0x8394,0x8395, +0xc0dc,0x8396,0x8397,0x8398,0x8399,0x839a,0x839b,0x839c,0x839d,0x839e, +0x839f,0x83a0,0x83a1,0x83a2,0x83a3,0x83a4,0x83a5,0x83a6,0x83a7,0x83a8, +0x83a9,0x83aa,0x83ab,0x83ac,0x83ad,0x83ae,0x83af,0x83b0,0x83b1,0x83b2, +0xb6f9,0xd8a3,0xd4ca,0x83b3,0xd4aa,0xd0d6,0xb3e4,0xd5d7,0x83b4,0xcfc8, +0xb9e2,0x83b5,0xbfcb,0x83b6,0xc3e2,0x83b7,0x83b8,0x83b9,0xb6d2,0x83ba, +0x83bb,0xcdc3,0xd9ee,0xd9f0,0x83bc,0x83bd,0x83be,0xb5b3,0x83bf,0xb6b5, +0x83c0,0x83c1,0x83c2,0x83c3,0x83c4,0xbea4,0x83c5,0x83c6,0xc8eb,0x83c7, +0x83c8,0xc8ab,0x83c9,0x83ca,0xb0cb,0xb9ab,0xc1f9,0xd9e2,0x83cb,0xc0bc, +0xb9b2,0x83cc,0xb9d8,0xd0cb,0xb1f8,0xc6e4,0xbedf,0xb5e4,0xd7c8,0x83cd, +0xd1f8,0xbce6,0xcade,0x83ce,0x83cf,0xbcbd,0xd9e6,0xd8e7,0x83d0,0x83d1, +0xc4da,0x83d2,0x83d3,0xb8d4,0xc8bd,0x83d4,0x83d5,0xb2e1,0xd4d9,0x83d6, +0x83d7,0x83d8,0x83d9,0xc3b0,0x83da,0x83db,0xc3e1,0xdaa2,0xc8df,0x83dc, +0xd0b4,0x83dd,0xbefc,0xc5a9,0x83de,0x83df,0x83e0,0xb9da,0x83e1,0xdaa3, +0x83e2,0xd4a9,0xdaa4,0x83e3,0x83e4,0x83e5,0x83e6,0x83e7,0xd9fb,0xb6ac, +0x83e8,0x83e9,0xb7eb,0xb1f9,0xd9fc,0xb3e5,0xbef6,0x83ea,0xbff6,0xd2b1, +0xc0e4,0x83eb,0x83ec,0x83ed,0xb6b3,0xd9fe,0xd9fd,0x83ee,0x83ef,0xbebb, +0x83f0,0x83f1,0x83f2,0xc6e0,0x83f3,0xd7bc,0xdaa1,0x83f4,0xc1b9,0x83f5, +0xb5f2,0xc1e8,0x83f6,0x83f7,0xbcf5,0x83f8,0xb4d5,0x83f9,0x83fa,0x83fb, +0x83fc,0x83fd,0x83fe,0x8440,0x8441,0x8442,0xc1dd,0x8443,0xc4fd,0x8444, +0x8445,0xbcb8,0xb7b2,0x8446,0x8447,0xb7ef,0x8448,0x8449,0x844a,0x844b, +0x844c,0x844d,0xd9ec,0x844e,0xc6be,0x844f,0xbfad,0xbbcb,0x8450,0x8451, +0xb5ca,0x8452,0xdbc9,0xd0d7,0x8453,0xcdb9,0xb0bc,0xb3f6,0xbbf7,0xdbca, +0xbaaf,0x8454,0xd4e4,0xb5b6,0xb5f3,0xd8d6,0xc8d0,0x8455,0x8456,0xb7d6, +0xc7d0,0xd8d7,0x8457,0xbfaf,0x8458,0x8459,0xdbbb,0xd8d8,0x845a,0x845b, +0xd0cc,0xbbae,0x845c,0x845d,0x845e,0xebbe,0xc1d0,0xc1f5,0xd4f2,0xb8d5, +0xb4b4,0x845f,0xb3f5,0x8460,0x8461,0xc9be,0x8462,0x8463,0x8464,0xc5d0, +0x8465,0x8466,0x8467,0xc5d9,0xc0fb,0x8468,0xb1f0,0x8469,0xd8d9,0xb9ce, +0x846a,0xb5bd,0x846b,0x846c,0xd8da,0x846d,0x846e,0xd6c6,0xcba2,0xc8af, +0xc9b2,0xb4cc,0xbfcc,0x846f,0xb9f4,0x8470,0xd8db,0xd8dc,0xb6e7,0xbcc1, +0xccea,0x8471,0x8472,0x8473,0x8474,0x8475,0x8476,0xcff7,0x8477,0xd8dd, +0xc7b0,0x8478,0x8479,0xb9d0,0xbda3,0x847a,0x847b,0xccde,0x847c,0xc6ca, +0x847d,0x847e,0x8480,0x8481,0x8482,0xd8e0,0x8483,0xd8de,0x8484,0x8485, +0xd8df,0x8486,0x8487,0x8488,0xb0fe,0x8489,0xbee7,0x848a,0xcaa3,0xbcf4, +0x848b,0x848c,0x848d,0x848e,0xb8b1,0x848f,0x8490,0xb8ee,0x8491,0x8492, +0x8493,0x8494,0x8495,0x8496,0x8497,0x8498,0x8499,0x849a,0xd8e2,0x849b, +0xbdcb,0x849c,0xd8e4,0xd8e3,0x849d,0x849e,0x849f,0x84a0,0x84a1,0xc5fc, +0x84a2,0x84a3,0x84a4,0x84a5,0x84a6,0x84a7,0x84a8,0xd8e5,0x84a9,0x84aa, +0xd8e6,0x84ab,0x84ac,0x84ad,0x84ae,0x84af,0x84b0,0x84b1,0xc1a6,0x84b2, +0xc8b0,0xb0ec,0xb9a6,0xbcd3,0xcef1,0xdbbd,0xc1d3,0x84b3,0x84b4,0x84b5, +0x84b6,0xb6af,0xd6fa,0xc5ac,0xbdd9,0xdbbe,0xdbbf,0x84b7,0x84b8,0x84b9, +0xc0f8,0xbea2,0xc0cd,0x84ba,0x84bb,0x84bc,0x84bd,0x84be,0x84bf,0x84c0, +0x84c1,0x84c2,0x84c3,0xdbc0,0xcac6,0x84c4,0x84c5,0x84c6,0xb2aa,0x84c7, +0x84c8,0x84c9,0xd3c2,0x84ca,0xc3e3,0x84cb,0xd1ab,0x84cc,0x84cd,0x84ce, +0x84cf,0xdbc2,0x84d0,0xc0d5,0x84d1,0x84d2,0x84d3,0xdbc3,0x84d4,0xbfb1, +0x84d5,0x84d6,0x84d7,0x84d8,0x84d9,0x84da,0xc4bc,0x84db,0x84dc,0x84dd, +0x84de,0xc7da,0x84df,0x84e0,0x84e1,0x84e2,0x84e3,0x84e4,0x84e5,0x84e6, +0x84e7,0x84e8,0x84e9,0xdbc4,0x84ea,0x84eb,0x84ec,0x84ed,0x84ee,0x84ef, +0x84f0,0x84f1,0xd9e8,0xc9d7,0x84f2,0x84f3,0x84f4,0xb9b4,0xcef0,0xd4c8, +0x84f5,0x84f6,0x84f7,0x84f8,0xb0fc,0xb4d2,0x84f9,0xd0d9,0x84fa,0x84fb, +0x84fc,0x84fd,0xd9e9,0x84fe,0xdecb,0xd9eb,0x8540,0x8541,0x8542,0x8543, +0xd8b0,0xbbaf,0xb1b1,0x8544,0xb3d7,0xd8ce,0x8545,0x8546,0xd4d1,0x8547, +0x8548,0xbdb3,0xbfef,0x8549,0xcfbb,0x854a,0x854b,0xd8d0,0x854c,0x854d, +0x854e,0xb7cb,0x854f,0x8550,0x8551,0xd8d1,0x8552,0x8553,0x8554,0x8555, +0x8556,0x8557,0x8558,0x8559,0x855a,0x855b,0xc6a5,0xc7f8,0xd2bd,0x855c, +0x855d,0xd8d2,0xc4e4,0x855e,0xcaae,0x855f,0xc7a7,0x8560,0xd8a6,0x8561, +0xc9fd,0xcee7,0xbbdc,0xb0eb,0x8562,0x8563,0x8564,0xbbaa,0xd0ad,0x8565, +0xb1b0,0xd7e4,0xd7bf,0x8566,0xb5a5,0xc2f4,0xc4cf,0x8567,0x8568,0xb2a9, +0x8569,0xb2b7,0x856a,0xb1e5,0xdfb2,0xd5bc,0xbfa8,0xc2ac,0xd8d5,0xc2b1, +0x856b,0xd8d4,0xced4,0x856c,0xdae0,0x856d,0xcec0,0x856e,0x856f,0xd8b4, +0xc3ae,0xd3a1,0xcea3,0x8570,0xbcb4,0xc8b4,0xc2d1,0x8571,0xbeed,0xd0b6, +0x8572,0xdae1,0x8573,0x8574,0x8575,0x8576,0xc7e4,0x8577,0x8578,0xb3a7, +0x8579,0xb6f2,0xccfc,0xc0fa,0x857a,0x857b,0xc0f7,0x857c,0xd1b9,0xd1e1, +0xd8c7,0x857d,0x857e,0x8580,0x8581,0x8582,0x8583,0x8584,0xb2de,0x8585, +0x8586,0xc0e5,0x8587,0xbaf1,0x8588,0x8589,0xd8c8,0x858a,0xd4ad,0x858b, +0x858c,0xcfe1,0xd8c9,0x858d,0xd8ca,0xcfc3,0x858e,0xb3f8,0xbec7,0x858f, +0x8590,0x8591,0x8592,0xd8cb,0x8593,0x8594,0x8595,0x8596,0x8597,0x8598, +0x8599,0xdbcc,0x859a,0x859b,0x859c,0x859d,0xc8a5,0x859e,0x859f,0x85a0, +0xcfd8,0x85a1,0xc8fe,0xb2ce,0x85a2,0x85a3,0x85a4,0x85a5,0x85a6,0xd3d6, +0xb2e6,0xbcb0,0xd3d1,0xcbab,0xb7b4,0x85a7,0x85a8,0x85a9,0xb7a2,0x85aa, +0x85ab,0xcae5,0x85ac,0xc8a1,0xcadc,0xb1e4,0xd0f0,0x85ad,0xc5d1,0x85ae, +0x85af,0x85b0,0xdbc5,0xb5fe,0x85b1,0x85b2,0xbfda,0xb9c5,0xbee4,0xc1ed, +0x85b3,0xdfb6,0xdfb5,0xd6bb,0xbdd0,0xd5d9,0xb0c8,0xb6a3,0xbfc9,0xcca8, +0xdfb3,0xcab7,0xd3d2,0x85b4,0xd8cf,0xd2b6,0xbac5,0xcbbe,0xccbe,0x85b5, +0xdfb7,0xb5f0,0xdfb4,0x85b6,0x85b7,0x85b8,0xd3f5,0x85b9,0xb3d4,0xb8f7, +0x85ba,0xdfba,0x85bb,0xbacf,0xbcaa,0xb5f5,0x85bc,0xcdac,0xc3fb,0xbaf3, +0xc0f4,0xcdc2,0xcff2,0xdfb8,0xcfc5,0x85bd,0xc2c0,0xdfb9,0xc2f0,0x85be, +0x85bf,0x85c0,0xbefd,0x85c1,0xc1df,0xcdcc,0xd2f7,0xb7cd,0xdfc1,0x85c2, +0xdfc4,0x85c3,0x85c4,0xb7f1,0xb0c9,0xb6d6,0xb7d4,0x85c5,0xbaac,0xccfd, +0xbfd4,0xcbb1,0xc6f4,0x85c6,0xd6a8,0xdfc5,0x85c7,0xcee2,0xb3b3,0x85c8, +0x85c9,0xcefc,0xb4b5,0x85ca,0xcec7,0xbaf0,0x85cb,0xcee1,0x85cc,0xd1bd, +0x85cd,0x85ce,0xdfc0,0x85cf,0x85d0,0xb4f4,0x85d1,0xb3ca,0x85d2,0xb8e6, +0xdfbb,0x85d3,0x85d4,0x85d5,0x85d6,0xc4c5,0x85d7,0xdfbc,0xdfbd,0xdfbe, +0xc5bb,0xdfbf,0xdfc2,0xd4b1,0xdfc3,0x85d8,0xc7ba,0xced8,0x85d9,0x85da, +0x85db,0x85dc,0x85dd,0xc4d8,0x85de,0xdfca,0x85df,0xdfcf,0x85e0,0xd6dc, +0x85e1,0x85e2,0x85e3,0x85e4,0x85e5,0x85e6,0x85e7,0x85e8,0xdfc9,0xdfda, +0xceb6,0x85e9,0xbac7,0xdfce,0xdfc8,0xc5de,0x85ea,0x85eb,0xc9eb,0xbaf4, +0xc3fc,0x85ec,0x85ed,0xbed7,0x85ee,0xdfc6,0x85ef,0xdfcd,0x85f0,0xc5d8, +0x85f1,0x85f2,0x85f3,0x85f4,0xd5a6,0xbacd,0x85f5,0xbecc,0xd3bd,0xb8c0, +0x85f6,0xd6e4,0x85f7,0xdfc7,0xb9be,0xbfa7,0x85f8,0x85f9,0xc1fc,0xdfcb, +0xdfcc,0x85fa,0xdfd0,0x85fb,0x85fc,0x85fd,0x85fe,0x8640,0xdfdb,0xdfe5, +0x8641,0xdfd7,0xdfd6,0xd7c9,0xdfe3,0xdfe4,0xe5eb,0xd2a7,0xdfd2,0x8642, +0xbfa9,0x8643,0xd4db,0x8644,0xbfc8,0xdfd4,0x8645,0x8646,0x8647,0xcfcc, +0x8648,0x8649,0xdfdd,0x864a,0xd1ca,0x864b,0xdfde,0xb0a7,0xc6b7,0xdfd3, +0x864c,0xbae5,0x864d,0xb6df,0xcddb,0xb9fe,0xd4d5,0x864e,0x864f,0xdfdf, +0xcfec,0xb0a5,0xdfe7,0xdfd1,0xd1c6,0xdfd5,0xdfd8,0xdfd9,0xdfdc,0x8650, +0xbba9,0x8651,0xdfe0,0xdfe1,0x8652,0xdfe2,0xdfe6,0xdfe8,0xd3b4,0x8653, +0x8654,0x8655,0x8656,0x8657,0xb8e7,0xc5b6,0xdfea,0xc9da,0xc1a8,0xc4c4, +0x8658,0x8659,0xbfde,0xcff8,0x865a,0x865b,0x865c,0xd5dc,0xdfee,0x865d, +0x865e,0x865f,0x8660,0x8661,0x8662,0xb2b8,0x8663,0xbadf,0xdfec,0x8664, +0xdbc1,0x8665,0xd1e4,0x8666,0x8667,0x8668,0x8669,0xcbf4,0xb4bd,0x866a, +0xb0a6,0x866b,0x866c,0x866d,0x866e,0x866f,0xdff1,0xccc6,0xdff2,0x8670, +0x8671,0xdfed,0x8672,0x8673,0x8674,0x8675,0x8676,0x8677,0xdfe9,0x8678, +0x8679,0x867a,0x867b,0xdfeb,0x867c,0xdfef,0xdff0,0xbbbd,0x867d,0x867e, +0xdff3,0x8680,0x8681,0xdff4,0x8682,0xbba3,0x8683,0xcadb,0xcea8,0xe0a7, +0xb3aa,0x8684,0xe0a6,0x8685,0x8686,0x8687,0xe0a1,0x8688,0x8689,0x868a, +0x868b,0xdffe,0x868c,0xcdd9,0xdffc,0x868d,0xdffa,0x868e,0xbfd0,0xd7c4, +0x868f,0xc9cc,0x8690,0x8691,0xdff8,0xb0a1,0x8692,0x8693,0x8694,0x8695, +0x8696,0xdffd,0x8697,0x8698,0x8699,0x869a,0xdffb,0xe0a2,0x869b,0x869c, +0x869d,0x869e,0x869f,0xe0a8,0x86a0,0x86a1,0x86a2,0x86a3,0xb7c8,0x86a4, +0x86a5,0xc6a1,0xc9b6,0xc0b2,0xdff5,0x86a6,0x86a7,0xc5be,0x86a8,0xd8c4, +0xdff9,0xc4f6,0x86a9,0x86aa,0x86ab,0x86ac,0x86ad,0x86ae,0xe0a3,0xe0a4, +0xe0a5,0xd0a5,0x86af,0x86b0,0xe0b4,0xcce4,0x86b1,0xe0b1,0x86b2,0xbfa6, +0xe0af,0xceb9,0xe0ab,0xc9c6,0x86b3,0x86b4,0xc0ae,0xe0ae,0xbaed,0xbab0, +0xe0a9,0x86b5,0x86b6,0x86b7,0xdff6,0x86b8,0xe0b3,0x86b9,0x86ba,0xe0b8, +0x86bb,0x86bc,0x86bd,0xb4ad,0xe0b9,0x86be,0x86bf,0xcfb2,0xbac8,0x86c0, +0xe0b0,0x86c1,0x86c2,0x86c3,0x86c4,0x86c5,0x86c6,0x86c7,0xd0fa,0x86c8, +0x86c9,0x86ca,0x86cb,0x86cc,0x86cd,0x86ce,0x86cf,0x86d0,0xe0ac,0x86d1, +0xd4fb,0x86d2,0xdff7,0x86d3,0xc5e7,0x86d4,0xe0ad,0x86d5,0xd3f7,0x86d6, +0xe0b6,0xe0b7,0x86d7,0x86d8,0x86d9,0x86da,0x86db,0xe0c4,0xd0e1,0x86dc, +0x86dd,0x86de,0xe0bc,0x86df,0x86e0,0xe0c9,0xe0ca,0x86e1,0x86e2,0x86e3, +0xe0be,0xe0aa,0xc9a4,0xe0c1,0x86e4,0xe0b2,0x86e5,0x86e6,0x86e7,0x86e8, +0x86e9,0xcac8,0xe0c3,0x86ea,0xe0b5,0x86eb,0xcecb,0x86ec,0xcbc3,0xe0cd, +0xe0c6,0xe0c2,0x86ed,0xe0cb,0x86ee,0xe0ba,0xe0bf,0xe0c0,0x86ef,0x86f0, +0xe0c5,0x86f1,0x86f2,0xe0c7,0xe0c8,0x86f3,0xe0cc,0x86f4,0xe0bb,0x86f5, +0x86f6,0x86f7,0x86f8,0x86f9,0xcbd4,0xe0d5,0x86fa,0xe0d6,0xe0d2,0x86fb, +0x86fc,0x86fd,0x86fe,0x8740,0x8741,0xe0d0,0xbcce,0x8742,0x8743,0xe0d1, +0x8744,0xb8c2,0xd8c5,0x8745,0x8746,0x8747,0x8748,0x8749,0x874a,0x874b, +0x874c,0xd0ea,0x874d,0x874e,0xc2ef,0x874f,0x8750,0xe0cf,0xe0bd,0x8751, +0x8752,0x8753,0xe0d4,0xe0d3,0x8754,0x8755,0xe0d7,0x8756,0x8757,0x8758, +0x8759,0xe0dc,0xe0d8,0x875a,0x875b,0x875c,0xd6f6,0xb3b0,0x875d,0xd7ec, +0x875e,0xcbbb,0x875f,0x8760,0xe0da,0x8761,0xcefb,0x8762,0x8763,0x8764, +0xbad9,0x8765,0x8766,0x8767,0x8768,0x8769,0x876a,0x876b,0x876c,0x876d, +0x876e,0x876f,0x8770,0xe0e1,0xe0dd,0xd2ad,0x8771,0x8772,0x8773,0x8774, +0x8775,0xe0e2,0x8776,0x8777,0xe0db,0xe0d9,0xe0df,0x8778,0x8779,0xe0e0, +0x877a,0x877b,0x877c,0x877d,0x877e,0xe0de,0x8780,0xe0e4,0x8781,0x8782, +0x8783,0xc6f7,0xd8ac,0xd4eb,0xe0e6,0xcac9,0x8784,0x8785,0x8786,0x8787, +0xe0e5,0x8788,0x8789,0x878a,0x878b,0xb8c1,0x878c,0x878d,0x878e,0x878f, +0xe0e7,0xe0e8,0x8790,0x8791,0x8792,0x8793,0x8794,0x8795,0x8796,0x8797, +0xe0e9,0xe0e3,0x8798,0x8799,0x879a,0x879b,0x879c,0x879d,0x879e,0xbabf, +0xcce7,0x879f,0x87a0,0x87a1,0xe0ea,0x87a2,0x87a3,0x87a4,0x87a5,0x87a6, +0x87a7,0x87a8,0x87a9,0x87aa,0x87ab,0x87ac,0x87ad,0x87ae,0x87af,0x87b0, +0xcff9,0x87b1,0x87b2,0x87b3,0x87b4,0x87b5,0x87b6,0x87b7,0x87b8,0x87b9, +0x87ba,0x87bb,0xe0eb,0x87bc,0x87bd,0x87be,0x87bf,0x87c0,0x87c1,0x87c2, +0xc8c2,0x87c3,0x87c4,0x87c5,0x87c6,0xbdc0,0x87c7,0x87c8,0x87c9,0x87ca, +0x87cb,0x87cc,0x87cd,0x87ce,0x87cf,0x87d0,0x87d1,0x87d2,0x87d3,0xc4d2, +0x87d4,0x87d5,0x87d6,0x87d7,0x87d8,0x87d9,0x87da,0x87db,0x87dc,0xe0ec, +0x87dd,0x87de,0xe0ed,0x87df,0x87e0,0xc7f4,0xcbc4,0x87e1,0xe0ee,0xbbd8, +0xd8b6,0xd2f2,0xe0ef,0xcdc5,0x87e2,0xb6da,0x87e3,0x87e4,0x87e5,0x87e6, +0x87e7,0x87e8,0xe0f1,0x87e9,0xd4b0,0x87ea,0x87eb,0xc0a7,0xb4d1,0x87ec, +0x87ed,0xcea7,0xe0f0,0x87ee,0x87ef,0x87f0,0xe0f2,0xb9cc,0x87f1,0x87f2, +0xb9fa,0xcdbc,0xe0f3,0x87f3,0x87f4,0x87f5,0xc6d4,0xe0f4,0x87f6,0xd4b2, +0x87f7,0xc8a6,0xe0f6,0xe0f5,0x87f8,0x87f9,0x87fa,0x87fb,0x87fc,0x87fd, +0x87fe,0x8840,0x8841,0x8842,0x8843,0x8844,0x8845,0x8846,0x8847,0x8848, +0x8849,0xe0f7,0x884a,0x884b,0xcdc1,0x884c,0x884d,0x884e,0xcaa5,0x884f, +0x8850,0x8851,0x8852,0xd4da,0xdbd7,0xdbd9,0x8853,0xdbd8,0xb9e7,0xdbdc, +0xdbdd,0xb5d8,0x8854,0x8855,0xdbda,0x8856,0x8857,0x8858,0x8859,0x885a, +0xdbdb,0xb3a1,0xdbdf,0x885b,0x885c,0xbbf8,0x885d,0xd6b7,0x885e,0xdbe0, +0x885f,0x8860,0x8861,0x8862,0xbef9,0x8863,0x8864,0xb7bb,0x8865,0xdbd0, +0xccae,0xbfb2,0xbbb5,0xd7f8,0xbfd3,0x8866,0x8867,0x8868,0x8869,0x886a, +0xbfe9,0x886b,0x886c,0xbce1,0xccb3,0xdbde,0xb0d3,0xceeb,0xb7d8,0xd7b9, +0xc6c2,0x886d,0x886e,0xc0a4,0x886f,0xccb9,0x8870,0xdbe7,0xdbe1,0xc6ba, +0xdbe3,0x8871,0xdbe8,0x8872,0xc5f7,0x8873,0x8874,0x8875,0xdbea,0x8876, +0x8877,0xdbe9,0xbfc0,0x8878,0x8879,0x887a,0xdbe6,0xdbe5,0x887b,0x887c, +0x887d,0x887e,0x8880,0xb4b9,0xc0ac,0xc2a2,0xdbe2,0xdbe4,0x8881,0x8882, +0x8883,0x8884,0xd0cd,0xdbed,0x8885,0x8886,0x8887,0x8888,0x8889,0xc0dd, +0xdbf2,0x888a,0x888b,0x888c,0x888d,0x888e,0x888f,0x8890,0xb6e2,0x8891, +0x8892,0x8893,0x8894,0xdbf3,0xdbd2,0xb9b8,0xd4ab,0xdbec,0x8895,0xbfd1, +0xdbf0,0x8896,0xdbd1,0x8897,0xb5e6,0x8898,0xdbeb,0xbfe5,0x8899,0x889a, +0x889b,0xdbee,0x889c,0xdbf1,0x889d,0x889e,0x889f,0xdbf9,0x88a0,0x88a1, +0x88a2,0x88a3,0x88a4,0x88a5,0x88a6,0x88a7,0x88a8,0xb9a1,0xb0a3,0x88a9, +0x88aa,0x88ab,0x88ac,0x88ad,0x88ae,0x88af,0xc2f1,0x88b0,0x88b1,0xb3c7, +0xdbef,0x88b2,0x88b3,0xdbf8,0x88b4,0xc6d2,0xdbf4,0x88b5,0x88b6,0xdbf5, +0xdbf7,0xdbf6,0x88b7,0x88b8,0xdbfe,0x88b9,0xd3f2,0xb2ba,0x88ba,0x88bb, +0x88bc,0xdbfd,0x88bd,0x88be,0x88bf,0x88c0,0x88c1,0x88c2,0x88c3,0x88c4, +0xdca4,0x88c5,0xdbfb,0x88c6,0x88c7,0x88c8,0x88c9,0xdbfa,0x88ca,0x88cb, +0x88cc,0xdbfc,0xc5e0,0xbbf9,0x88cd,0x88ce,0xdca3,0x88cf,0x88d0,0xdca5, +0x88d1,0xccc3,0x88d2,0x88d3,0x88d4,0xb6d1,0xddc0,0x88d5,0x88d6,0x88d7, +0xdca1,0x88d8,0xdca2,0x88d9,0x88da,0x88db,0xc7b5,0x88dc,0x88dd,0x88de, +0xb6e9,0x88df,0x88e0,0x88e1,0xdca7,0x88e2,0x88e3,0x88e4,0x88e5,0xdca6, +0x88e6,0xdca9,0xb1a4,0x88e7,0x88e8,0xb5cc,0x88e9,0x88ea,0x88eb,0x88ec, +0x88ed,0xbfb0,0x88ee,0x88ef,0x88f0,0x88f1,0x88f2,0xd1df,0x88f3,0x88f4, +0x88f5,0x88f6,0xb6c2,0x88f7,0x88f8,0x88f9,0x88fa,0x88fb,0x88fc,0x88fd, +0x88fe,0x8940,0x8941,0x8942,0x8943,0x8944,0x8945,0xdca8,0x8946,0x8947, +0x8948,0x8949,0x894a,0x894b,0x894c,0xcbfa,0xebf3,0x894d,0x894e,0x894f, +0xcbdc,0x8950,0x8951,0xcbfe,0x8952,0x8953,0x8954,0xccc1,0x8955,0x8956, +0x8957,0x8958,0x8959,0xc8fb,0x895a,0x895b,0x895c,0x895d,0x895e,0x895f, +0xdcaa,0x8960,0x8961,0x8962,0x8963,0x8964,0xccee,0xdcab,0x8965,0x8966, +0x8967,0x8968,0x8969,0x896a,0x896b,0x896c,0x896d,0x896e,0x896f,0x8970, +0x8971,0x8972,0x8973,0x8974,0x8975,0xdbd3,0x8976,0xdcaf,0xdcac,0x8977, +0xbeb3,0x8978,0xcafb,0x8979,0x897a,0x897b,0xdcad,0x897c,0x897d,0x897e, +0x8980,0x8981,0x8982,0x8983,0x8984,0xc9ca,0xc4b9,0x8985,0x8986,0x8987, +0x8988,0x8989,0xc7bd,0xdcae,0x898a,0x898b,0x898c,0xd4f6,0xd0e6,0x898d, +0x898e,0x898f,0x8990,0x8991,0x8992,0x8993,0x8994,0xc4ab,0xb6d5,0x8995, +0x8996,0x8997,0x8998,0x8999,0x899a,0x899b,0x899c,0x899d,0x899e,0x899f, +0x89a0,0x89a1,0x89a2,0x89a3,0x89a4,0x89a5,0x89a6,0xdbd4,0x89a7,0x89a8, +0x89a9,0x89aa,0xb1da,0x89ab,0x89ac,0x89ad,0xdbd5,0x89ae,0x89af,0x89b0, +0x89b1,0x89b2,0x89b3,0x89b4,0x89b5,0x89b6,0x89b7,0x89b8,0xdbd6,0x89b9, +0x89ba,0x89bb,0xbabe,0x89bc,0x89bd,0x89be,0x89bf,0x89c0,0x89c1,0x89c2, +0x89c3,0x89c4,0x89c5,0x89c6,0x89c7,0x89c8,0x89c9,0xc8c0,0x89ca,0x89cb, +0x89cc,0x89cd,0x89ce,0x89cf,0xcabf,0xc8c9,0x89d0,0xd7b3,0x89d1,0xc9f9, +0x89d2,0x89d3,0xbfc7,0x89d4,0x89d5,0xbaf8,0x89d6,0x89d7,0xd2bc,0x89d8, +0x89d9,0x89da,0x89db,0x89dc,0x89dd,0x89de,0x89df,0xe2ba,0x89e0,0xb4a6, +0x89e1,0x89e2,0xb1b8,0x89e3,0x89e4,0x89e5,0x89e6,0x89e7,0xb8b4,0x89e8, +0xcfc4,0x89e9,0x89ea,0x89eb,0x89ec,0xd9e7,0xcfa6,0xcde2,0x89ed,0x89ee, +0xd9ed,0xb6e0,0x89ef,0xd2b9,0x89f0,0x89f1,0xb9bb,0x89f2,0x89f3,0x89f4, +0x89f5,0xe2b9,0xe2b7,0x89f6,0xb4f3,0x89f7,0xccec,0xccab,0xb7f2,0x89f8, +0xd8b2,0xd1eb,0xbabb,0x89f9,0xcaa7,0x89fa,0x89fb,0xcdb7,0x89fc,0x89fd, +0xd2c4,0xbfe4,0xbcd0,0xb6e1,0x89fe,0xdec5,0x8a40,0x8a41,0x8a42,0x8a43, +0xdec6,0xdbbc,0x8a44,0xd1d9,0x8a45,0x8a46,0xc6e6,0xc4ce,0xb7ee,0x8a47, +0xb7dc,0x8a48,0x8a49,0xbffc,0xd7e0,0x8a4a,0xc6f5,0x8a4b,0x8a4c,0xb1bc, +0xdec8,0xbdb1,0xccd7,0xdeca,0x8a4d,0xdec9,0x8a4e,0x8a4f,0x8a50,0x8a51, +0x8a52,0xb5ec,0x8a53,0xc9dd,0x8a54,0x8a55,0xb0c2,0x8a56,0x8a57,0x8a58, +0x8a59,0x8a5a,0x8a5b,0x8a5c,0x8a5d,0x8a5e,0x8a5f,0x8a60,0x8a61,0x8a62, +0xc5ae,0xc5ab,0x8a63,0xc4cc,0x8a64,0xbce9,0xcbfd,0x8a65,0x8a66,0x8a67, +0xbac3,0x8a68,0x8a69,0x8a6a,0xe5f9,0xc8e7,0xe5fa,0xcdfd,0x8a6b,0xd7b1, +0xb8be,0xc2e8,0x8a6c,0xc8d1,0x8a6d,0x8a6e,0xe5fb,0x8a6f,0x8a70,0x8a71, +0x8a72,0xb6ca,0xbccb,0x8a73,0x8a74,0xd1fd,0xe6a1,0x8a75,0xc3ee,0x8a76, +0x8a77,0x8a78,0x8a79,0xe6a4,0x8a7a,0x8a7b,0x8a7c,0x8a7d,0xe5fe,0xe6a5, +0xcdd7,0x8a7e,0x8a80,0xb7c1,0xe5fc,0xe5fd,0xe6a3,0x8a81,0x8a82,0xc4dd, +0xe6a8,0x8a83,0x8a84,0xe6a7,0x8a85,0x8a86,0x8a87,0x8a88,0x8a89,0x8a8a, +0xc3c3,0x8a8b,0xc6de,0x8a8c,0x8a8d,0xe6aa,0x8a8e,0x8a8f,0x8a90,0x8a91, +0x8a92,0x8a93,0x8a94,0xc4b7,0x8a95,0x8a96,0x8a97,0xe6a2,0xcabc,0x8a98, +0x8a99,0x8a9a,0x8a9b,0xbde3,0xb9c3,0xe6a6,0xd0d5,0xceaf,0x8a9c,0x8a9d, +0xe6a9,0xe6b0,0x8a9e,0xd2a6,0x8a9f,0xbdaa,0xe6ad,0x8aa0,0x8aa1,0x8aa2, +0x8aa3,0x8aa4,0xe6af,0x8aa5,0xc0d1,0x8aa6,0x8aa7,0xd2cc,0x8aa8,0x8aa9, +0x8aaa,0xbca7,0x8aab,0x8aac,0x8aad,0x8aae,0x8aaf,0x8ab0,0x8ab1,0x8ab2, +0x8ab3,0x8ab4,0x8ab5,0x8ab6,0xe6b1,0x8ab7,0xd2f6,0x8ab8,0x8ab9,0x8aba, +0xd7cb,0x8abb,0xcdfe,0x8abc,0xcdde,0xc2a6,0xe6ab,0xe6ac,0xbdbf,0xe6ae, +0xe6b3,0x8abd,0x8abe,0xe6b2,0x8abf,0x8ac0,0x8ac1,0x8ac2,0xe6b6,0x8ac3, +0xe6b8,0x8ac4,0x8ac5,0x8ac6,0x8ac7,0xc4ef,0x8ac8,0x8ac9,0x8aca,0xc4c8, +0x8acb,0x8acc,0xbeea,0xc9ef,0x8acd,0x8ace,0xe6b7,0x8acf,0xb6f0,0x8ad0, +0x8ad1,0x8ad2,0xc3e4,0x8ad3,0x8ad4,0x8ad5,0x8ad6,0x8ad7,0x8ad8,0x8ad9, +0xd3e9,0xe6b4,0x8ada,0xe6b5,0x8adb,0xc8a2,0x8adc,0x8add,0x8ade,0x8adf, +0x8ae0,0xe6bd,0x8ae1,0x8ae2,0x8ae3,0xe6b9,0x8ae4,0x8ae5,0x8ae6,0x8ae7, +0x8ae8,0xc6c5,0x8ae9,0x8aea,0xcdf1,0xe6bb,0x8aeb,0x8aec,0x8aed,0x8aee, +0x8aef,0x8af0,0x8af1,0x8af2,0x8af3,0x8af4,0xe6bc,0x8af5,0x8af6,0x8af7, +0x8af8,0xbbe9,0x8af9,0x8afa,0x8afb,0x8afc,0x8afd,0x8afe,0x8b40,0xe6be, +0x8b41,0x8b42,0x8b43,0x8b44,0xe6ba,0x8b45,0x8b46,0xc0b7,0x8b47,0x8b48, +0x8b49,0x8b4a,0x8b4b,0x8b4c,0x8b4d,0x8b4e,0x8b4f,0xd3a4,0xe6bf,0xc9f4, +0xe6c3,0x8b50,0x8b51,0xe6c4,0x8b52,0x8b53,0x8b54,0x8b55,0xd0f6,0x8b56, +0x8b57,0x8b58,0x8b59,0x8b5a,0x8b5b,0x8b5c,0x8b5d,0x8b5e,0x8b5f,0x8b60, +0x8b61,0x8b62,0x8b63,0x8b64,0x8b65,0x8b66,0x8b67,0xc3bd,0x8b68,0x8b69, +0x8b6a,0x8b6b,0x8b6c,0x8b6d,0x8b6e,0xc3c4,0xe6c2,0x8b6f,0x8b70,0x8b71, +0x8b72,0x8b73,0x8b74,0x8b75,0x8b76,0x8b77,0x8b78,0x8b79,0x8b7a,0x8b7b, +0x8b7c,0xe6c1,0x8b7d,0x8b7e,0x8b80,0x8b81,0x8b82,0x8b83,0x8b84,0xe6c7, +0xcfb1,0x8b85,0xebf4,0x8b86,0x8b87,0xe6ca,0x8b88,0x8b89,0x8b8a,0x8b8b, +0x8b8c,0xe6c5,0x8b8d,0x8b8e,0xbcde,0xc9a9,0x8b8f,0x8b90,0x8b91,0x8b92, +0x8b93,0x8b94,0xbcb5,0x8b95,0x8b96,0xcfd3,0x8b97,0x8b98,0x8b99,0x8b9a, +0x8b9b,0xe6c8,0x8b9c,0xe6c9,0x8b9d,0xe6ce,0x8b9e,0xe6d0,0x8b9f,0x8ba0, +0x8ba1,0xe6d1,0x8ba2,0x8ba3,0x8ba4,0xe6cb,0xb5d5,0x8ba5,0xe6cc,0x8ba6, +0x8ba7,0xe6cf,0x8ba8,0x8ba9,0xc4db,0x8baa,0xe6c6,0x8bab,0x8bac,0x8bad, +0x8bae,0x8baf,0xe6cd,0x8bb0,0x8bb1,0x8bb2,0x8bb3,0x8bb4,0x8bb5,0x8bb6, +0x8bb7,0x8bb8,0x8bb9,0x8bba,0x8bbb,0x8bbc,0x8bbd,0x8bbe,0x8bbf,0x8bc0, +0x8bc1,0x8bc2,0x8bc3,0x8bc4,0x8bc5,0x8bc6,0xe6d2,0x8bc7,0x8bc8,0x8bc9, +0x8bca,0x8bcb,0x8bcc,0x8bcd,0x8bce,0x8bcf,0x8bd0,0x8bd1,0x8bd2,0xe6d4, +0xe6d3,0x8bd3,0x8bd4,0x8bd5,0x8bd6,0x8bd7,0x8bd8,0x8bd9,0x8bda,0x8bdb, +0x8bdc,0x8bdd,0x8bde,0x8bdf,0x8be0,0x8be1,0x8be2,0x8be3,0x8be4,0x8be5, +0x8be6,0x8be7,0x8be8,0x8be9,0x8bea,0x8beb,0x8bec,0xe6d5,0x8bed,0xd9f8, +0x8bee,0x8bef,0xe6d6,0x8bf0,0x8bf1,0x8bf2,0x8bf3,0x8bf4,0x8bf5,0x8bf6, +0x8bf7,0xe6d7,0x8bf8,0x8bf9,0x8bfa,0x8bfb,0x8bfc,0x8bfd,0x8bfe,0x8c40, +0x8c41,0x8c42,0x8c43,0x8c44,0x8c45,0x8c46,0x8c47,0xd7d3,0xe6dd,0x8c48, +0xe6de,0xbfd7,0xd4d0,0x8c49,0xd7d6,0xb4e6,0xcbef,0xe6da,0xd8c3,0xd7ce, +0xd0a2,0x8c4a,0xc3cf,0x8c4b,0x8c4c,0xe6df,0xbcbe,0xb9c2,0xe6db,0xd1a7, +0x8c4d,0x8c4e,0xbaa2,0xc2cf,0x8c4f,0xd8ab,0x8c50,0x8c51,0x8c52,0xcaeb, +0xe5ee,0x8c53,0xe6dc,0x8c54,0xb7f5,0x8c55,0x8c56,0x8c57,0x8c58,0xc8e6, +0x8c59,0x8c5a,0xc4f5,0x8c5b,0x8c5c,0xe5b2,0xc4fe,0x8c5d,0xcbfc,0xe5b3, +0xd5ac,0x8c5e,0xd3ee,0xcad8,0xb0b2,0x8c5f,0xcbce,0xcdea,0x8c60,0x8c61, +0xbaea,0x8c62,0x8c63,0x8c64,0xe5b5,0x8c65,0xe5b4,0x8c66,0xd7da,0xb9d9, +0xd6e6,0xb6a8,0xcdf0,0xd2cb,0xb1a6,0xcab5,0x8c67,0xb3e8,0xc9f3,0xbfcd, +0xd0fb,0xcad2,0xe5b6,0xbbc2,0x8c68,0x8c69,0x8c6a,0xcfdc,0xb9ac,0x8c6b, +0x8c6c,0x8c6d,0x8c6e,0xd4d7,0x8c6f,0x8c70,0xbaa6,0xd1e7,0xcffc,0xbcd2, +0x8c71,0xe5b7,0xc8dd,0x8c72,0x8c73,0x8c74,0xbfed,0xb1f6,0xcbde,0x8c75, +0x8c76,0xbcc5,0x8c77,0xbcc4,0xd2fa,0xc3dc,0xbfdc,0x8c78,0x8c79,0x8c7a, +0x8c7b,0xb8bb,0x8c7c,0x8c7d,0x8c7e,0xc3c2,0x8c80,0xbaae,0xd4a2,0x8c81, +0x8c82,0x8c83,0x8c84,0x8c85,0x8c86,0x8c87,0x8c88,0x8c89,0xc7de,0xc4af, +0xb2ec,0x8c8a,0xb9d1,0x8c8b,0x8c8c,0xe5bb,0xc1c8,0x8c8d,0x8c8e,0xd5af, +0x8c8f,0x8c90,0x8c91,0x8c92,0x8c93,0xe5bc,0x8c94,0xe5be,0x8c95,0x8c96, +0x8c97,0x8c98,0x8c99,0x8c9a,0x8c9b,0xb4e7,0xb6d4,0xcbc2,0xd1b0,0xb5bc, +0x8c9c,0x8c9d,0xcad9,0x8c9e,0xb7e2,0x8c9f,0x8ca0,0xc9e4,0x8ca1,0xbdab, +0x8ca2,0x8ca3,0xcebe,0xd7f0,0x8ca4,0x8ca5,0x8ca6,0x8ca7,0xd0a1,0x8ca8, +0xc9d9,0x8ca9,0x8caa,0xb6fb,0xe6d8,0xbce2,0x8cab,0xb3be,0x8cac,0xc9d0, +0x8cad,0xe6d9,0xb3a2,0x8cae,0x8caf,0x8cb0,0x8cb1,0xdecc,0x8cb2,0xd3c8, +0xdecd,0x8cb3,0xd2a2,0x8cb4,0x8cb5,0x8cb6,0x8cb7,0xdece,0x8cb8,0x8cb9, +0x8cba,0x8cbb,0xbecd,0x8cbc,0x8cbd,0xdecf,0x8cbe,0x8cbf,0x8cc0,0xcaac, +0xd2fc,0xb3df,0xe5ea,0xc4e1,0xbea1,0xceb2,0xc4f2,0xbed6,0xc6a8,0xb2e3, +0x8cc1,0x8cc2,0xbed3,0x8cc3,0x8cc4,0xc7fc,0xcceb,0xbdec,0xcedd,0x8cc5, +0x8cc6,0xcaba,0xc6c1,0xe5ec,0xd0bc,0x8cc7,0x8cc8,0x8cc9,0xd5b9,0x8cca, +0x8ccb,0x8ccc,0xe5ed,0x8ccd,0x8cce,0x8ccf,0x8cd0,0xcaf4,0x8cd1,0xcdc0, +0xc2c5,0x8cd2,0xe5ef,0x8cd3,0xc2c4,0xe5f0,0x8cd4,0x8cd5,0x8cd6,0x8cd7, +0x8cd8,0x8cd9,0x8cda,0xe5f8,0xcdcd,0x8cdb,0xc9bd,0x8cdc,0x8cdd,0x8cde, +0x8cdf,0x8ce0,0x8ce1,0x8ce2,0xd2d9,0xe1a8,0x8ce3,0x8ce4,0x8ce5,0x8ce6, +0xd3ec,0x8ce7,0xcbea,0xc6f1,0x8ce8,0x8ce9,0x8cea,0x8ceb,0x8cec,0xe1ac, +0x8ced,0x8cee,0x8cef,0xe1a7,0xe1a9,0x8cf0,0x8cf1,0xe1aa,0xe1af,0x8cf2, +0x8cf3,0xb2ed,0x8cf4,0xe1ab,0xb8da,0xe1ad,0xe1ae,0xe1b0,0xb5ba,0xe1b1, +0x8cf5,0x8cf6,0x8cf7,0x8cf8,0x8cf9,0xe1b3,0xe1b8,0x8cfa,0x8cfb,0x8cfc, +0x8cfd,0x8cfe,0xd1d2,0x8d40,0xe1b6,0xe1b5,0xc1eb,0x8d41,0x8d42,0x8d43, +0xe1b7,0x8d44,0xd4c0,0x8d45,0xe1b2,0x8d46,0xe1ba,0xb0b6,0x8d47,0x8d48, +0x8d49,0x8d4a,0xe1b4,0x8d4b,0xbff9,0x8d4c,0xe1b9,0x8d4d,0x8d4e,0xe1bb, +0x8d4f,0x8d50,0x8d51,0x8d52,0x8d53,0x8d54,0xe1be,0x8d55,0x8d56,0x8d57, +0x8d58,0x8d59,0x8d5a,0xe1bc,0x8d5b,0x8d5c,0x8d5d,0x8d5e,0x8d5f,0x8d60, +0xd6c5,0x8d61,0x8d62,0x8d63,0x8d64,0x8d65,0x8d66,0x8d67,0xcfbf,0x8d68, +0x8d69,0xe1bd,0xe1bf,0xc2cd,0x8d6a,0xb6eb,0x8d6b,0xd3f8,0x8d6c,0x8d6d, +0xc7cd,0x8d6e,0x8d6f,0xb7e5,0x8d70,0x8d71,0x8d72,0x8d73,0x8d74,0x8d75, +0x8d76,0x8d77,0x8d78,0x8d79,0xbefe,0x8d7a,0x8d7b,0x8d7c,0x8d7d,0x8d7e, +0x8d80,0xe1c0,0xe1c1,0x8d81,0x8d82,0xe1c7,0xb3e7,0x8d83,0x8d84,0x8d85, +0x8d86,0x8d87,0x8d88,0xc6e9,0x8d89,0x8d8a,0x8d8b,0x8d8c,0x8d8d,0xb4de, +0x8d8e,0xd1c2,0x8d8f,0x8d90,0x8d91,0x8d92,0xe1c8,0x8d93,0x8d94,0xe1c6, +0x8d95,0x8d96,0x8d97,0x8d98,0x8d99,0xe1c5,0x8d9a,0xe1c3,0xe1c2,0x8d9b, +0xb1c0,0x8d9c,0x8d9d,0x8d9e,0xd5b8,0xe1c4,0x8d9f,0x8da0,0x8da1,0x8da2, +0x8da3,0xe1cb,0x8da4,0x8da5,0x8da6,0x8da7,0x8da8,0x8da9,0x8daa,0x8dab, +0xe1cc,0xe1ca,0x8dac,0x8dad,0x8dae,0x8daf,0x8db0,0x8db1,0x8db2,0x8db3, +0xeffa,0x8db4,0x8db5,0xe1d3,0xe1d2,0xc7b6,0x8db6,0x8db7,0x8db8,0x8db9, +0x8dba,0x8dbb,0x8dbc,0x8dbd,0x8dbe,0x8dbf,0x8dc0,0xe1c9,0x8dc1,0x8dc2, +0xe1ce,0x8dc3,0xe1d0,0x8dc4,0x8dc5,0x8dc6,0x8dc7,0x8dc8,0x8dc9,0x8dca, +0x8dcb,0x8dcc,0x8dcd,0x8dce,0xe1d4,0x8dcf,0xe1d1,0xe1cd,0x8dd0,0x8dd1, +0xe1cf,0x8dd2,0x8dd3,0x8dd4,0x8dd5,0xe1d5,0x8dd6,0x8dd7,0x8dd8,0x8dd9, +0x8dda,0x8ddb,0x8ddc,0x8ddd,0x8dde,0x8ddf,0x8de0,0x8de1,0x8de2,0xe1d6, +0x8de3,0x8de4,0x8de5,0x8de6,0x8de7,0x8de8,0x8de9,0x8dea,0x8deb,0x8dec, +0x8ded,0x8dee,0x8def,0x8df0,0x8df1,0x8df2,0x8df3,0x8df4,0x8df5,0x8df6, +0x8df7,0x8df8,0xe1d7,0x8df9,0x8dfa,0x8dfb,0xe1d8,0x8dfc,0x8dfd,0x8dfe, +0x8e40,0x8e41,0x8e42,0x8e43,0x8e44,0x8e45,0x8e46,0x8e47,0x8e48,0x8e49, +0x8e4a,0x8e4b,0x8e4c,0x8e4d,0x8e4e,0x8e4f,0x8e50,0x8e51,0x8e52,0x8e53, +0x8e54,0x8e55,0xe1da,0x8e56,0x8e57,0x8e58,0x8e59,0x8e5a,0x8e5b,0x8e5c, +0x8e5d,0x8e5e,0x8e5f,0x8e60,0x8e61,0x8e62,0xe1db,0x8e63,0x8e64,0x8e65, +0x8e66,0x8e67,0x8e68,0x8e69,0xcea1,0x8e6a,0x8e6b,0x8e6c,0x8e6d,0x8e6e, +0x8e6f,0x8e70,0x8e71,0x8e72,0x8e73,0x8e74,0x8e75,0x8e76,0xe7dd,0x8e77, +0xb4a8,0xd6dd,0x8e78,0x8e79,0xd1b2,0xb3b2,0x8e7a,0x8e7b,0xb9a4,0xd7f3, +0xc7c9,0xbede,0xb9ae,0x8e7c,0xced7,0x8e7d,0x8e7e,0xb2ee,0xdbcf,0x8e80, +0xbcba,0xd2d1,0xcbc8,0xb0cd,0x8e81,0x8e82,0xcfef,0x8e83,0x8e84,0x8e85, +0x8e86,0x8e87,0xd9e3,0xbded,0x8e88,0x8e89,0xb1d2,0xcad0,0xb2bc,0x8e8a, +0xcba7,0xb7ab,0x8e8b,0xcaa6,0x8e8c,0x8e8d,0x8e8e,0xcfa3,0x8e8f,0x8e90, +0xe0f8,0xd5ca,0xe0fb,0x8e91,0x8e92,0xe0fa,0xc5c1,0xccfb,0x8e93,0xc1b1, +0xe0f9,0xd6e3,0xb2af,0xd6c4,0xb5db,0x8e94,0x8e95,0x8e96,0x8e97,0x8e98, +0x8e99,0x8e9a,0x8e9b,0xb4f8,0xd6a1,0x8e9c,0x8e9d,0x8e9e,0x8e9f,0x8ea0, +0xcfaf,0xb0ef,0x8ea1,0x8ea2,0xe0fc,0x8ea3,0x8ea4,0x8ea5,0x8ea6,0x8ea7, +0xe1a1,0xb3a3,0x8ea8,0x8ea9,0xe0fd,0xe0fe,0xc3b1,0x8eaa,0x8eab,0x8eac, +0x8ead,0xc3dd,0x8eae,0xe1a2,0xb7f9,0x8eaf,0x8eb0,0x8eb1,0x8eb2,0x8eb3, +0x8eb4,0xbbcf,0x8eb5,0x8eb6,0x8eb7,0x8eb8,0x8eb9,0x8eba,0x8ebb,0xe1a3, +0xc4bb,0x8ebc,0x8ebd,0x8ebe,0x8ebf,0x8ec0,0xe1a4,0x8ec1,0x8ec2,0xe1a5, +0x8ec3,0x8ec4,0xe1a6,0xb4b1,0x8ec5,0x8ec6,0x8ec7,0x8ec8,0x8ec9,0x8eca, +0x8ecb,0x8ecc,0x8ecd,0x8ece,0x8ecf,0x8ed0,0x8ed1,0x8ed2,0x8ed3,0xb8c9, +0xc6bd,0xc4ea,0x8ed4,0xb2a2,0x8ed5,0xd0d2,0x8ed6,0xe7db,0xbbc3,0xd3d7, +0xd3c4,0x8ed7,0xb9e3,0xe2cf,0x8ed8,0x8ed9,0x8eda,0xd7af,0x8edb,0xc7ec, +0xb1d3,0x8edc,0x8edd,0xb4b2,0xe2d1,0x8ede,0x8edf,0x8ee0,0xd0f2,0xc2ae, +0xe2d0,0x8ee1,0xbfe2,0xd3a6,0xb5d7,0xe2d2,0xb5ea,0x8ee2,0xc3ed,0xb8fd, +0x8ee3,0xb8ae,0x8ee4,0xc5d3,0xb7cf,0xe2d4,0x8ee5,0x8ee6,0x8ee7,0x8ee8, +0xe2d3,0xb6c8,0xd7f9,0x8ee9,0x8eea,0x8eeb,0x8eec,0x8eed,0xcda5,0x8eee, +0x8eef,0x8ef0,0x8ef1,0x8ef2,0xe2d8,0x8ef3,0xe2d6,0xcafc,0xbfb5,0xd3b9, +0xe2d5,0x8ef4,0x8ef5,0x8ef6,0x8ef7,0xe2d7,0x8ef8,0x8ef9,0x8efa,0x8efb, +0x8efc,0x8efd,0x8efe,0x8f40,0x8f41,0x8f42,0xc1ae,0xc0c8,0x8f43,0x8f44, +0x8f45,0x8f46,0x8f47,0x8f48,0xe2db,0xe2da,0xc0aa,0x8f49,0x8f4a,0xc1ce, +0x8f4b,0x8f4c,0x8f4d,0x8f4e,0xe2dc,0x8f4f,0x8f50,0x8f51,0x8f52,0x8f53, +0x8f54,0x8f55,0x8f56,0x8f57,0x8f58,0x8f59,0x8f5a,0xe2dd,0x8f5b,0xe2de, +0x8f5c,0x8f5d,0x8f5e,0x8f5f,0x8f60,0x8f61,0x8f62,0x8f63,0x8f64,0xdbc8, +0x8f65,0xd1d3,0xcda2,0x8f66,0x8f67,0xbda8,0x8f68,0x8f69,0x8f6a,0xdec3, +0xd8a5,0xbfaa,0xdbcd,0xd2ec,0xc6fa,0xc5aa,0x8f6b,0x8f6c,0x8f6d,0xdec4, +0x8f6e,0xb1d7,0xdfae,0x8f6f,0x8f70,0x8f71,0xcabd,0x8f72,0xdfb1,0x8f73, +0xb9ad,0x8f74,0xd2fd,0x8f75,0xb8a5,0xbaeb,0x8f76,0x8f77,0xb3da,0x8f78, +0x8f79,0x8f7a,0xb5dc,0xd5c5,0x8f7b,0x8f7c,0x8f7d,0x8f7e,0xc3d6,0xcfd2, +0xbba1,0x8f80,0xe5f3,0xe5f2,0x8f81,0x8f82,0xe5f4,0x8f83,0xcde4,0x8f84, +0xc8f5,0x8f85,0x8f86,0x8f87,0x8f88,0x8f89,0x8f8a,0x8f8b,0xb5af,0xc7bf, +0x8f8c,0xe5f6,0x8f8d,0x8f8e,0x8f8f,0xecb0,0x8f90,0x8f91,0x8f92,0x8f93, +0x8f94,0x8f95,0x8f96,0x8f97,0x8f98,0x8f99,0x8f9a,0x8f9b,0x8f9c,0x8f9d, +0x8f9e,0xe5e6,0x8f9f,0xb9e9,0xb5b1,0x8fa0,0xc2bc,0xe5e8,0xe5e7,0xe5e9, +0x8fa1,0x8fa2,0x8fa3,0x8fa4,0xd2cd,0x8fa5,0x8fa6,0x8fa7,0xe1ea,0xd0ce, +0x8fa8,0xcdae,0x8fa9,0xd1e5,0x8faa,0x8fab,0xb2ca,0xb1eb,0x8fac,0xb1f2, +0xc5ed,0x8fad,0x8fae,0xd5c3,0xd3b0,0x8faf,0xe1dc,0x8fb0,0x8fb1,0x8fb2, +0xe1dd,0x8fb3,0xd2db,0x8fb4,0xb3b9,0xb1cb,0x8fb5,0x8fb6,0x8fb7,0xcdf9, +0xd5f7,0xe1de,0x8fb8,0xbeb6,0xb4fd,0x8fb9,0xe1df,0xbadc,0xe1e0,0xbbb2, +0xc2c9,0xe1e1,0x8fba,0x8fbb,0x8fbc,0xd0ec,0x8fbd,0xcdbd,0x8fbe,0x8fbf, +0xe1e2,0x8fc0,0xb5c3,0xc5c7,0xe1e3,0x8fc1,0x8fc2,0xe1e4,0x8fc3,0x8fc4, +0x8fc5,0x8fc6,0xd3f9,0x8fc7,0x8fc8,0x8fc9,0x8fca,0x8fcb,0x8fcc,0xe1e5, +0x8fcd,0xd1ad,0x8fce,0x8fcf,0xe1e6,0xcea2,0x8fd0,0x8fd1,0x8fd2,0x8fd3, +0x8fd4,0x8fd5,0xe1e7,0x8fd6,0xb5c2,0x8fd7,0x8fd8,0x8fd9,0x8fda,0xe1e8, +0xbbd5,0x8fdb,0x8fdc,0x8fdd,0x8fde,0x8fdf,0xd0c4,0xe2e0,0xb1d8,0xd2e4, +0x8fe0,0x8fe1,0xe2e1,0x8fe2,0x8fe3,0xbcc9,0xc8cc,0x8fe4,0xe2e3,0xecfe, +0xecfd,0xdfaf,0x8fe5,0x8fe6,0x8fe7,0xe2e2,0xd6be,0xcdfc,0xc3a6,0x8fe8, +0x8fe9,0x8fea,0xe3c3,0x8feb,0x8fec,0xd6d2,0xe2e7,0x8fed,0x8fee,0xe2e8, +0x8fef,0x8ff0,0xd3c7,0x8ff1,0x8ff2,0xe2ec,0xbfec,0x8ff3,0xe2ed,0xe2e5, +0x8ff4,0x8ff5,0xb3c0,0x8ff6,0x8ff7,0x8ff8,0xc4ee,0x8ff9,0x8ffa,0xe2ee, +0x8ffb,0x8ffc,0xd0c3,0x8ffd,0xbaf6,0xe2e9,0xb7de,0xbbb3,0xccac,0xcbcb, +0xe2e4,0xe2e6,0xe2ea,0xe2eb,0x8ffe,0x9040,0x9041,0xe2f7,0x9042,0x9043, +0xe2f4,0xd4f5,0xe2f3,0x9044,0x9045,0xc5ad,0x9046,0xd5fa,0xc5c2,0xb2c0, +0x9047,0x9048,0xe2ef,0x9049,0xe2f2,0xc1af,0xcbbc,0x904a,0x904b,0xb5a1, +0xe2f9,0x904c,0x904d,0x904e,0xbcb1,0xe2f1,0xd0d4,0xd4b9,0xe2f5,0xb9d6, +0xe2f6,0x904f,0x9050,0x9051,0xc7d3,0x9052,0x9053,0x9054,0x9055,0x9056, +0xe2f0,0x9057,0x9058,0x9059,0x905a,0x905b,0xd7dc,0xeda1,0x905c,0x905d, +0xe2f8,0x905e,0xeda5,0xe2fe,0xcad1,0x905f,0x9060,0x9061,0x9062,0x9063, +0x9064,0x9065,0xc1b5,0x9066,0xbbd0,0x9067,0x9068,0xbfd6,0x9069,0xbae3, +0x906a,0x906b,0xcba1,0x906c,0x906d,0x906e,0xeda6,0xeda3,0x906f,0x9070, +0xeda2,0x9071,0x9072,0x9073,0x9074,0xbbd6,0xeda7,0xd0f4,0x9075,0x9076, +0xeda4,0xbade,0xb6f7,0xe3a1,0xb6b2,0xccf1,0xb9a7,0x9077,0xcfa2,0xc7a1, +0x9078,0x9079,0xbfd2,0x907a,0x907b,0xb6f1,0x907c,0xe2fa,0xe2fb,0xe2fd, +0xe2fc,0xc4d5,0xe3a2,0x907d,0xd3c1,0x907e,0x9080,0x9081,0xe3a7,0xc7c4, +0x9082,0x9083,0x9084,0x9085,0xcfa4,0x9086,0x9087,0xe3a9,0xbab7,0x9088, +0x9089,0x908a,0x908b,0xe3a8,0x908c,0xbbda,0x908d,0xe3a3,0x908e,0x908f, +0x9090,0xe3a4,0xe3aa,0x9091,0xe3a6,0x9092,0xcef2,0xd3c6,0x9093,0x9094, +0xbbbc,0x9095,0x9096,0xd4c3,0x9097,0xc4fa,0x9098,0x9099,0xeda8,0xd0fc, +0xe3a5,0x909a,0xc3f5,0x909b,0xe3ad,0xb1af,0x909c,0xe3b2,0x909d,0x909e, +0x909f,0xbcc2,0x90a0,0x90a1,0xe3ac,0xb5bf,0x90a2,0x90a3,0x90a4,0x90a5, +0x90a6,0x90a7,0x90a8,0x90a9,0xc7e9,0xe3b0,0x90aa,0x90ab,0x90ac,0xbeaa, +0xcdef,0x90ad,0x90ae,0x90af,0x90b0,0x90b1,0xbbf3,0x90b2,0x90b3,0x90b4, +0xcce8,0x90b5,0x90b6,0xe3af,0x90b7,0xe3b1,0x90b8,0xcfa7,0xe3ae,0x90b9, +0xcea9,0xbbdd,0x90ba,0x90bb,0x90bc,0x90bd,0x90be,0xb5eb,0xbee5,0xb2d2, +0xb3cd,0x90bf,0xb1b9,0xe3ab,0xb2d1,0xb5ac,0xb9df,0xb6e8,0x90c0,0x90c1, +0xcfeb,0xe3b7,0x90c2,0xbbcc,0x90c3,0x90c4,0xc8c7,0xd0ca,0x90c5,0x90c6, +0x90c7,0x90c8,0x90c9,0xe3b8,0xb3ee,0x90ca,0x90cb,0x90cc,0x90cd,0xeda9, +0x90ce,0xd3fa,0xd3e4,0x90cf,0x90d0,0x90d1,0xedaa,0xe3b9,0xd2e2,0x90d2, +0x90d3,0x90d4,0x90d5,0x90d6,0xe3b5,0x90d7,0x90d8,0x90d9,0x90da,0xd3de, +0x90db,0x90dc,0x90dd,0x90de,0xb8d0,0xe3b3,0x90df,0x90e0,0xe3b6,0xb7df, +0x90e1,0xe3b4,0xc0a2,0x90e2,0x90e3,0x90e4,0xe3ba,0x90e5,0x90e6,0x90e7, +0x90e8,0x90e9,0x90ea,0x90eb,0x90ec,0x90ed,0x90ee,0x90ef,0x90f0,0x90f1, +0x90f2,0x90f3,0x90f4,0x90f5,0x90f6,0x90f7,0xd4b8,0x90f8,0x90f9,0x90fa, +0x90fb,0x90fc,0x90fd,0x90fe,0x9140,0xb4c8,0x9141,0xe3bb,0x9142,0xbbc5, +0x9143,0xc9f7,0x9144,0x9145,0xc9e5,0x9146,0x9147,0x9148,0xc4bd,0x9149, +0x914a,0x914b,0x914c,0x914d,0x914e,0x914f,0xedab,0x9150,0x9151,0x9152, +0x9153,0xc2fd,0x9154,0x9155,0x9156,0x9157,0xbbdb,0xbfae,0x9158,0x9159, +0x915a,0x915b,0x915c,0x915d,0x915e,0xcebf,0x915f,0x9160,0x9161,0x9162, +0xe3bc,0x9163,0xbfb6,0x9164,0x9165,0x9166,0x9167,0x9168,0x9169,0x916a, +0x916b,0x916c,0x916d,0x916e,0x916f,0x9170,0x9171,0x9172,0x9173,0x9174, +0x9175,0x9176,0xb1ef,0x9177,0x9178,0xd4f7,0x9179,0x917a,0x917b,0x917c, +0x917d,0xe3be,0x917e,0x9180,0x9181,0x9182,0x9183,0x9184,0x9185,0x9186, +0xedad,0x9187,0x9188,0x9189,0x918a,0x918b,0x918c,0x918d,0x918e,0x918f, +0xe3bf,0xbaa9,0xedac,0x9190,0x9191,0xe3bd,0x9192,0x9193,0x9194,0x9195, +0x9196,0x9197,0x9198,0x9199,0x919a,0x919b,0xe3c0,0x919c,0x919d,0x919e, +0x919f,0x91a0,0x91a1,0xbab6,0x91a2,0x91a3,0x91a4,0xb6ae,0x91a5,0x91a6, +0x91a7,0x91a8,0x91a9,0xd0b8,0x91aa,0xb0c3,0xedae,0x91ab,0x91ac,0x91ad, +0x91ae,0x91af,0xedaf,0xc0c1,0x91b0,0xe3c1,0x91b1,0x91b2,0x91b3,0x91b4, +0x91b5,0x91b6,0x91b7,0x91b8,0x91b9,0x91ba,0x91bb,0x91bc,0x91bd,0x91be, +0x91bf,0x91c0,0x91c1,0xc5b3,0x91c2,0x91c3,0x91c4,0x91c5,0x91c6,0x91c7, +0x91c8,0x91c9,0x91ca,0x91cb,0x91cc,0x91cd,0x91ce,0x91cf,0xe3c2,0x91d0, +0x91d1,0x91d2,0x91d3,0x91d4,0x91d5,0x91d6,0x91d7,0x91d8,0xdcb2,0x91d9, +0x91da,0x91db,0x91dc,0x91dd,0x91de,0xedb0,0x91df,0xb8ea,0x91e0,0xceec, +0xeaa7,0xd0e7,0xcaf9,0xc8d6,0xcfb7,0xb3c9,0xced2,0xbde4,0x91e1,0x91e2, +0xe3de,0xbbf2,0xeaa8,0xd5bd,0x91e3,0xc6dd,0xeaa9,0x91e4,0x91e5,0x91e6, +0xeaaa,0x91e7,0xeaac,0xeaab,0x91e8,0xeaae,0xeaad,0x91e9,0x91ea,0x91eb, +0x91ec,0xbdd8,0x91ed,0xeaaf,0x91ee,0xc2be,0x91ef,0x91f0,0x91f1,0x91f2, +0xb4c1,0xb4f7,0x91f3,0x91f4,0xbba7,0x91f5,0x91f6,0x91f7,0x91f8,0x91f9, +0xece6,0xece5,0xb7bf,0xcbf9,0xb1e2,0x91fa,0xece7,0x91fb,0x91fc,0x91fd, +0xc9c8,0xece8,0xece9,0x91fe,0xcad6,0xded0,0xb2c5,0xd4fa,0x9240,0x9241, +0xc6cb,0xb0c7,0xb4f2,0xc8d3,0x9242,0x9243,0x9244,0xcdd0,0x9245,0x9246, +0xbfb8,0x9247,0x9248,0x9249,0x924a,0x924b,0x924c,0x924d,0xbfdb,0x924e, +0x924f,0xc7a4,0xd6b4,0x9250,0xc0a9,0xded1,0xc9a8,0xd1ef,0xc5a4,0xb0e7, +0xb3b6,0xc8c5,0x9251,0x9252,0xb0e2,0x9253,0x9254,0xb7f6,0x9255,0x9256, +0xc5fa,0x9257,0x9258,0xb6f3,0x9259,0xd5d2,0xb3d0,0xbcbc,0x925a,0x925b, +0x925c,0xb3ad,0x925d,0x925e,0x925f,0x9260,0xbef1,0xb0d1,0x9261,0x9262, +0x9263,0x9264,0x9265,0x9266,0xd2d6,0xcae3,0xd7a5,0x9267,0xcdb6,0xb6b6, +0xbfb9,0xd5db,0x9268,0xb8a7,0xc5d7,0x9269,0x926a,0x926b,0xded2,0xbfd9, +0xc2d5,0xc7c0,0x926c,0xbba4,0xb1a8,0x926d,0x926e,0xc5ea,0x926f,0x9270, +0xc5fb,0xcca7,0x9271,0x9272,0x9273,0x9274,0xb1a7,0x9275,0x9276,0x9277, +0xb5d6,0x9278,0x9279,0x927a,0xc4a8,0x927b,0xded3,0xd1ba,0xb3e9,0x927c, +0xc3f2,0x927d,0x927e,0xb7f7,0x9280,0xd6f4,0xb5a3,0xb2f0,0xc4b4,0xc4e9, +0xc0ad,0xded4,0x9281,0xb0e8,0xc5c4,0xc1e0,0x9282,0xb9d5,0x9283,0xbedc, +0xcdd8,0xb0ce,0x9284,0xcdcf,0xded6,0xbed0,0xd7be,0xded5,0xd5d0,0xb0dd, +0x9285,0x9286,0xc4e2,0x9287,0x9288,0xc2a3,0xbcf0,0x9289,0xd3b5,0xc0b9, +0xc5a1,0xb2a6,0xd4f1,0x928a,0x928b,0xc0a8,0xcac3,0xded7,0xd5fc,0x928c, +0xb9b0,0x928d,0xc8ad,0xcba9,0x928e,0xded9,0xbfbd,0x928f,0x9290,0x9291, +0x9292,0xc6b4,0xd7a7,0xcab0,0xc4c3,0x9293,0xb3d6,0xb9d2,0x9294,0x9295, +0x9296,0x9297,0xd6b8,0xeafc,0xb0b4,0x9298,0x9299,0x929a,0x929b,0xbfe6, +0x929c,0x929d,0xccf4,0x929e,0x929f,0x92a0,0x92a1,0xcdda,0x92a2,0x92a3, +0x92a4,0xd6bf,0xc2ce,0x92a5,0xcece,0xcca2,0xd0ae,0xc4d3,0xb5b2,0xded8, +0xd5f5,0xbcb7,0xbbd3,0x92a6,0x92a7,0xb0a4,0x92a8,0xc5b2,0xb4ec,0x92a9, +0x92aa,0x92ab,0xd5f1,0x92ac,0x92ad,0xeafd,0x92ae,0x92af,0x92b0,0x92b1, +0x92b2,0x92b3,0xdeda,0xcda6,0x92b4,0x92b5,0xcdec,0x92b6,0x92b7,0x92b8, +0x92b9,0xcee6,0xdedc,0x92ba,0xcdb1,0xc0a6,0x92bb,0x92bc,0xd7bd,0x92bd, +0xdedb,0xb0c6,0xbab4,0xc9d3,0xc4f3,0xbee8,0x92be,0x92bf,0x92c0,0x92c1, +0xb2b6,0x92c2,0x92c3,0x92c4,0x92c5,0x92c6,0x92c7,0x92c8,0x92c9,0xc0cc, +0xcbf0,0x92ca,0xbcf1,0xbbbb,0xb5b7,0x92cb,0x92cc,0x92cd,0xc5f5,0x92ce, +0xdee6,0x92cf,0x92d0,0x92d1,0xdee3,0xbedd,0x92d2,0x92d3,0xdedf,0x92d4, +0x92d5,0x92d6,0x92d7,0xb4b7,0xbddd,0x92d8,0x92d9,0xdee0,0xc4ed,0x92da, +0x92db,0x92dc,0x92dd,0xcfc6,0x92de,0xb5e0,0x92df,0x92e0,0x92e1,0x92e2, +0xb6de,0xcada,0xb5f4,0xdee5,0x92e3,0xd5c6,0x92e4,0xdee1,0xcccd,0xc6fe, +0x92e5,0xc5c5,0x92e6,0x92e7,0x92e8,0xd2b4,0x92e9,0xbef2,0x92ea,0x92eb, +0x92ec,0x92ed,0x92ee,0x92ef,0x92f0,0xc2d3,0x92f1,0xccbd,0xb3b8,0x92f2, +0xbdd3,0x92f3,0xbfd8,0xcdc6,0xd1da,0xb4eb,0x92f4,0xdee4,0xdedd,0xdee7, +0x92f5,0xeafe,0x92f6,0x92f7,0xc2b0,0xdee2,0x92f8,0x92f9,0xd6c0,0xb5a7, +0x92fa,0xb2f4,0x92fb,0xdee8,0x92fc,0xdef2,0x92fd,0x92fe,0x9340,0x9341, +0x9342,0xdeed,0x9343,0xdef1,0x9344,0x9345,0xc8e0,0x9346,0x9347,0x9348, +0xd7e1,0xdeef,0xc3e8,0xcce1,0x9349,0xb2e5,0x934a,0x934b,0x934c,0xd2be, +0x934d,0x934e,0x934f,0x9350,0x9351,0x9352,0x9353,0xdeee,0x9354,0xdeeb, +0xced5,0x9355,0xb4a7,0x9356,0x9357,0x9358,0x9359,0x935a,0xbfab,0xbebe, +0x935b,0x935c,0xbdd2,0x935d,0x935e,0x935f,0x9360,0xdee9,0x9361,0xd4ae, +0x9362,0xdede,0x9363,0xdeea,0x9364,0x9365,0x9366,0x9367,0xc0bf,0x9368, +0xdeec,0xb2f3,0xb8e9,0xc2a7,0x9369,0x936a,0xbdc1,0x936b,0x936c,0x936d, +0x936e,0x936f,0xdef5,0xdef8,0x9370,0x9371,0xb2ab,0xb4a4,0x9372,0x9373, +0xb4ea,0xc9a6,0x9374,0x9375,0x9376,0x9377,0x9378,0x9379,0xdef6,0xcbd1, +0x937a,0xb8e3,0x937b,0xdef7,0xdefa,0x937c,0x937d,0x937e,0x9380,0xdef9, +0x9381,0x9382,0x9383,0xccc2,0x9384,0xb0e1,0xb4ee,0x9385,0x9386,0x9387, +0x9388,0x9389,0x938a,0xe5ba,0x938b,0x938c,0x938d,0x938e,0x938f,0xd0af, +0x9390,0x9391,0xb2eb,0x9392,0xeba1,0x9393,0xdef4,0x9394,0x9395,0xc9e3, +0xdef3,0xb0da,0xd2a1,0xb1f7,0x9396,0xccaf,0x9397,0x9398,0x9399,0x939a, +0x939b,0x939c,0x939d,0xdef0,0x939e,0xcba4,0x939f,0x93a0,0x93a1,0xd5aa, +0x93a2,0x93a3,0x93a4,0x93a5,0x93a6,0xdefb,0x93a7,0x93a8,0x93a9,0x93aa, +0x93ab,0x93ac,0x93ad,0x93ae,0xb4dd,0x93af,0xc4a6,0x93b0,0x93b1,0x93b2, +0xdefd,0x93b3,0x93b4,0x93b5,0x93b6,0x93b7,0x93b8,0x93b9,0x93ba,0x93bb, +0x93bc,0xc3fe,0xc4a1,0xdfa1,0x93bd,0x93be,0x93bf,0x93c0,0x93c1,0x93c2, +0x93c3,0xc1cc,0x93c4,0xdefc,0xbeef,0x93c5,0xc6b2,0x93c6,0x93c7,0x93c8, +0x93c9,0x93ca,0x93cb,0x93cc,0x93cd,0x93ce,0xb3c5,0xc8f6,0x93cf,0x93d0, +0xcbba,0xdefe,0x93d1,0x93d2,0xdfa4,0x93d3,0x93d4,0x93d5,0x93d6,0xd7b2, +0x93d7,0x93d8,0x93d9,0x93da,0x93db,0xb3b7,0x93dc,0x93dd,0x93de,0x93df, +0xc1c3,0x93e0,0x93e1,0xc7cb,0xb2a5,0xb4e9,0x93e2,0xd7ab,0x93e3,0x93e4, +0x93e5,0x93e6,0xc4ec,0x93e7,0xdfa2,0xdfa3,0x93e8,0xdfa5,0x93e9,0xbab3, +0x93ea,0x93eb,0x93ec,0xdfa6,0x93ed,0xc0de,0x93ee,0x93ef,0xc9c3,0x93f0, +0x93f1,0x93f2,0x93f3,0x93f4,0x93f5,0x93f6,0xb2d9,0xc7e6,0x93f7,0xdfa7, +0x93f8,0xc7dc,0x93f9,0x93fa,0x93fb,0x93fc,0xdfa8,0xeba2,0x93fd,0x93fe, +0x9440,0x9441,0x9442,0xcbd3,0x9443,0x9444,0x9445,0xdfaa,0x9446,0xdfa9, +0x9447,0xb2c1,0x9448,0x9449,0x944a,0x944b,0x944c,0x944d,0x944e,0x944f, +0x9450,0x9451,0x9452,0x9453,0x9454,0x9455,0x9456,0x9457,0x9458,0x9459, +0x945a,0x945b,0x945c,0x945d,0x945e,0x945f,0x9460,0xc5ca,0x9461,0x9462, +0x9463,0x9464,0x9465,0x9466,0x9467,0x9468,0xdfab,0x9469,0x946a,0x946b, +0x946c,0x946d,0x946e,0x946f,0x9470,0xd4dc,0x9471,0x9472,0x9473,0x9474, +0x9475,0xc8c1,0x9476,0x9477,0x9478,0x9479,0x947a,0x947b,0x947c,0x947d, +0x947e,0x9480,0x9481,0x9482,0xdfac,0x9483,0x9484,0x9485,0x9486,0x9487, +0xbef0,0x9488,0x9489,0xdfad,0xd6a7,0x948a,0x948b,0x948c,0x948d,0xeab7, +0xebb6,0xcad5,0x948e,0xd8fc,0xb8c4,0x948f,0xb9a5,0x9490,0x9491,0xb7c5, +0xd5fe,0x9492,0x9493,0x9494,0x9495,0x9496,0xb9ca,0x9497,0x9498,0xd0a7, +0xf4cd,0x9499,0x949a,0xb5d0,0x949b,0x949c,0xc3f4,0x949d,0xbec8,0x949e, +0x949f,0x94a0,0xebb7,0xb0bd,0x94a1,0x94a2,0xbdcc,0x94a3,0xc1b2,0x94a4, +0xb1d6,0xb3a8,0x94a5,0x94a6,0x94a7,0xb8d2,0xc9a2,0x94a8,0x94a9,0xb6d8, +0x94aa,0x94ab,0x94ac,0x94ad,0xebb8,0xbeb4,0x94ae,0x94af,0x94b0,0xcafd, +0x94b1,0xc7c3,0x94b2,0xd5fb,0x94b3,0x94b4,0xb7f3,0x94b5,0x94b6,0x94b7, +0x94b8,0x94b9,0x94ba,0x94bb,0x94bc,0x94bd,0x94be,0x94bf,0x94c0,0x94c1, +0x94c2,0x94c3,0xcec4,0x94c4,0x94c5,0x94c6,0xd5ab,0xb1f3,0x94c7,0x94c8, +0x94c9,0xecb3,0xb0df,0x94ca,0xecb5,0x94cb,0x94cc,0x94cd,0xb6b7,0x94ce, +0xc1cf,0x94cf,0xf5fa,0xd0b1,0x94d0,0x94d1,0xd5e5,0x94d2,0xced3,0x94d3, +0x94d4,0xbdef,0xb3e2,0x94d5,0xb8ab,0x94d6,0xd5b6,0x94d7,0xedbd,0x94d8, +0xb6cf,0x94d9,0xcbb9,0xd0c2,0x94da,0x94db,0x94dc,0x94dd,0x94de,0x94df, +0x94e0,0x94e1,0xb7bd,0x94e2,0x94e3,0xecb6,0xcaa9,0x94e4,0x94e5,0x94e6, +0xc5d4,0x94e7,0xecb9,0xecb8,0xc2c3,0xecb7,0x94e8,0x94e9,0x94ea,0x94eb, +0xd0fd,0xecba,0x94ec,0xecbb,0xd7e5,0x94ed,0x94ee,0xecbc,0x94ef,0x94f0, +0x94f1,0xecbd,0xc6ec,0x94f2,0x94f3,0x94f4,0x94f5,0x94f6,0x94f7,0x94f8, +0x94f9,0xcede,0x94fa,0xbcc8,0x94fb,0x94fc,0xc8d5,0xb5a9,0xbec9,0xd6bc, +0xd4e7,0x94fd,0x94fe,0xd1ae,0xd0f1,0xeab8,0xeab9,0xeaba,0xbab5,0x9540, +0x9541,0x9542,0x9543,0xcab1,0xbff5,0x9544,0x9545,0xcdfa,0x9546,0x9547, +0x9548,0x9549,0x954a,0xeac0,0x954b,0xb0ba,0xeabe,0x954c,0x954d,0xc0a5, +0x954e,0x954f,0x9550,0xeabb,0x9551,0xb2fd,0x9552,0xc3f7,0xbbe8,0x9553, +0x9554,0x9555,0xd2d7,0xcef4,0xeabf,0x9556,0x9557,0x9558,0xeabc,0x9559, +0x955a,0x955b,0xeac3,0x955c,0xd0c7,0xd3b3,0x955d,0x955e,0x955f,0x9560, +0xb4ba,0x9561,0xc3c1,0xd7f2,0x9562,0x9563,0x9564,0x9565,0xd5d1,0x9566, +0xcac7,0x9567,0xeac5,0x9568,0x9569,0xeac4,0xeac7,0xeac6,0x956a,0x956b, +0x956c,0x956d,0x956e,0xd6e7,0x956f,0xcfd4,0x9570,0x9571,0xeacb,0x9572, +0xbbce,0x9573,0x9574,0x9575,0x9576,0x9577,0x9578,0x9579,0xbdfa,0xc9ce, +0x957a,0x957b,0xeacc,0x957c,0x957d,0xc9b9,0xcffe,0xeaca,0xd4ce,0xeacd, +0xeacf,0x957e,0x9580,0xcded,0x9581,0x9582,0x9583,0x9584,0xeac9,0x9585, +0xeace,0x9586,0x9587,0xceee,0x9588,0xbbde,0x9589,0xb3bf,0x958a,0x958b, +0x958c,0x958d,0x958e,0xc6d5,0xbeb0,0xcefa,0x958f,0x9590,0x9591,0xc7e7, +0x9592,0xbea7,0xead0,0x9593,0x9594,0xd6c7,0x9595,0x9596,0x9597,0xc1c0, +0x9598,0x9599,0x959a,0xd4dd,0x959b,0xead1,0x959c,0x959d,0xcfbe,0x959e, +0x959f,0x95a0,0x95a1,0xead2,0x95a2,0x95a3,0x95a4,0x95a5,0xcaee,0x95a6, +0x95a7,0x95a8,0x95a9,0xc5af,0xb0b5,0x95aa,0x95ab,0x95ac,0x95ad,0x95ae, +0xead4,0x95af,0x95b0,0x95b1,0x95b2,0x95b3,0x95b4,0x95b5,0x95b6,0x95b7, +0xead3,0xf4df,0x95b8,0x95b9,0x95ba,0x95bb,0x95bc,0xc4ba,0x95bd,0x95be, +0x95bf,0x95c0,0x95c1,0xb1a9,0x95c2,0x95c3,0x95c4,0x95c5,0xe5df,0x95c6, +0x95c7,0x95c8,0x95c9,0xead5,0x95ca,0x95cb,0x95cc,0x95cd,0x95ce,0x95cf, +0x95d0,0x95d1,0x95d2,0x95d3,0x95d4,0x95d5,0x95d6,0x95d7,0x95d8,0x95d9, +0x95da,0x95db,0x95dc,0x95dd,0x95de,0x95df,0x95e0,0x95e1,0x95e2,0x95e3, +0xcaef,0x95e4,0xead6,0xead7,0xc6d8,0x95e5,0x95e6,0x95e7,0x95e8,0x95e9, +0x95ea,0x95eb,0x95ec,0xead8,0x95ed,0x95ee,0xead9,0x95ef,0x95f0,0x95f1, +0x95f2,0x95f3,0x95f4,0xd4bb,0x95f5,0xc7fa,0xd2b7,0xb8fc,0x95f6,0x95f7, +0xeac2,0x95f8,0xb2dc,0x95f9,0x95fa,0xc2fc,0x95fb,0xd4f8,0xcce6,0xd7ee, +0x95fc,0x95fd,0x95fe,0x9640,0x9641,0x9642,0x9643,0xd4c2,0xd3d0,0xebc3, +0xc5f3,0x9644,0xb7fe,0x9645,0x9646,0xebd4,0x9647,0x9648,0x9649,0xcbb7, +0xebde,0x964a,0xc0ca,0x964b,0x964c,0x964d,0xcdfb,0x964e,0xb3af,0x964f, +0xc6da,0x9650,0x9651,0x9652,0x9653,0x9654,0x9655,0xebfc,0x9656,0xc4be, +0x9657,0xceb4,0xc4a9,0xb1be,0xd4fd,0x9658,0xcaf5,0x9659,0xd6ec,0x965a, +0x965b,0xc6d3,0xb6e4,0x965c,0x965d,0x965e,0x965f,0xbbfa,0x9660,0x9661, +0xd0e0,0x9662,0x9663,0xc9b1,0x9664,0xd4d3,0xc8a8,0x9665,0x9666,0xb8cb, +0x9667,0xe8be,0xc9bc,0x9668,0x9669,0xe8bb,0x966a,0xc0ee,0xd0d3,0xb2c4, +0xb4e5,0x966b,0xe8bc,0x966c,0x966d,0xd5c8,0x966e,0x966f,0x9670,0x9671, +0x9672,0xb6c5,0x9673,0xe8bd,0xcaf8,0xb8dc,0xccf5,0x9674,0x9675,0x9676, +0xc0b4,0x9677,0x9678,0xd1ee,0xe8bf,0xe8c2,0x9679,0x967a,0xbabc,0x967b, +0xb1ad,0xbddc,0x967c,0xeabd,0xe8c3,0x967d,0xe8c6,0x967e,0xe8cb,0x9680, +0x9681,0x9682,0x9683,0xe8cc,0x9684,0xcbc9,0xb0e5,0x9685,0xbcab,0x9686, +0x9687,0xb9b9,0x9688,0x9689,0xe8c1,0x968a,0xcdf7,0x968b,0xe8ca,0x968c, +0x968d,0x968e,0x968f,0xcef6,0x9690,0x9691,0x9692,0x9693,0xd5ed,0x9694, +0xc1d6,0xe8c4,0x9695,0xc3b6,0x9696,0xb9fb,0xd6a6,0xe8c8,0x9697,0x9698, +0x9699,0xcae0,0xd4e6,0x969a,0xe8c0,0x969b,0xe8c5,0xe8c7,0x969c,0xc7b9, +0xb7e3,0x969d,0xe8c9,0x969e,0xbfdd,0xe8d2,0x969f,0x96a0,0xe8d7,0x96a1, +0xe8d5,0xbcdc,0xbccf,0xe8db,0x96a2,0x96a3,0x96a4,0x96a5,0x96a6,0x96a7, +0x96a8,0x96a9,0xe8de,0x96aa,0xe8da,0xb1fa,0x96ab,0x96ac,0x96ad,0x96ae, +0x96af,0x96b0,0x96b1,0x96b2,0x96b3,0x96b4,0xb0d8,0xc4b3,0xb8cc,0xc6e2, +0xc8be,0xc8e1,0x96b5,0x96b6,0x96b7,0xe8cf,0xe8d4,0xe8d6,0x96b8,0xb9f1, +0xe8d8,0xd7f5,0x96b9,0xc4fb,0x96ba,0xe8dc,0x96bb,0x96bc,0xb2e9,0x96bd, +0x96be,0x96bf,0xe8d1,0x96c0,0x96c1,0xbced,0x96c2,0x96c3,0xbfc2,0xe8cd, +0xd6f9,0x96c4,0xc1f8,0xb2f1,0x96c5,0x96c6,0x96c7,0x96c8,0x96c9,0x96ca, +0x96cb,0x96cc,0xe8df,0x96cd,0xcac1,0xe8d9,0x96ce,0x96cf,0x96d0,0x96d1, +0xd5a4,0x96d2,0xb1ea,0xd5bb,0xe8ce,0xe8d0,0xb6b0,0xe8d3,0x96d3,0xe8dd, +0xc0b8,0x96d4,0xcaf7,0x96d5,0xcba8,0x96d6,0x96d7,0xc6dc,0xc0f5,0x96d8, +0x96d9,0x96da,0x96db,0x96dc,0xe8e9,0x96dd,0x96de,0x96df,0xd0a3,0x96e0, +0x96e1,0x96e2,0x96e3,0x96e4,0x96e5,0x96e6,0xe8f2,0xd6ea,0x96e7,0x96e8, +0x96e9,0x96ea,0x96eb,0x96ec,0x96ed,0xe8e0,0xe8e1,0x96ee,0x96ef,0x96f0, +0xd1f9,0xbacb,0xb8f9,0x96f1,0x96f2,0xb8f1,0xd4d4,0xe8ef,0x96f3,0xe8ee, +0xe8ec,0xb9f0,0xccd2,0xe8e6,0xcea6,0xbff2,0x96f4,0xb0b8,0xe8f1,0xe8f0, +0x96f5,0xd7c0,0x96f6,0xe8e4,0x96f7,0xcda9,0xc9a3,0x96f8,0xbbb8,0xbddb, +0xe8ea,0x96f9,0x96fa,0x96fb,0x96fc,0x96fd,0x96fe,0x9740,0x9741,0x9742, +0x9743,0xe8e2,0xe8e3,0xe8e5,0xb5b5,0xe8e7,0xc7c5,0xe8eb,0xe8ed,0xbdb0, +0xd7ae,0x9744,0xe8f8,0x9745,0x9746,0x9747,0x9748,0x9749,0x974a,0x974b, +0x974c,0xe8f5,0x974d,0xcdb0,0xe8f6,0x974e,0x974f,0x9750,0x9751,0x9752, +0x9753,0x9754,0x9755,0x9756,0xc1ba,0x9757,0xe8e8,0x9758,0xc3b7,0xb0f0, +0x9759,0x975a,0x975b,0x975c,0x975d,0x975e,0x975f,0x9760,0xe8f4,0x9761, +0x9762,0x9763,0xe8f7,0x9764,0x9765,0x9766,0xb9a3,0x9767,0x9768,0x9769, +0x976a,0x976b,0x976c,0x976d,0x976e,0x976f,0x9770,0xc9d2,0x9771,0x9772, +0x9773,0xc3ce,0xcee0,0xc0e6,0x9774,0x9775,0x9776,0x9777,0xcbf3,0x9778, +0xccdd,0xd0b5,0x9779,0x977a,0xcae1,0x977b,0xe8f3,0x977c,0x977d,0x977e, +0x9780,0x9781,0x9782,0x9783,0x9784,0x9785,0x9786,0xbcec,0x9787,0xe8f9, +0x9788,0x9789,0x978a,0x978b,0x978c,0x978d,0xc3de,0x978e,0xc6e5,0x978f, +0xb9f7,0x9790,0x9791,0x9792,0x9793,0xb0f4,0x9794,0x9795,0xd7d8,0x9796, +0x9797,0xbcac,0x9798,0xc5ef,0x9799,0x979a,0x979b,0x979c,0x979d,0xccc4, +0x979e,0x979f,0xe9a6,0x97a0,0x97a1,0x97a2,0x97a3,0x97a4,0x97a5,0x97a6, +0x97a7,0x97a8,0x97a9,0xc9ad,0x97aa,0xe9a2,0xc0e2,0x97ab,0x97ac,0x97ad, +0xbfc3,0x97ae,0x97af,0x97b0,0xe8fe,0xb9d7,0x97b1,0xe8fb,0x97b2,0x97b3, +0x97b4,0x97b5,0xe9a4,0x97b6,0x97b7,0x97b8,0xd2ce,0x97b9,0x97ba,0x97bb, +0x97bc,0x97bd,0xe9a3,0x97be,0xd6b2,0xd7b5,0x97bf,0xe9a7,0x97c0,0xbdb7, +0x97c1,0x97c2,0x97c3,0x97c4,0x97c5,0x97c6,0x97c7,0x97c8,0x97c9,0x97ca, +0x97cb,0x97cc,0xe8fc,0xe8fd,0x97cd,0x97ce,0x97cf,0xe9a1,0x97d0,0x97d1, +0x97d2,0x97d3,0x97d4,0x97d5,0x97d6,0x97d7,0xcdd6,0x97d8,0x97d9,0xd2ac, +0x97da,0x97db,0x97dc,0xe9b2,0x97dd,0x97de,0x97df,0x97e0,0xe9a9,0x97e1, +0x97e2,0x97e3,0xb4aa,0x97e4,0xb4bb,0x97e5,0x97e6,0xe9ab,0x97e7,0x97e8, +0x97e9,0x97ea,0x97eb,0x97ec,0x97ed,0x97ee,0x97ef,0x97f0,0x97f1,0x97f2, +0x97f3,0x97f4,0x97f5,0x97f6,0x97f7,0xd0a8,0x97f8,0x97f9,0xe9a5,0x97fa, +0x97fb,0xb3fe,0x97fc,0x97fd,0xe9ac,0xc0e3,0x97fe,0xe9aa,0x9840,0x9841, +0xe9b9,0x9842,0x9843,0xe9b8,0x9844,0x9845,0x9846,0x9847,0xe9ae,0x9848, +0x9849,0xe8fa,0x984a,0x984b,0xe9a8,0x984c,0x984d,0x984e,0x984f,0x9850, +0xbfac,0xe9b1,0xe9ba,0x9851,0x9852,0xc2a5,0x9853,0x9854,0x9855,0xe9af, +0x9856,0xb8c5,0x9857,0xe9ad,0x9858,0xd3dc,0xe9b4,0xe9b5,0xe9b7,0x9859, +0x985a,0x985b,0xe9c7,0x985c,0x985d,0x985e,0x985f,0x9860,0x9861,0xc0c6, +0xe9c5,0x9862,0x9863,0xe9b0,0x9864,0x9865,0xe9bb,0xb0f1,0x9866,0x9867, +0x9868,0x9869,0x986a,0x986b,0x986c,0x986d,0x986e,0x986f,0xe9bc,0xd5a5, +0x9870,0x9871,0xe9be,0x9872,0xe9bf,0x9873,0x9874,0x9875,0xe9c1,0x9876, +0x9877,0xc1f1,0x9878,0x9879,0xc8b6,0x987a,0x987b,0x987c,0xe9bd,0x987d, +0x987e,0x9880,0x9881,0x9882,0xe9c2,0x9883,0x9884,0x9885,0x9886,0x9887, +0x9888,0x9889,0x988a,0xe9c3,0x988b,0xe9b3,0x988c,0xe9b6,0x988d,0xbbb1, +0x988e,0x988f,0x9890,0xe9c0,0x9891,0x9892,0x9893,0x9894,0x9895,0x9896, +0xbcf7,0x9897,0x9898,0x9899,0xe9c4,0xe9c6,0x989a,0x989b,0x989c,0x989d, +0x989e,0x989f,0x98a0,0x98a1,0x98a2,0x98a3,0x98a4,0x98a5,0xe9ca,0x98a6, +0x98a7,0x98a8,0x98a9,0xe9ce,0x98aa,0x98ab,0x98ac,0x98ad,0x98ae,0x98af, +0x98b0,0x98b1,0x98b2,0x98b3,0xb2db,0x98b4,0xe9c8,0x98b5,0x98b6,0x98b7, +0x98b8,0x98b9,0x98ba,0x98bb,0x98bc,0x98bd,0x98be,0xb7ae,0x98bf,0x98c0, +0x98c1,0x98c2,0x98c3,0x98c4,0x98c5,0x98c6,0x98c7,0x98c8,0x98c9,0x98ca, +0xe9cb,0xe9cc,0x98cb,0x98cc,0x98cd,0x98ce,0x98cf,0x98d0,0xd5c1,0x98d1, +0xc4a3,0x98d2,0x98d3,0x98d4,0x98d5,0x98d6,0x98d7,0xe9d8,0x98d8,0xbae1, +0x98d9,0x98da,0x98db,0x98dc,0xe9c9,0x98dd,0xd3a3,0x98de,0x98df,0x98e0, +0xe9d4,0x98e1,0x98e2,0x98e3,0x98e4,0x98e5,0x98e6,0x98e7,0xe9d7,0xe9d0, +0x98e8,0x98e9,0x98ea,0x98eb,0x98ec,0xe9cf,0x98ed,0x98ee,0xc7c1,0x98ef, +0x98f0,0x98f1,0x98f2,0x98f3,0x98f4,0x98f5,0x98f6,0xe9d2,0x98f7,0x98f8, +0x98f9,0x98fa,0x98fb,0x98fc,0x98fd,0xe9d9,0xb3c8,0x98fe,0xe9d3,0x9940, +0x9941,0x9942,0x9943,0x9944,0xcff0,0x9945,0x9946,0x9947,0xe9cd,0x9948, +0x9949,0x994a,0x994b,0x994c,0x994d,0x994e,0x994f,0x9950,0x9951,0x9952, +0xb3f7,0x9953,0x9954,0x9955,0x9956,0x9957,0x9958,0x9959,0xe9d6,0x995a, +0x995b,0xe9da,0x995c,0x995d,0x995e,0xccb4,0x995f,0x9960,0x9961,0xcfad, +0x9962,0x9963,0x9964,0x9965,0x9966,0x9967,0x9968,0x9969,0x996a,0xe9d5, +0x996b,0xe9dc,0xe9db,0x996c,0x996d,0x996e,0x996f,0x9970,0xe9de,0x9971, +0x9972,0x9973,0x9974,0x9975,0x9976,0x9977,0x9978,0xe9d1,0x9979,0x997a, +0x997b,0x997c,0x997d,0x997e,0x9980,0x9981,0xe9dd,0x9982,0xe9df,0xc3ca, +0x9983,0x9984,0x9985,0x9986,0x9987,0x9988,0x9989,0x998a,0x998b,0x998c, +0x998d,0x998e,0x998f,0x9990,0x9991,0x9992,0x9993,0x9994,0x9995,0x9996, +0x9997,0x9998,0x9999,0x999a,0x999b,0x999c,0x999d,0x999e,0x999f,0x99a0, +0x99a1,0x99a2,0x99a3,0x99a4,0x99a5,0x99a6,0x99a7,0x99a8,0x99a9,0x99aa, +0x99ab,0x99ac,0x99ad,0x99ae,0x99af,0x99b0,0x99b1,0x99b2,0x99b3,0x99b4, +0x99b5,0x99b6,0x99b7,0x99b8,0x99b9,0x99ba,0x99bb,0x99bc,0x99bd,0x99be, +0x99bf,0x99c0,0x99c1,0x99c2,0x99c3,0x99c4,0x99c5,0x99c6,0x99c7,0x99c8, +0x99c9,0x99ca,0x99cb,0x99cc,0x99cd,0x99ce,0x99cf,0x99d0,0x99d1,0x99d2, +0x99d3,0x99d4,0x99d5,0x99d6,0x99d7,0x99d8,0x99d9,0x99da,0x99db,0x99dc, +0x99dd,0x99de,0x99df,0x99e0,0x99e1,0x99e2,0x99e3,0x99e4,0x99e5,0x99e6, +0x99e7,0x99e8,0x99e9,0x99ea,0x99eb,0x99ec,0x99ed,0x99ee,0x99ef,0x99f0, +0x99f1,0x99f2,0x99f3,0x99f4,0x99f5,0xc7b7,0xb4ce,0xbbb6,0xd0c0,0xeca3, +0x99f6,0x99f7,0xc5b7,0x99f8,0x99f9,0x99fa,0x99fb,0x99fc,0x99fd,0x99fe, +0x9a40,0x9a41,0x9a42,0xd3fb,0x9a43,0x9a44,0x9a45,0x9a46,0xeca4,0x9a47, +0xeca5,0xc6db,0x9a48,0x9a49,0x9a4a,0xbfee,0x9a4b,0x9a4c,0x9a4d,0x9a4e, +0xeca6,0x9a4f,0x9a50,0xeca7,0xd0aa,0x9a51,0xc7b8,0x9a52,0x9a53,0xb8e8, +0x9a54,0x9a55,0x9a56,0x9a57,0x9a58,0x9a59,0x9a5a,0x9a5b,0x9a5c,0x9a5d, +0x9a5e,0x9a5f,0xeca8,0x9a60,0x9a61,0x9a62,0x9a63,0x9a64,0x9a65,0x9a66, +0x9a67,0xd6b9,0xd5fd,0xb4cb,0xb2bd,0xcee4,0xc6e7,0x9a68,0x9a69,0xcde1, +0x9a6a,0x9a6b,0x9a6c,0x9a6d,0x9a6e,0x9a6f,0x9a70,0x9a71,0x9a72,0x9a73, +0x9a74,0x9a75,0x9a76,0x9a77,0xb4f5,0x9a78,0xcbc0,0xbcdf,0x9a79,0x9a7a, +0x9a7b,0x9a7c,0xe9e2,0xe9e3,0xd1ea,0xe9e5,0x9a7d,0xb4f9,0xe9e4,0x9a7e, +0xd1b3,0xcae2,0xb2d0,0x9a80,0xe9e8,0x9a81,0x9a82,0x9a83,0x9a84,0xe9e6, +0xe9e7,0x9a85,0x9a86,0xd6b3,0x9a87,0x9a88,0x9a89,0xe9e9,0xe9ea,0x9a8a, +0x9a8b,0x9a8c,0x9a8d,0x9a8e,0xe9eb,0x9a8f,0x9a90,0x9a91,0x9a92,0x9a93, +0x9a94,0x9a95,0x9a96,0xe9ec,0x9a97,0x9a98,0x9a99,0x9a9a,0x9a9b,0x9a9c, +0x9a9d,0x9a9e,0xecaf,0xc5b9,0xb6ce,0x9a9f,0xd2f3,0x9aa0,0x9aa1,0x9aa2, +0x9aa3,0x9aa4,0x9aa5,0x9aa6,0xb5ee,0x9aa7,0xbbd9,0xecb1,0x9aa8,0x9aa9, +0xd2e3,0x9aaa,0x9aab,0x9aac,0x9aad,0x9aae,0xcee3,0x9aaf,0xc4b8,0x9ab0, +0xc3bf,0x9ab1,0x9ab2,0xb6be,0xd8b9,0xb1c8,0xb1cf,0xb1d1,0xc5fe,0x9ab3, +0xb1d0,0x9ab4,0xc3ab,0x9ab5,0x9ab6,0x9ab7,0x9ab8,0x9ab9,0xd5b1,0x9aba, +0x9abb,0x9abc,0x9abd,0x9abe,0x9abf,0x9ac0,0x9ac1,0xeba4,0xbac1,0x9ac2, +0x9ac3,0x9ac4,0xccba,0x9ac5,0x9ac6,0x9ac7,0xeba5,0x9ac8,0xeba7,0x9ac9, +0x9aca,0x9acb,0xeba8,0x9acc,0x9acd,0x9ace,0xeba6,0x9acf,0x9ad0,0x9ad1, +0x9ad2,0x9ad3,0x9ad4,0x9ad5,0xeba9,0xebab,0xebaa,0x9ad6,0x9ad7,0x9ad8, +0x9ad9,0x9ada,0xebac,0x9adb,0xcacf,0xd8b5,0xc3f1,0x9adc,0xc3a5,0xc6f8, +0xebad,0xc4ca,0x9add,0xebae,0xebaf,0xebb0,0xb7d5,0x9ade,0x9adf,0x9ae0, +0xb7fa,0x9ae1,0xebb1,0xc7e2,0x9ae2,0xebb3,0x9ae3,0xbaa4,0xd1f5,0xb0b1, +0xebb2,0xebb4,0x9ae4,0x9ae5,0x9ae6,0xb5aa,0xc2c8,0xc7e8,0x9ae7,0xebb5, +0x9ae8,0xcbae,0xe3df,0x9ae9,0x9aea,0xd3c0,0x9aeb,0x9aec,0x9aed,0x9aee, +0xd9db,0x9aef,0x9af0,0xcda1,0xd6ad,0xc7f3,0x9af1,0x9af2,0x9af3,0xd9e0, +0xbbe3,0x9af4,0xbaba,0xe3e2,0x9af5,0x9af6,0x9af7,0x9af8,0x9af9,0xcfab, +0x9afa,0x9afb,0x9afc,0xe3e0,0xc9c7,0x9afd,0xbab9,0x9afe,0x9b40,0x9b41, +0xd1b4,0xe3e1,0xc8ea,0xb9af,0xbdad,0xb3d8,0xcedb,0x9b42,0x9b43,0xccc0, +0x9b44,0x9b45,0x9b46,0xe3e8,0xe3e9,0xcdf4,0x9b47,0x9b48,0x9b49,0x9b4a, +0x9b4b,0xccad,0x9b4c,0xbcb3,0x9b4d,0xe3ea,0x9b4e,0xe3eb,0x9b4f,0x9b50, +0xd0da,0x9b51,0x9b52,0x9b53,0xc6fb,0xb7da,0x9b54,0x9b55,0xc7df,0xd2ca, +0xced6,0x9b56,0xe3e4,0xe3ec,0x9b57,0xc9f2,0xb3c1,0x9b58,0x9b59,0xe3e7, +0x9b5a,0x9b5b,0xc6e3,0xe3e5,0x9b5c,0x9b5d,0xedb3,0xe3e6,0x9b5e,0x9b5f, +0x9b60,0x9b61,0xc9b3,0x9b62,0xc5e6,0x9b63,0x9b64,0x9b65,0xb9b5,0x9b66, +0xc3bb,0x9b67,0xe3e3,0xc5bd,0xc1a4,0xc2d9,0xb2d7,0x9b68,0xe3ed,0xbba6, +0xc4ad,0x9b69,0xe3f0,0xbeda,0x9b6a,0x9b6b,0xe3fb,0xe3f5,0xbad3,0x9b6c, +0x9b6d,0x9b6e,0x9b6f,0xb7d0,0xd3cd,0x9b70,0xd6ce,0xd5d3,0xb9c1,0xd5b4, +0xd1d8,0x9b71,0x9b72,0x9b73,0x9b74,0xd0b9,0xc7f6,0x9b75,0x9b76,0x9b77, +0xc8aa,0xb2b4,0x9b78,0xc3da,0x9b79,0x9b7a,0x9b7b,0xe3ee,0x9b7c,0x9b7d, +0xe3fc,0xe3ef,0xb7a8,0xe3f7,0xe3f4,0x9b7e,0x9b80,0x9b81,0xb7ba,0x9b82, +0x9b83,0xc5a2,0x9b84,0xe3f6,0xc5dd,0xb2a8,0xc6fc,0x9b85,0xc4e0,0x9b86, +0x9b87,0xd7a2,0x9b88,0xc0e1,0xe3f9,0x9b89,0x9b8a,0xe3fa,0xe3fd,0xcca9, +0xe3f3,0x9b8b,0xd3be,0x9b8c,0xb1c3,0xedb4,0xe3f1,0xe3f2,0x9b8d,0xe3f8, +0xd0ba,0xc6c3,0xd4f3,0xe3fe,0x9b8e,0x9b8f,0xbde0,0x9b90,0x9b91,0xe4a7, +0x9b92,0x9b93,0xe4a6,0x9b94,0x9b95,0x9b96,0xd1f3,0xe4a3,0x9b97,0xe4a9, +0x9b98,0x9b99,0x9b9a,0xc8f7,0x9b9b,0x9b9c,0x9b9d,0x9b9e,0xcfb4,0x9b9f, +0xe4a8,0xe4ae,0xc2e5,0x9ba0,0x9ba1,0xb6b4,0x9ba2,0x9ba3,0x9ba4,0x9ba5, +0x9ba6,0x9ba7,0xbdf2,0x9ba8,0xe4a2,0x9ba9,0x9baa,0xbae9,0xe4aa,0x9bab, +0x9bac,0xe4ac,0x9bad,0x9bae,0xb6fd,0xd6de,0xe4b2,0x9baf,0xe4ad,0x9bb0, +0x9bb1,0x9bb2,0xe4a1,0x9bb3,0xbbee,0xcddd,0xc7a2,0xc5c9,0x9bb4,0x9bb5, +0xc1f7,0x9bb6,0xe4a4,0x9bb7,0xc7b3,0xbdac,0xbdbd,0xe4a5,0x9bb8,0xd7c7, +0xb2e2,0x9bb9,0xe4ab,0xbcc3,0xe4af,0x9bba,0xbbeb,0xe4b0,0xc5a8,0xe4b1, +0x9bbb,0x9bbc,0x9bbd,0x9bbe,0xd5e3,0xbfa3,0x9bbf,0xe4ba,0x9bc0,0xe4b7, +0x9bc1,0xe4bb,0x9bc2,0x9bc3,0xe4bd,0x9bc4,0x9bc5,0xc6d6,0x9bc6,0x9bc7, +0xbac6,0xc0cb,0x9bc8,0x9bc9,0x9bca,0xb8a1,0xe4b4,0x9bcb,0x9bcc,0x9bcd, +0x9bce,0xd4a1,0x9bcf,0x9bd0,0xbaa3,0xbdfe,0x9bd1,0x9bd2,0x9bd3,0xe4bc, +0x9bd4,0x9bd5,0x9bd6,0x9bd7,0x9bd8,0xcdbf,0x9bd9,0x9bda,0xc4f9,0x9bdb, +0x9bdc,0xcffb,0xc9e6,0x9bdd,0x9bde,0xd3bf,0x9bdf,0xcfd1,0x9be0,0x9be1, +0xe4b3,0x9be2,0xe4b8,0xe4b9,0xcce9,0x9be3,0x9be4,0x9be5,0x9be6,0x9be7, +0xccce,0x9be8,0xc0d4,0xe4b5,0xc1b0,0xe4b6,0xced0,0x9be9,0xbbc1,0xb5d3, +0x9bea,0xc8f3,0xbda7,0xd5c7,0xc9ac,0xb8a2,0xe4ca,0x9beb,0x9bec,0xe4cc, +0xd1c4,0x9bed,0x9bee,0xd2ba,0x9bef,0x9bf0,0xbaad,0x9bf1,0x9bf2,0xbad4, +0x9bf3,0x9bf4,0x9bf5,0x9bf6,0x9bf7,0x9bf8,0xe4c3,0xb5ed,0x9bf9,0x9bfa, +0x9bfb,0xd7cd,0xe4c0,0xcffd,0xe4bf,0x9bfc,0x9bfd,0x9bfe,0xc1dc,0xccca, +0x9c40,0x9c41,0x9c42,0x9c43,0xcae7,0x9c44,0x9c45,0x9c46,0x9c47,0xc4d7, +0x9c48,0xccd4,0xe4c8,0x9c49,0x9c4a,0x9c4b,0xe4c7,0xe4c1,0x9c4c,0xe4c4, +0xb5ad,0x9c4d,0x9c4e,0xd3d9,0x9c4f,0xe4c6,0x9c50,0x9c51,0x9c52,0x9c53, +0xd2f9,0xb4e3,0x9c54,0xbbb4,0x9c55,0x9c56,0xc9ee,0x9c57,0xb4be,0x9c58, +0x9c59,0x9c5a,0xbbec,0x9c5b,0xd1cd,0x9c5c,0xcced,0xedb5,0x9c5d,0x9c5e, +0x9c5f,0x9c60,0x9c61,0x9c62,0x9c63,0x9c64,0xc7e5,0x9c65,0x9c66,0x9c67, +0x9c68,0xd4a8,0x9c69,0xe4cb,0xd7d5,0xe4c2,0x9c6a,0xbda5,0xe4c5,0x9c6b, +0x9c6c,0xd3e6,0x9c6d,0xe4c9,0xc9f8,0x9c6e,0x9c6f,0xe4be,0x9c70,0x9c71, +0xd3e5,0x9c72,0x9c73,0xc7fe,0xb6c9,0x9c74,0xd4fc,0xb2b3,0xe4d7,0x9c75, +0x9c76,0x9c77,0xcec2,0x9c78,0xe4cd,0x9c79,0xcebc,0x9c7a,0xb8db,0x9c7b, +0x9c7c,0xe4d6,0x9c7d,0xbfca,0x9c7e,0x9c80,0x9c81,0xd3ce,0x9c82,0xc3ec, +0x9c83,0x9c84,0x9c85,0x9c86,0x9c87,0x9c88,0x9c89,0x9c8a,0xc5c8,0xe4d8, +0x9c8b,0x9c8c,0x9c8d,0x9c8e,0x9c8f,0x9c90,0x9c91,0x9c92,0xcdc4,0xe4cf, +0x9c93,0x9c94,0x9c95,0x9c96,0xe4d4,0xe4d5,0x9c97,0xbafe,0x9c98,0xcfe6, +0x9c99,0x9c9a,0xd5bf,0x9c9b,0x9c9c,0x9c9d,0xe4d2,0x9c9e,0x9c9f,0x9ca0, +0x9ca1,0x9ca2,0x9ca3,0x9ca4,0x9ca5,0x9ca6,0x9ca7,0x9ca8,0xe4d0,0x9ca9, +0x9caa,0xe4ce,0x9cab,0x9cac,0x9cad,0x9cae,0x9caf,0x9cb0,0x9cb1,0x9cb2, +0x9cb3,0x9cb4,0x9cb5,0x9cb6,0x9cb7,0x9cb8,0x9cb9,0xcde5,0xcaaa,0x9cba, +0x9cbb,0x9cbc,0xc0a3,0x9cbd,0xbda6,0xe4d3,0x9cbe,0x9cbf,0xb8c8,0x9cc0, +0x9cc1,0x9cc2,0x9cc3,0x9cc4,0xe4e7,0xd4b4,0x9cc5,0x9cc6,0x9cc7,0x9cc8, +0x9cc9,0x9cca,0x9ccb,0xe4db,0x9ccc,0x9ccd,0x9cce,0xc1ef,0x9ccf,0x9cd0, +0xe4e9,0x9cd1,0x9cd2,0xd2e7,0x9cd3,0x9cd4,0xe4df,0x9cd5,0xe4e0,0x9cd6, +0x9cd7,0xcfaa,0x9cd8,0x9cd9,0x9cda,0x9cdb,0xcbdd,0x9cdc,0xe4da,0xe4d1, +0x9cdd,0xe4e5,0x9cde,0xc8dc,0xe4e3,0x9cdf,0x9ce0,0xc4e7,0xe4e2,0x9ce1, +0xe4e1,0x9ce2,0x9ce3,0x9ce4,0xb3fc,0xe4e8,0x9ce5,0x9ce6,0x9ce7,0x9ce8, +0xb5e1,0x9ce9,0x9cea,0x9ceb,0xd7cc,0x9cec,0x9ced,0x9cee,0xe4e6,0x9cef, +0xbbac,0x9cf0,0xd7d2,0xcccf,0xebf8,0x9cf1,0xe4e4,0x9cf2,0x9cf3,0xb9f6, +0x9cf4,0x9cf5,0x9cf6,0xd6cd,0xe4d9,0xe4dc,0xc2fa,0xe4de,0x9cf7,0xc2cb, +0xc0c4,0xc2d0,0x9cf8,0xb1f5,0xccb2,0x9cf9,0x9cfa,0x9cfb,0x9cfc,0x9cfd, +0x9cfe,0x9d40,0x9d41,0x9d42,0x9d43,0xb5ce,0x9d44,0x9d45,0x9d46,0x9d47, +0xe4ef,0x9d48,0x9d49,0x9d4a,0x9d4b,0x9d4c,0x9d4d,0x9d4e,0x9d4f,0xc6af, +0x9d50,0x9d51,0x9d52,0xc6e1,0x9d53,0x9d54,0xe4f5,0x9d55,0x9d56,0x9d57, +0x9d58,0x9d59,0xc2a9,0x9d5a,0x9d5b,0x9d5c,0xc0ec,0xd1dd,0xe4ee,0x9d5d, +0x9d5e,0x9d5f,0x9d60,0x9d61,0x9d62,0x9d63,0x9d64,0x9d65,0x9d66,0xc4ae, +0x9d67,0x9d68,0x9d69,0xe4ed,0x9d6a,0x9d6b,0x9d6c,0x9d6d,0xe4f6,0xe4f4, +0xc2fe,0x9d6e,0xe4dd,0x9d6f,0xe4f0,0x9d70,0xcafe,0x9d71,0xd5c4,0x9d72, +0x9d73,0xe4f1,0x9d74,0x9d75,0x9d76,0x9d77,0x9d78,0x9d79,0x9d7a,0xd1fa, +0x9d7b,0x9d7c,0x9d7d,0x9d7e,0x9d80,0x9d81,0x9d82,0xe4eb,0xe4ec,0x9d83, +0x9d84,0x9d85,0xe4f2,0x9d86,0xceab,0x9d87,0x9d88,0x9d89,0x9d8a,0x9d8b, +0x9d8c,0x9d8d,0x9d8e,0x9d8f,0x9d90,0xc5cb,0x9d91,0x9d92,0x9d93,0xc7b1, +0x9d94,0xc2ba,0x9d95,0x9d96,0x9d97,0xe4ea,0x9d98,0x9d99,0x9d9a,0xc1ca, +0x9d9b,0x9d9c,0x9d9d,0x9d9e,0x9d9f,0x9da0,0xccb6,0xb3b1,0x9da1,0x9da2, +0x9da3,0xe4fb,0x9da4,0xe4f3,0x9da5,0x9da6,0x9da7,0xe4fa,0x9da8,0xe4fd, +0x9da9,0xe4fc,0x9daa,0x9dab,0x9dac,0x9dad,0x9dae,0x9daf,0x9db0,0xb3ce, +0x9db1,0x9db2,0x9db3,0xb3ba,0xe4f7,0x9db4,0x9db5,0xe4f9,0xe4f8,0xc5ec, +0x9db6,0x9db7,0x9db8,0x9db9,0x9dba,0x9dbb,0x9dbc,0x9dbd,0x9dbe,0x9dbf, +0x9dc0,0x9dc1,0x9dc2,0xc0bd,0x9dc3,0x9dc4,0x9dc5,0x9dc6,0xd4e8,0x9dc7, +0x9dc8,0x9dc9,0x9dca,0x9dcb,0xe5a2,0x9dcc,0x9dcd,0x9dce,0x9dcf,0x9dd0, +0x9dd1,0x9dd2,0x9dd3,0x9dd4,0x9dd5,0x9dd6,0xb0c4,0x9dd7,0x9dd8,0xe5a4, +0x9dd9,0x9dda,0xe5a3,0x9ddb,0x9ddc,0x9ddd,0x9dde,0x9ddf,0x9de0,0xbca4, +0x9de1,0xe5a5,0x9de2,0x9de3,0x9de4,0x9de5,0x9de6,0x9de7,0xe5a1,0x9de8, +0x9de9,0x9dea,0x9deb,0x9dec,0x9ded,0x9dee,0xe4fe,0xb1f4,0x9def,0x9df0, +0x9df1,0x9df2,0x9df3,0x9df4,0x9df5,0x9df6,0x9df7,0x9df8,0x9df9,0xe5a8, +0x9dfa,0xe5a9,0xe5a6,0x9dfb,0x9dfc,0x9dfd,0x9dfe,0x9e40,0x9e41,0x9e42, +0x9e43,0x9e44,0x9e45,0x9e46,0x9e47,0xe5a7,0xe5aa,0x9e48,0x9e49,0x9e4a, +0x9e4b,0x9e4c,0x9e4d,0x9e4e,0x9e4f,0x9e50,0x9e51,0x9e52,0x9e53,0x9e54, +0x9e55,0x9e56,0x9e57,0x9e58,0x9e59,0x9e5a,0x9e5b,0x9e5c,0x9e5d,0x9e5e, +0x9e5f,0x9e60,0x9e61,0x9e62,0x9e63,0x9e64,0x9e65,0x9e66,0x9e67,0x9e68, +0xc6d9,0x9e69,0x9e6a,0x9e6b,0x9e6c,0x9e6d,0x9e6e,0x9e6f,0x9e70,0xe5ab, +0xe5ad,0x9e71,0x9e72,0x9e73,0x9e74,0x9e75,0x9e76,0x9e77,0xe5ac,0x9e78, +0x9e79,0x9e7a,0x9e7b,0x9e7c,0x9e7d,0x9e7e,0x9e80,0x9e81,0x9e82,0x9e83, +0x9e84,0x9e85,0x9e86,0x9e87,0x9e88,0x9e89,0xe5af,0x9e8a,0x9e8b,0x9e8c, +0xe5ae,0x9e8d,0x9e8e,0x9e8f,0x9e90,0x9e91,0x9e92,0x9e93,0x9e94,0x9e95, +0x9e96,0x9e97,0x9e98,0x9e99,0x9e9a,0x9e9b,0x9e9c,0x9e9d,0x9e9e,0xb9e0, +0x9e9f,0x9ea0,0xe5b0,0x9ea1,0x9ea2,0x9ea3,0x9ea4,0x9ea5,0x9ea6,0x9ea7, +0x9ea8,0x9ea9,0x9eaa,0x9eab,0x9eac,0x9ead,0x9eae,0xe5b1,0x9eaf,0x9eb0, +0x9eb1,0x9eb2,0x9eb3,0x9eb4,0x9eb5,0x9eb6,0x9eb7,0x9eb8,0x9eb9,0x9eba, +0xbbf0,0xece1,0xc3f0,0x9ebb,0xb5c6,0xbbd2,0x9ebc,0x9ebd,0x9ebe,0x9ebf, +0xc1e9,0xd4ee,0x9ec0,0xbec4,0x9ec1,0x9ec2,0x9ec3,0xd7c6,0x9ec4,0xd4d6, +0xb2d3,0xecbe,0x9ec5,0x9ec6,0x9ec7,0x9ec8,0xeac1,0x9ec9,0x9eca,0x9ecb, +0xc2af,0xb4b6,0x9ecc,0x9ecd,0x9ece,0xd1d7,0x9ecf,0x9ed0,0x9ed1,0xb3b4, +0x9ed2,0xc8b2,0xbfbb,0xecc0,0x9ed3,0x9ed4,0xd6cb,0x9ed5,0x9ed6,0xecbf, +0xecc1,0x9ed7,0x9ed8,0x9ed9,0x9eda,0x9edb,0x9edc,0x9edd,0x9ede,0x9edf, +0x9ee0,0x9ee1,0x9ee2,0x9ee3,0xecc5,0xbee6,0xccbf,0xc5da,0xbebc,0x9ee4, +0xecc6,0x9ee5,0xb1fe,0x9ee6,0x9ee7,0x9ee8,0xecc4,0xd5a8,0xb5e3,0x9ee9, +0xecc2,0xc1b6,0xb3e3,0x9eea,0x9eeb,0xecc3,0xcbb8,0xc0c3,0xccfe,0x9eec, +0x9eed,0x9eee,0x9eef,0xc1d2,0x9ef0,0xecc8,0x9ef1,0x9ef2,0x9ef3,0x9ef4, +0x9ef5,0x9ef6,0x9ef7,0x9ef8,0x9ef9,0x9efa,0x9efb,0x9efc,0x9efd,0xbae6, +0xc0d3,0x9efe,0xd6f2,0x9f40,0x9f41,0x9f42,0xd1cc,0x9f43,0x9f44,0x9f45, +0x9f46,0xbfbe,0x9f47,0xb7b3,0xc9d5,0xecc7,0xbbe2,0x9f48,0xcccc,0xbdfd, +0xc8c8,0x9f49,0xcfa9,0x9f4a,0x9f4b,0x9f4c,0x9f4d,0x9f4e,0x9f4f,0x9f50, +0xcde9,0x9f51,0xc5eb,0x9f52,0x9f53,0x9f54,0xb7e9,0x9f55,0x9f56,0x9f57, +0x9f58,0x9f59,0x9f5a,0x9f5b,0x9f5c,0x9f5d,0x9f5e,0x9f5f,0xd1c9,0xbab8, +0x9f60,0x9f61,0x9f62,0x9f63,0x9f64,0xecc9,0x9f65,0x9f66,0xecca,0x9f67, +0xbbc0,0xeccb,0x9f68,0xece2,0xb1ba,0xb7d9,0x9f69,0x9f6a,0x9f6b,0x9f6c, +0x9f6d,0x9f6e,0x9f6f,0x9f70,0x9f71,0x9f72,0x9f73,0xbdb9,0x9f74,0x9f75, +0x9f76,0x9f77,0x9f78,0x9f79,0x9f7a,0x9f7b,0xeccc,0xd1e6,0xeccd,0x9f7c, +0x9f7d,0x9f7e,0x9f80,0xc8bb,0x9f81,0x9f82,0x9f83,0x9f84,0x9f85,0x9f86, +0x9f87,0x9f88,0x9f89,0x9f8a,0x9f8b,0x9f8c,0x9f8d,0x9f8e,0xecd1,0x9f8f, +0x9f90,0x9f91,0x9f92,0xecd3,0x9f93,0xbbcd,0x9f94,0xbce5,0x9f95,0x9f96, +0x9f97,0x9f98,0x9f99,0x9f9a,0x9f9b,0x9f9c,0x9f9d,0x9f9e,0x9f9f,0x9fa0, +0x9fa1,0xeccf,0x9fa2,0xc9b7,0x9fa3,0x9fa4,0x9fa5,0x9fa6,0x9fa7,0xc3ba, +0x9fa8,0xece3,0xd5d5,0xecd0,0x9fa9,0x9faa,0x9fab,0x9fac,0x9fad,0xd6f3, +0x9fae,0x9faf,0x9fb0,0xecd2,0xecce,0x9fb1,0x9fb2,0x9fb3,0x9fb4,0xecd4, +0x9fb5,0xecd5,0x9fb6,0x9fb7,0xc9bf,0x9fb8,0x9fb9,0x9fba,0x9fbb,0x9fbc, +0x9fbd,0xcfa8,0x9fbe,0x9fbf,0x9fc0,0x9fc1,0x9fc2,0xd0dc,0x9fc3,0x9fc4, +0x9fc5,0x9fc6,0xd1ac,0x9fc7,0x9fc8,0x9fc9,0x9fca,0xc8db,0x9fcb,0x9fcc, +0x9fcd,0xecd6,0xcef5,0x9fce,0x9fcf,0x9fd0,0x9fd1,0x9fd2,0xcaec,0xecda, +0x9fd3,0x9fd4,0x9fd5,0x9fd6,0x9fd7,0x9fd8,0x9fd9,0xecd9,0x9fda,0x9fdb, +0x9fdc,0xb0be,0x9fdd,0x9fde,0x9fdf,0x9fe0,0x9fe1,0x9fe2,0xecd7,0x9fe3, +0xecd8,0x9fe4,0x9fe5,0x9fe6,0xece4,0x9fe7,0x9fe8,0x9fe9,0x9fea,0x9feb, +0x9fec,0x9fed,0x9fee,0x9fef,0xc8bc,0x9ff0,0x9ff1,0x9ff2,0x9ff3,0x9ff4, +0x9ff5,0x9ff6,0x9ff7,0x9ff8,0x9ff9,0xc1c7,0x9ffa,0x9ffb,0x9ffc,0x9ffd, +0x9ffe,0xecdc,0xd1e0,0xa040,0xa041,0xa042,0xa043,0xa044,0xa045,0xa046, +0xa047,0xa048,0xa049,0xecdb,0xa04a,0xa04b,0xa04c,0xa04d,0xd4ef,0xa04e, +0xecdd,0xa04f,0xa050,0xa051,0xa052,0xa053,0xa054,0xdbc6,0xa055,0xa056, +0xa057,0xa058,0xa059,0xa05a,0xa05b,0xa05c,0xa05d,0xa05e,0xecde,0xa05f, +0xa060,0xa061,0xa062,0xa063,0xa064,0xa065,0xa066,0xa067,0xa068,0xa069, +0xa06a,0xb1ac,0xa06b,0xa06c,0xa06d,0xa06e,0xa06f,0xa070,0xa071,0xa072, +0xa073,0xa074,0xa075,0xa076,0xa077,0xa078,0xa079,0xa07a,0xa07b,0xa07c, +0xa07d,0xa07e,0xa080,0xa081,0xecdf,0xa082,0xa083,0xa084,0xa085,0xa086, +0xa087,0xa088,0xa089,0xa08a,0xa08b,0xece0,0xa08c,0xd7a6,0xa08d,0xc5c0, +0xa08e,0xa08f,0xa090,0xebbc,0xb0ae,0xa091,0xa092,0xa093,0xbef4,0xb8b8, +0xd2af,0xb0d6,0xb5f9,0xa094,0xd8b3,0xa095,0xcbac,0xa096,0xe3dd,0xa097, +0xa098,0xa099,0xa09a,0xa09b,0xa09c,0xa09d,0xc6ac,0xb0e6,0xa09e,0xa09f, +0xa0a0,0xc5c6,0xebb9,0xa0a1,0xa0a2,0xa0a3,0xa0a4,0xebba,0xa0a5,0xa0a6, +0xa0a7,0xebbb,0xa0a8,0xa0a9,0xd1c0,0xa0aa,0xc5a3,0xa0ab,0xeaf2,0xa0ac, +0xc4b2,0xa0ad,0xc4b5,0xc0ce,0xa0ae,0xa0af,0xa0b0,0xeaf3,0xc4c1,0xa0b1, +0xceef,0xa0b2,0xa0b3,0xa0b4,0xa0b5,0xeaf0,0xeaf4,0xa0b6,0xa0b7,0xc9fc, +0xa0b8,0xa0b9,0xc7a3,0xa0ba,0xa0bb,0xa0bc,0xccd8,0xcefe,0xa0bd,0xa0be, +0xa0bf,0xeaf5,0xeaf6,0xcfac,0xc0e7,0xa0c0,0xa0c1,0xeaf7,0xa0c2,0xa0c3, +0xa0c4,0xa0c5,0xa0c6,0xb6bf,0xeaf8,0xa0c7,0xeaf9,0xa0c8,0xeafa,0xa0c9, +0xa0ca,0xeafb,0xa0cb,0xa0cc,0xa0cd,0xa0ce,0xa0cf,0xa0d0,0xa0d1,0xa0d2, +0xa0d3,0xa0d4,0xa0d5,0xa0d6,0xeaf1,0xa0d7,0xa0d8,0xa0d9,0xa0da,0xa0db, +0xa0dc,0xa0dd,0xa0de,0xa0df,0xa0e0,0xa0e1,0xa0e2,0xc8ae,0xe1eb,0xa0e3, +0xb7b8,0xe1ec,0xa0e4,0xa0e5,0xa0e6,0xe1ed,0xa0e7,0xd7b4,0xe1ee,0xe1ef, +0xd3cc,0xa0e8,0xa0e9,0xa0ea,0xa0eb,0xa0ec,0xa0ed,0xa0ee,0xe1f1,0xbff1, +0xe1f0,0xb5d2,0xa0ef,0xa0f0,0xa0f1,0xb1b7,0xa0f2,0xa0f3,0xa0f4,0xa0f5, +0xe1f3,0xe1f2,0xa0f6,0xbafc,0xa0f7,0xe1f4,0xa0f8,0xa0f9,0xa0fa,0xa0fb, +0xb9b7,0xa0fc,0xbed1,0xa0fd,0xa0fe,0xaa40,0xaa41,0xc4fc,0xaa42,0xbadd, +0xbdc6,0xaa43,0xaa44,0xaa45,0xaa46,0xaa47,0xaa48,0xe1f5,0xe1f7,0xaa49, +0xaa4a,0xb6c0,0xcfc1,0xcaa8,0xe1f6,0xd5f8,0xd3fc,0xe1f8,0xe1fc,0xe1f9, +0xaa4b,0xaa4c,0xe1fa,0xc0ea,0xaa4d,0xe1fe,0xe2a1,0xc0c7,0xaa4e,0xaa4f, +0xaa50,0xaa51,0xe1fb,0xaa52,0xe1fd,0xaa53,0xaa54,0xaa55,0xaa56,0xaa57, +0xaa58,0xe2a5,0xaa59,0xaa5a,0xaa5b,0xc1d4,0xaa5c,0xaa5d,0xaa5e,0xaa5f, +0xe2a3,0xaa60,0xe2a8,0xb2fe,0xe2a2,0xaa61,0xaa62,0xaa63,0xc3cd,0xb2c2, +0xe2a7,0xe2a6,0xaa64,0xaa65,0xe2a4,0xe2a9,0xaa66,0xaa67,0xe2ab,0xaa68, +0xaa69,0xaa6a,0xd0c9,0xd6ed,0xc3a8,0xe2ac,0xaa6b,0xcfd7,0xaa6c,0xaa6d, +0xe2ae,0xaa6e,0xaa6f,0xbaef,0xaa70,0xaa71,0xe9e0,0xe2ad,0xe2aa,0xaa72, +0xaa73,0xaa74,0xaa75,0xbbab,0xd4b3,0xaa76,0xaa77,0xaa78,0xaa79,0xaa7a, +0xaa7b,0xaa7c,0xaa7d,0xaa7e,0xaa80,0xaa81,0xaa82,0xaa83,0xe2b0,0xaa84, +0xaa85,0xe2af,0xaa86,0xe9e1,0xaa87,0xaa88,0xaa89,0xaa8a,0xe2b1,0xaa8b, +0xaa8c,0xaa8d,0xaa8e,0xaa8f,0xaa90,0xaa91,0xaa92,0xe2b2,0xaa93,0xaa94, +0xaa95,0xaa96,0xaa97,0xaa98,0xaa99,0xaa9a,0xaa9b,0xaa9c,0xaa9d,0xe2b3, +0xcca1,0xaa9e,0xe2b4,0xaa9f,0xaaa0,0xab40,0xab41,0xab42,0xab43,0xab44, +0xab45,0xab46,0xab47,0xab48,0xab49,0xab4a,0xab4b,0xe2b5,0xab4c,0xab4d, +0xab4e,0xab4f,0xab50,0xd0fe,0xab51,0xab52,0xc2ca,0xab53,0xd3f1,0xab54, +0xcdf5,0xab55,0xab56,0xe7e0,0xab57,0xab58,0xe7e1,0xab59,0xab5a,0xab5b, +0xab5c,0xbec1,0xab5d,0xab5e,0xab5f,0xab60,0xc2ea,0xab61,0xab62,0xab63, +0xe7e4,0xab64,0xab65,0xe7e3,0xab66,0xab67,0xab68,0xab69,0xab6a,0xab6b, +0xcde6,0xab6c,0xc3b5,0xab6d,0xab6e,0xe7e2,0xbbb7,0xcfd6,0xab6f,0xc1e1, +0xe7e9,0xab70,0xab71,0xab72,0xe7e8,0xab73,0xab74,0xe7f4,0xb2a3,0xab75, +0xab76,0xab77,0xab78,0xe7ea,0xab79,0xe7e6,0xab7a,0xab7b,0xab7c,0xab7d, +0xab7e,0xe7ec,0xe7eb,0xc9ba,0xab80,0xab81,0xd5e4,0xab82,0xe7e5,0xb7a9, +0xe7e7,0xab83,0xab84,0xab85,0xab86,0xab87,0xab88,0xab89,0xe7ee,0xab8a, +0xab8b,0xab8c,0xab8d,0xe7f3,0xab8e,0xd6e9,0xab8f,0xab90,0xab91,0xab92, +0xe7ed,0xab93,0xe7f2,0xab94,0xe7f1,0xab95,0xab96,0xab97,0xb0e0,0xab98, +0xab99,0xab9a,0xab9b,0xe7f5,0xab9c,0xab9d,0xab9e,0xab9f,0xaba0,0xac40, +0xac41,0xac42,0xac43,0xac44,0xac45,0xac46,0xac47,0xac48,0xac49,0xac4a, +0xc7f2,0xac4b,0xc0c5,0xc0ed,0xac4c,0xac4d,0xc1f0,0xe7f0,0xac4e,0xac4f, +0xac50,0xac51,0xe7f6,0xcbf6,0xac52,0xac53,0xac54,0xac55,0xac56,0xac57, +0xac58,0xac59,0xac5a,0xe8a2,0xe8a1,0xac5b,0xac5c,0xac5d,0xac5e,0xac5f, +0xac60,0xd7c1,0xac61,0xac62,0xe7fa,0xe7f9,0xac63,0xe7fb,0xac64,0xe7f7, +0xac65,0xe7fe,0xac66,0xe7fd,0xac67,0xe7fc,0xac68,0xac69,0xc1d5,0xc7d9, +0xc5fd,0xc5c3,0xac6a,0xac6b,0xac6c,0xac6d,0xac6e,0xc7ed,0xac6f,0xac70, +0xac71,0xac72,0xe8a3,0xac73,0xac74,0xac75,0xac76,0xac77,0xac78,0xac79, +0xac7a,0xac7b,0xac7c,0xac7d,0xac7e,0xac80,0xac81,0xac82,0xac83,0xac84, +0xac85,0xac86,0xe8a6,0xac87,0xe8a5,0xac88,0xe8a7,0xbaf7,0xe7f8,0xe8a4, +0xac89,0xc8f0,0xc9aa,0xac8a,0xac8b,0xac8c,0xac8d,0xac8e,0xac8f,0xac90, +0xac91,0xac92,0xac93,0xac94,0xac95,0xac96,0xe8a9,0xac97,0xac98,0xb9e5, +0xac99,0xac9a,0xac9b,0xac9c,0xac9d,0xd1fe,0xe8a8,0xac9e,0xac9f,0xaca0, +0xad40,0xad41,0xad42,0xe8aa,0xad43,0xe8ad,0xe8ae,0xad44,0xc1a7,0xad45, +0xad46,0xad47,0xe8af,0xad48,0xad49,0xad4a,0xe8b0,0xad4b,0xad4c,0xe8ac, +0xad4d,0xe8b4,0xad4e,0xad4f,0xad50,0xad51,0xad52,0xad53,0xad54,0xad55, +0xad56,0xad57,0xad58,0xe8ab,0xad59,0xe8b1,0xad5a,0xad5b,0xad5c,0xad5d, +0xad5e,0xad5f,0xad60,0xad61,0xe8b5,0xe8b2,0xe8b3,0xad62,0xad63,0xad64, +0xad65,0xad66,0xad67,0xad68,0xad69,0xad6a,0xad6b,0xad6c,0xad6d,0xad6e, +0xad6f,0xad70,0xad71,0xe8b7,0xad72,0xad73,0xad74,0xad75,0xad76,0xad77, +0xad78,0xad79,0xad7a,0xad7b,0xad7c,0xad7d,0xad7e,0xad80,0xad81,0xad82, +0xad83,0xad84,0xad85,0xad86,0xad87,0xad88,0xad89,0xe8b6,0xad8a,0xad8b, +0xad8c,0xad8d,0xad8e,0xad8f,0xad90,0xad91,0xad92,0xb9cf,0xad93,0xf0ac, +0xad94,0xf0ad,0xad95,0xc6b0,0xb0ea,0xc8bf,0xad96,0xcddf,0xad97,0xad98, +0xad99,0xad9a,0xad9b,0xad9c,0xad9d,0xcecd,0xeab1,0xad9e,0xad9f,0xada0, +0xae40,0xeab2,0xae41,0xc6bf,0xb4c9,0xae42,0xae43,0xae44,0xae45,0xae46, +0xae47,0xae48,0xeab3,0xae49,0xae4a,0xae4b,0xae4c,0xd5e7,0xae4d,0xae4e, +0xae4f,0xae50,0xae51,0xae52,0xae53,0xae54,0xddf9,0xae55,0xeab4,0xae56, +0xeab5,0xae57,0xeab6,0xae58,0xae59,0xae5a,0xae5b,0xb8ca,0xdfb0,0xc9f5, +0xae5c,0xccf0,0xae5d,0xae5e,0xc9fa,0xae5f,0xae60,0xae61,0xae62,0xae63, +0xc9fb,0xae64,0xae65,0xd3c3,0xcba6,0xae66,0xb8a6,0xf0ae,0xb1c2,0xae67, +0xe5b8,0xccef,0xd3c9,0xbcd7,0xc9ea,0xae68,0xb5e7,0xae69,0xc4d0,0xb5e9, +0xae6a,0xeeae,0xbbad,0xae6b,0xae6c,0xe7de,0xae6d,0xeeaf,0xae6e,0xae6f, +0xae70,0xae71,0xb3a9,0xae72,0xae73,0xeeb2,0xae74,0xae75,0xeeb1,0xbde7, +0xae76,0xeeb0,0xceb7,0xae77,0xae78,0xae79,0xae7a,0xc5cf,0xae7b,0xae7c, +0xae7d,0xae7e,0xc1f4,0xdbce,0xeeb3,0xd0f3,0xae80,0xae81,0xae82,0xae83, +0xae84,0xae85,0xae86,0xae87,0xc2d4,0xc6e8,0xae88,0xae89,0xae8a,0xb7ac, +0xae8b,0xae8c,0xae8d,0xae8e,0xae8f,0xae90,0xae91,0xeeb4,0xae92,0xb3eb, +0xae93,0xae94,0xae95,0xbbfb,0xeeb5,0xae96,0xae97,0xae98,0xae99,0xae9a, +0xe7dc,0xae9b,0xae9c,0xae9d,0xeeb6,0xae9e,0xae9f,0xbdae,0xaea0,0xaf40, +0xaf41,0xaf42,0xf1e2,0xaf43,0xaf44,0xaf45,0xcae8,0xaf46,0xd2c9,0xf0da, +0xaf47,0xf0db,0xaf48,0xf0dc,0xc1c6,0xaf49,0xb8ed,0xbece,0xaf4a,0xaf4b, +0xf0de,0xaf4c,0xc5b1,0xf0dd,0xd1f1,0xaf4d,0xf0e0,0xb0cc,0xbdea,0xaf4e, +0xaf4f,0xaf50,0xaf51,0xaf52,0xd2df,0xf0df,0xaf53,0xb4af,0xb7e8,0xf0e6, +0xf0e5,0xc6a3,0xf0e1,0xf0e2,0xb4c3,0xaf54,0xaf55,0xf0e3,0xd5ee,0xaf56, +0xaf57,0xccdb,0xbed2,0xbcb2,0xaf58,0xaf59,0xaf5a,0xf0e8,0xf0e7,0xf0e4, +0xb2a1,0xaf5b,0xd6a2,0xd3b8,0xbeb7,0xc8ac,0xaf5c,0xaf5d,0xf0ea,0xaf5e, +0xaf5f,0xaf60,0xaf61,0xd1f7,0xaf62,0xd6cc,0xbadb,0xf0e9,0xaf63,0xb6bb, +0xaf64,0xaf65,0xcdb4,0xaf66,0xaf67,0xc6a6,0xaf68,0xaf69,0xaf6a,0xc1a1, +0xf0eb,0xf0ee,0xaf6b,0xf0ed,0xf0f0,0xf0ec,0xaf6c,0xbbbe,0xf0ef,0xaf6d, +0xaf6e,0xaf6f,0xaf70,0xccb5,0xf0f2,0xaf71,0xaf72,0xb3d5,0xaf73,0xaf74, +0xaf75,0xaf76,0xb1d4,0xaf77,0xaf78,0xf0f3,0xaf79,0xaf7a,0xf0f4,0xf0f6, +0xb4e1,0xaf7b,0xf0f1,0xaf7c,0xf0f7,0xaf7d,0xaf7e,0xaf80,0xaf81,0xf0fa, +0xaf82,0xf0f8,0xaf83,0xaf84,0xaf85,0xf0f5,0xaf86,0xaf87,0xaf88,0xaf89, +0xf0fd,0xaf8a,0xf0f9,0xf0fc,0xf0fe,0xaf8b,0xf1a1,0xaf8c,0xaf8d,0xaf8e, +0xcec1,0xf1a4,0xaf8f,0xf1a3,0xaf90,0xc1f6,0xf0fb,0xcadd,0xaf91,0xaf92, +0xb4f1,0xb1f1,0xccb1,0xaf93,0xf1a6,0xaf94,0xaf95,0xf1a7,0xaf96,0xaf97, +0xf1ac,0xd5ce,0xf1a9,0xaf98,0xaf99,0xc8b3,0xaf9a,0xaf9b,0xaf9c,0xf1a2, +0xaf9d,0xf1ab,0xf1a8,0xf1a5,0xaf9e,0xaf9f,0xf1aa,0xafa0,0xb040,0xb041, +0xb042,0xb043,0xb044,0xb045,0xb046,0xb0a9,0xf1ad,0xb047,0xb048,0xb049, +0xb04a,0xb04b,0xb04c,0xf1af,0xb04d,0xf1b1,0xb04e,0xb04f,0xb050,0xb051, +0xb052,0xf1b0,0xb053,0xf1ae,0xb054,0xb055,0xb056,0xb057,0xd1a2,0xb058, +0xb059,0xb05a,0xb05b,0xb05c,0xb05d,0xb05e,0xf1b2,0xb05f,0xb060,0xb061, +0xf1b3,0xb062,0xb063,0xb064,0xb065,0xb066,0xb067,0xb068,0xb069,0xb9ef, +0xb06a,0xb06b,0xb5c7,0xb06c,0xb0d7,0xb0d9,0xb06d,0xb06e,0xb06f,0xd4ed, +0xb070,0xb5c4,0xb071,0xbdd4,0xbbca,0xf0a7,0xb072,0xb073,0xb8de,0xb074, +0xb075,0xf0a8,0xb076,0xb077,0xb0a8,0xb078,0xf0a9,0xb079,0xb07a,0xcdee, +0xb07b,0xb07c,0xf0aa,0xb07d,0xb07e,0xb080,0xb081,0xb082,0xb083,0xb084, +0xb085,0xb086,0xb087,0xf0ab,0xb088,0xb089,0xb08a,0xb08b,0xb08c,0xb08d, +0xb08e,0xb08f,0xb090,0xc6a4,0xb091,0xb092,0xd6e5,0xf1e4,0xb093,0xf1e5, +0xb094,0xb095,0xb096,0xb097,0xb098,0xb099,0xb09a,0xb09b,0xb09c,0xb09d, +0xc3f3,0xb09e,0xb09f,0xd3db,0xb0a0,0xb140,0xd6d1,0xc5e8,0xb141,0xd3af, +0xb142,0xd2e6,0xb143,0xb144,0xeec1,0xb0bb,0xd5b5,0xd1ce,0xbce0,0xbad0, +0xb145,0xbff8,0xb146,0xb8c7,0xb5c1,0xc5cc,0xb147,0xb148,0xcaa2,0xb149, +0xb14a,0xb14b,0xc3cb,0xb14c,0xb14d,0xb14e,0xb14f,0xb150,0xeec2,0xb151, +0xb152,0xb153,0xb154,0xb155,0xb156,0xb157,0xb158,0xc4bf,0xb6a2,0xb159, +0xedec,0xc3a4,0xb15a,0xd6b1,0xb15b,0xb15c,0xb15d,0xcfe0,0xedef,0xb15e, +0xb15f,0xc5ce,0xb160,0xb6dc,0xb161,0xb162,0xcaa1,0xb163,0xb164,0xeded, +0xb165,0xb166,0xedf0,0xedf1,0xc3bc,0xb167,0xbfb4,0xb168,0xedee,0xb169, +0xb16a,0xb16b,0xb16c,0xb16d,0xb16e,0xb16f,0xb170,0xb171,0xb172,0xb173, +0xedf4,0xedf2,0xb174,0xb175,0xb176,0xb177,0xd5e6,0xc3df,0xb178,0xedf3, +0xb179,0xb17a,0xb17b,0xedf6,0xb17c,0xd5a3,0xd1a3,0xb17d,0xb17e,0xb180, +0xedf5,0xb181,0xc3d0,0xb182,0xb183,0xb184,0xb185,0xb186,0xedf7,0xbff4, +0xbeec,0xedf8,0xb187,0xccf7,0xb188,0xd1db,0xb189,0xb18a,0xb18b,0xd7c5, +0xd5f6,0xb18c,0xedfc,0xb18d,0xb18e,0xb18f,0xedfb,0xb190,0xb191,0xb192, +0xb193,0xb194,0xb195,0xb196,0xb197,0xedf9,0xedfa,0xb198,0xb199,0xb19a, +0xb19b,0xb19c,0xb19d,0xb19e,0xb19f,0xedfd,0xbea6,0xb1a0,0xb240,0xb241, +0xb242,0xb243,0xcbaf,0xeea1,0xb6bd,0xb244,0xeea2,0xc4c0,0xb245,0xedfe, +0xb246,0xb247,0xbdde,0xb2c7,0xb248,0xb249,0xb24a,0xb24b,0xb24c,0xb24d, +0xb24e,0xb24f,0xb250,0xb251,0xb252,0xb253,0xb6c3,0xb254,0xb255,0xb256, +0xeea5,0xd8ba,0xeea3,0xeea6,0xb257,0xb258,0xb259,0xc3e9,0xb3f2,0xb25a, +0xb25b,0xb25c,0xb25d,0xb25e,0xb25f,0xeea7,0xeea4,0xcfb9,0xb260,0xb261, +0xeea8,0xc2f7,0xb262,0xb263,0xb264,0xb265,0xb266,0xb267,0xb268,0xb269, +0xb26a,0xb26b,0xb26c,0xb26d,0xeea9,0xeeaa,0xb26e,0xdeab,0xb26f,0xb270, +0xc6b3,0xb271,0xc7c6,0xb272,0xd6f5,0xb5c9,0xb273,0xcbb2,0xb274,0xb275, +0xb276,0xeeab,0xb277,0xb278,0xcdab,0xb279,0xeeac,0xb27a,0xb27b,0xb27c, +0xb27d,0xb27e,0xd5b0,0xb280,0xeead,0xb281,0xf6c4,0xb282,0xb283,0xb284, +0xb285,0xb286,0xb287,0xb288,0xb289,0xb28a,0xb28b,0xb28c,0xb28d,0xb28e, +0xdbc7,0xb28f,0xb290,0xb291,0xb292,0xb293,0xb294,0xb295,0xb296,0xb297, +0xb4a3,0xb298,0xb299,0xb29a,0xc3ac,0xf1e6,0xb29b,0xb29c,0xb29d,0xb29e, +0xb29f,0xcab8,0xd2d3,0xb2a0,0xd6aa,0xb340,0xeff2,0xb341,0xbed8,0xb342, +0xbdc3,0xeff3,0xb6cc,0xb0ab,0xb343,0xb344,0xb345,0xb346,0xcaaf,0xb347, +0xb348,0xedb6,0xb349,0xedb7,0xb34a,0xb34b,0xb34c,0xb34d,0xcef9,0xb7af, +0xbff3,0xedb8,0xc2eb,0xc9b0,0xb34e,0xb34f,0xb350,0xb351,0xb352,0xb353, +0xedb9,0xb354,0xb355,0xc6f6,0xbfb3,0xb356,0xb357,0xb358,0xedbc,0xc5f8, +0xb359,0xd1d0,0xb35a,0xd7a9,0xedba,0xedbb,0xb35b,0xd1e2,0xb35c,0xedbf, +0xedc0,0xb35d,0xedc4,0xb35e,0xb35f,0xb360,0xedc8,0xb361,0xedc6,0xedce, +0xd5e8,0xb362,0xedc9,0xb363,0xb364,0xedc7,0xedbe,0xb365,0xb366,0xc5e9, +0xb367,0xb368,0xb369,0xc6c6,0xb36a,0xb36b,0xc9e9,0xd4d2,0xedc1,0xedc2, +0xedc3,0xedc5,0xb36c,0xc0f9,0xb36d,0xb4a1,0xb36e,0xb36f,0xb370,0xb371, +0xb9e8,0xb372,0xedd0,0xb373,0xb374,0xb375,0xb376,0xedd1,0xb377,0xedca, +0xb378,0xedcf,0xb379,0xcef8,0xb37a,0xb37b,0xcbb6,0xedcc,0xedcd,0xb37c, +0xb37d,0xb37e,0xb380,0xb381,0xcff5,0xb382,0xb383,0xb384,0xb385,0xb386, +0xb387,0xb388,0xb389,0xb38a,0xb38b,0xb38c,0xb38d,0xedd2,0xc1f2,0xd3b2, +0xedcb,0xc8b7,0xb38e,0xb38f,0xb390,0xb391,0xb392,0xb393,0xb394,0xb395, +0xbcef,0xb396,0xb397,0xb398,0xb399,0xc5f0,0xb39a,0xb39b,0xb39c,0xb39d, +0xb39e,0xb39f,0xb3a0,0xb440,0xb441,0xb442,0xedd6,0xb443,0xb5ef,0xb444, +0xb445,0xc2b5,0xb0ad,0xcbe9,0xb446,0xb447,0xb1ae,0xb448,0xedd4,0xb449, +0xb44a,0xb44b,0xcdeb,0xb5e2,0xb44c,0xedd5,0xedd3,0xedd7,0xb44d,0xb44e, +0xb5fa,0xb44f,0xedd8,0xb450,0xedd9,0xb451,0xeddc,0xb452,0xb1cc,0xb453, +0xb454,0xb455,0xb456,0xb457,0xb458,0xb459,0xb45a,0xc5f6,0xbcee,0xedda, +0xccbc,0xb2ea,0xb45b,0xb45c,0xb45d,0xb45e,0xeddb,0xb45f,0xb460,0xb461, +0xb462,0xc4eb,0xb463,0xb464,0xb4c5,0xb465,0xb466,0xb467,0xb0f5,0xb468, +0xb469,0xb46a,0xeddf,0xc0da,0xb4e8,0xb46b,0xb46c,0xb46d,0xb46e,0xc5cd, +0xb46f,0xb470,0xb471,0xeddd,0xbfc4,0xb472,0xb473,0xb474,0xedde,0xb475, +0xb476,0xb477,0xb478,0xb479,0xb47a,0xb47b,0xb47c,0xb47d,0xb47e,0xb480, +0xb481,0xb482,0xb483,0xc4a5,0xb484,0xb485,0xb486,0xede0,0xb487,0xb488, +0xb489,0xb48a,0xb48b,0xede1,0xb48c,0xede3,0xb48d,0xb48e,0xc1d7,0xb48f, +0xb490,0xbbc7,0xb491,0xb492,0xb493,0xb494,0xb495,0xb496,0xbdb8,0xb497, +0xb498,0xb499,0xede2,0xb49a,0xb49b,0xb49c,0xb49d,0xb49e,0xb49f,0xb4a0, +0xb540,0xb541,0xb542,0xb543,0xb544,0xb545,0xede4,0xb546,0xb547,0xb548, +0xb549,0xb54a,0xb54b,0xb54c,0xb54d,0xb54e,0xb54f,0xede6,0xb550,0xb551, +0xb552,0xb553,0xb554,0xede5,0xb555,0xb556,0xb557,0xb558,0xb559,0xb55a, +0xb55b,0xb55c,0xb55d,0xb55e,0xb55f,0xb560,0xb561,0xb562,0xb563,0xede7, +0xb564,0xb565,0xb566,0xb567,0xb568,0xcabe,0xecea,0xc0f1,0xb569,0xc9e7, +0xb56a,0xeceb,0xc6ee,0xb56b,0xb56c,0xb56d,0xb56e,0xecec,0xb56f,0xc6ed, +0xeced,0xb570,0xb571,0xb572,0xb573,0xb574,0xb575,0xb576,0xb577,0xb578, +0xecf0,0xb579,0xb57a,0xd7e6,0xecf3,0xb57b,0xb57c,0xecf1,0xecee,0xecef, +0xd7a3,0xc9f1,0xcbee,0xecf4,0xb57d,0xecf2,0xb57e,0xb580,0xcfe9,0xb581, +0xecf6,0xc6b1,0xb582,0xb583,0xb584,0xb585,0xbcc0,0xb586,0xecf5,0xb587, +0xb588,0xb589,0xb58a,0xb58b,0xb58c,0xb58d,0xb5bb,0xbbf6,0xb58e,0xecf7, +0xb58f,0xb590,0xb591,0xb592,0xb593,0xd9f7,0xbdfb,0xb594,0xb595,0xc2bb, +0xecf8,0xb596,0xb597,0xb598,0xb599,0xecf9,0xb59a,0xb59b,0xb59c,0xb59d, +0xb8a3,0xb59e,0xb59f,0xb5a0,0xb640,0xb641,0xb642,0xb643,0xb644,0xb645, +0xb646,0xecfa,0xb647,0xb648,0xb649,0xb64a,0xb64b,0xb64c,0xb64d,0xb64e, +0xb64f,0xb650,0xb651,0xb652,0xecfb,0xb653,0xb654,0xb655,0xb656,0xb657, +0xb658,0xb659,0xb65a,0xb65b,0xb65c,0xb65d,0xecfc,0xb65e,0xb65f,0xb660, +0xb661,0xb662,0xd3ed,0xd8ae,0xc0eb,0xb663,0xc7dd,0xbacc,0xb664,0xd0e3, +0xcbbd,0xb665,0xcdba,0xb666,0xb667,0xb8d1,0xb668,0xb669,0xb1fc,0xb66a, +0xc7ef,0xb66b,0xd6d6,0xb66c,0xb66d,0xb66e,0xbfc6,0xc3eb,0xb66f,0xb670, +0xeff5,0xb671,0xb672,0xc3d8,0xb673,0xb674,0xb675,0xb676,0xb677,0xb678, +0xd7e2,0xb679,0xb67a,0xb67b,0xeff7,0xb3d3,0xb67c,0xc7d8,0xd1ed,0xb67d, +0xd6c8,0xb67e,0xeff8,0xb680,0xeff6,0xb681,0xbbfd,0xb3c6,0xb682,0xb683, +0xb684,0xb685,0xb686,0xb687,0xb688,0xbdd5,0xb689,0xb68a,0xd2c6,0xb68b, +0xbbe0,0xb68c,0xb68d,0xcfa1,0xb68e,0xeffc,0xeffb,0xb68f,0xb690,0xeff9, +0xb691,0xb692,0xb693,0xb694,0xb3cc,0xb695,0xc9d4,0xcbb0,0xb696,0xb697, +0xb698,0xb699,0xb69a,0xeffe,0xb69b,0xb69c,0xb0de,0xb69d,0xb69e,0xd6c9, +0xb69f,0xb6a0,0xb740,0xeffd,0xb741,0xb3ed,0xb742,0xb743,0xf6d5,0xb744, +0xb745,0xb746,0xb747,0xb748,0xb749,0xb74a,0xb74b,0xb74c,0xb74d,0xb74e, +0xb74f,0xb750,0xb751,0xb752,0xcec8,0xb753,0xb754,0xb755,0xf0a2,0xb756, +0xf0a1,0xb757,0xb5be,0xbcda,0xbbfc,0xb758,0xb8e5,0xb759,0xb75a,0xb75b, +0xb75c,0xb75d,0xb75e,0xc4c2,0xb75f,0xb760,0xb761,0xb762,0xb763,0xb764, +0xb765,0xb766,0xb767,0xb768,0xf0a3,0xb769,0xb76a,0xb76b,0xb76c,0xb76d, +0xcbeb,0xb76e,0xb76f,0xb770,0xb771,0xb772,0xb773,0xb774,0xb775,0xb776, +0xb777,0xb778,0xb779,0xb77a,0xb77b,0xb77c,0xb77d,0xb77e,0xb780,0xb781, +0xb782,0xb783,0xb784,0xb785,0xb786,0xf0a6,0xb787,0xb788,0xb789,0xd1a8, +0xb78a,0xbebf,0xc7ee,0xf1b6,0xf1b7,0xbfd5,0xb78b,0xb78c,0xb78d,0xb78e, +0xb4a9,0xf1b8,0xcdbb,0xb78f,0xc7d4,0xd5ad,0xb790,0xf1b9,0xb791,0xf1ba, +0xb792,0xb793,0xb794,0xb795,0xc7cf,0xb796,0xb797,0xb798,0xd2a4,0xd6cf, +0xb799,0xb79a,0xf1bb,0xbdd1,0xb4b0,0xbebd,0xb79b,0xb79c,0xb79d,0xb4dc, +0xced1,0xb79e,0xbfdf,0xf1bd,0xb79f,0xb7a0,0xb840,0xb841,0xbffa,0xf1bc, +0xb842,0xf1bf,0xb843,0xb844,0xb845,0xf1be,0xf1c0,0xb846,0xb847,0xb848, +0xb849,0xb84a,0xf1c1,0xb84b,0xb84c,0xb84d,0xb84e,0xb84f,0xb850,0xb851, +0xb852,0xb853,0xb854,0xb855,0xc1fe,0xb856,0xb857,0xb858,0xb859,0xb85a, +0xb85b,0xb85c,0xb85d,0xb85e,0xb85f,0xb860,0xc1a2,0xb861,0xb862,0xb863, +0xb864,0xb865,0xb866,0xb867,0xb868,0xb869,0xb86a,0xcafa,0xb86b,0xb86c, +0xd5be,0xb86d,0xb86e,0xb86f,0xb870,0xbeba,0xbeb9,0xd5c2,0xb871,0xb872, +0xbfa2,0xb873,0xcdaf,0xf1b5,0xb874,0xb875,0xb876,0xb877,0xb878,0xb879, +0xbddf,0xb87a,0xb6cb,0xb87b,0xb87c,0xb87d,0xb87e,0xb880,0xb881,0xb882, +0xb883,0xb884,0xd6f1,0xf3c3,0xb885,0xb886,0xf3c4,0xb887,0xb8cd,0xb888, +0xb889,0xb88a,0xf3c6,0xf3c7,0xb88b,0xb0ca,0xb88c,0xf3c5,0xb88d,0xf3c9, +0xcbf1,0xb88e,0xb88f,0xb890,0xf3cb,0xb891,0xd0a6,0xb892,0xb893,0xb1ca, +0xf3c8,0xb894,0xb895,0xb896,0xf3cf,0xb897,0xb5d1,0xb898,0xb899,0xf3d7, +0xb89a,0xf3d2,0xb89b,0xb89c,0xb89d,0xf3d4,0xf3d3,0xb7fb,0xb89e,0xb1bf, +0xb89f,0xf3ce,0xf3ca,0xb5da,0xb8a0,0xf3d0,0xb940,0xb941,0xf3d1,0xb942, +0xf3d5,0xb943,0xb944,0xb945,0xb946,0xf3cd,0xb947,0xbce3,0xb948,0xc1fd, +0xb949,0xf3d6,0xb94a,0xb94b,0xb94c,0xb94d,0xb94e,0xb94f,0xf3da,0xb950, +0xf3cc,0xb951,0xb5c8,0xb952,0xbdee,0xf3dc,0xb953,0xb954,0xb7a4,0xbff0, +0xd6fe,0xcdb2,0xb955,0xb4f0,0xb956,0xb2df,0xb957,0xf3d8,0xb958,0xf3d9, +0xc9b8,0xb959,0xf3dd,0xb95a,0xb95b,0xf3de,0xb95c,0xf3e1,0xb95d,0xb95e, +0xb95f,0xb960,0xb961,0xb962,0xb963,0xb964,0xb965,0xb966,0xb967,0xf3df, +0xb968,0xb969,0xf3e3,0xf3e2,0xb96a,0xb96b,0xf3db,0xb96c,0xbfea,0xb96d, +0xb3ef,0xb96e,0xf3e0,0xb96f,0xb970,0xc7a9,0xb971,0xbcf2,0xb972,0xb973, +0xb974,0xb975,0xf3eb,0xb976,0xb977,0xb978,0xb979,0xb97a,0xb97b,0xb97c, +0xb9bf,0xb97d,0xb97e,0xf3e4,0xb980,0xb981,0xb982,0xb2ad,0xbbfe,0xb983, +0xcbe3,0xb984,0xb985,0xb986,0xb987,0xf3ed,0xf3e9,0xb988,0xb989,0xb98a, +0xb9dc,0xf3ee,0xb98b,0xb98c,0xb98d,0xf3e5,0xf3e6,0xf3ea,0xc2e1,0xf3ec, +0xf3ef,0xf3e8,0xbcfd,0xb98e,0xb98f,0xb990,0xcfe4,0xb991,0xb992,0xf3f0, +0xb993,0xb994,0xb995,0xf3e7,0xb996,0xb997,0xb998,0xb999,0xb99a,0xb99b, +0xb99c,0xb99d,0xf3f2,0xb99e,0xb99f,0xb9a0,0xba40,0xd7ad,0xc6aa,0xba41, +0xba42,0xba43,0xba44,0xf3f3,0xba45,0xba46,0xba47,0xba48,0xf3f1,0xba49, +0xc2a8,0xba4a,0xba4b,0xba4c,0xba4d,0xba4e,0xb8dd,0xf3f5,0xba4f,0xba50, +0xf3f4,0xba51,0xba52,0xba53,0xb4db,0xba54,0xba55,0xba56,0xf3f6,0xf3f7, +0xba57,0xba58,0xba59,0xf3f8,0xba5a,0xba5b,0xba5c,0xc0ba,0xba5d,0xba5e, +0xc0e9,0xba5f,0xba60,0xba61,0xba62,0xba63,0xc5f1,0xba64,0xba65,0xba66, +0xba67,0xf3fb,0xba68,0xf3fa,0xba69,0xba6a,0xba6b,0xba6c,0xba6d,0xba6e, +0xba6f,0xba70,0xb4d8,0xba71,0xba72,0xba73,0xf3fe,0xf3f9,0xba74,0xba75, +0xf3fc,0xba76,0xba77,0xba78,0xba79,0xba7a,0xba7b,0xf3fd,0xba7c,0xba7d, +0xba7e,0xba80,0xba81,0xba82,0xba83,0xba84,0xf4a1,0xba85,0xba86,0xba87, +0xba88,0xba89,0xba8a,0xf4a3,0xbbc9,0xba8b,0xba8c,0xf4a2,0xba8d,0xba8e, +0xba8f,0xba90,0xba91,0xba92,0xba93,0xba94,0xba95,0xba96,0xba97,0xba98, +0xba99,0xf4a4,0xba9a,0xba9b,0xba9c,0xba9d,0xba9e,0xba9f,0xb2be,0xf4a6, +0xf4a5,0xbaa0,0xbb40,0xbb41,0xbb42,0xbb43,0xbb44,0xbb45,0xbb46,0xbb47, +0xbb48,0xbb49,0xbcae,0xbb4a,0xbb4b,0xbb4c,0xbb4d,0xbb4e,0xbb4f,0xbb50, +0xbb51,0xbb52,0xbb53,0xbb54,0xbb55,0xbb56,0xbb57,0xbb58,0xbb59,0xbb5a, +0xbb5b,0xbb5c,0xbb5d,0xbb5e,0xbb5f,0xbb60,0xbb61,0xbb62,0xbb63,0xbb64, +0xbb65,0xbb66,0xbb67,0xbb68,0xbb69,0xbb6a,0xbb6b,0xbb6c,0xbb6d,0xbb6e, +0xc3d7,0xd9e1,0xbb6f,0xbb70,0xbb71,0xbb72,0xbb73,0xbb74,0xc0e0,0xf4cc, +0xd7d1,0xbb75,0xbb76,0xbb77,0xbb78,0xbb79,0xbb7a,0xbb7b,0xbb7c,0xbb7d, +0xbb7e,0xbb80,0xb7db,0xbb81,0xbb82,0xbb83,0xbb84,0xbb85,0xbb86,0xbb87, +0xf4ce,0xc1a3,0xbb88,0xbb89,0xc6c9,0xbb8a,0xb4d6,0xd5b3,0xbb8b,0xbb8c, +0xbb8d,0xf4d0,0xf4cf,0xf4d1,0xcbda,0xbb8e,0xbb8f,0xf4d2,0xbb90,0xd4c1, +0xd6e0,0xbb91,0xbb92,0xbb93,0xbb94,0xb7e0,0xbb95,0xbb96,0xbb97,0xc1b8, +0xbb98,0xbb99,0xc1bb,0xf4d3,0xbeac,0xbb9a,0xbb9b,0xbb9c,0xbb9d,0xbb9e, +0xb4e2,0xbb9f,0xbba0,0xf4d4,0xf4d5,0xbeab,0xbc40,0xbc41,0xf4d6,0xbc42, +0xbc43,0xbc44,0xf4db,0xbc45,0xf4d7,0xf4da,0xbc46,0xbafd,0xbc47,0xf4d8, +0xf4d9,0xbc48,0xbc49,0xbc4a,0xbc4b,0xbc4c,0xbc4d,0xbc4e,0xb8e2,0xccc7, +0xf4dc,0xbc4f,0xb2da,0xbc50,0xbc51,0xc3d3,0xbc52,0xbc53,0xd4e3,0xbfb7, +0xbc54,0xbc55,0xbc56,0xbc57,0xbc58,0xbc59,0xbc5a,0xf4dd,0xbc5b,0xbc5c, +0xbc5d,0xbc5e,0xbc5f,0xbc60,0xc5b4,0xbc61,0xbc62,0xbc63,0xbc64,0xbc65, +0xbc66,0xbc67,0xbc68,0xf4e9,0xbc69,0xbc6a,0xcfb5,0xbc6b,0xbc6c,0xbc6d, +0xbc6e,0xbc6f,0xbc70,0xbc71,0xbc72,0xbc73,0xbc74,0xbc75,0xbc76,0xbc77, +0xbc78,0xcec9,0xbc79,0xbc7a,0xbc7b,0xbc7c,0xbc7d,0xbc7e,0xbc80,0xbc81, +0xbc82,0xbc83,0xbc84,0xbc85,0xbc86,0xbc87,0xbc88,0xbc89,0xbc8a,0xbc8b, +0xbc8c,0xbc8d,0xbc8e,0xcbd8,0xbc8f,0xcbf7,0xbc90,0xbc91,0xbc92,0xbc93, +0xbdf4,0xbc94,0xbc95,0xbc96,0xd7cf,0xbc97,0xbc98,0xbc99,0xc0db,0xbc9a, +0xbc9b,0xbc9c,0xbc9d,0xbc9e,0xbc9f,0xbca0,0xbd40,0xbd41,0xbd42,0xbd43, +0xbd44,0xbd45,0xbd46,0xbd47,0xbd48,0xbd49,0xbd4a,0xbd4b,0xbd4c,0xbd4d, +0xbd4e,0xbd4f,0xbd50,0xbd51,0xbd52,0xbd53,0xbd54,0xbd55,0xbd56,0xbd57, +0xbd58,0xbd59,0xbd5a,0xbd5b,0xbd5c,0xbd5d,0xbd5e,0xbd5f,0xbd60,0xbd61, +0xbd62,0xbd63,0xbd64,0xbd65,0xbd66,0xbd67,0xbd68,0xbd69,0xbd6a,0xbd6b, +0xbd6c,0xbd6d,0xbd6e,0xbd6f,0xbd70,0xbd71,0xbd72,0xbd73,0xbd74,0xbd75, +0xbd76,0xd0f5,0xbd77,0xbd78,0xbd79,0xbd7a,0xbd7b,0xbd7c,0xbd7d,0xbd7e, +0xf4ea,0xbd80,0xbd81,0xbd82,0xbd83,0xbd84,0xbd85,0xbd86,0xbd87,0xbd88, +0xbd89,0xbd8a,0xbd8b,0xbd8c,0xbd8d,0xbd8e,0xbd8f,0xbd90,0xbd91,0xbd92, +0xbd93,0xbd94,0xbd95,0xbd96,0xbd97,0xbd98,0xbd99,0xbd9a,0xbd9b,0xbd9c, +0xbd9d,0xbd9e,0xbd9f,0xbda0,0xbe40,0xbe41,0xbe42,0xbe43,0xbe44,0xbe45, +0xbe46,0xbe47,0xbe48,0xbe49,0xbe4a,0xbe4b,0xbe4c,0xf4eb,0xbe4d,0xbe4e, +0xbe4f,0xbe50,0xbe51,0xbe52,0xbe53,0xf4ec,0xbe54,0xbe55,0xbe56,0xbe57, +0xbe58,0xbe59,0xbe5a,0xbe5b,0xbe5c,0xbe5d,0xbe5e,0xbe5f,0xbe60,0xbe61, +0xbe62,0xbe63,0xbe64,0xbe65,0xbe66,0xbe67,0xbe68,0xbe69,0xbe6a,0xbe6b, +0xbe6c,0xbe6d,0xbe6e,0xbe6f,0xbe70,0xbe71,0xbe72,0xbe73,0xbe74,0xbe75, +0xbe76,0xbe77,0xbe78,0xbe79,0xbe7a,0xbe7b,0xbe7c,0xbe7d,0xbe7e,0xbe80, +0xbe81,0xbe82,0xbe83,0xbe84,0xbe85,0xbe86,0xbe87,0xbe88,0xbe89,0xbe8a, +0xbe8b,0xbe8c,0xbe8d,0xbe8e,0xbe8f,0xbe90,0xbe91,0xbe92,0xbe93,0xbe94, +0xbe95,0xbe96,0xbe97,0xbe98,0xbe99,0xbe9a,0xbe9b,0xbe9c,0xbe9d,0xbe9e, +0xbe9f,0xbea0,0xbf40,0xbf41,0xbf42,0xbf43,0xbf44,0xbf45,0xbf46,0xbf47, +0xbf48,0xbf49,0xbf4a,0xbf4b,0xbf4c,0xbf4d,0xbf4e,0xbf4f,0xbf50,0xbf51, +0xbf52,0xbf53,0xbf54,0xbf55,0xbf56,0xbf57,0xbf58,0xbf59,0xbf5a,0xbf5b, +0xbf5c,0xbf5d,0xbf5e,0xbf5f,0xbf60,0xbf61,0xbf62,0xbf63,0xbf64,0xbf65, +0xbf66,0xbf67,0xbf68,0xbf69,0xbf6a,0xbf6b,0xbf6c,0xbf6d,0xbf6e,0xbf6f, +0xbf70,0xbf71,0xbf72,0xbf73,0xbf74,0xbf75,0xbf76,0xbf77,0xbf78,0xbf79, +0xbf7a,0xbf7b,0xbf7c,0xbf7d,0xbf7e,0xbf80,0xf7e3,0xbf81,0xbf82,0xbf83, +0xbf84,0xbf85,0xb7b1,0xbf86,0xbf87,0xbf88,0xbf89,0xbf8a,0xf4ed,0xbf8b, +0xbf8c,0xbf8d,0xbf8e,0xbf8f,0xbf90,0xbf91,0xbf92,0xbf93,0xbf94,0xbf95, +0xbf96,0xbf97,0xbf98,0xbf99,0xbf9a,0xbf9b,0xbf9c,0xbf9d,0xbf9e,0xbf9f, +0xbfa0,0xc040,0xc041,0xc042,0xc043,0xc044,0xc045,0xc046,0xc047,0xc048, +0xc049,0xc04a,0xc04b,0xc04c,0xc04d,0xc04e,0xc04f,0xc050,0xc051,0xc052, +0xc053,0xc054,0xc055,0xc056,0xc057,0xc058,0xc059,0xc05a,0xc05b,0xc05c, +0xc05d,0xc05e,0xc05f,0xc060,0xc061,0xc062,0xc063,0xd7eb,0xc064,0xc065, +0xc066,0xc067,0xc068,0xc069,0xc06a,0xc06b,0xc06c,0xc06d,0xc06e,0xc06f, +0xc070,0xc071,0xc072,0xc073,0xc074,0xc075,0xc076,0xc077,0xc078,0xc079, +0xc07a,0xc07b,0xf4ee,0xc07c,0xc07d,0xc07e,0xe6f9,0xbec0,0xe6fa,0xbaec, +0xe6fb,0xcfcb,0xe6fc,0xd4bc,0xbcb6,0xe6fd,0xe6fe,0xbccd,0xc8d2,0xceb3, +0xe7a1,0xc080,0xb4bf,0xe7a2,0xc9b4,0xb8d9,0xc4c9,0xc081,0xd7dd,0xc2da, +0xb7d7,0xd6bd,0xcec6,0xb7c4,0xc082,0xc083,0xc5a6,0xe7a3,0xcfdf,0xe7a4, +0xe7a5,0xe7a6,0xc1b7,0xd7e9,0xc9f0,0xcfb8,0xd6af,0xd6d5,0xe7a7,0xb0ed, +0xe7a8,0xe7a9,0xc9dc,0xd2ef,0xbead,0xe7aa,0xb0f3,0xc8de,0xbde1,0xe7ab, +0xc8c6,0xc084,0xe7ac,0xbbe6,0xb8f8,0xd1a4,0xe7ad,0xc2e7,0xbef8,0xbdca, +0xcdb3,0xe7ae,0xe7af,0xbeee,0xd0e5,0xc085,0xcbe7,0xccd0,0xbccc,0xe7b0, +0xbca8,0xd0f7,0xe7b1,0xc086,0xd0f8,0xe7b2,0xe7b3,0xb4c2,0xe7b4,0xe7b5, +0xc9fe,0xceac,0xc3e0,0xe7b7,0xb1c1,0xb3f1,0xc087,0xe7b8,0xe7b9,0xd7db, +0xd5c0,0xe7ba,0xc2cc,0xd7ba,0xe7bb,0xe7bc,0xe7bd,0xbcea,0xc3e5,0xc0c2, +0xe7be,0xe7bf,0xbca9,0xc088,0xe7c0,0xe7c1,0xe7b6,0xb6d0,0xe7c2,0xc089, +0xe7c3,0xe7c4,0xbbba,0xb5de,0xc2c6,0xb1e0,0xe7c5,0xd4b5,0xe7c6,0xb8bf, +0xe7c8,0xe7c7,0xb7ec,0xc08a,0xe7c9,0xb2f8,0xe7ca,0xe7cb,0xe7cc,0xe7cd, +0xe7ce,0xe7cf,0xe7d0,0xd3a7,0xcbf5,0xe7d1,0xe7d2,0xe7d3,0xe7d4,0xc9c9, +0xe7d5,0xe7d6,0xe7d7,0xe7d8,0xe7d9,0xbdc9,0xe7da,0xf3be,0xc08b,0xb8d7, +0xc08c,0xc8b1,0xc08d,0xc08e,0xc08f,0xc090,0xc091,0xc092,0xc093,0xf3bf, +0xc094,0xf3c0,0xf3c1,0xc095,0xc096,0xc097,0xc098,0xc099,0xc09a,0xc09b, +0xc09c,0xc09d,0xc09e,0xb9de,0xcdf8,0xc09f,0xc0a0,0xd8e8,0xbab1,0xc140, +0xc2de,0xeeb7,0xc141,0xb7a3,0xc142,0xc143,0xc144,0xc145,0xeeb9,0xc146, +0xeeb8,0xb0d5,0xc147,0xc148,0xc149,0xc14a,0xc14b,0xeebb,0xd5d6,0xd7ef, +0xc14c,0xc14d,0xc14e,0xd6c3,0xc14f,0xc150,0xeebd,0xcaf0,0xc151,0xeebc, +0xc152,0xc153,0xc154,0xc155,0xeebe,0xc156,0xc157,0xc158,0xc159,0xeec0, +0xc15a,0xc15b,0xeebf,0xc15c,0xc15d,0xc15e,0xc15f,0xc160,0xc161,0xc162, +0xc163,0xd1f2,0xc164,0xc7bc,0xc165,0xc3c0,0xc166,0xc167,0xc168,0xc169, +0xc16a,0xb8e1,0xc16b,0xc16c,0xc16d,0xc16e,0xc16f,0xc1e7,0xc170,0xc171, +0xf4c6,0xd0df,0xf4c7,0xc172,0xcfdb,0xc173,0xc174,0xc8ba,0xc175,0xc176, +0xf4c8,0xc177,0xc178,0xc179,0xc17a,0xc17b,0xc17c,0xc17d,0xf4c9,0xf4ca, +0xc17e,0xf4cb,0xc180,0xc181,0xc182,0xc183,0xc184,0xd9fa,0xb8fe,0xc185, +0xc186,0xe5f1,0xd3f0,0xc187,0xf4e0,0xc188,0xcecc,0xc189,0xc18a,0xc18b, +0xb3e1,0xc18c,0xc18d,0xc18e,0xc18f,0xf1b4,0xc190,0xd2ee,0xc191,0xf4e1, +0xc192,0xc193,0xc194,0xc195,0xc196,0xcfe8,0xf4e2,0xc197,0xc198,0xc7cc, +0xc199,0xc19a,0xc19b,0xc19c,0xc19d,0xc19e,0xb5d4,0xb4e4,0xf4e4,0xc19f, +0xc1a0,0xc240,0xf4e3,0xf4e5,0xc241,0xc242,0xf4e6,0xc243,0xc244,0xc245, +0xc246,0xf4e7,0xc247,0xbab2,0xb0bf,0xc248,0xf4e8,0xc249,0xc24a,0xc24b, +0xc24c,0xc24d,0xc24e,0xc24f,0xb7ad,0xd2ed,0xc250,0xc251,0xc252,0xd2ab, +0xc0cf,0xc253,0xbfbc,0xeba3,0xd5df,0xeac8,0xc254,0xc255,0xc256,0xc257, +0xf1f3,0xb6f8,0xcba3,0xc258,0xc259,0xc4cd,0xc25a,0xf1e7,0xc25b,0xf1e8, +0xb8fb,0xf1e9,0xbac4,0xd4c5,0xb0d2,0xc25c,0xc25d,0xf1ea,0xc25e,0xc25f, +0xc260,0xf1eb,0xc261,0xf1ec,0xc262,0xc263,0xf1ed,0xf1ee,0xf1ef,0xf1f1, +0xf1f0,0xc5d5,0xc264,0xc265,0xc266,0xc267,0xc268,0xc269,0xf1f2,0xc26a, +0xb6fa,0xc26b,0xf1f4,0xd2ae,0xdec7,0xcbca,0xc26c,0xc26d,0xb3dc,0xc26e, +0xb5a2,0xc26f,0xb9a2,0xc270,0xc271,0xc4f4,0xf1f5,0xc272,0xc273,0xf1f6, +0xc274,0xc275,0xc276,0xc1c4,0xc1fb,0xd6b0,0xf1f7,0xc277,0xc278,0xc279, +0xc27a,0xf1f8,0xc27b,0xc1aa,0xc27c,0xc27d,0xc27e,0xc6b8,0xc280,0xbedb, +0xc281,0xc282,0xc283,0xc284,0xc285,0xc286,0xc287,0xc288,0xc289,0xc28a, +0xc28b,0xc28c,0xc28d,0xc28e,0xf1f9,0xb4cf,0xc28f,0xc290,0xc291,0xc292, +0xc293,0xc294,0xf1fa,0xc295,0xc296,0xc297,0xc298,0xc299,0xc29a,0xc29b, +0xc29c,0xc29d,0xc29e,0xc29f,0xc2a0,0xc340,0xedb2,0xedb1,0xc341,0xc342, +0xcbe0,0xd2de,0xc343,0xcbc1,0xd5d8,0xc344,0xc8e2,0xc345,0xc0df,0xbca1, +0xc346,0xc347,0xc348,0xc349,0xc34a,0xc34b,0xebc1,0xc34c,0xc34d,0xd0a4, +0xc34e,0xd6e2,0xc34f,0xb6c7,0xb8d8,0xebc0,0xb8ce,0xc350,0xebbf,0xb3a6, +0xb9c9,0xd6ab,0xc351,0xb7f4,0xb7ca,0xc352,0xc353,0xc354,0xbce7,0xb7be, +0xebc6,0xc355,0xebc7,0xb0b9,0xbfcf,0xc356,0xebc5,0xd3fd,0xc357,0xebc8, +0xc358,0xc359,0xebc9,0xc35a,0xc35b,0xb7ce,0xc35c,0xebc2,0xebc4,0xc9f6, +0xd6d7,0xd5cd,0xd0b2,0xebcf,0xceb8,0xebd0,0xc35d,0xb5a8,0xc35e,0xc35f, +0xc360,0xc361,0xc362,0xb1b3,0xebd2,0xcca5,0xc363,0xc364,0xc365,0xc366, +0xc367,0xc368,0xc369,0xc5d6,0xebd3,0xc36a,0xebd1,0xc5df,0xebce,0xcaa4, +0xebd5,0xb0fb,0xc36b,0xc36c,0xbafa,0xc36d,0xc36e,0xd8b7,0xf1e3,0xc36f, +0xebca,0xebcb,0xebcc,0xebcd,0xebd6,0xe6c0,0xebd9,0xc370,0xbfe8,0xd2c8, +0xebd7,0xebdc,0xb8ec,0xebd8,0xc371,0xbdba,0xc372,0xd0d8,0xc373,0xb0b7, +0xc374,0xebdd,0xc4dc,0xc375,0xc376,0xc377,0xc378,0xd6ac,0xc379,0xc37a, +0xc37b,0xb4e0,0xc37c,0xc37d,0xc2f6,0xbcb9,0xc37e,0xc380,0xebda,0xebdb, +0xd4e0,0xc6ea,0xc4d4,0xebdf,0xc5a7,0xd9f5,0xc381,0xb2b1,0xc382,0xebe4, +0xc383,0xbdc5,0xc384,0xc385,0xc386,0xebe2,0xc387,0xc388,0xc389,0xc38a, +0xc38b,0xc38c,0xc38d,0xc38e,0xc38f,0xc390,0xc391,0xc392,0xc393,0xebe3, +0xc394,0xc395,0xb8ac,0xc396,0xcdd1,0xebe5,0xc397,0xc398,0xc399,0xebe1, +0xc39a,0xc1b3,0xc39b,0xc39c,0xc39d,0xc39e,0xc39f,0xc6a2,0xc3a0,0xc440, +0xc441,0xc442,0xc443,0xc444,0xc445,0xccf3,0xc446,0xebe6,0xc447,0xc0b0, +0xd2b8,0xebe7,0xc448,0xc449,0xc44a,0xb8af,0xb8ad,0xc44b,0xebe8,0xc7bb, +0xcdf3,0xc44c,0xc44d,0xc44e,0xebea,0xebeb,0xc44f,0xc450,0xc451,0xc452, +0xc453,0xebed,0xc454,0xc455,0xc456,0xc457,0xd0c8,0xc458,0xebf2,0xc459, +0xebee,0xc45a,0xc45b,0xc45c,0xebf1,0xc8f9,0xc45d,0xd1fc,0xebec,0xc45e, +0xc45f,0xebe9,0xc460,0xc461,0xc462,0xc463,0xb8b9,0xcfd9,0xc4e5,0xebef, +0xebf0,0xccda,0xcdc8,0xb0f2,0xc464,0xebf6,0xc465,0xc466,0xc467,0xc468, +0xc469,0xebf5,0xc46a,0xb2b2,0xc46b,0xc46c,0xc46d,0xc46e,0xb8e0,0xc46f, +0xebf7,0xc470,0xc471,0xc472,0xc473,0xc474,0xc475,0xb1ec,0xc476,0xc477, +0xccc5,0xc4a4,0xcfa5,0xc478,0xc479,0xc47a,0xc47b,0xc47c,0xebf9,0xc47d, +0xc47e,0xeca2,0xc480,0xc5f2,0xc481,0xebfa,0xc482,0xc483,0xc484,0xc485, +0xc486,0xc487,0xc488,0xc489,0xc9c5,0xc48a,0xc48b,0xc48c,0xc48d,0xc48e, +0xc48f,0xe2df,0xebfe,0xc490,0xc491,0xc492,0xc493,0xcdce,0xeca1,0xb1db, +0xd3b7,0xc494,0xc495,0xd2dc,0xc496,0xc497,0xc498,0xebfd,0xc499,0xebfb, +0xc49a,0xc49b,0xc49c,0xc49d,0xc49e,0xc49f,0xc4a0,0xc540,0xc541,0xc542, +0xc543,0xc544,0xc545,0xc546,0xc547,0xc548,0xc549,0xc54a,0xc54b,0xc54c, +0xc54d,0xc54e,0xb3bc,0xc54f,0xc550,0xc551,0xeab0,0xc552,0xc553,0xd7d4, +0xc554,0xf4ab,0xb3f4,0xc555,0xc556,0xc557,0xc558,0xc559,0xd6c1,0xd6c2, +0xc55a,0xc55b,0xc55c,0xc55d,0xc55e,0xc55f,0xd5e9,0xbeca,0xc560,0xf4a7, +0xc561,0xd2a8,0xf4a8,0xf4a9,0xc562,0xf4aa,0xbecb,0xd3df,0xc563,0xc564, +0xc565,0xc566,0xc567,0xc9e0,0xc9e1,0xc568,0xc569,0xf3c2,0xc56a,0xcae6, +0xc56b,0xccf2,0xc56c,0xc56d,0xc56e,0xc56f,0xc570,0xc571,0xe2b6,0xcbb4, +0xc572,0xcee8,0xd6db,0xc573,0xf4ad,0xf4ae,0xf4af,0xc574,0xc575,0xc576, +0xc577,0xf4b2,0xc578,0xbabd,0xf4b3,0xb0e3,0xf4b0,0xc579,0xf4b1,0xbda2, +0xb2d5,0xc57a,0xf4b6,0xf4b7,0xb6e6,0xb2b0,0xcfcf,0xf4b4,0xb4ac,0xc57b, +0xf4b5,0xc57c,0xc57d,0xf4b8,0xc57e,0xc580,0xc581,0xc582,0xc583,0xf4b9, +0xc584,0xc585,0xcda7,0xc586,0xf4ba,0xc587,0xf4bb,0xc588,0xc589,0xc58a, +0xf4bc,0xc58b,0xc58c,0xc58d,0xc58e,0xc58f,0xc590,0xc591,0xc592,0xcbd2, +0xc593,0xf4bd,0xc594,0xc595,0xc596,0xc597,0xf4be,0xc598,0xc599,0xc59a, +0xc59b,0xc59c,0xc59d,0xc59e,0xc59f,0xf4bf,0xc5a0,0xc640,0xc641,0xc642, +0xc643,0xf4de,0xc1bc,0xbce8,0xc644,0xc9ab,0xd1de,0xe5f5,0xc645,0xc646, +0xc647,0xc648,0xdcb3,0xd2d5,0xc649,0xc64a,0xdcb4,0xb0ac,0xdcb5,0xc64b, +0xc64c,0xbdda,0xc64d,0xdcb9,0xc64e,0xc64f,0xc650,0xd8c2,0xc651,0xdcb7, +0xd3f3,0xc652,0xc9d6,0xdcba,0xdcb6,0xc653,0xdcbb,0xc3a2,0xc654,0xc655, +0xc656,0xc657,0xdcbc,0xdcc5,0xdcbd,0xc658,0xc659,0xcedf,0xd6a5,0xc65a, +0xdccf,0xc65b,0xdccd,0xc65c,0xc65d,0xdcd2,0xbde6,0xc2ab,0xc65e,0xdcb8, +0xdccb,0xdcce,0xdcbe,0xb7d2,0xb0c5,0xdcc7,0xd0be,0xdcc1,0xbba8,0xc65f, +0xb7bc,0xdccc,0xc660,0xc661,0xdcc6,0xdcbf,0xc7db,0xc662,0xc663,0xc664, +0xd1bf,0xdcc0,0xc665,0xc666,0xdcca,0xc667,0xc668,0xdcd0,0xc669,0xc66a, +0xcead,0xdcc2,0xc66b,0xdcc3,0xdcc8,0xdcc9,0xb2d4,0xdcd1,0xcbd5,0xc66c, +0xd4b7,0xdcdb,0xdcdf,0xcca6,0xdce6,0xc66d,0xc3e7,0xdcdc,0xc66e,0xc66f, +0xbfc1,0xdcd9,0xc670,0xb0fa,0xb9b6,0xdce5,0xdcd3,0xc671,0xdcc4,0xdcd6, +0xc8f4,0xbfe0,0xc672,0xc673,0xc674,0xc675,0xc9bb,0xc676,0xc677,0xc678, +0xb1bd,0xc679,0xd3a2,0xc67a,0xc67b,0xdcda,0xc67c,0xc67d,0xdcd5,0xc67e, +0xc6bb,0xc680,0xdcde,0xc681,0xc682,0xc683,0xc684,0xc685,0xd7c2,0xc3af, +0xb7b6,0xc7d1,0xc3a9,0xdce2,0xdcd8,0xdceb,0xdcd4,0xc686,0xc687,0xdcdd, +0xc688,0xbea5,0xdcd7,0xc689,0xdce0,0xc68a,0xc68b,0xdce3,0xdce4,0xc68c, +0xdcf8,0xc68d,0xc68e,0xdce1,0xdda2,0xdce7,0xc68f,0xc690,0xc691,0xc692, +0xc693,0xc694,0xc695,0xc696,0xc697,0xc698,0xbceb,0xb4c4,0xc699,0xc69a, +0xc3a3,0xb2e7,0xdcfa,0xc69b,0xdcf2,0xc69c,0xdcef,0xc69d,0xdcfc,0xdcee, +0xd2f0,0xb2e8,0xc69e,0xc8d7,0xc8e3,0xdcfb,0xc69f,0xdced,0xc6a0,0xc740, +0xc741,0xdcf7,0xc742,0xc743,0xdcf5,0xc744,0xc745,0xbea3,0xdcf4,0xc746, +0xb2dd,0xc747,0xc748,0xc749,0xc74a,0xc74b,0xdcf3,0xbcf6,0xdce8,0xbbc4, +0xc74c,0xc0f3,0xc74d,0xc74e,0xc74f,0xc750,0xc751,0xbcd4,0xdce9,0xdcea, +0xc752,0xdcf1,0xdcf6,0xdcf9,0xb5b4,0xc753,0xc8d9,0xbbe7,0xdcfe,0xdcfd, +0xd3ab,0xdda1,0xdda3,0xdda5,0xd2f1,0xdda4,0xdda6,0xdda7,0xd2a9,0xc754, +0xc755,0xc756,0xc757,0xc758,0xc759,0xc75a,0xbac9,0xdda9,0xc75b,0xc75c, +0xddb6,0xddb1,0xddb4,0xc75d,0xc75e,0xc75f,0xc760,0xc761,0xc762,0xc763, +0xddb0,0xc6ce,0xc764,0xc765,0xc0f2,0xc766,0xc767,0xc768,0xc769,0xc9af, +0xc76a,0xc76b,0xc76c,0xdcec,0xddae,0xc76d,0xc76e,0xc76f,0xc770,0xddb7, +0xc771,0xc772,0xdcf0,0xddaf,0xc773,0xddb8,0xc774,0xddac,0xc775,0xc776, +0xc777,0xc778,0xc779,0xc77a,0xc77b,0xddb9,0xddb3,0xddad,0xc4aa,0xc77c, +0xc77d,0xc77e,0xc780,0xdda8,0xc0b3,0xc1ab,0xddaa,0xddab,0xc781,0xddb2, +0xbbf1,0xddb5,0xd3a8,0xddba,0xc782,0xddbb,0xc3a7,0xc783,0xc784,0xddd2, +0xddbc,0xc785,0xc786,0xc787,0xddd1,0xc788,0xb9bd,0xc789,0xc78a,0xbed5, +0xc78b,0xbefa,0xc78c,0xc78d,0xbaca,0xc78e,0xc78f,0xc790,0xc791,0xddca, +0xc792,0xddc5,0xc793,0xddbf,0xc794,0xc795,0xc796,0xb2cb,0xddc3,0xc797, +0xddcb,0xb2a4,0xddd5,0xc798,0xc799,0xc79a,0xddbe,0xc79b,0xc79c,0xc79d, +0xc6d0,0xddd0,0xc79e,0xc79f,0xc7a0,0xc840,0xc841,0xddd4,0xc1e2,0xb7c6, +0xc842,0xc843,0xc844,0xc845,0xc846,0xddce,0xddcf,0xc847,0xc848,0xc849, +0xddc4,0xc84a,0xc84b,0xc84c,0xddbd,0xc84d,0xddcd,0xccd1,0xc84e,0xddc9, +0xc84f,0xc850,0xc851,0xc852,0xddc2,0xc3c8,0xc6bc,0xceae,0xddcc,0xc853, +0xddc8,0xc854,0xc855,0xc856,0xc857,0xc858,0xc859,0xddc1,0xc85a,0xc85b, +0xc85c,0xddc6,0xc2dc,0xc85d,0xc85e,0xc85f,0xc860,0xc861,0xc862,0xd3a9, +0xd3aa,0xddd3,0xcff4,0xc8f8,0xc863,0xc864,0xc865,0xc866,0xc867,0xc868, +0xc869,0xc86a,0xdde6,0xc86b,0xc86c,0xc86d,0xc86e,0xc86f,0xc870,0xddc7, +0xc871,0xc872,0xc873,0xdde0,0xc2e4,0xc874,0xc875,0xc876,0xc877,0xc878, +0xc879,0xc87a,0xc87b,0xdde1,0xc87c,0xc87d,0xc87e,0xc880,0xc881,0xc882, +0xc883,0xc884,0xc885,0xc886,0xddd7,0xc887,0xc888,0xc889,0xc88a,0xc88b, +0xd6f8,0xc88c,0xddd9,0xddd8,0xb8f0,0xddd6,0xc88d,0xc88e,0xc88f,0xc890, +0xc6cf,0xc891,0xb6ad,0xc892,0xc893,0xc894,0xc895,0xc896,0xdde2,0xc897, +0xbaf9,0xd4e1,0xdde7,0xc898,0xc899,0xc89a,0xb4d0,0xc89b,0xddda,0xc89c, +0xbffb,0xdde3,0xc89d,0xdddf,0xc89e,0xdddd,0xc89f,0xc8a0,0xc940,0xc941, +0xc942,0xc943,0xc944,0xb5d9,0xc945,0xc946,0xc947,0xc948,0xdddb,0xdddc, +0xddde,0xc949,0xbdaf,0xdde4,0xc94a,0xdde5,0xc94b,0xc94c,0xc94d,0xc94e, +0xc94f,0xc950,0xc951,0xc952,0xddf5,0xc953,0xc3c9,0xc954,0xc955,0xcbe2, +0xc956,0xc957,0xc958,0xc959,0xddf2,0xc95a,0xc95b,0xc95c,0xc95d,0xc95e, +0xc95f,0xc960,0xc961,0xc962,0xc963,0xc964,0xc965,0xc966,0xd8e1,0xc967, +0xc968,0xc6d1,0xc969,0xddf4,0xc96a,0xc96b,0xc96c,0xd5f4,0xddf3,0xddf0, +0xc96d,0xc96e,0xddec,0xc96f,0xddef,0xc970,0xdde8,0xc971,0xc972,0xd0ee, +0xc973,0xc974,0xc975,0xc976,0xc8d8,0xddee,0xc977,0xc978,0xdde9,0xc979, +0xc97a,0xddea,0xcbf2,0xc97b,0xdded,0xc97c,0xc97d,0xb1cd,0xc97e,0xc980, +0xc981,0xc982,0xc983,0xc984,0xc0b6,0xc985,0xbcbb,0xddf1,0xc986,0xc987, +0xddf7,0xc988,0xddf6,0xddeb,0xc989,0xc98a,0xc98b,0xc98c,0xc98d,0xc5ee, +0xc98e,0xc98f,0xc990,0xddfb,0xc991,0xc992,0xc993,0xc994,0xc995,0xc996, +0xc997,0xc998,0xc999,0xc99a,0xc99b,0xdea4,0xc99c,0xc99d,0xdea3,0xc99e, +0xc99f,0xc9a0,0xca40,0xca41,0xca42,0xca43,0xca44,0xca45,0xca46,0xca47, +0xca48,0xddf8,0xca49,0xca4a,0xca4b,0xca4c,0xc3ef,0xca4d,0xc2fb,0xca4e, +0xca4f,0xca50,0xd5e1,0xca51,0xca52,0xceb5,0xca53,0xca54,0xca55,0xca56, +0xddfd,0xca57,0xb2cc,0xca58,0xca59,0xca5a,0xca5b,0xca5c,0xca5d,0xca5e, +0xca5f,0xca60,0xc4e8,0xcadf,0xca61,0xca62,0xca63,0xca64,0xca65,0xca66, +0xca67,0xca68,0xca69,0xca6a,0xc7be,0xddfa,0xddfc,0xddfe,0xdea2,0xb0aa, +0xb1ce,0xca6b,0xca6c,0xca6d,0xca6e,0xca6f,0xdeac,0xca70,0xca71,0xca72, +0xca73,0xdea6,0xbdb6,0xc8ef,0xca74,0xca75,0xca76,0xca77,0xca78,0xca79, +0xca7a,0xca7b,0xca7c,0xca7d,0xca7e,0xdea1,0xca80,0xca81,0xdea5,0xca82, +0xca83,0xca84,0xca85,0xdea9,0xca86,0xca87,0xca88,0xca89,0xca8a,0xdea8, +0xca8b,0xca8c,0xca8d,0xdea7,0xca8e,0xca8f,0xca90,0xca91,0xca92,0xca93, +0xca94,0xca95,0xca96,0xdead,0xca97,0xd4cc,0xca98,0xca99,0xca9a,0xca9b, +0xdeb3,0xdeaa,0xdeae,0xca9c,0xca9d,0xc0d9,0xca9e,0xca9f,0xcaa0,0xcb40, +0xcb41,0xb1a1,0xdeb6,0xcb42,0xdeb1,0xcb43,0xcb44,0xcb45,0xcb46,0xcb47, +0xcb48,0xcb49,0xdeb2,0xcb4a,0xcb4b,0xcb4c,0xcb4d,0xcb4e,0xcb4f,0xcb50, +0xcb51,0xcb52,0xcb53,0xcb54,0xd1a6,0xdeb5,0xcb55,0xcb56,0xcb57,0xcb58, +0xcb59,0xcb5a,0xcb5b,0xdeaf,0xcb5c,0xcb5d,0xcb5e,0xdeb0,0xcb5f,0xd0bd, +0xcb60,0xcb61,0xcb62,0xdeb4,0xcaed,0xdeb9,0xcb63,0xcb64,0xcb65,0xcb66, +0xcb67,0xcb68,0xdeb8,0xcb69,0xdeb7,0xcb6a,0xcb6b,0xcb6c,0xcb6d,0xcb6e, +0xcb6f,0xcb70,0xdebb,0xcb71,0xcb72,0xcb73,0xcb74,0xcb75,0xcb76,0xcb77, +0xbde5,0xcb78,0xcb79,0xcb7a,0xcb7b,0xcb7c,0xb2d8,0xc3ea,0xcb7d,0xcb7e, +0xdeba,0xcb80,0xc5ba,0xcb81,0xcb82,0xcb83,0xcb84,0xcb85,0xcb86,0xdebc, +0xcb87,0xcb88,0xcb89,0xcb8a,0xcb8b,0xcb8c,0xcb8d,0xccd9,0xcb8e,0xcb8f, +0xcb90,0xcb91,0xb7aa,0xcb92,0xcb93,0xcb94,0xcb95,0xcb96,0xcb97,0xcb98, +0xcb99,0xcb9a,0xcb9b,0xcb9c,0xcb9d,0xcb9e,0xcb9f,0xcba0,0xcc40,0xcc41, +0xd4e5,0xcc42,0xcc43,0xcc44,0xdebd,0xcc45,0xcc46,0xcc47,0xcc48,0xcc49, +0xdebf,0xcc4a,0xcc4b,0xcc4c,0xcc4d,0xcc4e,0xcc4f,0xcc50,0xcc51,0xcc52, +0xcc53,0xcc54,0xc4a2,0xcc55,0xcc56,0xcc57,0xcc58,0xdec1,0xcc59,0xcc5a, +0xcc5b,0xcc5c,0xcc5d,0xcc5e,0xcc5f,0xcc60,0xcc61,0xcc62,0xcc63,0xcc64, +0xcc65,0xcc66,0xcc67,0xcc68,0xdebe,0xcc69,0xdec0,0xcc6a,0xcc6b,0xcc6c, +0xcc6d,0xcc6e,0xcc6f,0xcc70,0xcc71,0xcc72,0xcc73,0xcc74,0xcc75,0xcc76, +0xcc77,0xd5ba,0xcc78,0xcc79,0xcc7a,0xdec2,0xcc7b,0xcc7c,0xcc7d,0xcc7e, +0xcc80,0xcc81,0xcc82,0xcc83,0xcc84,0xcc85,0xcc86,0xcc87,0xcc88,0xcc89, +0xcc8a,0xcc8b,0xf2ae,0xbba2,0xc2b2,0xc5b0,0xc2c7,0xcc8c,0xcc8d,0xf2af, +0xcc8e,0xcc8f,0xcc90,0xcc91,0xcc92,0xd0e9,0xcc93,0xcc94,0xcc95,0xd3dd, +0xcc96,0xcc97,0xcc98,0xebbd,0xcc99,0xcc9a,0xcc9b,0xcc9c,0xcc9d,0xcc9e, +0xcc9f,0xcca0,0xb3e6,0xf2b0,0xcd40,0xf2b1,0xcd41,0xcd42,0xcaad,0xcd43, +0xcd44,0xcd45,0xcd46,0xcd47,0xcd48,0xcd49,0xbae7,0xf2b3,0xf2b5,0xf2b4, +0xcbe4,0xcfba,0xf2b2,0xcab4,0xd2cf,0xc2ec,0xcd4a,0xcd4b,0xcd4c,0xcd4d, +0xcd4e,0xcd4f,0xcd50,0xcec3,0xf2b8,0xb0f6,0xf2b7,0xcd51,0xcd52,0xcd53, +0xcd54,0xcd55,0xf2be,0xcd56,0xb2cf,0xcd57,0xcd58,0xcd59,0xcd5a,0xcd5b, +0xcd5c,0xd1c1,0xf2ba,0xcd5d,0xcd5e,0xcd5f,0xcd60,0xcd61,0xf2bc,0xd4e9, +0xcd62,0xcd63,0xf2bb,0xf2b6,0xf2bf,0xf2bd,0xcd64,0xf2b9,0xcd65,0xcd66, +0xf2c7,0xf2c4,0xf2c6,0xcd67,0xcd68,0xf2ca,0xf2c2,0xf2c0,0xcd69,0xcd6a, +0xcd6b,0xf2c5,0xcd6c,0xcd6d,0xcd6e,0xcd6f,0xcd70,0xd6fb,0xcd71,0xcd72, +0xcd73,0xf2c1,0xcd74,0xc7f9,0xc9df,0xcd75,0xf2c8,0xb9c6,0xb5b0,0xcd76, +0xcd77,0xf2c3,0xf2c9,0xf2d0,0xf2d6,0xcd78,0xcd79,0xbbd7,0xcd7a,0xcd7b, +0xcd7c,0xf2d5,0xcddc,0xcd7d,0xd6eb,0xcd7e,0xcd80,0xf2d2,0xf2d4,0xcd81, +0xcd82,0xcd83,0xcd84,0xb8f2,0xcd85,0xcd86,0xcd87,0xcd88,0xf2cb,0xcd89, +0xcd8a,0xcd8b,0xf2ce,0xc2f9,0xcd8c,0xd5dd,0xf2cc,0xf2cd,0xf2cf,0xf2d3, +0xcd8d,0xcd8e,0xcd8f,0xf2d9,0xd3bc,0xcd90,0xcd91,0xcd92,0xcd93,0xb6ea, +0xcd94,0xcaf1,0xcd95,0xb7e4,0xf2d7,0xcd96,0xcd97,0xcd98,0xf2d8,0xf2da, +0xf2dd,0xf2db,0xcd99,0xcd9a,0xf2dc,0xcd9b,0xcd9c,0xcd9d,0xcd9e,0xd1d1, +0xf2d1,0xcd9f,0xcdc9,0xcda0,0xcecf,0xd6a9,0xce40,0xf2e3,0xce41,0xc3db, +0xce42,0xf2e0,0xce43,0xce44,0xc0af,0xf2ec,0xf2de,0xce45,0xf2e1,0xce46, +0xce47,0xce48,0xf2e8,0xce49,0xce4a,0xce4b,0xce4c,0xf2e2,0xce4d,0xce4e, +0xf2e7,0xce4f,0xce50,0xf2e6,0xce51,0xce52,0xf2e9,0xce53,0xce54,0xce55, +0xf2df,0xce56,0xce57,0xf2e4,0xf2ea,0xce58,0xce59,0xce5a,0xce5b,0xce5c, +0xce5d,0xce5e,0xd3ac,0xf2e5,0xb2f5,0xce5f,0xce60,0xf2f2,0xce61,0xd0ab, +0xce62,0xce63,0xce64,0xce65,0xf2f5,0xce66,0xce67,0xce68,0xbbc8,0xce69, +0xf2f9,0xce6a,0xce6b,0xce6c,0xce6d,0xce6e,0xce6f,0xf2f0,0xce70,0xce71, +0xf2f6,0xf2f8,0xf2fa,0xce72,0xce73,0xce74,0xce75,0xce76,0xce77,0xce78, +0xce79,0xf2f3,0xce7a,0xf2f1,0xce7b,0xce7c,0xce7d,0xbafb,0xce7e,0xb5fb, +0xce80,0xce81,0xce82,0xce83,0xf2ef,0xf2f7,0xf2ed,0xf2ee,0xce84,0xce85, +0xce86,0xf2eb,0xf3a6,0xce87,0xf3a3,0xce88,0xce89,0xf3a2,0xce8a,0xce8b, +0xf2f4,0xce8c,0xc8da,0xce8d,0xce8e,0xce8f,0xce90,0xce91,0xf2fb,0xce92, +0xce93,0xce94,0xf3a5,0xce95,0xce96,0xce97,0xce98,0xce99,0xce9a,0xce9b, +0xc3f8,0xce9c,0xce9d,0xce9e,0xce9f,0xcea0,0xcf40,0xcf41,0xcf42,0xf2fd, +0xcf43,0xcf44,0xf3a7,0xf3a9,0xf3a4,0xcf45,0xf2fc,0xcf46,0xcf47,0xcf48, +0xf3ab,0xcf49,0xf3aa,0xcf4a,0xcf4b,0xcf4c,0xcf4d,0xc2dd,0xcf4e,0xcf4f, +0xf3ae,0xcf50,0xcf51,0xf3b0,0xcf52,0xcf53,0xcf54,0xcf55,0xcf56,0xf3a1, +0xcf57,0xcf58,0xcf59,0xf3b1,0xf3ac,0xcf5a,0xcf5b,0xcf5c,0xcf5d,0xcf5e, +0xf3af,0xf2fe,0xf3ad,0xcf5f,0xcf60,0xcf61,0xcf62,0xcf63,0xcf64,0xcf65, +0xf3b2,0xcf66,0xcf67,0xcf68,0xcf69,0xf3b4,0xcf6a,0xcf6b,0xcf6c,0xcf6d, +0xf3a8,0xcf6e,0xcf6f,0xcf70,0xcf71,0xf3b3,0xcf72,0xcf73,0xcf74,0xf3b5, +0xcf75,0xcf76,0xcf77,0xcf78,0xcf79,0xcf7a,0xcf7b,0xcf7c,0xcf7d,0xcf7e, +0xd0b7,0xcf80,0xcf81,0xcf82,0xcf83,0xf3b8,0xcf84,0xcf85,0xcf86,0xcf87, +0xd9f9,0xcf88,0xcf89,0xcf8a,0xcf8b,0xcf8c,0xcf8d,0xf3b9,0xcf8e,0xcf8f, +0xcf90,0xcf91,0xcf92,0xcf93,0xcf94,0xcf95,0xf3b7,0xcf96,0xc8e4,0xf3b6, +0xcf97,0xcf98,0xcf99,0xcf9a,0xf3ba,0xcf9b,0xcf9c,0xcf9d,0xcf9e,0xcf9f, +0xf3bb,0xb4c0,0xcfa0,0xd040,0xd041,0xd042,0xd043,0xd044,0xd045,0xd046, +0xd047,0xd048,0xd049,0xd04a,0xd04b,0xd04c,0xd04d,0xeec3,0xd04e,0xd04f, +0xd050,0xd051,0xd052,0xd053,0xf3bc,0xd054,0xd055,0xf3bd,0xd056,0xd057, +0xd058,0xd1aa,0xd059,0xd05a,0xd05b,0xf4ac,0xd0c6,0xd05c,0xd05d,0xd05e, +0xd05f,0xd060,0xd061,0xd0d0,0xd1dc,0xd062,0xd063,0xd064,0xd065,0xd066, +0xd067,0xcfce,0xd068,0xd069,0xbdd6,0xd06a,0xd1c3,0xd06b,0xd06c,0xd06d, +0xd06e,0xd06f,0xd070,0xd071,0xbae2,0xe1e9,0xd2c2,0xf1c2,0xb2b9,0xd072, +0xd073,0xb1ed,0xf1c3,0xd074,0xc9c0,0xb3c4,0xd075,0xd9f2,0xd076,0xcba5, +0xd077,0xf1c4,0xd078,0xd079,0xd07a,0xd07b,0xd6d4,0xd07c,0xd07d,0xd07e, +0xd080,0xd081,0xf1c5,0xf4c0,0xf1c6,0xd082,0xd4ac,0xf1c7,0xd083,0xb0c0, +0xf4c1,0xd084,0xd085,0xf4c2,0xd086,0xd087,0xb4fc,0xd088,0xc5db,0xd089, +0xd08a,0xd08b,0xd08c,0xccbb,0xd08d,0xd08e,0xd08f,0xd0e4,0xd090,0xd091, +0xd092,0xd093,0xd094,0xcde0,0xd095,0xd096,0xd097,0xd098,0xd099,0xf1c8, +0xd09a,0xd9f3,0xd09b,0xd09c,0xd09d,0xd09e,0xd09f,0xd0a0,0xb1bb,0xd140, +0xcfae,0xd141,0xd142,0xd143,0xb8a4,0xd144,0xd145,0xd146,0xd147,0xd148, +0xf1ca,0xd149,0xd14a,0xd14b,0xd14c,0xf1cb,0xd14d,0xd14e,0xd14f,0xd150, +0xb2c3,0xc1d1,0xd151,0xd152,0xd7b0,0xf1c9,0xd153,0xd154,0xf1cc,0xd155, +0xd156,0xd157,0xd158,0xf1ce,0xd159,0xd15a,0xd15b,0xd9f6,0xd15c,0xd2e1, +0xd4a3,0xd15d,0xd15e,0xf4c3,0xc8b9,0xd15f,0xd160,0xd161,0xd162,0xd163, +0xf4c4,0xd164,0xd165,0xf1cd,0xf1cf,0xbfe3,0xf1d0,0xd166,0xd167,0xf1d4, +0xd168,0xd169,0xd16a,0xd16b,0xd16c,0xd16d,0xd16e,0xf1d6,0xf1d1,0xd16f, +0xc9d1,0xc5e1,0xd170,0xd171,0xd172,0xc2e3,0xb9fc,0xd173,0xd174,0xf1d3, +0xd175,0xf1d5,0xd176,0xd177,0xd178,0xb9d3,0xd179,0xd17a,0xd17b,0xd17c, +0xd17d,0xd17e,0xd180,0xf1db,0xd181,0xd182,0xd183,0xd184,0xd185,0xbad6, +0xd186,0xb0fd,0xf1d9,0xd187,0xd188,0xd189,0xd18a,0xd18b,0xf1d8,0xf1d2, +0xf1da,0xd18c,0xd18d,0xd18e,0xd18f,0xd190,0xf1d7,0xd191,0xd192,0xd193, +0xc8ec,0xd194,0xd195,0xd196,0xd197,0xcdca,0xf1dd,0xd198,0xd199,0xd19a, +0xd19b,0xe5bd,0xd19c,0xd19d,0xd19e,0xf1dc,0xd19f,0xf1de,0xd1a0,0xd240, +0xd241,0xd242,0xd243,0xd244,0xd245,0xd246,0xd247,0xd248,0xf1df,0xd249, +0xd24a,0xcfe5,0xd24b,0xd24c,0xd24d,0xd24e,0xd24f,0xd250,0xd251,0xd252, +0xd253,0xd254,0xd255,0xd256,0xd257,0xd258,0xd259,0xd25a,0xd25b,0xd25c, +0xd25d,0xd25e,0xd25f,0xd260,0xd261,0xd262,0xd263,0xf4c5,0xbdf3,0xd264, +0xd265,0xd266,0xd267,0xd268,0xd269,0xf1e0,0xd26a,0xd26b,0xd26c,0xd26d, +0xd26e,0xd26f,0xd270,0xd271,0xd272,0xd273,0xd274,0xd275,0xd276,0xd277, +0xd278,0xd279,0xd27a,0xd27b,0xd27c,0xd27d,0xf1e1,0xd27e,0xd280,0xd281, +0xcef7,0xd282,0xd2aa,0xd283,0xf1fb,0xd284,0xd285,0xb8b2,0xd286,0xd287, +0xd288,0xd289,0xd28a,0xd28b,0xd28c,0xd28d,0xd28e,0xd28f,0xd290,0xd291, +0xd292,0xd293,0xd294,0xd295,0xd296,0xd297,0xd298,0xd299,0xd29a,0xd29b, +0xd29c,0xd29d,0xd29e,0xd29f,0xd2a0,0xd340,0xd341,0xd342,0xd343,0xd344, +0xd345,0xd346,0xd347,0xd348,0xd349,0xd34a,0xd34b,0xd34c,0xd34d,0xd34e, +0xd34f,0xd350,0xd351,0xd352,0xd353,0xd354,0xd355,0xd356,0xd357,0xd358, +0xd359,0xd35a,0xd35b,0xd35c,0xd35d,0xd35e,0xbcfb,0xb9db,0xd35f,0xb9e6, +0xc3d9,0xcad3,0xeae8,0xc0c0,0xbef5,0xeae9,0xeaea,0xeaeb,0xd360,0xeaec, +0xeaed,0xeaee,0xeaef,0xbdc7,0xd361,0xd362,0xd363,0xf5fb,0xd364,0xd365, +0xd366,0xf5fd,0xd367,0xf5fe,0xd368,0xf5fc,0xd369,0xd36a,0xd36b,0xd36c, +0xbde2,0xd36d,0xf6a1,0xb4a5,0xd36e,0xd36f,0xd370,0xd371,0xf6a2,0xd372, +0xd373,0xd374,0xf6a3,0xd375,0xd376,0xd377,0xecb2,0xd378,0xd379,0xd37a, +0xd37b,0xd37c,0xd37d,0xd37e,0xd380,0xd381,0xd382,0xd383,0xd384,0xd1d4, +0xd385,0xd386,0xd387,0xd388,0xd389,0xd38a,0xd9ea,0xd38b,0xd38c,0xd38d, +0xd38e,0xd38f,0xd390,0xd391,0xd392,0xd393,0xd394,0xd395,0xd396,0xd397, +0xd398,0xd399,0xd39a,0xd39b,0xd39c,0xd39d,0xd39e,0xd39f,0xd3a0,0xd440, +0xd441,0xd442,0xd443,0xd444,0xd445,0xd446,0xd447,0xd448,0xd449,0xd44a, +0xd44b,0xd44c,0xd44d,0xd44e,0xd44f,0xd450,0xd451,0xd452,0xd453,0xd454, +0xd455,0xd456,0xd457,0xd458,0xd459,0xd45a,0xd45b,0xd45c,0xd45d,0xd45e, +0xd45f,0xf6a4,0xd460,0xd461,0xd462,0xd463,0xd464,0xd465,0xd466,0xd467, +0xd468,0xeeba,0xd469,0xd46a,0xd46b,0xd46c,0xd46d,0xd46e,0xd46f,0xd470, +0xd471,0xd472,0xd473,0xd474,0xd475,0xd476,0xd477,0xd478,0xd479,0xd47a, +0xd47b,0xd47c,0xd47d,0xd47e,0xd480,0xd481,0xd482,0xd483,0xd484,0xd485, +0xd486,0xd487,0xd488,0xd489,0xd48a,0xd48b,0xd48c,0xd48d,0xd48e,0xd48f, +0xd490,0xd491,0xd492,0xd493,0xd494,0xd495,0xd496,0xd497,0xd498,0xd499, +0xd5b2,0xd49a,0xd49b,0xd49c,0xd49d,0xd49e,0xd49f,0xd4a0,0xd540,0xd541, +0xd542,0xd543,0xd544,0xd545,0xd546,0xd547,0xd3fe,0xccdc,0xd548,0xd549, +0xd54a,0xd54b,0xd54c,0xd54d,0xd54e,0xd54f,0xcac4,0xd550,0xd551,0xd552, +0xd553,0xd554,0xd555,0xd556,0xd557,0xd558,0xd559,0xd55a,0xd55b,0xd55c, +0xd55d,0xd55e,0xd55f,0xd560,0xd561,0xd562,0xd563,0xd564,0xd565,0xd566, +0xd567,0xd568,0xd569,0xd56a,0xd56b,0xd56c,0xd56d,0xd56e,0xd56f,0xd570, +0xd571,0xd572,0xd573,0xd574,0xd575,0xd576,0xd577,0xd578,0xd579,0xd57a, +0xd57b,0xd57c,0xd57d,0xd57e,0xd580,0xd581,0xd582,0xd583,0xd584,0xd585, +0xd586,0xd587,0xd588,0xd589,0xd58a,0xd58b,0xd58c,0xd58d,0xd58e,0xd58f, +0xd590,0xd591,0xd592,0xd593,0xd594,0xd595,0xd596,0xd597,0xd598,0xd599, +0xd59a,0xd59b,0xd59c,0xd59d,0xd59e,0xd59f,0xd5a0,0xd640,0xd641,0xd642, +0xd643,0xd644,0xd645,0xd646,0xd647,0xd648,0xd649,0xd64a,0xd64b,0xd64c, +0xd64d,0xd64e,0xd64f,0xd650,0xd651,0xd652,0xd653,0xd654,0xd655,0xd656, +0xd657,0xd658,0xd659,0xd65a,0xd65b,0xd65c,0xd65d,0xd65e,0xd65f,0xd660, +0xd661,0xd662,0xe5c0,0xd663,0xd664,0xd665,0xd666,0xd667,0xd668,0xd669, +0xd66a,0xd66b,0xd66c,0xd66d,0xd66e,0xd66f,0xd670,0xd671,0xd672,0xd673, +0xd674,0xd675,0xd676,0xd677,0xd678,0xd679,0xd67a,0xd67b,0xd67c,0xd67d, +0xd67e,0xd680,0xd681,0xf6a5,0xd682,0xd683,0xd684,0xd685,0xd686,0xd687, +0xd688,0xd689,0xd68a,0xd68b,0xd68c,0xd68d,0xd68e,0xd68f,0xd690,0xd691, +0xd692,0xd693,0xd694,0xd695,0xd696,0xd697,0xd698,0xd699,0xd69a,0xd69b, +0xd69c,0xd69d,0xd69e,0xd69f,0xd6a0,0xd740,0xd741,0xd742,0xd743,0xd744, +0xd745,0xd746,0xd747,0xd748,0xd749,0xd74a,0xd74b,0xd74c,0xd74d,0xd74e, +0xd74f,0xd750,0xd751,0xd752,0xd753,0xd754,0xd755,0xd756,0xd757,0xd758, +0xd759,0xd75a,0xd75b,0xd75c,0xd75d,0xd75e,0xd75f,0xbeaf,0xd760,0xd761, +0xd762,0xd763,0xd764,0xc6a9,0xd765,0xd766,0xd767,0xd768,0xd769,0xd76a, +0xd76b,0xd76c,0xd76d,0xd76e,0xd76f,0xd770,0xd771,0xd772,0xd773,0xd774, +0xd775,0xd776,0xd777,0xd778,0xd779,0xd77a,0xd77b,0xd77c,0xd77d,0xd77e, +0xd780,0xd781,0xd782,0xd783,0xd784,0xd785,0xd786,0xd787,0xd788,0xd789, +0xd78a,0xd78b,0xd78c,0xd78d,0xd78e,0xd78f,0xd790,0xd791,0xd792,0xd793, +0xd794,0xd795,0xd796,0xd797,0xd798,0xdaa5,0xbcc6,0xb6a9,0xb8bc,0xc8cf, +0xbca5,0xdaa6,0xdaa7,0xccd6,0xc8c3,0xdaa8,0xc6fd,0xd799,0xd1b5,0xd2e9, +0xd1b6,0xbcc7,0xd79a,0xbdb2,0xbbe4,0xdaa9,0xdaaa,0xd1c8,0xdaab,0xd0ed, +0xb6ef,0xc2db,0xd79b,0xcbcf,0xb7ed,0xc9e8,0xb7c3,0xbef7,0xd6a4,0xdaac, +0xdaad,0xc6c0,0xd7e7,0xcab6,0xd79c,0xd5a9,0xcbdf,0xd5ef,0xdaae,0xd6df, +0xb4ca,0xdab0,0xdaaf,0xd79d,0xd2eb,0xdab1,0xdab2,0xdab3,0xcad4,0xdab4, +0xcaab,0xdab5,0xdab6,0xb3cf,0xd6ef,0xdab7,0xbbb0,0xb5ae,0xdab8,0xdab9, +0xb9ee,0xd1af,0xd2e8,0xdaba,0xb8c3,0xcfea,0xb2ef,0xdabb,0xdabc,0xd79e, +0xbdeb,0xcedc,0xd3ef,0xdabd,0xcef3,0xdabe,0xd3d5,0xbbe5,0xdabf,0xcbb5, +0xcbd0,0xdac0,0xc7eb,0xd6ee,0xdac1,0xc5b5,0xb6c1,0xdac2,0xb7cc,0xbfce, +0xdac3,0xdac4,0xcbad,0xdac5,0xb5f7,0xdac6,0xc1c2,0xd7bb,0xdac7,0xccb8, +0xd79f,0xd2ea,0xc4b1,0xdac8,0xb5fd,0xbbd1,0xdac9,0xd0b3,0xdaca,0xdacb, +0xcebd,0xdacc,0xdacd,0xdace,0xb2f7,0xdad1,0xdacf,0xd1e8,0xdad0,0xc3d5, +0xdad2,0xd7a0,0xdad3,0xdad4,0xdad5,0xd0bb,0xd2a5,0xb0f9,0xdad6,0xc7ab, +0xdad7,0xbdf7,0xc3a1,0xdad8,0xdad9,0xc3fd,0xccb7,0xdada,0xdadb,0xc0be, +0xc6d7,0xdadc,0xdadd,0xc7b4,0xdade,0xdadf,0xb9c8,0xd840,0xd841,0xd842, +0xd843,0xd844,0xd845,0xd846,0xd847,0xd848,0xbbed,0xd849,0xd84a,0xd84b, +0xd84c,0xb6b9,0xf4f8,0xd84d,0xf4f9,0xd84e,0xd84f,0xcde3,0xd850,0xd851, +0xd852,0xd853,0xd854,0xd855,0xd856,0xd857,0xf5b9,0xd858,0xd859,0xd85a, +0xd85b,0xebe0,0xd85c,0xd85d,0xd85e,0xd85f,0xd860,0xd861,0xcff3,0xbbbf, +0xd862,0xd863,0xd864,0xd865,0xd866,0xd867,0xd868,0xbac0,0xd4a5,0xd869, +0xd86a,0xd86b,0xd86c,0xd86d,0xd86e,0xd86f,0xe1d9,0xd870,0xd871,0xd872, +0xd873,0xf5f4,0xb1aa,0xb2f2,0xd874,0xd875,0xd876,0xd877,0xd878,0xd879, +0xd87a,0xf5f5,0xd87b,0xd87c,0xf5f7,0xd87d,0xd87e,0xd880,0xbad1,0xf5f6, +0xd881,0xc3b2,0xd882,0xd883,0xd884,0xd885,0xd886,0xd887,0xd888,0xf5f9, +0xd889,0xd88a,0xd88b,0xf5f8,0xd88c,0xd88d,0xd88e,0xd88f,0xd890,0xd891, +0xd892,0xd893,0xd894,0xd895,0xd896,0xd897,0xd898,0xd899,0xd89a,0xd89b, +0xd89c,0xd89d,0xd89e,0xd89f,0xd8a0,0xd940,0xd941,0xd942,0xd943,0xd944, +0xd945,0xd946,0xd947,0xd948,0xd949,0xd94a,0xd94b,0xd94c,0xd94d,0xd94e, +0xd94f,0xd950,0xd951,0xd952,0xd953,0xd954,0xd955,0xd956,0xd957,0xd958, +0xd959,0xd95a,0xd95b,0xd95c,0xd95d,0xd95e,0xd95f,0xd960,0xd961,0xd962, +0xd963,0xd964,0xd965,0xd966,0xd967,0xd968,0xd969,0xd96a,0xd96b,0xd96c, +0xd96d,0xd96e,0xd96f,0xd970,0xd971,0xd972,0xd973,0xd974,0xd975,0xd976, +0xd977,0xd978,0xd979,0xd97a,0xd97b,0xd97c,0xd97d,0xd97e,0xd980,0xd981, +0xd982,0xd983,0xd984,0xd985,0xd986,0xd987,0xd988,0xd989,0xd98a,0xd98b, +0xd98c,0xd98d,0xd98e,0xd98f,0xd990,0xd991,0xd992,0xd993,0xd994,0xd995, +0xd996,0xd997,0xd998,0xd999,0xd99a,0xd99b,0xd99c,0xd99d,0xd99e,0xd99f, +0xd9a0,0xda40,0xda41,0xda42,0xda43,0xda44,0xda45,0xda46,0xda47,0xda48, +0xda49,0xda4a,0xda4b,0xda4c,0xda4d,0xda4e,0xb1b4,0xd5ea,0xb8ba,0xda4f, +0xb9b1,0xb2c6,0xd4f0,0xcfcd,0xb0dc,0xd5cb,0xbbf5,0xd6ca,0xb7b7,0xccb0, +0xc6b6,0xb1e1,0xb9ba,0xd6fc,0xb9e1,0xb7a1,0xbcfa,0xeada,0xeadb,0xccf9, +0xb9f3,0xeadc,0xb4fb,0xc3b3,0xb7d1,0xbad8,0xeadd,0xd4f4,0xeade,0xbcd6, +0xbbdf,0xeadf,0xc1de,0xc2b8,0xd4df,0xd7ca,0xeae0,0xeae1,0xeae4,0xeae2, +0xeae3,0xc9de,0xb8b3,0xb6c4,0xeae5,0xcaea,0xc9cd,0xb4cd,0xda50,0xda51, +0xe2d9,0xc5e2,0xeae6,0xc0b5,0xda52,0xd7b8,0xeae7,0xd7ac,0xc8fc,0xd8d3, +0xd8cd,0xd4de,0xda53,0xd4f9,0xc9c4,0xd3ae,0xb8d3,0xb3e0,0xda54,0xc9e2, +0xf4f6,0xda55,0xda56,0xda57,0xbad5,0xda58,0xf4f7,0xda59,0xda5a,0xd7df, +0xda5b,0xda5c,0xf4f1,0xb8b0,0xd5d4,0xb8cf,0xc6f0,0xda5d,0xda5e,0xda5f, +0xda60,0xda61,0xda62,0xda63,0xda64,0xda65,0xb3c3,0xda66,0xda67,0xf4f2, +0xb3ac,0xda68,0xda69,0xda6a,0xda6b,0xd4bd,0xc7f7,0xda6c,0xda6d,0xda6e, +0xda6f,0xda70,0xf4f4,0xda71,0xda72,0xf4f3,0xda73,0xda74,0xda75,0xda76, +0xda77,0xda78,0xda79,0xda7a,0xda7b,0xda7c,0xcccb,0xda7d,0xda7e,0xda80, +0xc8a4,0xda81,0xda82,0xda83,0xda84,0xda85,0xda86,0xda87,0xda88,0xda89, +0xda8a,0xda8b,0xda8c,0xda8d,0xf4f5,0xda8e,0xd7e3,0xc5bf,0xf5c0,0xda8f, +0xda90,0xf5bb,0xda91,0xf5c3,0xda92,0xf5c2,0xda93,0xd6ba,0xf5c1,0xda94, +0xda95,0xda96,0xd4be,0xf5c4,0xda97,0xf5cc,0xda98,0xda99,0xda9a,0xda9b, +0xb0cf,0xb5f8,0xda9c,0xf5c9,0xf5ca,0xda9d,0xc5dc,0xda9e,0xda9f,0xdaa0, +0xdb40,0xf5c5,0xf5c6,0xdb41,0xdb42,0xf5c7,0xf5cb,0xdb43,0xbee0,0xf5c8, +0xb8fa,0xdb44,0xdb45,0xdb46,0xf5d0,0xf5d3,0xdb47,0xdb48,0xdb49,0xbfe7, +0xdb4a,0xb9f2,0xf5bc,0xf5cd,0xdb4b,0xdb4c,0xc2b7,0xdb4d,0xdb4e,0xdb4f, +0xccf8,0xdb50,0xbcf9,0xdb51,0xf5ce,0xf5cf,0xf5d1,0xb6e5,0xf5d2,0xdb52, +0xf5d5,0xdb53,0xdb54,0xdb55,0xdb56,0xdb57,0xdb58,0xdb59,0xf5bd,0xdb5a, +0xdb5b,0xdb5c,0xf5d4,0xd3bb,0xdb5d,0xb3ec,0xdb5e,0xdb5f,0xcca4,0xdb60, +0xdb61,0xdb62,0xdb63,0xf5d6,0xdb64,0xdb65,0xdb66,0xdb67,0xdb68,0xdb69, +0xdb6a,0xdb6b,0xf5d7,0xbee1,0xf5d8,0xdb6c,0xdb6d,0xccdf,0xf5db,0xdb6e, +0xdb6f,0xdb70,0xdb71,0xdb72,0xb2c8,0xd7d9,0xdb73,0xf5d9,0xdb74,0xf5da, +0xf5dc,0xdb75,0xf5e2,0xdb76,0xdb77,0xdb78,0xf5e0,0xdb79,0xdb7a,0xdb7b, +0xf5df,0xf5dd,0xdb7c,0xdb7d,0xf5e1,0xdb7e,0xdb80,0xf5de,0xf5e4,0xf5e5, +0xdb81,0xcce3,0xdb82,0xdb83,0xe5bf,0xb5b8,0xf5e3,0xf5e8,0xcca3,0xdb84, +0xdb85,0xdb86,0xdb87,0xdb88,0xf5e6,0xf5e7,0xdb89,0xdb8a,0xdb8b,0xdb8c, +0xdb8d,0xdb8e,0xf5be,0xdb8f,0xdb90,0xdb91,0xdb92,0xdb93,0xdb94,0xdb95, +0xdb96,0xdb97,0xdb98,0xdb99,0xdb9a,0xb1c4,0xdb9b,0xdb9c,0xf5bf,0xdb9d, +0xdb9e,0xb5c5,0xb2e4,0xdb9f,0xf5ec,0xf5e9,0xdba0,0xb6d7,0xdc40,0xf5ed, +0xdc41,0xf5ea,0xdc42,0xdc43,0xdc44,0xdc45,0xdc46,0xf5eb,0xdc47,0xdc48, +0xb4da,0xdc49,0xd4ea,0xdc4a,0xdc4b,0xdc4c,0xf5ee,0xdc4d,0xb3f9,0xdc4e, +0xdc4f,0xdc50,0xdc51,0xdc52,0xdc53,0xdc54,0xf5ef,0xf5f1,0xdc55,0xdc56, +0xdc57,0xf5f0,0xdc58,0xdc59,0xdc5a,0xdc5b,0xdc5c,0xdc5d,0xdc5e,0xf5f2, +0xdc5f,0xf5f3,0xdc60,0xdc61,0xdc62,0xdc63,0xdc64,0xdc65,0xdc66,0xdc67, +0xdc68,0xdc69,0xdc6a,0xdc6b,0xc9ed,0xb9aa,0xdc6c,0xdc6d,0xc7fb,0xdc6e, +0xdc6f,0xb6e3,0xdc70,0xdc71,0xdc72,0xdc73,0xdc74,0xdc75,0xdc76,0xccc9, +0xdc77,0xdc78,0xdc79,0xdc7a,0xdc7b,0xdc7c,0xdc7d,0xdc7e,0xdc80,0xdc81, +0xdc82,0xdc83,0xdc84,0xdc85,0xdc86,0xdc87,0xdc88,0xdc89,0xdc8a,0xeaa6, +0xdc8b,0xdc8c,0xdc8d,0xdc8e,0xdc8f,0xdc90,0xdc91,0xdc92,0xdc93,0xdc94, +0xdc95,0xdc96,0xdc97,0xdc98,0xdc99,0xdc9a,0xdc9b,0xdc9c,0xdc9d,0xdc9e, +0xdc9f,0xdca0,0xdd40,0xdd41,0xdd42,0xdd43,0xdd44,0xdd45,0xdd46,0xdd47, +0xdd48,0xdd49,0xdd4a,0xdd4b,0xdd4c,0xdd4d,0xdd4e,0xdd4f,0xdd50,0xdd51, +0xdd52,0xdd53,0xdd54,0xdd55,0xdd56,0xdd57,0xdd58,0xdd59,0xdd5a,0xdd5b, +0xdd5c,0xdd5d,0xdd5e,0xdd5f,0xdd60,0xdd61,0xdd62,0xdd63,0xdd64,0xdd65, +0xdd66,0xdd67,0xdd68,0xdd69,0xdd6a,0xdd6b,0xdd6c,0xdd6d,0xdd6e,0xdd6f, +0xdd70,0xdd71,0xdd72,0xdd73,0xdd74,0xdd75,0xdd76,0xdd77,0xdd78,0xdd79, +0xdd7a,0xdd7b,0xdd7c,0xdd7d,0xdd7e,0xdd80,0xdd81,0xdd82,0xdd83,0xdd84, +0xdd85,0xdd86,0xdd87,0xdd88,0xdd89,0xdd8a,0xdd8b,0xdd8c,0xdd8d,0xdd8e, +0xdd8f,0xdd90,0xdd91,0xdd92,0xdd93,0xdd94,0xdd95,0xdd96,0xdd97,0xdd98, +0xdd99,0xdd9a,0xdd9b,0xdd9c,0xdd9d,0xdd9e,0xdd9f,0xdda0,0xde40,0xde41, +0xde42,0xde43,0xde44,0xde45,0xde46,0xde47,0xde48,0xde49,0xde4a,0xde4b, +0xde4c,0xde4d,0xde4e,0xde4f,0xde50,0xde51,0xde52,0xde53,0xde54,0xde55, +0xde56,0xde57,0xde58,0xde59,0xde5a,0xde5b,0xde5c,0xde5d,0xde5e,0xde5f, +0xde60,0xb3b5,0xd4fe,0xb9ec,0xd0f9,0xde61,0xe9ed,0xd7aa,0xe9ee,0xc2d6, +0xc8ed,0xbae4,0xe9ef,0xe9f0,0xe9f1,0xd6e1,0xe9f2,0xe9f3,0xe9f5,0xe9f4, +0xe9f6,0xe9f7,0xc7e1,0xe9f8,0xd4d8,0xe9f9,0xbdce,0xde62,0xe9fa,0xe9fb, +0xbdcf,0xe9fc,0xb8a8,0xc1be,0xe9fd,0xb1b2,0xbbd4,0xb9f5,0xe9fe,0xde63, +0xeaa1,0xeaa2,0xeaa3,0xb7f8,0xbcad,0xde64,0xcae4,0xe0ce,0xd4af,0xcfbd, +0xd5b7,0xeaa4,0xd5de,0xeaa5,0xd0c1,0xb9bc,0xde65,0xb4c7,0xb1d9,0xde66, +0xde67,0xde68,0xc0b1,0xde69,0xde6a,0xde6b,0xde6c,0xb1e6,0xb1e7,0xde6d, +0xb1e8,0xde6e,0xde6f,0xde70,0xde71,0xb3bd,0xc8e8,0xde72,0xde73,0xde74, +0xde75,0xe5c1,0xde76,0xde77,0xb1df,0xde78,0xde79,0xde7a,0xc1c9,0xb4ef, +0xde7b,0xde7c,0xc7a8,0xd3d8,0xde7d,0xc6f9,0xd1b8,0xde7e,0xb9fd,0xc2f5, +0xde80,0xde81,0xde82,0xde83,0xde84,0xd3ad,0xde85,0xd4cb,0xbdfc,0xde86, +0xe5c2,0xb7b5,0xe5c3,0xde87,0xde88,0xbbb9,0xd5e2,0xde89,0xbdf8,0xd4b6, +0xcea5,0xc1ac,0xb3d9,0xde8a,0xde8b,0xccf6,0xde8c,0xe5c6,0xe5c4,0xe5c8, +0xde8d,0xe5ca,0xe5c7,0xb5cf,0xc6c8,0xde8e,0xb5fc,0xe5c5,0xde8f,0xcaf6, +0xde90,0xde91,0xe5c9,0xde92,0xde93,0xde94,0xc3d4,0xb1c5,0xbca3,0xde95, +0xde96,0xde97,0xd7b7,0xde98,0xde99,0xcdcb,0xcbcd,0xcaca,0xccd3,0xe5cc, +0xe5cb,0xc4e6,0xde9a,0xde9b,0xd1a1,0xd1b7,0xe5cd,0xde9c,0xe5d0,0xde9d, +0xcdb8,0xd6f0,0xe5cf,0xb5dd,0xde9e,0xcdbe,0xde9f,0xe5d1,0xb6ba,0xdea0, +0xdf40,0xcda8,0xb9e4,0xdf41,0xcac5,0xb3d1,0xcbd9,0xd4ec,0xe5d2,0xb7ea, +0xdf42,0xdf43,0xdf44,0xe5ce,0xdf45,0xdf46,0xdf47,0xdf48,0xdf49,0xdf4a, +0xe5d5,0xb4fe,0xe5d6,0xdf4b,0xdf4c,0xdf4d,0xdf4e,0xdf4f,0xe5d3,0xe5d4, +0xdf50,0xd2dd,0xdf51,0xdf52,0xc2df,0xb1c6,0xdf53,0xd3e2,0xdf54,0xdf55, +0xb6dd,0xcbec,0xdf56,0xe5d7,0xdf57,0xdf58,0xd3f6,0xdf59,0xdf5a,0xdf5b, +0xdf5c,0xdf5d,0xb1e9,0xdf5e,0xb6f4,0xe5da,0xe5d8,0xe5d9,0xb5c0,0xdf5f, +0xdf60,0xdf61,0xd2c5,0xe5dc,0xdf62,0xdf63,0xe5de,0xdf64,0xdf65,0xdf66, +0xdf67,0xdf68,0xdf69,0xe5dd,0xc7b2,0xdf6a,0xd2a3,0xdf6b,0xdf6c,0xe5db, +0xdf6d,0xdf6e,0xdf6f,0xdf70,0xd4e2,0xd5da,0xdf71,0xdf72,0xdf73,0xdf74, +0xdf75,0xe5e0,0xd7f1,0xdf76,0xdf77,0xdf78,0xdf79,0xdf7a,0xdf7b,0xdf7c, +0xe5e1,0xdf7d,0xb1dc,0xd1fb,0xdf7e,0xe5e2,0xe5e4,0xdf80,0xdf81,0xdf82, +0xdf83,0xe5e3,0xdf84,0xdf85,0xe5e5,0xdf86,0xdf87,0xdf88,0xdf89,0xdf8a, +0xd2d8,0xdf8b,0xb5cb,0xdf8c,0xe7df,0xdf8d,0xdaf5,0xdf8e,0xdaf8,0xdf8f, +0xdaf6,0xdf90,0xdaf7,0xdf91,0xdf92,0xdf93,0xdafa,0xd0cf,0xc4c7,0xdf94, +0xdf95,0xb0ee,0xdf96,0xdf97,0xdf98,0xd0b0,0xdf99,0xdaf9,0xdf9a,0xd3ca, +0xbaaa,0xdba2,0xc7f1,0xdf9b,0xdafc,0xdafb,0xc9db,0xdafd,0xdf9c,0xdba1, +0xd7de,0xdafe,0xc1da,0xdf9d,0xdf9e,0xdba5,0xdf9f,0xdfa0,0xd3f4,0xe040, +0xe041,0xdba7,0xdba4,0xe042,0xdba8,0xe043,0xe044,0xbdbc,0xe045,0xe046, +0xe047,0xc0c9,0xdba3,0xdba6,0xd6a3,0xe048,0xdba9,0xe049,0xe04a,0xe04b, +0xdbad,0xe04c,0xe04d,0xe04e,0xdbae,0xdbac,0xbac2,0xe04f,0xe050,0xe051, +0xbfa4,0xdbab,0xe052,0xe053,0xe054,0xdbaa,0xd4c7,0xb2bf,0xe055,0xe056, +0xdbaf,0xe057,0xb9f9,0xe058,0xdbb0,0xe059,0xe05a,0xe05b,0xe05c,0xb3bb, +0xe05d,0xe05e,0xe05f,0xb5a6,0xe060,0xe061,0xe062,0xe063,0xb6bc,0xdbb1, +0xe064,0xe065,0xe066,0xb6f5,0xe067,0xdbb2,0xe068,0xe069,0xe06a,0xe06b, +0xe06c,0xe06d,0xe06e,0xe06f,0xe070,0xe071,0xe072,0xe073,0xe074,0xe075, +0xe076,0xe077,0xe078,0xe079,0xe07a,0xe07b,0xb1c9,0xe07c,0xe07d,0xe07e, +0xe080,0xdbb4,0xe081,0xe082,0xe083,0xdbb3,0xdbb5,0xe084,0xe085,0xe086, +0xe087,0xe088,0xe089,0xe08a,0xe08b,0xe08c,0xe08d,0xe08e,0xdbb7,0xe08f, +0xdbb6,0xe090,0xe091,0xe092,0xe093,0xe094,0xe095,0xe096,0xdbb8,0xe097, +0xe098,0xe099,0xe09a,0xe09b,0xe09c,0xe09d,0xe09e,0xe09f,0xdbb9,0xe0a0, +0xe140,0xdbba,0xe141,0xe142,0xd3cf,0xf4fa,0xc7f5,0xd7c3,0xc5e4,0xf4fc, +0xf4fd,0xf4fb,0xe143,0xbec6,0xe144,0xe145,0xe146,0xe147,0xd0ef,0xe148, +0xe149,0xb7d3,0xe14a,0xe14b,0xd4cd,0xccaa,0xe14c,0xe14d,0xf5a2,0xf5a1, +0xbaa8,0xf4fe,0xcbd6,0xe14e,0xe14f,0xe150,0xf5a4,0xc0d2,0xe151,0xb3ea, +0xe152,0xcdaa,0xf5a5,0xf5a3,0xbdb4,0xf5a8,0xe153,0xf5a9,0xbdcd,0xc3b8, +0xbfe1,0xcbe1,0xf5aa,0xe154,0xe155,0xe156,0xf5a6,0xf5a7,0xc4f0,0xe157, +0xe158,0xe159,0xe15a,0xe15b,0xf5ac,0xe15c,0xb4bc,0xe15d,0xd7ed,0xe15e, +0xb4d7,0xf5ab,0xf5ae,0xe15f,0xe160,0xf5ad,0xf5af,0xd0d1,0xe161,0xe162, +0xe163,0xe164,0xe165,0xe166,0xe167,0xc3d1,0xc8a9,0xe168,0xe169,0xe16a, +0xe16b,0xe16c,0xe16d,0xf5b0,0xf5b1,0xe16e,0xe16f,0xe170,0xe171,0xe172, +0xe173,0xf5b2,0xe174,0xe175,0xf5b3,0xf5b4,0xf5b5,0xe176,0xe177,0xe178, +0xe179,0xf5b7,0xf5b6,0xe17a,0xe17b,0xe17c,0xe17d,0xf5b8,0xe17e,0xe180, +0xe181,0xe182,0xe183,0xe184,0xe185,0xe186,0xe187,0xe188,0xe189,0xe18a, +0xb2c9,0xe18b,0xd3d4,0xcacd,0xe18c,0xc0ef,0xd6d8,0xd2b0,0xc1bf,0xe18d, +0xbdf0,0xe18e,0xe18f,0xe190,0xe191,0xe192,0xe193,0xe194,0xe195,0xe196, +0xe197,0xb8aa,0xe198,0xe199,0xe19a,0xe19b,0xe19c,0xe19d,0xe19e,0xe19f, +0xe1a0,0xe240,0xe241,0xe242,0xe243,0xe244,0xe245,0xe246,0xe247,0xe248, +0xe249,0xe24a,0xe24b,0xe24c,0xe24d,0xe24e,0xe24f,0xe250,0xe251,0xe252, +0xe253,0xe254,0xe255,0xe256,0xe257,0xe258,0xe259,0xe25a,0xe25b,0xe25c, +0xe25d,0xe25e,0xe25f,0xe260,0xe261,0xe262,0xe263,0xe264,0xe265,0xe266, +0xe267,0xe268,0xe269,0xe26a,0xe26b,0xe26c,0xe26d,0xe26e,0xe26f,0xe270, +0xe271,0xe272,0xe273,0xe274,0xe275,0xe276,0xe277,0xe278,0xe279,0xe27a, +0xe27b,0xe27c,0xe27d,0xe27e,0xe280,0xe281,0xe282,0xe283,0xe284,0xe285, +0xe286,0xe287,0xe288,0xe289,0xe28a,0xe28b,0xe28c,0xe28d,0xe28e,0xe28f, +0xe290,0xe291,0xe292,0xe293,0xe294,0xe295,0xe296,0xe297,0xe298,0xe299, +0xe29a,0xe29b,0xe29c,0xe29d,0xe29e,0xe29f,0xe2a0,0xe340,0xe341,0xe342, +0xe343,0xe344,0xe345,0xe346,0xe347,0xe348,0xe349,0xe34a,0xe34b,0xe34c, +0xe34d,0xe34e,0xe34f,0xe350,0xe351,0xe352,0xe353,0xe354,0xe355,0xe356, +0xe357,0xe358,0xe359,0xe35a,0xe35b,0xe35c,0xe35d,0xe35e,0xe35f,0xe360, +0xe361,0xe362,0xe363,0xe364,0xe365,0xe366,0xe367,0xe368,0xe369,0xe36a, +0xe36b,0xe36c,0xe36d,0xbcf8,0xe36e,0xe36f,0xe370,0xe371,0xe372,0xe373, +0xe374,0xe375,0xe376,0xe377,0xe378,0xe379,0xe37a,0xe37b,0xe37c,0xe37d, +0xe37e,0xe380,0xe381,0xe382,0xe383,0xe384,0xe385,0xe386,0xe387,0xf6c6, +0xe388,0xe389,0xe38a,0xe38b,0xe38c,0xe38d,0xe38e,0xe38f,0xe390,0xe391, +0xe392,0xe393,0xe394,0xe395,0xe396,0xe397,0xe398,0xe399,0xe39a,0xe39b, +0xe39c,0xe39d,0xe39e,0xe39f,0xe3a0,0xe440,0xe441,0xe442,0xe443,0xe444, +0xe445,0xf6c7,0xe446,0xe447,0xe448,0xe449,0xe44a,0xe44b,0xe44c,0xe44d, +0xe44e,0xe44f,0xe450,0xe451,0xe452,0xe453,0xe454,0xe455,0xe456,0xe457, +0xe458,0xe459,0xe45a,0xe45b,0xe45c,0xe45d,0xe45e,0xf6c8,0xe45f,0xe460, +0xe461,0xe462,0xe463,0xe464,0xe465,0xe466,0xe467,0xe468,0xe469,0xe46a, +0xe46b,0xe46c,0xe46d,0xe46e,0xe46f,0xe470,0xe471,0xe472,0xe473,0xe474, +0xe475,0xe476,0xe477,0xe478,0xe479,0xe47a,0xe47b,0xe47c,0xe47d,0xe47e, +0xe480,0xe481,0xe482,0xe483,0xe484,0xe485,0xe486,0xe487,0xe488,0xe489, +0xe48a,0xe48b,0xe48c,0xe48d,0xe48e,0xe48f,0xe490,0xe491,0xe492,0xe493, +0xe494,0xe495,0xe496,0xe497,0xe498,0xe499,0xe49a,0xe49b,0xe49c,0xe49d, +0xe49e,0xe49f,0xe4a0,0xe540,0xe541,0xe542,0xe543,0xe544,0xe545,0xe546, +0xe547,0xe548,0xe549,0xe54a,0xe54b,0xe54c,0xe54d,0xe54e,0xe54f,0xe550, +0xe551,0xe552,0xe553,0xe554,0xe555,0xe556,0xe557,0xe558,0xe559,0xe55a, +0xe55b,0xe55c,0xe55d,0xe55e,0xe55f,0xe560,0xe561,0xe562,0xe563,0xe564, +0xe565,0xe566,0xe567,0xe568,0xe569,0xe56a,0xe56b,0xe56c,0xe56d,0xe56e, +0xe56f,0xe570,0xe571,0xe572,0xe573,0xf6c9,0xe574,0xe575,0xe576,0xe577, +0xe578,0xe579,0xe57a,0xe57b,0xe57c,0xe57d,0xe57e,0xe580,0xe581,0xe582, +0xe583,0xe584,0xe585,0xe586,0xe587,0xe588,0xe589,0xe58a,0xe58b,0xe58c, +0xe58d,0xe58e,0xe58f,0xe590,0xe591,0xe592,0xe593,0xe594,0xe595,0xe596, +0xe597,0xe598,0xe599,0xe59a,0xe59b,0xe59c,0xe59d,0xe59e,0xe59f,0xf6ca, +0xe5a0,0xe640,0xe641,0xe642,0xe643,0xe644,0xe645,0xe646,0xe647,0xe648, +0xe649,0xe64a,0xe64b,0xe64c,0xe64d,0xe64e,0xe64f,0xe650,0xe651,0xe652, +0xe653,0xe654,0xe655,0xe656,0xe657,0xe658,0xe659,0xe65a,0xe65b,0xe65c, +0xe65d,0xe65e,0xe65f,0xe660,0xe661,0xe662,0xf6cc,0xe663,0xe664,0xe665, +0xe666,0xe667,0xe668,0xe669,0xe66a,0xe66b,0xe66c,0xe66d,0xe66e,0xe66f, +0xe670,0xe671,0xe672,0xe673,0xe674,0xe675,0xe676,0xe677,0xe678,0xe679, +0xe67a,0xe67b,0xe67c,0xe67d,0xe67e,0xe680,0xe681,0xe682,0xe683,0xe684, +0xe685,0xe686,0xe687,0xe688,0xe689,0xe68a,0xe68b,0xe68c,0xe68d,0xe68e, +0xe68f,0xe690,0xe691,0xe692,0xe693,0xe694,0xe695,0xe696,0xe697,0xe698, +0xe699,0xe69a,0xe69b,0xe69c,0xe69d,0xf6cb,0xe69e,0xe69f,0xe6a0,0xe740, +0xe741,0xe742,0xe743,0xe744,0xe745,0xe746,0xe747,0xf7e9,0xe748,0xe749, +0xe74a,0xe74b,0xe74c,0xe74d,0xe74e,0xe74f,0xe750,0xe751,0xe752,0xe753, +0xe754,0xe755,0xe756,0xe757,0xe758,0xe759,0xe75a,0xe75b,0xe75c,0xe75d, +0xe75e,0xe75f,0xe760,0xe761,0xe762,0xe763,0xe764,0xe765,0xe766,0xe767, +0xe768,0xe769,0xe76a,0xe76b,0xe76c,0xe76d,0xe76e,0xe76f,0xe770,0xe771, +0xe772,0xe773,0xe774,0xe775,0xe776,0xe777,0xe778,0xe779,0xe77a,0xe77b, +0xe77c,0xe77d,0xe77e,0xe780,0xe781,0xe782,0xe783,0xe784,0xe785,0xe786, +0xe787,0xe788,0xe789,0xe78a,0xe78b,0xe78c,0xe78d,0xe78e,0xe78f,0xe790, +0xe791,0xe792,0xe793,0xe794,0xe795,0xe796,0xe797,0xe798,0xe799,0xe79a, +0xe79b,0xe79c,0xe79d,0xe79e,0xe79f,0xe7a0,0xe840,0xe841,0xe842,0xe843, +0xe844,0xe845,0xe846,0xe847,0xe848,0xe849,0xe84a,0xe84b,0xe84c,0xe84d, +0xe84e,0xf6cd,0xe84f,0xe850,0xe851,0xe852,0xe853,0xe854,0xe855,0xe856, +0xe857,0xe858,0xe859,0xe85a,0xe85b,0xe85c,0xe85d,0xe85e,0xe85f,0xe860, +0xe861,0xe862,0xe863,0xe864,0xe865,0xe866,0xe867,0xe868,0xe869,0xe86a, +0xe86b,0xe86c,0xe86d,0xe86e,0xe86f,0xe870,0xe871,0xe872,0xe873,0xe874, +0xe875,0xe876,0xe877,0xe878,0xe879,0xe87a,0xf6ce,0xe87b,0xe87c,0xe87d, +0xe87e,0xe880,0xe881,0xe882,0xe883,0xe884,0xe885,0xe886,0xe887,0xe888, +0xe889,0xe88a,0xe88b,0xe88c,0xe88d,0xe88e,0xe88f,0xe890,0xe891,0xe892, +0xe893,0xe894,0xeec4,0xeec5,0xeec6,0xd5eb,0xb6a4,0xeec8,0xeec7,0xeec9, +0xeeca,0xc7a5,0xeecb,0xeecc,0xe895,0xb7b0,0xb5f6,0xeecd,0xeecf,0xe896, +0xeece,0xe897,0xb8c6,0xeed0,0xeed1,0xeed2,0xb6db,0xb3ae,0xd6d3,0xc4c6, +0xb1b5,0xb8d6,0xeed3,0xeed4,0xd4bf,0xc7d5,0xbefb,0xced9,0xb9b3,0xeed6, +0xeed5,0xeed8,0xeed7,0xc5a5,0xeed9,0xeeda,0xc7ae,0xeedb,0xc7af,0xeedc, +0xb2a7,0xeedd,0xeede,0xeedf,0xeee0,0xeee1,0xd7ea,0xeee2,0xeee3,0xbcd8, +0xeee4,0xd3cb,0xccfa,0xb2ac,0xc1e5,0xeee5,0xc7a6,0xc3ad,0xe898,0xeee6, +0xeee7,0xeee8,0xeee9,0xeeea,0xeeeb,0xeeec,0xe899,0xeeed,0xeeee,0xeeef, +0xe89a,0xe89b,0xeef0,0xeef1,0xeef2,0xeef4,0xeef3,0xe89c,0xeef5,0xcdad, +0xc2c1,0xeef6,0xeef7,0xeef8,0xd5a1,0xeef9,0xcfb3,0xeefa,0xeefb,0xe89d, +0xeefc,0xeefd,0xefa1,0xeefe,0xefa2,0xb8f5,0xc3fa,0xefa3,0xefa4,0xbdc2, +0xd2bf,0xb2f9,0xefa5,0xefa6,0xefa7,0xd2f8,0xefa8,0xd6fd,0xefa9,0xc6cc, +0xe89e,0xefaa,0xefab,0xc1b4,0xefac,0xcffa,0xcbf8,0xefae,0xefad,0xb3fa, +0xb9f8,0xefaf,0xefb0,0xd0e2,0xefb1,0xefb2,0xb7e6,0xd0bf,0xefb3,0xefb4, +0xefb5,0xc8f1,0xcce0,0xefb6,0xefb7,0xefb8,0xefb9,0xefba,0xd5e0,0xefbb, +0xb4ed,0xc3aa,0xefbc,0xe89f,0xefbd,0xefbe,0xefbf,0xe8a0,0xcefd,0xefc0, +0xc2e0,0xb4b8,0xd7b6,0xbdf5,0xe940,0xcfc7,0xefc3,0xefc1,0xefc2,0xefc4, +0xb6a7,0xbcfc,0xbee2,0xc3cc,0xefc5,0xefc6,0xe941,0xefc7,0xefcf,0xefc8, +0xefc9,0xefca,0xc7c2,0xeff1,0xb6cd,0xefcb,0xe942,0xefcc,0xefcd,0xb6c6, +0xc3be,0xefce,0xe943,0xefd0,0xefd1,0xefd2,0xd5f2,0xe944,0xefd3,0xc4f7, +0xe945,0xefd4,0xc4f8,0xefd5,0xefd6,0xb8e4,0xb0f7,0xefd7,0xefd8,0xefd9, +0xe946,0xefda,0xefdb,0xefdc,0xefdd,0xe947,0xefde,0xbeb5,0xefe1,0xefdf, +0xefe0,0xe948,0xefe2,0xefe3,0xc1cd,0xefe4,0xefe5,0xefe6,0xefe7,0xefe8, +0xefe9,0xefea,0xefeb,0xefec,0xc0d8,0xe949,0xefed,0xc1ad,0xefee,0xefef, +0xeff0,0xe94a,0xe94b,0xcfe2,0xe94c,0xe94d,0xe94e,0xe94f,0xe950,0xe951, +0xe952,0xe953,0xb3a4,0xe954,0xe955,0xe956,0xe957,0xe958,0xe959,0xe95a, +0xe95b,0xe95c,0xe95d,0xe95e,0xe95f,0xe960,0xe961,0xe962,0xe963,0xe964, +0xe965,0xe966,0xe967,0xe968,0xe969,0xe96a,0xe96b,0xe96c,0xe96d,0xe96e, +0xe96f,0xe970,0xe971,0xe972,0xe973,0xe974,0xe975,0xe976,0xe977,0xe978, +0xe979,0xe97a,0xe97b,0xe97c,0xe97d,0xe97e,0xe980,0xe981,0xe982,0xe983, +0xe984,0xe985,0xe986,0xe987,0xe988,0xe989,0xe98a,0xe98b,0xe98c,0xe98d, +0xe98e,0xe98f,0xe990,0xe991,0xe992,0xe993,0xe994,0xe995,0xe996,0xe997, +0xe998,0xe999,0xe99a,0xe99b,0xe99c,0xe99d,0xe99e,0xe99f,0xe9a0,0xea40, +0xea41,0xea42,0xea43,0xea44,0xea45,0xea46,0xea47,0xea48,0xea49,0xea4a, +0xea4b,0xea4c,0xea4d,0xea4e,0xea4f,0xea50,0xea51,0xea52,0xea53,0xea54, +0xea55,0xea56,0xea57,0xea58,0xea59,0xea5a,0xea5b,0xc3c5,0xe3c5,0xc9c1, +0xe3c6,0xea5c,0xb1d5,0xceca,0xb4b3,0xc8f2,0xe3c7,0xcfd0,0xe3c8,0xbce4, +0xe3c9,0xe3ca,0xc3c6,0xd5a2,0xc4d6,0xb9eb,0xcec5,0xe3cb,0xc3f6,0xe3cc, +0xea5d,0xb7a7,0xb8f3,0xbad2,0xe3cd,0xe3ce,0xd4c4,0xe3cf,0xea5e,0xe3d0, +0xd1cb,0xe3d1,0xe3d2,0xe3d3,0xe3d4,0xd1d6,0xe3d5,0xb2fb,0xc0bb,0xe3d6, +0xea5f,0xc0ab,0xe3d7,0xe3d8,0xe3d9,0xea60,0xe3da,0xe3db,0xea61,0xb8b7, +0xdae2,0xea62,0xb6d3,0xea63,0xdae4,0xdae3,0xea64,0xea65,0xea66,0xea67, +0xea68,0xea69,0xea6a,0xdae6,0xea6b,0xea6c,0xea6d,0xc8ee,0xea6e,0xea6f, +0xdae5,0xb7c0,0xd1f4,0xd2f5,0xd5f3,0xbdd7,0xea70,0xea71,0xea72,0xea73, +0xd7e8,0xdae8,0xdae7,0xea74,0xb0a2,0xcdd3,0xea75,0xdae9,0xea76,0xb8bd, +0xbcca,0xc2bd,0xc2a4,0xb3c2,0xdaea,0xea77,0xc2aa,0xc4b0,0xbdb5,0xea78, +0xea79,0xcfde,0xea7a,0xea7b,0xea7c,0xdaeb,0xc9c2,0xea7d,0xea7e,0xea80, +0xea81,0xea82,0xb1dd,0xea83,0xea84,0xea85,0xdaec,0xea86,0xb6b8,0xd4ba, +0xea87,0xb3fd,0xea88,0xea89,0xdaed,0xd4c9,0xcfd5,0xc5e3,0xea8a,0xdaee, +0xea8b,0xea8c,0xea8d,0xea8e,0xea8f,0xdaef,0xea90,0xdaf0,0xc1ea,0xccd5, +0xcfdd,0xea91,0xea92,0xea93,0xea94,0xea95,0xea96,0xea97,0xea98,0xea99, +0xea9a,0xea9b,0xea9c,0xea9d,0xd3e7,0xc2a1,0xea9e,0xdaf1,0xea9f,0xeaa0, +0xcbe5,0xeb40,0xdaf2,0xeb41,0xcbe6,0xd2fe,0xeb42,0xeb43,0xeb44,0xb8f4, +0xeb45,0xeb46,0xdaf3,0xb0af,0xcfb6,0xeb47,0xeb48,0xd5cf,0xeb49,0xeb4a, +0xeb4b,0xeb4c,0xeb4d,0xeb4e,0xeb4f,0xeb50,0xeb51,0xeb52,0xcbed,0xeb53, +0xeb54,0xeb55,0xeb56,0xeb57,0xeb58,0xeb59,0xeb5a,0xdaf4,0xeb5b,0xeb5c, +0xe3c4,0xeb5d,0xeb5e,0xc1a5,0xeb5f,0xeb60,0xf6bf,0xeb61,0xeb62,0xf6c0, +0xf6c1,0xc4d1,0xeb63,0xc8b8,0xd1e3,0xeb64,0xeb65,0xd0db,0xd1c5,0xbcaf, +0xb9cd,0xeb66,0xeff4,0xeb67,0xeb68,0xb4c6,0xd3ba,0xf6c2,0xb3fb,0xeb69, +0xeb6a,0xf6c3,0xeb6b,0xeb6c,0xb5f1,0xeb6d,0xeb6e,0xeb6f,0xeb70,0xeb71, +0xeb72,0xeb73,0xeb74,0xeb75,0xeb76,0xf6c5,0xeb77,0xeb78,0xeb79,0xeb7a, +0xeb7b,0xeb7c,0xeb7d,0xd3ea,0xf6a7,0xd1a9,0xeb7e,0xeb80,0xeb81,0xeb82, +0xf6a9,0xeb83,0xeb84,0xeb85,0xf6a8,0xeb86,0xeb87,0xc1e3,0xc0d7,0xeb88, +0xb1a2,0xeb89,0xeb8a,0xeb8b,0xeb8c,0xceed,0xeb8d,0xd0e8,0xf6ab,0xeb8e, +0xeb8f,0xcff6,0xeb90,0xf6aa,0xd5f0,0xf6ac,0xc3b9,0xeb91,0xeb92,0xeb93, +0xbbf4,0xf6ae,0xf6ad,0xeb94,0xeb95,0xeb96,0xc4de,0xeb97,0xeb98,0xc1d8, +0xeb99,0xeb9a,0xeb9b,0xeb9c,0xeb9d,0xcbaa,0xeb9e,0xcfbc,0xeb9f,0xeba0, +0xec40,0xec41,0xec42,0xec43,0xec44,0xec45,0xec46,0xec47,0xec48,0xf6af, +0xec49,0xec4a,0xf6b0,0xec4b,0xec4c,0xf6b1,0xec4d,0xc2b6,0xec4e,0xec4f, +0xec50,0xec51,0xec52,0xb0d4,0xc5f9,0xec53,0xec54,0xec55,0xec56,0xf6b2, +0xec57,0xec58,0xec59,0xec5a,0xec5b,0xec5c,0xec5d,0xec5e,0xec5f,0xec60, +0xec61,0xec62,0xec63,0xec64,0xec65,0xec66,0xec67,0xec68,0xec69,0xc7e0, +0xf6a6,0xec6a,0xec6b,0xbeb8,0xec6c,0xec6d,0xbeb2,0xec6e,0xb5e5,0xec6f, +0xec70,0xb7c7,0xec71,0xbfbf,0xc3d2,0xc3e6,0xec72,0xec73,0xd8cc,0xec74, +0xec75,0xec76,0xb8ef,0xec77,0xec78,0xec79,0xec7a,0xec7b,0xec7c,0xec7d, +0xec7e,0xec80,0xbdf9,0xd1a5,0xec81,0xb0d0,0xec82,0xec83,0xec84,0xec85, +0xec86,0xf7b0,0xec87,0xec88,0xec89,0xec8a,0xec8b,0xec8c,0xec8d,0xec8e, +0xf7b1,0xec8f,0xec90,0xec91,0xec92,0xec93,0xd0ac,0xec94,0xb0b0,0xec95, +0xec96,0xec97,0xf7b2,0xf7b3,0xec98,0xf7b4,0xec99,0xec9a,0xec9b,0xc7ca, +0xec9c,0xec9d,0xec9e,0xec9f,0xeca0,0xed40,0xed41,0xbecf,0xed42,0xed43, +0xf7b7,0xed44,0xed45,0xed46,0xed47,0xed48,0xed49,0xed4a,0xf7b6,0xed4b, +0xb1de,0xed4c,0xf7b5,0xed4d,0xed4e,0xf7b8,0xed4f,0xf7b9,0xed50,0xed51, +0xed52,0xed53,0xed54,0xed55,0xed56,0xed57,0xed58,0xed59,0xed5a,0xed5b, +0xed5c,0xed5d,0xed5e,0xed5f,0xed60,0xed61,0xed62,0xed63,0xed64,0xed65, +0xed66,0xed67,0xed68,0xed69,0xed6a,0xed6b,0xed6c,0xed6d,0xed6e,0xed6f, +0xed70,0xed71,0xed72,0xed73,0xed74,0xed75,0xed76,0xed77,0xed78,0xed79, +0xed7a,0xed7b,0xed7c,0xed7d,0xed7e,0xed80,0xed81,0xcea4,0xc8cd,0xed82, +0xbaab,0xe8b8,0xe8b9,0xe8ba,0xbec2,0xed83,0xed84,0xed85,0xed86,0xed87, +0xd2f4,0xed88,0xd4cf,0xc9d8,0xed89,0xed8a,0xed8b,0xed8c,0xed8d,0xed8e, +0xed8f,0xed90,0xed91,0xed92,0xed93,0xed94,0xed95,0xed96,0xed97,0xed98, +0xed99,0xed9a,0xed9b,0xed9c,0xed9d,0xed9e,0xed9f,0xeda0,0xee40,0xee41, +0xee42,0xee43,0xee44,0xee45,0xee46,0xee47,0xee48,0xee49,0xee4a,0xee4b, +0xee4c,0xee4d,0xee4e,0xee4f,0xee50,0xee51,0xee52,0xee53,0xee54,0xee55, +0xee56,0xee57,0xee58,0xee59,0xee5a,0xee5b,0xee5c,0xee5d,0xee5e,0xee5f, +0xee60,0xee61,0xee62,0xee63,0xee64,0xee65,0xee66,0xee67,0xee68,0xee69, +0xee6a,0xee6b,0xee6c,0xee6d,0xee6e,0xee6f,0xee70,0xee71,0xee72,0xee73, +0xee74,0xee75,0xee76,0xee77,0xee78,0xee79,0xee7a,0xee7b,0xee7c,0xee7d, +0xee7e,0xee80,0xee81,0xee82,0xee83,0xee84,0xee85,0xee86,0xee87,0xee88, +0xee89,0xee8a,0xee8b,0xee8c,0xee8d,0xee8e,0xee8f,0xee90,0xee91,0xee92, +0xee93,0xee94,0xee95,0xee96,0xee97,0xee98,0xee99,0xee9a,0xee9b,0xee9c, +0xee9d,0xee9e,0xee9f,0xeea0,0xef40,0xef41,0xef42,0xef43,0xef44,0xef45, +0xd2b3,0xb6a5,0xc7ea,0xf1fc,0xcfee,0xcbb3,0xd0eb,0xe7ef,0xcde7,0xb9cb, +0xb6d9,0xf1fd,0xb0e4,0xcbcc,0xf1fe,0xd4a4,0xc2ad,0xc1ec,0xc6c4,0xbeb1, +0xf2a1,0xbcd5,0xef46,0xf2a2,0xf2a3,0xef47,0xf2a4,0xd2c3,0xc6b5,0xef48, +0xcdc7,0xf2a5,0xef49,0xd3b1,0xbfc5,0xcce2,0xef4a,0xf2a6,0xf2a7,0xd1d5, +0xb6ee,0xf2a8,0xf2a9,0xb5df,0xf2aa,0xf2ab,0xef4b,0xb2fc,0xf2ac,0xf2ad, +0xc8a7,0xef4c,0xef4d,0xef4e,0xef4f,0xef50,0xef51,0xef52,0xef53,0xef54, +0xef55,0xef56,0xef57,0xef58,0xef59,0xef5a,0xef5b,0xef5c,0xef5d,0xef5e, +0xef5f,0xef60,0xef61,0xef62,0xef63,0xef64,0xef65,0xef66,0xef67,0xef68, +0xef69,0xef6a,0xef6b,0xef6c,0xef6d,0xef6e,0xef6f,0xef70,0xef71,0xb7e7, +0xef72,0xef73,0xeca9,0xecaa,0xecab,0xef74,0xecac,0xef75,0xef76,0xc6ae, +0xecad,0xecae,0xef77,0xef78,0xef79,0xb7c9,0xcab3,0xef7a,0xef7b,0xef7c, +0xef7d,0xef7e,0xef80,0xef81,0xe2b8,0xf7cf,0xef82,0xef83,0xef84,0xef85, +0xef86,0xef87,0xef88,0xef89,0xef8a,0xef8b,0xef8c,0xef8d,0xef8e,0xef8f, +0xef90,0xef91,0xef92,0xef93,0xef94,0xef95,0xef96,0xef97,0xef98,0xef99, +0xef9a,0xef9b,0xef9c,0xef9d,0xef9e,0xef9f,0xefa0,0xf040,0xf041,0xf042, +0xf043,0xf044,0xf7d0,0xf045,0xf046,0xb2cd,0xf047,0xf048,0xf049,0xf04a, +0xf04b,0xf04c,0xf04d,0xf04e,0xf04f,0xf050,0xf051,0xf052,0xf053,0xf054, +0xf055,0xf056,0xf057,0xf058,0xf059,0xf05a,0xf05b,0xf05c,0xf05d,0xf05e, +0xf05f,0xf060,0xf061,0xf062,0xf063,0xf7d1,0xf064,0xf065,0xf066,0xf067, +0xf068,0xf069,0xf06a,0xf06b,0xf06c,0xf06d,0xf06e,0xf06f,0xf070,0xf071, +0xf072,0xf073,0xf074,0xf075,0xf076,0xf077,0xf078,0xf079,0xf07a,0xf07b, +0xf07c,0xf07d,0xf07e,0xf080,0xf081,0xf082,0xf083,0xf084,0xf085,0xf086, +0xf087,0xf088,0xf089,0xf7d3,0xf7d2,0xf08a,0xf08b,0xf08c,0xf08d,0xf08e, +0xf08f,0xf090,0xf091,0xf092,0xf093,0xf094,0xf095,0xf096,0xe2bb,0xf097, +0xbca2,0xf098,0xe2bc,0xe2bd,0xe2be,0xe2bf,0xe2c0,0xe2c1,0xb7b9,0xd2fb, +0xbda4,0xcace,0xb1a5,0xcbc7,0xf099,0xe2c2,0xb6fc,0xc8c4,0xe2c3,0xf09a, +0xf09b,0xbdc8,0xf09c,0xb1fd,0xe2c4,0xf09d,0xb6f6,0xe2c5,0xc4d9,0xf09e, +0xf09f,0xe2c6,0xcfda,0xb9dd,0xe2c7,0xc0a1,0xf0a0,0xe2c8,0xb2f6,0xf140, +0xe2c9,0xf141,0xc1f3,0xe2ca,0xe2cb,0xc2f8,0xe2cc,0xe2cd,0xe2ce,0xcad7, +0xd8b8,0xd9e5,0xcfe3,0xf142,0xf143,0xf144,0xf145,0xf146,0xf147,0xf148, +0xf149,0xf14a,0xf14b,0xf14c,0xf0a5,0xf14d,0xf14e,0xdcb0,0xf14f,0xf150, +0xf151,0xf152,0xf153,0xf154,0xf155,0xf156,0xf157,0xf158,0xf159,0xf15a, +0xf15b,0xf15c,0xf15d,0xf15e,0xf15f,0xf160,0xf161,0xf162,0xf163,0xf164, +0xf165,0xf166,0xf167,0xf168,0xf169,0xf16a,0xf16b,0xf16c,0xf16d,0xf16e, +0xf16f,0xf170,0xf171,0xf172,0xf173,0xf174,0xf175,0xf176,0xf177,0xf178, +0xf179,0xf17a,0xf17b,0xf17c,0xf17d,0xf17e,0xf180,0xf181,0xf182,0xf183, +0xf184,0xf185,0xf186,0xf187,0xf188,0xf189,0xf18a,0xf18b,0xf18c,0xf18d, +0xf18e,0xf18f,0xf190,0xf191,0xf192,0xf193,0xf194,0xf195,0xf196,0xf197, +0xf198,0xf199,0xf19a,0xf19b,0xf19c,0xf19d,0xf19e,0xf19f,0xf1a0,0xf240, +0xf241,0xf242,0xf243,0xf244,0xf245,0xf246,0xf247,0xf248,0xf249,0xf24a, +0xf24b,0xf24c,0xf24d,0xf24e,0xf24f,0xf250,0xf251,0xf252,0xf253,0xf254, +0xf255,0xf256,0xf257,0xf258,0xf259,0xf25a,0xf25b,0xf25c,0xf25d,0xf25e, +0xf25f,0xf260,0xf261,0xf262,0xf263,0xf264,0xf265,0xf266,0xf267,0xf268, +0xf269,0xf26a,0xf26b,0xf26c,0xf26d,0xf26e,0xf26f,0xf270,0xf271,0xf272, +0xf273,0xf274,0xf275,0xf276,0xf277,0xf278,0xf279,0xf27a,0xf27b,0xf27c, +0xf27d,0xf27e,0xf280,0xf281,0xf282,0xf283,0xf284,0xf285,0xf286,0xf287, +0xf288,0xf289,0xf28a,0xf28b,0xf28c,0xf28d,0xf28e,0xf28f,0xf290,0xf291, +0xf292,0xf293,0xf294,0xf295,0xf296,0xf297,0xf298,0xf299,0xf29a,0xf29b, +0xf29c,0xf29d,0xf29e,0xf29f,0xf2a0,0xf340,0xf341,0xf342,0xf343,0xf344, +0xf345,0xf346,0xf347,0xf348,0xf349,0xf34a,0xf34b,0xf34c,0xf34d,0xf34e, +0xf34f,0xf350,0xf351,0xc2ed,0xd4a6,0xcdd4,0xd1b1,0xb3db,0xc7fd,0xf352, +0xb2b5,0xc2bf,0xe6e0,0xcabb,0xe6e1,0xe6e2,0xbed4,0xe6e3,0xd7a4,0xcdd5, +0xe6e5,0xbcdd,0xe6e4,0xe6e6,0xe6e7,0xc2ee,0xf353,0xbdbe,0xe6e8,0xc2e6, +0xbaa7,0xe6e9,0xf354,0xe6ea,0xb3d2,0xd1e9,0xf355,0xf356,0xbfa5,0xe6eb, +0xc6ef,0xe6ec,0xe6ed,0xf357,0xf358,0xe6ee,0xc6ad,0xe6ef,0xf359,0xc9a7, +0xe6f0,0xe6f1,0xe6f2,0xe5b9,0xe6f3,0xe6f4,0xc2e2,0xe6f5,0xe6f6,0xd6e8, +0xe6f7,0xf35a,0xe6f8,0xb9c7,0xf35b,0xf35c,0xf35d,0xf35e,0xf35f,0xf360, +0xf361,0xf7bb,0xf7ba,0xf362,0xf363,0xf364,0xf365,0xf7be,0xf7bc,0xbaa1, +0xf366,0xf7bf,0xf367,0xf7c0,0xf368,0xf369,0xf36a,0xf7c2,0xf7c1,0xf7c4, +0xf36b,0xf36c,0xf7c3,0xf36d,0xf36e,0xf36f,0xf370,0xf371,0xf7c5,0xf7c6, +0xf372,0xf373,0xf374,0xf375,0xf7c7,0xf376,0xcbe8,0xf377,0xf378,0xf379, +0xf37a,0xb8df,0xf37b,0xf37c,0xf37d,0xf37e,0xf380,0xf381,0xf7d4,0xf382, +0xf7d5,0xf383,0xf384,0xf385,0xf386,0xf7d6,0xf387,0xf388,0xf389,0xf38a, +0xf7d8,0xf38b,0xf7da,0xf38c,0xf7d7,0xf38d,0xf38e,0xf38f,0xf390,0xf391, +0xf392,0xf393,0xf394,0xf395,0xf7db,0xf396,0xf7d9,0xf397,0xf398,0xf399, +0xf39a,0xf39b,0xf39c,0xf39d,0xd7d7,0xf39e,0xf39f,0xf3a0,0xf440,0xf7dc, +0xf441,0xf442,0xf443,0xf444,0xf445,0xf446,0xf7dd,0xf447,0xf448,0xf449, +0xf7de,0xf44a,0xf44b,0xf44c,0xf44d,0xf44e,0xf44f,0xf450,0xf451,0xf452, +0xf453,0xf454,0xf7df,0xf455,0xf456,0xf457,0xf7e0,0xf458,0xf459,0xf45a, +0xf45b,0xf45c,0xf45d,0xf45e,0xf45f,0xf460,0xf461,0xf462,0xdbcb,0xf463, +0xf464,0xd8aa,0xf465,0xf466,0xf467,0xf468,0xf469,0xf46a,0xf46b,0xf46c, +0xe5f7,0xb9ed,0xf46d,0xf46e,0xf46f,0xf470,0xbffd,0xbbea,0xf7c9,0xc6c7, +0xf7c8,0xf471,0xf7ca,0xf7cc,0xf7cb,0xf472,0xf473,0xf474,0xf7cd,0xf475, +0xceba,0xf476,0xf7ce,0xf477,0xf478,0xc4a7,0xf479,0xf47a,0xf47b,0xf47c, +0xf47d,0xf47e,0xf480,0xf481,0xf482,0xf483,0xf484,0xf485,0xf486,0xf487, +0xf488,0xf489,0xf48a,0xf48b,0xf48c,0xf48d,0xf48e,0xf48f,0xf490,0xf491, +0xf492,0xf493,0xf494,0xf495,0xf496,0xf497,0xf498,0xf499,0xf49a,0xf49b, +0xf49c,0xf49d,0xf49e,0xf49f,0xf4a0,0xf540,0xf541,0xf542,0xf543,0xf544, +0xf545,0xf546,0xf547,0xf548,0xf549,0xf54a,0xf54b,0xf54c,0xf54d,0xf54e, +0xf54f,0xf550,0xf551,0xf552,0xf553,0xf554,0xf555,0xf556,0xf557,0xf558, +0xf559,0xf55a,0xf55b,0xf55c,0xf55d,0xf55e,0xf55f,0xf560,0xf561,0xf562, +0xf563,0xf564,0xf565,0xf566,0xf567,0xf568,0xf569,0xf56a,0xf56b,0xf56c, +0xf56d,0xf56e,0xf56f,0xf570,0xf571,0xf572,0xf573,0xf574,0xf575,0xf576, +0xf577,0xf578,0xf579,0xf57a,0xf57b,0xf57c,0xf57d,0xf57e,0xf580,0xf581, +0xf582,0xf583,0xf584,0xf585,0xf586,0xf587,0xf588,0xf589,0xf58a,0xf58b, +0xf58c,0xf58d,0xf58e,0xf58f,0xf590,0xf591,0xf592,0xf593,0xf594,0xf595, +0xf596,0xf597,0xf598,0xf599,0xf59a,0xf59b,0xf59c,0xf59d,0xf59e,0xf59f, +0xf5a0,0xf640,0xf641,0xf642,0xf643,0xf644,0xf645,0xf646,0xf647,0xf648, +0xf649,0xf64a,0xf64b,0xf64c,0xf64d,0xf64e,0xf64f,0xf650,0xf651,0xf652, +0xf653,0xf654,0xf655,0xf656,0xf657,0xf658,0xf659,0xf65a,0xf65b,0xf65c, +0xf65d,0xf65e,0xf65f,0xf660,0xf661,0xf662,0xf663,0xf664,0xf665,0xf666, +0xf667,0xf668,0xf669,0xf66a,0xf66b,0xf66c,0xf66d,0xf66e,0xf66f,0xf670, +0xf671,0xf672,0xf673,0xf674,0xf675,0xf676,0xf677,0xf678,0xf679,0xf67a, +0xf67b,0xf67c,0xf67d,0xf67e,0xf680,0xf681,0xf682,0xf683,0xf684,0xf685, +0xf686,0xf687,0xf688,0xf689,0xf68a,0xf68b,0xf68c,0xf68d,0xf68e,0xf68f, +0xf690,0xf691,0xf692,0xf693,0xf694,0xf695,0xf696,0xf697,0xf698,0xf699, +0xf69a,0xf69b,0xf69c,0xf69d,0xf69e,0xf69f,0xf6a0,0xf740,0xf741,0xf742, +0xf743,0xf744,0xf745,0xf746,0xf747,0xf748,0xf749,0xf74a,0xf74b,0xf74c, +0xf74d,0xf74e,0xf74f,0xf750,0xf751,0xf752,0xf753,0xf754,0xf755,0xf756, +0xf757,0xf758,0xf759,0xf75a,0xf75b,0xf75c,0xf75d,0xf75e,0xf75f,0xf760, +0xf761,0xf762,0xf763,0xf764,0xf765,0xf766,0xf767,0xf768,0xf769,0xf76a, +0xf76b,0xf76c,0xf76d,0xf76e,0xf76f,0xf770,0xf771,0xf772,0xf773,0xf774, +0xf775,0xf776,0xf777,0xf778,0xf779,0xf77a,0xf77b,0xf77c,0xf77d,0xf77e, +0xf780,0xd3e3,0xf781,0xf782,0xf6cf,0xf783,0xc2b3,0xf6d0,0xf784,0xf785, +0xf6d1,0xf6d2,0xf6d3,0xf6d4,0xf786,0xf787,0xf6d6,0xf788,0xb1ab,0xf6d7, +0xf789,0xf6d8,0xf6d9,0xf6da,0xf78a,0xf6db,0xf6dc,0xf78b,0xf78c,0xf78d, +0xf78e,0xf6dd,0xf6de,0xcfca,0xf78f,0xf6df,0xf6e0,0xf6e1,0xf6e2,0xf6e3, +0xf6e4,0xc0f0,0xf6e5,0xf6e6,0xf6e7,0xf6e8,0xf6e9,0xf790,0xf6ea,0xf791, +0xf6eb,0xf6ec,0xf792,0xf6ed,0xf6ee,0xf6ef,0xf6f0,0xf6f1,0xf6f2,0xf6f3, +0xf6f4,0xbea8,0xf793,0xf6f5,0xf6f6,0xf6f7,0xf6f8,0xf794,0xf795,0xf796, +0xf797,0xf798,0xc8fa,0xf6f9,0xf6fa,0xf6fb,0xf6fc,0xf799,0xf79a,0xf6fd, +0xf6fe,0xf7a1,0xf7a2,0xf7a3,0xf7a4,0xf7a5,0xf79b,0xf79c,0xf7a6,0xf7a7, +0xf7a8,0xb1ee,0xf7a9,0xf7aa,0xf7ab,0xf79d,0xf79e,0xf7ac,0xf7ad,0xc1db, +0xf7ae,0xf79f,0xf7a0,0xf7af,0xf840,0xf841,0xf842,0xf843,0xf844,0xf845, +0xf846,0xf847,0xf848,0xf849,0xf84a,0xf84b,0xf84c,0xf84d,0xf84e,0xf84f, +0xf850,0xf851,0xf852,0xf853,0xf854,0xf855,0xf856,0xf857,0xf858,0xf859, +0xf85a,0xf85b,0xf85c,0xf85d,0xf85e,0xf85f,0xf860,0xf861,0xf862,0xf863, +0xf864,0xf865,0xf866,0xf867,0xf868,0xf869,0xf86a,0xf86b,0xf86c,0xf86d, +0xf86e,0xf86f,0xf870,0xf871,0xf872,0xf873,0xf874,0xf875,0xf876,0xf877, +0xf878,0xf879,0xf87a,0xf87b,0xf87c,0xf87d,0xf87e,0xf880,0xf881,0xf882, +0xf883,0xf884,0xf885,0xf886,0xf887,0xf888,0xf889,0xf88a,0xf88b,0xf88c, +0xf88d,0xf88e,0xf88f,0xf890,0xf891,0xf892,0xf893,0xf894,0xf895,0xf896, +0xf897,0xf898,0xf899,0xf89a,0xf89b,0xf89c,0xf89d,0xf89e,0xf89f,0xf8a0, +0xf940,0xf941,0xf942,0xf943,0xf944,0xf945,0xf946,0xf947,0xf948,0xf949, +0xf94a,0xf94b,0xf94c,0xf94d,0xf94e,0xf94f,0xf950,0xf951,0xf952,0xf953, +0xf954,0xf955,0xf956,0xf957,0xf958,0xf959,0xf95a,0xf95b,0xf95c,0xf95d, +0xf95e,0xf95f,0xf960,0xf961,0xf962,0xf963,0xf964,0xf965,0xf966,0xf967, +0xf968,0xf969,0xf96a,0xf96b,0xf96c,0xf96d,0xf96e,0xf96f,0xf970,0xf971, +0xf972,0xf973,0xf974,0xf975,0xf976,0xf977,0xf978,0xf979,0xf97a,0xf97b, +0xf97c,0xf97d,0xf97e,0xf980,0xf981,0xf982,0xf983,0xf984,0xf985,0xf986, +0xf987,0xf988,0xf989,0xf98a,0xf98b,0xf98c,0xf98d,0xf98e,0xf98f,0xf990, +0xf991,0xf992,0xf993,0xf994,0xf995,0xf996,0xf997,0xf998,0xf999,0xf99a, +0xf99b,0xf99c,0xf99d,0xf99e,0xf99f,0xf9a0,0xfa40,0xfa41,0xfa42,0xfa43, +0xfa44,0xfa45,0xfa46,0xfa47,0xfa48,0xfa49,0xfa4a,0xfa4b,0xfa4c,0xfa4d, +0xfa4e,0xfa4f,0xfa50,0xfa51,0xfa52,0xfa53,0xfa54,0xfa55,0xfa56,0xfa57, +0xfa58,0xfa59,0xfa5a,0xfa5b,0xfa5c,0xfa5d,0xfa5e,0xfa5f,0xfa60,0xfa61, +0xfa62,0xfa63,0xfa64,0xfa65,0xfa66,0xfa67,0xfa68,0xfa69,0xfa6a,0xfa6b, +0xfa6c,0xfa6d,0xfa6e,0xfa6f,0xfa70,0xfa71,0xfa72,0xfa73,0xfa74,0xfa75, +0xfa76,0xfa77,0xfa78,0xfa79,0xfa7a,0xfa7b,0xfa7c,0xfa7d,0xfa7e,0xfa80, +0xfa81,0xfa82,0xfa83,0xfa84,0xfa85,0xfa86,0xfa87,0xfa88,0xfa89,0xfa8a, +0xfa8b,0xfa8c,0xfa8d,0xfa8e,0xfa8f,0xfa90,0xfa91,0xfa92,0xfa93,0xfa94, +0xfa95,0xfa96,0xfa97,0xfa98,0xfa99,0xfa9a,0xfa9b,0xfa9c,0xfa9d,0xfa9e, +0xfa9f,0xfaa0,0xfb40,0xfb41,0xfb42,0xfb43,0xfb44,0xfb45,0xfb46,0xfb47, +0xfb48,0xfb49,0xfb4a,0xfb4b,0xfb4c,0xfb4d,0xfb4e,0xfb4f,0xfb50,0xfb51, +0xfb52,0xfb53,0xfb54,0xfb55,0xfb56,0xfb57,0xfb58,0xfb59,0xfb5a,0xfb5b, +0xc4f1,0xf0af,0xbca6,0xf0b0,0xc3f9,0xfb5c,0xc5b8,0xd1bb,0xfb5d,0xf0b1, +0xf0b2,0xf0b3,0xf0b4,0xf0b5,0xd1bc,0xfb5e,0xd1ec,0xfb5f,0xf0b7,0xf0b6, +0xd4a7,0xfb60,0xcdd2,0xf0b8,0xf0ba,0xf0b9,0xf0bb,0xf0bc,0xfb61,0xfb62, +0xb8eb,0xf0bd,0xbae8,0xfb63,0xf0be,0xf0bf,0xbee9,0xf0c0,0xb6ec,0xf0c1, +0xf0c2,0xf0c3,0xf0c4,0xc8b5,0xf0c5,0xf0c6,0xfb64,0xf0c7,0xc5f4,0xfb65, +0xf0c8,0xfb66,0xfb67,0xfb68,0xf0c9,0xfb69,0xf0ca,0xf7bd,0xfb6a,0xf0cb, +0xf0cc,0xf0cd,0xfb6b,0xf0ce,0xfb6c,0xfb6d,0xfb6e,0xfb6f,0xf0cf,0xbad7, +0xfb70,0xf0d0,0xf0d1,0xf0d2,0xf0d3,0xf0d4,0xf0d5,0xf0d6,0xf0d8,0xfb71, +0xfb72,0xd3a5,0xf0d7,0xfb73,0xf0d9,0xfb74,0xfb75,0xfb76,0xfb77,0xfb78, +0xfb79,0xfb7a,0xfb7b,0xfb7c,0xfb7d,0xf5ba,0xc2b9,0xfb7e,0xfb80,0xf7e4, +0xfb81,0xfb82,0xfb83,0xfb84,0xf7e5,0xf7e6,0xfb85,0xfb86,0xf7e7,0xfb87, +0xfb88,0xfb89,0xfb8a,0xfb8b,0xfb8c,0xf7e8,0xc2b4,0xfb8d,0xfb8e,0xfb8f, +0xfb90,0xfb91,0xfb92,0xfb93,0xfb94,0xfb95,0xf7ea,0xfb96,0xf7eb,0xfb97, +0xfb98,0xfb99,0xfb9a,0xfb9b,0xfb9c,0xc2f3,0xfb9d,0xfb9e,0xfb9f,0xfba0, +0xfc40,0xfc41,0xfc42,0xfc43,0xfc44,0xfc45,0xfc46,0xfc47,0xfc48,0xf4f0, +0xfc49,0xfc4a,0xfc4b,0xf4ef,0xfc4c,0xfc4d,0xc2e9,0xfc4e,0xf7e1,0xf7e2, +0xfc4f,0xfc50,0xfc51,0xfc52,0xfc53,0xbbc6,0xfc54,0xfc55,0xfc56,0xfc57, +0xd9e4,0xfc58,0xfc59,0xfc5a,0xcaf2,0xc0e8,0xf0a4,0xfc5b,0xbada,0xfc5c, +0xfc5d,0xc7ad,0xfc5e,0xfc5f,0xfc60,0xc4ac,0xfc61,0xfc62,0xf7ec,0xf7ed, +0xf7ee,0xfc63,0xf7f0,0xf7ef,0xfc64,0xf7f1,0xfc65,0xfc66,0xf7f4,0xfc67, +0xf7f3,0xfc68,0xf7f2,0xf7f5,0xfc69,0xfc6a,0xfc6b,0xfc6c,0xf7f6,0xfc6d, +0xfc6e,0xfc6f,0xfc70,0xfc71,0xfc72,0xfc73,0xfc74,0xfc75,0xede9,0xfc76, +0xedea,0xedeb,0xfc77,0xf6bc,0xfc78,0xfc79,0xfc7a,0xfc7b,0xfc7c,0xfc7d, +0xfc7e,0xfc80,0xfc81,0xfc82,0xfc83,0xfc84,0xf6bd,0xfc85,0xf6be,0xb6a6, +0xfc86,0xd8be,0xfc87,0xfc88,0xb9c4,0xfc89,0xfc8a,0xfc8b,0xd8bb,0xfc8c, +0xdcb1,0xfc8d,0xfc8e,0xfc8f,0xfc90,0xfc91,0xfc92,0xcaf3,0xfc93,0xf7f7, +0xfc94,0xfc95,0xfc96,0xfc97,0xfc98,0xfc99,0xfc9a,0xfc9b,0xfc9c,0xf7f8, +0xfc9d,0xfc9e,0xf7f9,0xfc9f,0xfca0,0xfd40,0xfd41,0xfd42,0xfd43,0xfd44, +0xf7fb,0xfd45,0xf7fa,0xfd46,0xb1c7,0xfd47,0xf7fc,0xf7fd,0xfd48,0xfd49, +0xfd4a,0xfd4b,0xfd4c,0xf7fe,0xfd4d,0xfd4e,0xfd4f,0xfd50,0xfd51,0xfd52, +0xfd53,0xfd54,0xfd55,0xfd56,0xfd57,0xc6eb,0xecb4,0xfd58,0xfd59,0xfd5a, +0xfd5b,0xfd5c,0xfd5d,0xfd5e,0xfd5f,0xfd60,0xfd61,0xfd62,0xfd63,0xfd64, +0xfd65,0xfd66,0xfd67,0xfd68,0xfd69,0xfd6a,0xfd6b,0xfd6c,0xfd6d,0xfd6e, +0xfd6f,0xfd70,0xfd71,0xfd72,0xfd73,0xfd74,0xfd75,0xfd76,0xfd77,0xfd78, +0xfd79,0xfd7a,0xfd7b,0xfd7c,0xfd7d,0xfd7e,0xfd80,0xfd81,0xfd82,0xfd83, +0xfd84,0xfd85,0xb3dd,0xf6b3,0xfd86,0xfd87,0xf6b4,0xc1e4,0xf6b5,0xf6b6, +0xf6b7,0xf6b8,0xf6b9,0xf6ba,0xc8a3,0xf6bb,0xfd88,0xfd89,0xfd8a,0xfd8b, +0xfd8c,0xfd8d,0xfd8e,0xfd8f,0xfd90,0xfd91,0xfd92,0xfd93,0xc1fa,0xb9a8, +0xede8,0xfd94,0xfd95,0xfd96,0xb9ea,0xd9df,0xfd97,0xfd98,0xfd99,0xfd9a, +0xfd9b,0x82358f33,0x82358f34,0x82358f35,0x82358f36,0x82358f37,0x82358f38, +0x82358f39,0x82359030,0x82359031,0x82359032,0x82359033,0x82359034,0x82359035, +0x82359036,0x82359037,0x82359038,0x82359039,0x82359130,0x82359131,0x82359132, +0x82359133,0x82359134,0x82359135,0x82359136,0x82359137,0x82359138,0x82359139, +0x82359230,0x82359231,0x82359232,0x82359233,0x82359234,0x82359235,0x82359236, +0x82359237,0x82359238,0x82359239,0x82359330,0x82359331,0x82359332,0x82359333, +0x82359334,0x82359335,0x82359336,0x82359337,0x82359338,0x82359339,0x82359430, +0x82359431,0x82359432,0x82359433,0x82359434,0x82359435,0x82359436,0x82359437, +0x82359438,0x82359439,0x82359530,0x82359531,0x82359532,0x82359533,0x82359534, +0x82359535,0x82359536,0x82359537,0x82359538,0x82359539,0x82359630,0x82359631, +0x82359632,0x82359633,0x82359634,0x82359635,0x82359636,0x82359637,0x82359638, +0x82359639,0x82359730,0x82359731,0x82359732,0x82359733,0x82359734,0x82359735, +0x82359736,0x82359737,0x82359738,0x82359739,0x82359830,0x82359831,0x82359832, +0x82359833,0x82359834,0x82359835,0x82359836,0x82359837,0x82359838,0x82359839, +0x82359930,0x82359931,0x82359932,0x82359933,0x82359934,0x82359935,0x82359936, +0x82359937,0x82359938,0x82359939,0x82359a30,0x82359a31,0x82359a32,0x82359a33, +0x82359a34,0x82359a35,0x82359a36,0x82359a37,0x82359a38,0x82359a39,0x82359b30, +0x82359b31,0x82359b32,0x82359b33,0x82359b34,0x82359b35,0x82359b36,0x82359b37, +0x82359b38,0x82359b39,0x82359c30,0x82359c31,0x82359c32,0x82359c33,0x82359c34, +0x82359c35,0x82359c36,0x82359c37,0x82359c38,0x82359c39,0x82359d30,0x82359d31, +0x82359d32,0x82359d33,0x82359d34,0x82359d35,0x82359d36,0x82359d37,0x82359d38, +0x82359d39,0x82359e30,0x82359e31,0x82359e32,0x82359e33,0x82359e34,0x82359e35, +0x82359e36,0x82359e37,0x82359e38,0x82359e39,0x82359f30,0x82359f31,0x82359f32, +0x82359f33,0x82359f34,0x82359f35,0x82359f36,0x82359f37,0x82359f38,0x82359f39, +0x8235a030,0x8235a031,0x8235a032,0x8235a033,0x8235a034,0x8235a035,0x8235a036, +0x8235a037,0x8235a038,0x8235a039,0x8235a130,0x8235a131,0x8235a132,0x8235a133, +0x8235a134,0x8235a135,0x8235a136,0x8235a137,0x8235a138,0x8235a139,0x8235a230, +0x8235a231,0x8235a232,0x8235a233,0x8235a234,0x8235a235,0x8235a236,0x8235a237, +0x8235a238,0x8235a239,0x8235a330,0x8235a331,0x8235a332,0x8235a333,0x8235a334, +0x8235a335,0x8235a336,0x8235a337,0x8235a338,0x8235a339,0x8235a430,0x8235a431, +0x8235a432,0x8235a433,0x8235a434,0x8235a435,0x8235a436,0x8235a437,0x8235a438, +0x8235a439,0x8235a530,0x8235a531,0x8235a532,0x8235a533,0x8235a534,0x8235a535, +0x8235a536,0x8235a537,0x8235a538,0x8235a539,0x8235a630,0x8235a631,0x8235a632, +0x8235a633,0x8235a634,0x8235a635,0x8235a636,0x8235a637,0x8235a638,0x8235a639, +0x8235a730,0x8235a731,0x8235a732,0x8235a733,0x8235a734,0x8235a735,0x8235a736, +0x8235a737,0x8235a738,0x8235a739,0x8235a830,0x8235a831,0x8235a832,0x8235a833, +0x8235a834,0x8235a835,0x8235a836,0x8235a837,0x8235a838,0x8235a839,0x8235a930, +0x8235a931,0x8235a932,0x8235a933,0x8235a934,0x8235a935,0x8235a936,0x8235a937, +0x8235a938,0x8235a939,0x8235aa30,0x8235aa31,0x8235aa32,0x8235aa33,0x8235aa34, +0x8235aa35,0x8235aa36,0x8235aa37,0x8235aa38,0x8235aa39,0x8235ab30,0x8235ab31, +0x8235ab32,0x8235ab33,0x8235ab34,0x8235ab35,0x8235ab36,0x8235ab37,0x8235ab38, +0x8235ab39,0x8235ac30,0x8235ac31,0x8235ac32,0x8235ac33,0x8235ac34,0x8235ac35, +0x8235ac36,0x8235ac37,0x8235ac38,0x8235ac39,0x8235ad30,0x8235ad31,0x8235ad32, +0x8235ad33,0x8235ad34,0x8235ad35,0x8235ad36,0x8235ad37,0x8235ad38,0x8235ad39, +0x8235ae30,0x8235ae31,0x8235ae32,0x8235ae33,0x8235ae34,0x8235ae35,0x8235ae36, +0x8235ae37,0x8235ae38,0x8235ae39,0x8235af30,0x8235af31,0x8235af32,0x8235af33, +0x8235af34,0x8235af35,0x8235af36,0x8235af37,0x8235af38,0x8235af39,0x8235b030, +0x8235b031,0x8235b032,0x8235b033,0x8235b034,0x8235b035,0x8235b036,0x8235b037, +0x8235b038,0x8235b039,0x8235b130,0x8235b131,0x8235b132,0x8235b133,0x8235b134, +0x8235b135,0x8235b136,0x8235b137,0x8235b138,0x8235b139,0x8235b230,0x8235b231, +0x8235b232,0x8235b233,0x8235b234,0x8235b235,0x8235b236,0x8235b237,0x8235b238, +0x8235b239,0x8235b330,0x8235b331,0x8235b332,0x8235b333,0x8235b334,0x8235b335, +0x8235b336,0x8235b337,0x8235b338,0x8235b339,0x8235b430,0x8235b431,0x8235b432, +0x8235b433,0x8235b434,0x8235b435,0x8235b436,0x8235b437,0x8235b438,0x8235b439, +0x8235b530,0x8235b531,0x8235b532,0x8235b533,0x8235b534,0x8235b535,0x8235b536, +0x8235b537,0x8235b538,0x8235b539,0x8235b630,0x8235b631,0x8235b632,0x8235b633, +0x8235b634,0x8235b635,0x8235b636,0x8235b637,0x8235b638,0x8235b639,0x8235b730, +0x8235b731,0x8235b732,0x8235b733,0x8235b734,0x8235b735,0x8235b736,0x8235b737, +0x8235b738,0x8235b739,0x8235b830,0x8235b831,0x8235b832,0x8235b833,0x8235b834, +0x8235b835,0x8235b836,0x8235b837,0x8235b838,0x8235b839,0x8235b930,0x8235b931, +0x8235b932,0x8235b933,0x8235b934,0x8235b935,0x8235b936,0x8235b937,0x8235b938, +0x8235b939,0x8235ba30,0x8235ba31,0x8235ba32,0x8235ba33,0x8235ba34,0x8235ba35, +0x8235ba36,0x8235ba37,0x8235ba38,0x8235ba39,0x8235bb30,0x8235bb31,0x8235bb32, +0x8235bb33,0x8235bb34,0x8235bb35,0x8235bb36,0x8235bb37,0x8235bb38,0x8235bb39, +0x8235bc30,0x8235bc31,0x8235bc32,0x8235bc33,0x8235bc34,0x8235bc35,0x8235bc36, +0x8235bc37,0x8235bc38,0x8235bc39,0x8235bd30,0x8235bd31,0x8235bd32,0x8235bd33, +0x8235bd34,0x8235bd35,0x8235bd36,0x8235bd37,0x8235bd38,0x8235bd39,0x8235be30, +0x8235be31,0x8235be32,0x8235be33,0x8235be34,0x8235be35,0x8235be36,0x8235be37, +0x8235be38,0x8235be39,0x8235bf30,0x8235bf31,0x8235bf32,0x8235bf33,0x8235bf34, +0x8235bf35,0x8235bf36,0x8235bf37,0x8235bf38,0x8235bf39,0x8235c030,0x8235c031, +0x8235c032,0x8235c033,0x8235c034,0x8235c035,0x8235c036,0x8235c037,0x8235c038, +0x8235c039,0x8235c130,0x8235c131,0x8235c132,0x8235c133,0x8235c134,0x8235c135, +0x8235c136,0x8235c137,0x8235c138,0x8235c139,0x8235c230,0x8235c231,0x8235c232, +0x8235c233,0x8235c234,0x8235c235,0x8235c236,0x8235c237,0x8235c238,0x8235c239, +0x8235c330,0x8235c331,0x8235c332,0x8235c333,0x8235c334,0x8235c335,0x8235c336, +0x8235c337,0x8235c338,0x8235c339,0x8235c430,0x8235c431,0x8235c432,0x8235c433, +0x8235c434,0x8235c435,0x8235c436,0x8235c437,0x8235c438,0x8235c439,0x8235c530, +0x8235c531,0x8235c532,0x8235c533,0x8235c534,0x8235c535,0x8235c536,0x8235c537, +0x8235c538,0x8235c539,0x8235c630,0x8235c631,0x8235c632,0x8235c633,0x8235c634, +0x8235c635,0x8235c636,0x8235c637,0x8235c638,0x8235c639,0x8235c730,0x8235c731, +0x8235c732,0x8235c733,0x8235c734,0x8235c735,0x8235c736,0x8235c737,0x8235c738, +0x8235c739,0x8235c830,0x8235c831,0x8235c832,0x8235c833,0x8235c834,0x8235c835, +0x8235c836,0x8235c837,0x8235c838,0x8235c839,0x8235c930,0x8235c931,0x8235c932, +0x8235c933,0x8235c934,0x8235c935,0x8235c936,0x8235c937,0x8235c938,0x8235c939, +0x8235ca30,0x8235ca31,0x8235ca32,0x8235ca33,0x8235ca34,0x8235ca35,0x8235ca36, +0x8235ca37,0x8235ca38,0x8235ca39,0x8235cb30,0x8235cb31,0x8235cb32,0x8235cb33, +0x8235cb34,0x8235cb35,0x8235cb36,0x8235cb37,0x8235cb38,0x8235cb39,0x8235cc30, +0x8235cc31,0x8235cc32,0x8235cc33,0x8235cc34,0x8235cc35,0x8235cc36,0x8235cc37, +0x8235cc38,0x8235cc39,0x8235cd30,0x8235cd31,0x8235cd32,0x8235cd33,0x8235cd34, +0x8235cd35,0x8235cd36,0x8235cd37,0x8235cd38,0x8235cd39,0x8235ce30,0x8235ce31, +0x8235ce32,0x8235ce33,0x8235ce34,0x8235ce35,0x8235ce36,0x8235ce37,0x8235ce38, +0x8235ce39,0x8235cf30,0x8235cf31,0x8235cf32,0x8235cf33,0x8235cf34,0x8235cf35, +0x8235cf36,0x8235cf37,0x8235cf38,0x8235cf39,0x8235d030,0x8235d031,0x8235d032, +0x8235d033,0x8235d034,0x8235d035,0x8235d036,0x8235d037,0x8235d038,0x8235d039, +0x8235d130,0x8235d131,0x8235d132,0x8235d133,0x8235d134,0x8235d135,0x8235d136, +0x8235d137,0x8235d138,0x8235d139,0x8235d230,0x8235d231,0x8235d232,0x8235d233, +0x8235d234,0x8235d235,0x8235d236,0x8235d237,0x8235d238,0x8235d239,0x8235d330, +0x8235d331,0x8235d332,0x8235d333,0x8235d334,0x8235d335,0x8235d336,0x8235d337, +0x8235d338,0x8235d339,0x8235d430,0x8235d431,0x8235d432,0x8235d433,0x8235d434, +0x8235d435,0x8235d436,0x8235d437,0x8235d438,0x8235d439,0x8235d530,0x8235d531, +0x8235d532,0x8235d533,0x8235d534,0x8235d535,0x8235d536,0x8235d537,0x8235d538, +0x8235d539,0x8235d630,0x8235d631,0x8235d632,0x8235d633,0x8235d634,0x8235d635, +0x8235d636,0x8235d637,0x8235d638,0x8235d639,0x8235d730,0x8235d731,0x8235d732, +0x8235d733,0x8235d734,0x8235d735,0x8235d736,0x8235d737,0x8235d738,0x8235d739, +0x8235d830,0x8235d831,0x8235d832,0x8235d833,0x8235d834,0x8235d835,0x8235d836, +0x8235d837,0x8235d838,0x8235d839,0x8235d930,0x8235d931,0x8235d932,0x8235d933, +0x8235d934,0x8235d935,0x8235d936,0x8235d937,0x8235d938,0x8235d939,0x8235da30, +0x8235da31,0x8235da32,0x8235da33,0x8235da34,0x8235da35,0x8235da36,0x8235da37, +0x8235da38,0x8235da39,0x8235db30,0x8235db31,0x8235db32,0x8235db33,0x8235db34, +0x8235db35,0x8235db36,0x8235db37,0x8235db38,0x8235db39,0x8235dc30,0x8235dc31, +0x8235dc32,0x8235dc33,0x8235dc34,0x8235dc35,0x8235dc36,0x8235dc37,0x8235dc38, +0x8235dc39,0x8235dd30,0x8235dd31,0x8235dd32,0x8235dd33,0x8235dd34,0x8235dd35, +0x8235dd36,0x8235dd37,0x8235dd38,0x8235dd39,0x8235de30,0x8235de31,0x8235de32, +0x8235de33,0x8235de34,0x8235de35,0x8235de36,0x8235de37,0x8235de38,0x8235de39, +0x8235df30,0x8235df31,0x8235df32,0x8235df33,0x8235df34,0x8235df35,0x8235df36, +0x8235df37,0x8235df38,0x8235df39,0x8235e030,0x8235e031,0x8235e032,0x8235e033, +0x8235e034,0x8235e035,0x8235e036,0x8235e037,0x8235e038,0x8235e039,0x8235e130, +0x8235e131,0x8235e132,0x8235e133,0x8235e134,0x8235e135,0x8235e136,0x8235e137, +0x8235e138,0x8235e139,0x8235e230,0x8235e231,0x8235e232,0x8235e233,0x8235e234, +0x8235e235,0x8235e236,0x8235e237,0x8235e238,0x8235e239,0x8235e330,0x8235e331, +0x8235e332,0x8235e333,0x8235e334,0x8235e335,0x8235e336,0x8235e337,0x8235e338, +0x8235e339,0x8235e430,0x8235e431,0x8235e432,0x8235e433,0x8235e434,0x8235e435, +0x8235e436,0x8235e437,0x8235e438,0x8235e439,0x8235e530,0x8235e531,0x8235e532, +0x8235e533,0x8235e534,0x8235e535,0x8235e536,0x8235e537,0x8235e538,0x8235e539, +0x8235e630,0x8235e631,0x8235e632,0x8235e633,0x8235e634,0x8235e635,0x8235e636, +0x8235e637,0x8235e638,0x8235e639,0x8235e730,0x8235e731,0x8235e732,0x8235e733, +0x8235e734,0x8235e735,0x8235e736,0x8235e737,0x8235e738,0x8235e739,0x8235e830, +0x8235e831,0x8235e832,0x8235e833,0x8235e834,0x8235e835,0x8235e836,0x8235e837, +0x8235e838,0x8235e839,0x8235e930,0x8235e931,0x8235e932,0x8235e933,0x8235e934, +0x8235e935,0x8235e936,0x8235e937,0x8235e938,0x8235e939,0x8235ea30,0x8235ea31, +0x8235ea32,0x8235ea33,0x8235ea34,0x8235ea35,0x8235ea36,0x8235ea37,0x8235ea38, +0x8235ea39,0x8235eb30,0x8235eb31,0x8235eb32,0x8235eb33,0x8235eb34,0x8235eb35, +0x8235eb36,0x8235eb37,0x8235eb38,0x8235eb39,0x8235ec30,0x8235ec31,0x8235ec32, +0x8235ec33,0x8235ec34,0x8235ec35,0x8235ec36,0x8235ec37,0x8235ec38,0x8235ec39, +0x8235ed30,0x8235ed31,0x8235ed32,0x8235ed33,0x8235ed34,0x8235ed35,0x8235ed36, +0x8235ed37,0x8235ed38,0x8235ed39,0x8235ee30,0x8235ee31,0x8235ee32,0x8235ee33, +0x8235ee34,0x8235ee35,0x8235ee36,0x8235ee37,0x8235ee38,0x8235ee39,0x8235ef30, +0x8235ef31,0x8235ef32,0x8235ef33,0x8235ef34,0x8235ef35,0x8235ef36,0x8235ef37, +0x8235ef38,0x8235ef39,0x8235f030,0x8235f031,0x8235f032,0x8235f033,0x8235f034, +0x8235f035,0x8235f036,0x8235f037,0x8235f038,0x8235f039,0x8235f130,0x8235f131, +0x8235f132,0x8235f133,0x8235f134,0x8235f135,0x8235f136,0x8235f137,0x8235f138, +0x8235f139,0x8235f230,0x8235f231,0x8235f232,0x8235f233,0x8235f234,0x8235f235, +0x8235f236,0x8235f237,0x8235f238,0x8235f239,0x8235f330,0x8235f331,0x8235f332, +0x8235f333,0x8235f334,0x8235f335,0x8235f336,0x8235f337,0x8235f338,0x8235f339, +0x8235f430,0x8235f431,0x8235f432,0x8235f433,0x8235f434,0x8235f435,0x8235f436, +0x8235f437,0x8235f438,0x8235f439,0x8235f530,0x8235f531,0x8235f532,0x8235f533, +0x8235f534,0x8235f535,0x8235f536,0x8235f537,0x8235f538,0x8235f539,0x8235f630, +0x8235f631,0x8235f632,0x8235f633,0x8235f634,0x8235f635,0x8235f636,0x8235f637, +0x8235f638,0x8235f639,0x8235f730,0x8235f731,0x8235f732,0x8235f733,0x8235f734, +0x8235f735,0x8235f736,0x8235f737,0x8235f738,0x8235f739,0x8235f830,0x8235f831, +0x8235f832,0x8235f833,0x8235f834,0x8235f835,0x8235f836,0x8235f837,0x8235f838, +0x8235f839,0x8235f930,0x8235f931,0x8235f932,0x8235f933,0x8235f934,0x8235f935, +0x8235f936,0x8235f937,0x8235f938,0x8235f939,0x8235fa30,0x8235fa31,0x8235fa32, +0x8235fa33,0x8235fa34,0x8235fa35,0x8235fa36,0x8235fa37,0x8235fa38,0x8235fa39, +0x8235fb30,0x8235fb31,0x8235fb32,0x8235fb33,0x8235fb34,0x8235fb35,0x8235fb36, +0x8235fb37,0x8235fb38,0x8235fb39,0x8235fc30,0x8235fc31,0x8235fc32,0x8235fc33, +0x8235fc34,0x8235fc35,0x8235fc36,0x8235fc37,0x8235fc38,0x8235fc39,0x8235fd30, +0x8235fd31,0x8235fd32,0x8235fd33,0x8235fd34,0x8235fd35,0x8235fd36,0x8235fd37, +0x8235fd38,0x8235fd39,0x8235fe30,0x8235fe31,0x8235fe32,0x8235fe33,0x8235fe34, +0x8235fe35,0x8235fe36,0x8235fe37,0x8235fe38,0x8235fe39,0x82368130,0x82368131, +0x82368132,0x82368133,0x82368134,0x82368135,0x82368136,0x82368137,0x82368138, +0x82368139,0x82368230,0x82368231,0x82368232,0x82368233,0x82368234,0x82368235, +0x82368236,0x82368237,0x82368238,0x82368239,0x82368330,0x82368331,0x82368332, +0x82368333,0x82368334,0x82368335,0x82368336,0x82368337,0x82368338,0x82368339, +0x82368430,0x82368431,0x82368432,0x82368433,0x82368434,0x82368435,0x82368436, +0x82368437,0x82368438,0x82368439,0x82368530,0x82368531,0x82368532,0x82368533, +0x82368534,0x82368535,0x82368536,0x82368537,0x82368538,0x82368539,0x82368630, +0x82368631,0x82368632,0x82368633,0x82368634,0x82368635,0x82368636,0x82368637, +0x82368638,0x82368639,0x82368730,0x82368731,0x82368732,0x82368733,0x82368734, +0x82368735,0x82368736,0x82368737,0x82368738,0x82368739,0x82368830,0x82368831, +0x82368832,0x82368833,0x82368834,0x82368835,0x82368836,0x82368837,0x82368838, +0x82368839,0x82368930,0x82368931,0x82368932,0x82368933,0x82368934,0x82368935, +0x82368936,0x82368937,0x82368938,0x82368939,0x82368a30,0x82368a31,0x82368a32, +0x82368a33,0x82368a34,0x82368a35,0x82368a36,0x82368a37,0x82368a38,0x82368a39, +0x82368b30,0x82368b31,0x82368b32,0x82368b33,0x82368b34,0x82368b35,0x82368b36, +0x82368b37,0x82368b38,0x82368b39,0x82368c30,0x82368c31,0x82368c32,0x82368c33, +0x82368c34,0x82368c35,0x82368c36,0x82368c37,0x82368c38,0x82368c39,0x82368d30, +0x82368d31,0x82368d32,0x82368d33,0x82368d34,0x82368d35,0x82368d36,0x82368d37, +0x82368d38,0x82368d39,0x82368e30,0x82368e31,0x82368e32,0x82368e33,0x82368e34, +0x82368e35,0x82368e36,0x82368e37,0x82368e38,0x82368e39,0x82368f30,0x82368f31, +0x82368f32,0x82368f33,0x82368f34,0x82368f35,0x82368f36,0x82368f37,0x82368f38, +0x82368f39,0x82369030,0x82369031,0x82369032,0x82369033,0x82369034,0x82369035, +0x82369036,0x82369037,0x82369038,0x82369039,0x82369130,0x82369131,0x82369132, +0x82369133,0x82369134,0x82369135,0x82369136,0x82369137,0x82369138,0x82369139, +0x82369230,0x82369231,0x82369232,0x82369233,0x82369234,0x82369235,0x82369236, +0x82369237,0x82369238,0x82369239,0x82369330,0x82369331,0x82369332,0x82369333, +0x82369334,0x82369335,0x82369336,0x82369337,0x82369338,0x82369339,0x82369430, +0x82369431,0x82369432,0x82369433,0x82369434,0x82369435,0x82369436,0x82369437, +0x82369438,0x82369439,0x82369530,0x82369531,0x82369532,0x82369533,0x82369534, +0x82369535,0x82369536,0x82369537,0x82369538,0x82369539,0x82369630,0x82369631, +0x82369632,0x82369633,0x82369634,0x82369635,0x82369636,0x82369637,0x82369638, +0x82369639,0x82369730,0x82369731,0x82369732,0x82369733,0x82369734,0x82369735, +0x82369736,0x82369737,0x82369738,0x82369739,0x82369830,0x82369831,0x82369832, +0x82369833,0x82369834,0x82369835,0x82369836,0x82369837,0x82369838,0x82369839, +0x82369930,0x82369931,0x82369932,0x82369933,0x82369934,0x82369935,0x82369936, +0x82369937,0x82369938,0x82369939,0x82369a30,0x82369a31,0x82369a32,0x82369a33, +0x82369a34,0x82369a35,0x82369a36,0x82369a37,0x82369a38,0x82369a39,0x82369b30, +0x82369b31,0x82369b32,0x82369b33,0x82369b34,0x82369b35,0x82369b36,0x82369b37, +0x82369b38,0x82369b39,0x82369c30,0x82369c31,0x82369c32,0x82369c33,0x82369c34, +0x82369c35,0x82369c36,0x82369c37,0x82369c38,0x82369c39,0x82369d30,0x82369d31, +0x82369d32,0x82369d33,0x82369d34,0x82369d35,0x82369d36,0x82369d37,0x82369d38, +0x82369d39,0x82369e30,0x82369e31,0x82369e32,0x82369e33,0x82369e34,0x82369e35, +0x82369e36,0x82369e37,0x82369e38,0x82369e39,0x82369f30,0x82369f31,0x82369f32, +0x82369f33,0x82369f34,0x82369f35,0x82369f36,0x82369f37,0x82369f38,0x82369f39, +0x8236a030,0x8236a031,0x8236a032,0x8236a033,0x8236a034,0x8236a035,0x8236a036, +0x8236a037,0x8236a038,0x8236a039,0x8236a130,0x8236a131,0x8236a132,0x8236a133, +0x8236a134,0x8236a135,0x8236a136,0x8236a137,0x8236a138,0x8236a139,0x8236a230, +0x8236a231,0x8236a232,0x8236a233,0x8236a234,0x8236a235,0x8236a236,0x8236a237, +0x8236a238,0x8236a239,0x8236a330,0x8236a331,0x8236a332,0x8236a333,0x8236a334, +0x8236a335,0x8236a336,0x8236a337,0x8236a338,0x8236a339,0x8236a430,0x8236a431, +0x8236a432,0x8236a433,0x8236a434,0x8236a435,0x8236a436,0x8236a437,0x8236a438, +0x8236a439,0x8236a530,0x8236a531,0x8236a532,0x8236a533,0x8236a534,0x8236a535, +0x8236a536,0x8236a537,0x8236a538,0x8236a539,0x8236a630,0x8236a631,0x8236a632, +0x8236a633,0x8236a634,0x8236a635,0x8236a636,0x8236a637,0x8236a638,0x8236a639, +0x8236a730,0x8236a731,0x8236a732,0x8236a733,0x8236a734,0x8236a735,0x8236a736, +0x8236a737,0x8236a738,0x8236a739,0x8236a830,0x8236a831,0x8236a832,0x8236a833, +0x8236a834,0x8236a835,0x8236a836,0x8236a837,0x8236a838,0x8236a839,0x8236a930, +0x8236a931,0x8236a932,0x8236a933,0x8236a934,0x8236a935,0x8236a936,0x8236a937, +0x8236a938,0x8236a939,0x8236aa30,0x8236aa31,0x8236aa32,0x8236aa33,0x8236aa34, +0x8236aa35,0x8236aa36,0x8236aa37,0x8236aa38,0x8236aa39,0x8236ab30,0x8236ab31, +0x8236ab32,0x8236ab33,0x8236ab34,0x8236ab35,0x8236ab36,0x8236ab37,0x8236ab38, +0x8236ab39,0x8236ac30,0x8236ac31,0x8236ac32,0x8236ac33,0x8236ac34,0x8236ac35, +0x8236ac36,0x8236ac37,0x8236ac38,0x8236ac39,0x8236ad30,0x8236ad31,0x8236ad32, +0x8236ad33,0x8236ad34,0x8236ad35,0x8236ad36,0x8236ad37,0x8236ad38,0x8236ad39, +0x8236ae30,0x8236ae31,0x8236ae32,0x8236ae33,0x8236ae34,0x8236ae35,0x8236ae36, +0x8236ae37,0x8236ae38,0x8236ae39,0x8236af30,0x8236af31,0x8236af32,0x8236af33, +0x8236af34,0x8236af35,0x8236af36,0x8236af37,0x8236af38,0x8236af39,0x8236b030, +0x8236b031,0x8236b032,0x8236b033,0x8236b034,0x8236b035,0x8236b036,0x8236b037, +0x8236b038,0x8236b039,0x8236b130,0x8236b131,0x8236b132,0x8236b133,0x8236b134, +0x8236b135,0x8236b136,0x8236b137,0x8236b138,0x8236b139,0x8236b230,0x8236b231, +0x8236b232,0x8236b233,0x8236b234,0x8236b235,0x8236b236,0x8236b237,0x8236b238, +0x8236b239,0x8236b330,0x8236b331,0x8236b332,0x8236b333,0x8236b334,0x8236b335, +0x8236b336,0x8236b337,0x8236b338,0x8236b339,0x8236b430,0x8236b431,0x8236b432, +0x8236b433,0x8236b434,0x8236b435,0x8236b436,0x8236b437,0x8236b438,0x8236b439, +0x8236b530,0x8236b531,0x8236b532,0x8236b533,0x8236b534,0x8236b535,0x8236b536, +0x8236b537,0x8236b538,0x8236b539,0x8236b630,0x8236b631,0x8236b632,0x8236b633, +0x8236b634,0x8236b635,0x8236b636,0x8236b637,0x8236b638,0x8236b639,0x8236b730, +0x8236b731,0x8236b732,0x8236b733,0x8236b734,0x8236b735,0x8236b736,0x8236b737, +0x8236b738,0x8236b739,0x8236b830,0x8236b831,0x8236b832,0x8236b833,0x8236b834, +0x8236b835,0x8236b836,0x8236b837,0x8236b838,0x8236b839,0x8236b930,0x8236b931, +0x8236b932,0x8236b933,0x8236b934,0x8236b935,0x8236b936,0x8236b937,0x8236b938, +0x8236b939,0x8236ba30,0x8236ba31,0x8236ba32,0x8236ba33,0x8236ba34,0x8236ba35, +0x8236ba36,0x8236ba37,0x8236ba38,0x8236ba39,0x8236bb30,0x8236bb31,0x8236bb32, +0x8236bb33,0x8236bb34,0x8236bb35,0x8236bb36,0x8236bb37,0x8236bb38,0x8236bb39, +0x8236bc30,0x8236bc31,0x8236bc32,0x8236bc33,0x8236bc34,0x8236bc35,0x8236bc36, +0x8236bc37,0x8236bc38,0x8236bc39,0x8236bd30,0x8236bd31,0x8236bd32,0x8236bd33, +0x8236bd34,0x8236bd35,0x8236bd36,0x8236bd37,0x8236bd38,0x8236bd39,0x8236be30, +0x8236be31,0x8236be32,0x8236be33,0x8236be34,0x8236be35,0x8236be36,0x8236be37, +0x8236be38,0x8236be39,0x8236bf30,0x8236bf31,0x8236bf32,0x8236bf33,0x8236bf34, +0x8236bf35,0x8236bf36,0x8236bf37,0x8236bf38,0x8236bf39,0x8236c030,0x8236c031, +0x8236c032,0x8236c033,0x8236c034,0x8236c035,0x8236c036,0x8236c037,0x8236c038, +0x8236c039,0x8236c130,0x8236c131,0x8236c132,0x8236c133,0x8236c134,0x8236c135, +0x8236c136,0x8236c137,0x8236c138,0x8236c139,0x8236c230,0x8236c231,0x8236c232, +0x8236c233,0x8236c234,0x8236c235,0x8236c236,0x8236c237,0x8236c238,0x8236c239, +0x8236c330,0x8236c331,0x8236c332,0x8236c333,0x8236c334,0x8236c335,0x8236c336, +0x8236c337,0x8236c338,0x8236c339,0x8236c430,0x8236c431,0x8236c432,0x8236c433, +0x8236c434,0x8236c435,0x8236c436,0x8236c437,0x8236c438,0x8236c439,0x8236c530, +0x8236c531,0x8236c532,0x8236c533,0x8236c534,0x8236c535,0x8236c536,0x8236c537, +0x8236c538,0x8236c539,0x8236c630,0x8236c631,0x8236c632,0x8236c633,0x8236c634, +0x8236c635,0x8236c636,0x8236c637,0x8236c638,0x8236c639,0x8236c730,0x8236c731, +0x8236c732,0x8236c733,0x8236c734,0x8236c735,0x8236c736,0x8236c737,0x8236c738, +0x8236c739,0x8236c830,0x8236c831,0x8236c832,0x8236c833,0x8236c834,0x8236c835, +0x8236c836,0x8236c837,0x8236c838,0x8236c839,0x8236c930,0x8236c931,0x8236c932, +0x8236c933,0x8236c934,0x8236c935,0x8236c936,0x8236c937,0x8236c938,0x8236c939, +0x8236ca30,0x8236ca31,0x8236ca32,0x8236ca33,0x8236ca34,0x8236ca35,0x8236ca36, +0x8236ca37,0x8236ca38,0x8236ca39,0x8236cb30,0x8236cb31,0x8236cb32,0x8236cb33, +0x8236cb34,0x8236cb35,0x8236cb36,0x8236cb37,0x8236cb38,0x8236cb39,0x8236cc30, +0x8236cc31,0x8236cc32,0x8236cc33,0x8236cc34,0x8236cc35,0x8236cc36,0x8236cc37, +0x8236cc38,0x8236cc39,0x8236cd30,0x8236cd31,0x8236cd32,0x8236cd33,0x8236cd34, +0x8236cd35,0x8236cd36,0x8236cd37,0x8236cd38,0x8236cd39,0x8236ce30,0x8236ce31, +0x8236ce32,0x8236ce33,0x8236ce34,0x8236ce35,0x8236ce36,0x8236ce37,0x8236ce38, +0x8236ce39,0x8236cf30,0x8236cf31,0x8236cf32,0x8236cf33,0x8236cf34,0x8236cf35, +0x8236cf36,0x8236cf37,0x8236cf38,0x8236cf39,0x8236d030,0x8236d031,0x8236d032, +0x8236d033,0x8236d034,0x8236d035,0x8236d036,0x8236d037,0x8236d038,0x8236d039, +0x8236d130,0x8236d131,0x8236d132,0x8236d133,0x8236d134,0x8236d135,0x8236d136, +0x8236d137,0x8236d138,0x8236d139,0x8236d230,0x8236d231,0x8236d232,0x8236d233, +0x8236d234,0x8236d235,0x8236d236,0x8236d237,0x8236d238,0x8236d239,0x8236d330, +0x8236d331,0x8236d332,0x8236d333,0x8236d334,0x8236d335,0x8236d336,0x8236d337, +0x8236d338,0x8236d339,0x8236d430,0x8236d431,0x8236d432,0x8236d433,0x8236d434, +0x8236d435,0x8236d436,0x8236d437,0x8236d438,0x8236d439,0x8236d530,0x8236d531, +0x8236d532,0x8236d533,0x8236d534,0x8236d535,0x8236d536,0x8236d537,0x8236d538, +0x8236d539,0x8236d630,0x8236d631,0x8236d632,0x8236d633,0x8236d634,0x8236d635, +0x8236d636,0x8236d637,0x8236d638,0x8236d639,0x8236d730,0x8236d731,0x8236d732, +0x8236d733,0x8236d734,0x8236d735,0x8236d736,0x8236d737,0x8236d738,0x8236d739, +0x8236d830,0x8236d831,0x8236d832,0x8236d833,0x8236d834,0x8236d835,0x8236d836, +0x8236d837,0x8236d838,0x8236d839,0x8236d930,0x8236d931,0x8236d932,0x8236d933, +0x8236d934,0x8236d935,0x8236d936,0x8236d937,0x8236d938,0x8236d939,0x8236da30, +0x8236da31,0x8236da32,0x8236da33,0x8236da34,0x8236da35,0x8236da36,0x8236da37, +0x8236da38,0x8236da39,0x8236db30,0x8236db31,0x8236db32,0x8236db33,0x8236db34, +0x8236db35,0x8236db36,0x8236db37,0x8236db38,0x8236db39,0x8236dc30,0x8236dc31, +0x8236dc32,0x8236dc33,0x8236dc34,0x8236dc35,0x8236dc36,0x8236dc37,0x8236dc38, +0x8236dc39,0x8236dd30,0x8236dd31,0x8236dd32,0x8236dd33,0x8236dd34,0x8236dd35, +0x8236dd36,0x8236dd37,0x8236dd38,0x8236dd39,0x8236de30,0x8236de31,0x8236de32, +0x8236de33,0x8236de34,0x8236de35,0x8236de36,0x8236de37,0x8236de38,0x8236de39, +0x8236df30,0x8236df31,0x8236df32,0x8236df33,0x8236df34,0x8236df35,0x8236df36, +0x8236df37,0x8236df38,0x8236df39,0x8236e030,0x8236e031,0x8236e032,0x8236e033, +0x8236e034,0x8236e035,0x8236e036,0x8236e037,0x8236e038,0x8236e039,0x8236e130, +0x8236e131,0x8236e132,0x8236e133,0x8236e134,0x8236e135,0x8236e136,0x8236e137, +0x8236e138,0x8236e139,0x8236e230,0x8236e231,0x8236e232,0x8236e233,0x8236e234, +0x8236e235,0x8236e236,0x8236e237,0x8236e238,0x8236e239,0x8236e330,0x8236e331, +0x8236e332,0x8236e333,0x8236e334,0x8236e335,0x8236e336,0x8236e337,0x8236e338, +0x8236e339,0x8236e430,0x8236e431,0x8236e432,0x8236e433,0x8236e434,0x8236e435, +0x8236e436,0x8236e437,0x8236e438,0x8236e439,0x8236e530,0x8236e531,0x8236e532, +0x8236e533,0x8236e534,0x8236e535,0x8236e536,0x8236e537,0x8236e538,0x8236e539, +0x8236e630,0x8236e631,0x8236e632,0x8236e633,0x8236e634,0x8236e635,0x8236e636, +0x8236e637,0x8236e638,0x8236e639,0x8236e730,0x8236e731,0x8236e732,0x8236e733, +0x8236e734,0x8236e735,0x8236e736,0x8236e737,0x8236e738,0x8236e739,0x8236e830, +0x8236e831,0x8236e832,0x8236e833,0x8236e834,0x8236e835,0x8236e836,0x8236e837, +0x8236e838,0x8236e839,0x8236e930,0x8236e931,0x8236e932,0x8236e933,0x8236e934, +0x8236e935,0x8236e936,0x8236e937,0x8236e938,0x8236e939,0x8236ea30,0x8236ea31, +0x8236ea32,0x8236ea33,0x8236ea34,0x8236ea35,0x8236ea36,0x8236ea37,0x8236ea38, +0x8236ea39,0x8236eb30,0x8236eb31,0x8236eb32,0x8236eb33,0x8236eb34,0x8236eb35, +0x8236eb36,0x8236eb37,0x8236eb38,0x8236eb39,0x8236ec30,0x8236ec31,0x8236ec32, +0x8236ec33,0x8236ec34,0x8236ec35,0x8236ec36,0x8236ec37,0x8236ec38,0x8236ec39, +0x8236ed30,0x8236ed31,0x8236ed32,0x8236ed33,0x8236ed34,0x8236ed35,0x8236ed36, +0x8236ed37,0x8236ed38,0x8236ed39,0x8236ee30,0x8236ee31,0x8236ee32,0x8236ee33, +0x8236ee34,0x8236ee35,0x8236ee36,0x8236ee37,0x8236ee38,0x8236ee39,0x8236ef30, +0x8236ef31,0x8236ef32,0x8236ef33,0x8236ef34,0x8236ef35,0x8236ef36,0x8236ef37, +0x8236ef38,0x8236ef39,0x8236f030,0x8236f031,0x8236f032,0x8236f033,0x8236f034, +0x8236f035,0x8236f036,0x8236f037,0x8236f038,0x8236f039,0x8236f130,0x8236f131, +0x8236f132,0x8236f133,0x8236f134,0x8236f135,0x8236f136,0x8236f137,0x8236f138, +0x8236f139,0x8236f230,0x8236f231,0x8236f232,0x8236f233,0x8236f234,0x8236f235, +0x8236f236,0x8236f237,0x8236f238,0x8236f239,0x8236f330,0x8236f331,0x8236f332, +0x8236f333,0x8236f334,0x8236f335,0x8236f336,0x8236f337,0x8236f338,0x8236f339, +0x8236f430,0x8236f431,0x8236f432,0x8236f433,0x8236f434,0x8236f435,0x8236f436, +0x8236f437,0x8236f438,0x8236f439,0x8236f530,0x8236f531,0x8236f532,0x8236f533, +0x8236f534,0x8236f535,0x8236f536,0x8236f537,0x8236f538,0x8236f539,0x8236f630, +0x8236f631,0x8236f632,0x8236f633,0x8236f634,0x8236f635,0x8236f636,0x8236f637, +0x8236f638,0x8236f639,0x8236f730,0x8236f731,0x8236f732,0x8236f733,0x8236f734, +0x8236f735,0x8236f736,0x8236f737,0x8236f738,0x8236f739,0x8236f830,0x8236f831, +0x8236f832,0x8236f833,0x8236f834,0x8236f835,0x8236f836,0x8236f837,0x8236f838, +0x8236f839,0x8236f930,0x8236f931,0x8236f932,0x8236f933,0x8236f934,0x8236f935, +0x8236f936,0x8236f937,0x8236f938,0x8236f939,0x8236fa30,0x8236fa31,0x8236fa32, +0x8236fa33,0x8236fa34,0x8236fa35,0x8236fa36,0x8236fa37,0x8236fa38,0x8236fa39, +0x8236fb30,0x8236fb31,0x8236fb32,0x8236fb33,0x8236fb34,0x8236fb35,0x8236fb36, +0x8236fb37,0x8236fb38,0x8236fb39,0x8236fc30,0x8236fc31,0x8236fc32,0x8236fc33, +0x8236fc34,0x8236fc35,0x8236fc36,0x8236fc37,0x8236fc38,0x8236fc39,0x8236fd30, +0x8236fd31,0x8236fd32,0x8236fd33,0x8236fd34,0x8236fd35,0x8236fd36,0x8236fd37, +0x8236fd38,0x8236fd39,0x8236fe30,0x8236fe31,0x8236fe32,0x8236fe33,0x8236fe34, +0x8236fe35,0x8236fe36,0x8236fe37,0x8236fe38,0x8236fe39,0x82378130,0x82378131, +0x82378132,0x82378133,0x82378134,0x82378135,0x82378136,0x82378137,0x82378138, +0x82378139,0x82378230,0x82378231,0x82378232,0x82378233,0x82378234,0x82378235, +0x82378236,0x82378237,0x82378238,0x82378239,0x82378330,0x82378331,0x82378332, +0x82378333,0x82378334,0x82378335,0x82378336,0x82378337,0x82378338,0x82378339, +0x82378430,0x82378431,0x82378432,0x82378433,0x82378434,0x82378435,0x82378436, +0x82378437,0x82378438,0x82378439,0x82378530,0x82378531,0x82378532,0x82378533, +0x82378534,0x82378535,0x82378536,0x82378537,0x82378538,0x82378539,0x82378630, +0x82378631,0x82378632,0x82378633,0x82378634,0x82378635,0x82378636,0x82378637, +0x82378638,0x82378639,0x82378730,0x82378731,0x82378732,0x82378733,0x82378734, +0x82378735,0x82378736,0x82378737,0x82378738,0x82378739,0x82378830,0x82378831, +0x82378832,0x82378833,0x82378834,0x82378835,0x82378836,0x82378837,0x82378838, +0x82378839,0x82378930,0x82378931,0x82378932,0x82378933,0x82378934,0x82378935, +0x82378936,0x82378937,0x82378938,0x82378939,0x82378a30,0x82378a31,0x82378a32, +0x82378a33,0x82378a34,0x82378a35,0x82378a36,0x82378a37,0x82378a38,0x82378a39, +0x82378b30,0x82378b31,0x82378b32,0x82378b33,0x82378b34,0x82378b35,0x82378b36, +0x82378b37,0x82378b38,0x82378b39,0x82378c30,0x82378c31,0x82378c32,0x82378c33, +0x82378c34,0x82378c35,0x82378c36,0x82378c37,0x82378c38,0x82378c39,0x82378d30, +0x82378d31,0x82378d32,0x82378d33,0x82378d34,0x82378d35,0x82378d36,0x82378d37, +0x82378d38,0x82378d39,0x82378e30,0x82378e31,0x82378e32,0x82378e33,0x82378e34, +0x82378e35,0x82378e36,0x82378e37,0x82378e38,0x82378e39,0x82378f30,0x82378f31, +0x82378f32,0x82378f33,0x82378f34,0x82378f35,0x82378f36,0x82378f37,0x82378f38, +0x82378f39,0x82379030,0x82379031,0x82379032,0x82379033,0x82379034,0x82379035, +0x82379036,0x82379037,0x82379038,0x82379039,0x82379130,0x82379131,0x82379132, +0x82379133,0x82379134,0x82379135,0x82379136,0x82379137,0x82379138,0x82379139, +0x82379230,0x82379231,0x82379232,0x82379233,0x82379234,0x82379235,0x82379236, +0x82379237,0x82379238,0x82379239,0x82379330,0x82379331,0x82379332,0x82379333, +0x82379334,0x82379335,0x82379336,0x82379337,0x82379338,0x82379339,0x82379430, +0x82379431,0x82379432,0x82379433,0x82379434,0x82379435,0x82379436,0x82379437, +0x82379438,0x82379439,0x82379530,0x82379531,0x82379532,0x82379533,0x82379534, +0x82379535,0x82379536,0x82379537,0x82379538,0x82379539,0x82379630,0x82379631, +0x82379632,0x82379633,0x82379634,0x82379635,0x82379636,0x82379637,0x82379638, +0x82379639,0x82379730,0x82379731,0x82379732,0x82379733,0x82379734,0x82379735, +0x82379736,0x82379737,0x82379738,0x82379739,0x82379830,0x82379831,0x82379832, +0x82379833,0x82379834,0x82379835,0x82379836,0x82379837,0x82379838,0x82379839, +0x82379930,0x82379931,0x82379932,0x82379933,0x82379934,0x82379935,0x82379936, +0x82379937,0x82379938,0x82379939,0x82379a30,0x82379a31,0x82379a32,0x82379a33, +0x82379a34,0x82379a35,0x82379a36,0x82379a37,0x82379a38,0x82379a39,0x82379b30, +0x82379b31,0x82379b32,0x82379b33,0x82379b34,0x82379b35,0x82379b36,0x82379b37, +0x82379b38,0x82379b39,0x82379c30,0x82379c31,0x82379c32,0x82379c33,0x82379c34, +0x82379c35,0x82379c36,0x82379c37,0x82379c38,0x82379c39,0x82379d30,0x82379d31, +0x82379d32,0x82379d33,0x82379d34,0x82379d35,0x82379d36,0x82379d37,0x82379d38, +0x82379d39,0x82379e30,0x82379e31,0x82379e32,0x82379e33,0x82379e34,0x82379e35, +0x82379e36,0x82379e37,0x82379e38,0x82379e39,0x82379f30,0x82379f31,0x82379f32, +0x82379f33,0x82379f34,0x82379f35,0x82379f36,0x82379f37,0x82379f38,0x82379f39, +0x8237a030,0x8237a031,0x8237a032,0x8237a033,0x8237a034,0x8237a035,0x8237a036, +0x8237a037,0x8237a038,0x8237a039,0x8237a130,0x8237a131,0x8237a132,0x8237a133, +0x8237a134,0x8237a135,0x8237a136,0x8237a137,0x8237a138,0x8237a139,0x8237a230, +0x8237a231,0x8237a232,0x8237a233,0x8237a234,0x8237a235,0x8237a236,0x8237a237, +0x8237a238,0x8237a239,0x8237a330,0x8237a331,0x8237a332,0x8237a333,0x8237a334, +0x8237a335,0x8237a336,0x8237a337,0x8237a338,0x8237a339,0x8237a430,0x8237a431, +0x8237a432,0x8237a433,0x8237a434,0x8237a435,0x8237a436,0x8237a437,0x8237a438, +0x8237a439,0x8237a530,0x8237a531,0x8237a532,0x8237a533,0x8237a534,0x8237a535, +0x8237a536,0x8237a537,0x8237a538,0x8237a539,0x8237a630,0x8237a631,0x8237a632, +0x8237a633,0x8237a634,0x8237a635,0x8237a636,0x8237a637,0x8237a638,0x8237a639, +0x8237a730,0x8237a731,0x8237a732,0x8237a733,0x8237a734,0x8237a735,0x8237a736, +0x8237a737,0x8237a738,0x8237a739,0x8237a830,0x8237a831,0x8237a832,0x8237a833, +0x8237a834,0x8237a835,0x8237a836,0x8237a837,0x8237a838,0x8237a839,0x8237a930, +0x8237a931,0x8237a932,0x8237a933,0x8237a934,0x8237a935,0x8237a936,0x8237a937, +0x8237a938,0x8237a939,0x8237aa30,0x8237aa31,0x8237aa32,0x8237aa33,0x8237aa34, +0x8237aa35,0x8237aa36,0x8237aa37,0x8237aa38,0x8237aa39,0x8237ab30,0x8237ab31, +0x8237ab32,0x8237ab33,0x8237ab34,0x8237ab35,0x8237ab36,0x8237ab37,0x8237ab38, +0x8237ab39,0x8237ac30,0x8237ac31,0x8237ac32,0x8237ac33,0x8237ac34,0x8237ac35, +0x8237ac36,0x8237ac37,0x8237ac38,0x8237ac39,0x8237ad30,0x8237ad31,0x8237ad32, +0x8237ad33,0x8237ad34,0x8237ad35,0x8237ad36,0x8237ad37,0x8237ad38,0x8237ad39, +0x8237ae30,0x8237ae31,0x8237ae32,0x8237ae33,0x8237ae34,0x8237ae35,0x8237ae36, +0x8237ae37,0x8237ae38,0x8237ae39,0x8237af30,0x8237af31,0x8237af32,0x8237af33, +0x8237af34,0x8237af35,0x8237af36,0x8237af37,0x8237af38,0x8237af39,0x8237b030, +0x8237b031,0x8237b032,0x8237b033,0x8237b034,0x8237b035,0x8237b036,0x8237b037, +0x8237b038,0x8237b039,0x8237b130,0x8237b131,0x8237b132,0x8237b133,0x8237b134, +0x8237b135,0x8237b136,0x8237b137,0x8237b138,0x8237b139,0x8237b230,0x8237b231, +0x8237b232,0x8237b233,0x8237b234,0x8237b235,0x8237b236,0x8237b237,0x8237b238, +0x8237b239,0x8237b330,0x8237b331,0x8237b332,0x8237b333,0x8237b334,0x8237b335, +0x8237b336,0x8237b337,0x8237b338,0x8237b339,0x8237b430,0x8237b431,0x8237b432, +0x8237b433,0x8237b434,0x8237b435,0x8237b436,0x8237b437,0x8237b438,0x8237b439, +0x8237b530,0x8237b531,0x8237b532,0x8237b533,0x8237b534,0x8237b535,0x8237b536, +0x8237b537,0x8237b538,0x8237b539,0x8237b630,0x8237b631,0x8237b632,0x8237b633, +0x8237b634,0x8237b635,0x8237b636,0x8237b637,0x8237b638,0x8237b639,0x8237b730, +0x8237b731,0x8237b732,0x8237b733,0x8237b734,0x8237b735,0x8237b736,0x8237b737, +0x8237b738,0x8237b739,0x8237b830,0x8237b831,0x8237b832,0x8237b833,0x8237b834, +0x8237b835,0x8237b836,0x8237b837,0x8237b838,0x8237b839,0x8237b930,0x8237b931, +0x8237b932,0x8237b933,0x8237b934,0x8237b935,0x8237b936,0x8237b937,0x8237b938, +0x8237b939,0x8237ba30,0x8237ba31,0x8237ba32,0x8237ba33,0x8237ba34,0x8237ba35, +0x8237ba36,0x8237ba37,0x8237ba38,0x8237ba39,0x8237bb30,0x8237bb31,0x8237bb32, +0x8237bb33,0x8237bb34,0x8237bb35,0x8237bb36,0x8237bb37,0x8237bb38,0x8237bb39, +0x8237bc30,0x8237bc31,0x8237bc32,0x8237bc33,0x8237bc34,0x8237bc35,0x8237bc36, +0x8237bc37,0x8237bc38,0x8237bc39,0x8237bd30,0x8237bd31,0x8237bd32,0x8237bd33, +0x8237bd34,0x8237bd35,0x8237bd36,0x8237bd37,0x8237bd38,0x8237bd39,0x8237be30, +0x8237be31,0x8237be32,0x8237be33,0x8237be34,0x8237be35,0x8237be36,0x8237be37, +0x8237be38,0x8237be39,0x8237bf30,0x8237bf31,0x8237bf32,0x8237bf33,0x8237bf34, +0x8237bf35,0x8237bf36,0x8237bf37,0x8237bf38,0x8237bf39,0x8237c030,0x8237c031, +0x8237c032,0x8237c033,0x8237c034,0x8237c035,0x8237c036,0x8237c037,0x8237c038, +0x8237c039,0x8237c130,0x8237c131,0x8237c132,0x8237c133,0x8237c134,0x8237c135, +0x8237c136,0x8237c137,0x8237c138,0x8237c139,0x8237c230,0x8237c231,0x8237c232, +0x8237c233,0x8237c234,0x8237c235,0x8237c236,0x8237c237,0x8237c238,0x8237c239, +0x8237c330,0x8237c331,0x8237c332,0x8237c333,0x8237c334,0x8237c335,0x8237c336, +0x8237c337,0x8237c338,0x8237c339,0x8237c430,0x8237c431,0x8237c432,0x8237c433, +0x8237c434,0x8237c435,0x8237c436,0x8237c437,0x8237c438,0x8237c439,0x8237c530, +0x8237c531,0x8237c532,0x8237c533,0x8237c534,0x8237c535,0x8237c536,0x8237c537, +0x8237c538,0x8237c539,0x8237c630,0x8237c631,0x8237c632,0x8237c633,0x8237c634, +0x8237c635,0x8237c636,0x8237c637,0x8237c638,0x8237c639,0x8237c730,0x8237c731, +0x8237c732,0x8237c733,0x8237c734,0x8237c735,0x8237c736,0x8237c737,0x8237c738, +0x8237c739,0x8237c830,0x8237c831,0x8237c832,0x8237c833,0x8237c834,0x8237c835, +0x8237c836,0x8237c837,0x8237c838,0x8237c839,0x8237c930,0x8237c931,0x8237c932, +0x8237c933,0x8237c934,0x8237c935,0x8237c936,0x8237c937,0x8237c938,0x8237c939, +0x8237ca30,0x8237ca31,0x8237ca32,0x8237ca33,0x8237ca34,0x8237ca35,0x8237ca36, +0x8237ca37,0x8237ca38,0x8237ca39,0x8237cb30,0x8237cb31,0x8237cb32,0x8237cb33, +0x8237cb34,0x8237cb35,0x8237cb36,0x8237cb37,0x8237cb38,0x8237cb39,0x8237cc30, +0x8237cc31,0x8237cc32,0x8237cc33,0x8237cc34,0x8237cc35,0x8237cc36,0x8237cc37, +0x8237cc38,0x8237cc39,0x8237cd30,0x8237cd31,0x8237cd32,0x8237cd33,0x8237cd34, +0x8237cd35,0x8237cd36,0x8237cd37,0x8237cd38,0x8237cd39,0x8237ce30,0x8237ce31, +0x8237ce32,0x8237ce33,0x8237ce34,0x8237ce35,0x8237ce36,0x8237ce37,0x8237ce38, +0x8237ce39,0x8237cf30,0x8237cf31,0x8237cf32,0x8237cf33,0x8237cf34,0x8237cf35, +0x8237cf36,0x8237cf37,0x8237cf38,0x8237cf39,0x8237d030,0x8237d031,0x8237d032, +0x8237d033,0x8237d034,0x8237d035,0x8237d036,0x8237d037,0x8237d038,0x8237d039, +0x8237d130,0x8237d131,0x8237d132,0x8237d133,0x8237d134,0x8237d135,0x8237d136, +0x8237d137,0x8237d138,0x8237d139,0x8237d230,0x8237d231,0x8237d232,0x8237d233, +0x8237d234,0x8237d235,0x8237d236,0x8237d237,0x8237d238,0x8237d239,0x8237d330, +0x8237d331,0x8237d332,0x8237d333,0x8237d334,0x8237d335,0x8237d336,0x8237d337, +0x8237d338,0x8237d339,0x8237d430,0x8237d431,0x8237d432,0x8237d433,0x8237d434, +0x8237d435,0x8237d436,0x8237d437,0x8237d438,0x8237d439,0x8237d530,0x8237d531, +0x8237d532,0x8237d533,0x8237d534,0x8237d535,0x8237d536,0x8237d537,0x8237d538, +0x8237d539,0x8237d630,0x8237d631,0x8237d632,0x8237d633,0x8237d634,0x8237d635, +0x8237d636,0x8237d637,0x8237d638,0x8237d639,0x8237d730,0x8237d731,0x8237d732, +0x8237d733,0x8237d734,0x8237d735,0x8237d736,0x8237d737,0x8237d738,0x8237d739, +0x8237d830,0x8237d831,0x8237d832,0x8237d833,0x8237d834,0x8237d835,0x8237d836, +0x8237d837,0x8237d838,0x8237d839,0x8237d930,0x8237d931,0x8237d932,0x8237d933, +0x8237d934,0x8237d935,0x8237d936,0x8237d937,0x8237d938,0x8237d939,0x8237da30, +0x8237da31,0x8237da32,0x8237da33,0x8237da34,0x8237da35,0x8237da36,0x8237da37, +0x8237da38,0x8237da39,0x8237db30,0x8237db31,0x8237db32,0x8237db33,0x8237db34, +0x8237db35,0x8237db36,0x8237db37,0x8237db38,0x8237db39,0x8237dc30,0x8237dc31, +0x8237dc32,0x8237dc33,0x8237dc34,0x8237dc35,0x8237dc36,0x8237dc37,0x8237dc38, +0x8237dc39,0x8237dd30,0x8237dd31,0x8237dd32,0x8237dd33,0x8237dd34,0x8237dd35, +0x8237dd36,0x8237dd37,0x8237dd38,0x8237dd39,0x8237de30,0x8237de31,0x8237de32, +0x8237de33,0x8237de34,0x8237de35,0x8237de36,0x8237de37,0x8237de38,0x8237de39, +0x8237df30,0x8237df31,0x8237df32,0x8237df33,0x8237df34,0x8237df35,0x8237df36, +0x8237df37,0x8237df38,0x8237df39,0x8237e030,0x8237e031,0x8237e032,0x8237e033, +0x8237e034,0x8237e035,0x8237e036,0x8237e037,0x8237e038,0x8237e039,0x8237e130, +0x8237e131,0x8237e132,0x8237e133,0x8237e134,0x8237e135,0x8237e136,0x8237e137, +0x8237e138,0x8237e139,0x8237e230,0x8237e231,0x8237e232,0x8237e233,0x8237e234, +0x8237e235,0x8237e236,0x8237e237,0x8237e238,0x8237e239,0x8237e330,0x8237e331, +0x8237e332,0x8237e333,0x8237e334,0x8237e335,0x8237e336,0x8237e337,0x8237e338, +0x8237e339,0x8237e430,0x8237e431,0x8237e432,0x8237e433,0x8237e434,0x8237e435, +0x8237e436,0x8237e437,0x8237e438,0x8237e439,0x8237e530,0x8237e531,0x8237e532, +0x8237e533,0x8237e534,0x8237e535,0x8237e536,0x8237e537,0x8237e538,0x8237e539, +0x8237e630,0x8237e631,0x8237e632,0x8237e633,0x8237e634,0x8237e635,0x8237e636, +0x8237e637,0x8237e638,0x8237e639,0x8237e730,0x8237e731,0x8237e732,0x8237e733, +0x8237e734,0x8237e735,0x8237e736,0x8237e737,0x8237e738,0x8237e739,0x8237e830, +0x8237e831,0x8237e832,0x8237e833,0x8237e834,0x8237e835,0x8237e836,0x8237e837, +0x8237e838,0x8237e839,0x8237e930,0x8237e931,0x8237e932,0x8237e933,0x8237e934, +0x8237e935,0x8237e936,0x8237e937,0x8237e938,0x8237e939,0x8237ea30,0x8237ea31, +0x8237ea32,0x8237ea33,0x8237ea34,0x8237ea35,0x8237ea36,0x8237ea37,0x8237ea38, +0x8237ea39,0x8237eb30,0x8237eb31,0x8237eb32,0x8237eb33,0x8237eb34,0x8237eb35, +0x8237eb36,0x8237eb37,0x8237eb38,0x8237eb39,0x8237ec30,0x8237ec31,0x8237ec32, +0x8237ec33,0x8237ec34,0x8237ec35,0x8237ec36,0x8237ec37,0x8237ec38,0x8237ec39, +0x8237ed30,0x8237ed31,0x8237ed32,0x8237ed33,0x8237ed34,0x8237ed35,0x8237ed36, +0x8237ed37,0x8237ed38,0x8237ed39,0x8237ee30,0x8237ee31,0x8237ee32,0x8237ee33, +0x8237ee34,0x8237ee35,0x8237ee36,0x8237ee37,0x8237ee38,0x8237ee39,0x8237ef30, +0x8237ef31,0x8237ef32,0x8237ef33,0x8237ef34,0x8237ef35,0x8237ef36,0x8237ef37, +0x8237ef38,0x8237ef39,0x8237f030,0x8237f031,0x8237f032,0x8237f033,0x8237f034, +0x8237f035,0x8237f036,0x8237f037,0x8237f038,0x8237f039,0x8237f130,0x8237f131, +0x8237f132,0x8237f133,0x8237f134,0x8237f135,0x8237f136,0x8237f137,0x8237f138, +0x8237f139,0x8237f230,0x8237f231,0x8237f232,0x8237f233,0x8237f234,0x8237f235, +0x8237f236,0x8237f237,0x8237f238,0x8237f239,0x8237f330,0x8237f331,0x8237f332, +0x8237f333,0x8237f334,0x8237f335,0x8237f336,0x8237f337,0x8237f338,0x8237f339, +0x8237f430,0x8237f431,0x8237f432,0x8237f433,0x8237f434,0x8237f435,0x8237f436, +0x8237f437,0x8237f438,0x8237f439,0x8237f530,0x8237f531,0x8237f532,0x8237f533, +0x8237f534,0x8237f535,0x8237f536,0x8237f537,0x8237f538,0x8237f539,0x8237f630, +0x8237f631,0x8237f632,0x8237f633,0x8237f634,0x8237f635,0x8237f636,0x8237f637, +0x8237f638,0x8237f639,0x8237f730,0x8237f731,0x8237f732,0x8237f733,0x8237f734, +0x8237f735,0x8237f736,0x8237f737,0x8237f738,0x8237f739,0x8237f830,0x8237f831, +0x8237f832,0x8237f833,0x8237f834,0x8237f835,0x8237f836,0x8237f837,0x8237f838, +0x8237f839,0x8237f930,0x8237f931,0x8237f932,0x8237f933,0x8237f934,0x8237f935, +0x8237f936,0x8237f937,0x8237f938,0x8237f939,0x8237fa30,0x8237fa31,0x8237fa32, +0x8237fa33,0x8237fa34,0x8237fa35,0x8237fa36,0x8237fa37,0x8237fa38,0x8237fa39, +0x8237fb30,0x8237fb31,0x8237fb32,0x8237fb33,0x8237fb34,0x8237fb35,0x8237fb36, +0x8237fb37,0x8237fb38,0x8237fb39,0x8237fc30,0x8237fc31,0x8237fc32,0x8237fc33, +0x8237fc34,0x8237fc35,0x8237fc36,0x8237fc37,0x8237fc38,0x8237fc39,0x8237fd30, +0x8237fd31,0x8237fd32,0x8237fd33,0x8237fd34,0x8237fd35,0x8237fd36,0x8237fd37, +0x8237fd38,0x8237fd39,0x8237fe30,0x8237fe31,0x8237fe32,0x8237fe33,0x8237fe34, +0x8237fe35,0x8237fe36,0x8237fe37,0x8237fe38,0x8237fe39,0x82388130,0x82388131, +0x82388132,0x82388133,0x82388134,0x82388135,0x82388136,0x82388137,0x82388138, +0x82388139,0x82388230,0x82388231,0x82388232,0x82388233,0x82388234,0x82388235, +0x82388236,0x82388237,0x82388238,0x82388239,0x82388330,0x82388331,0x82388332, +0x82388333,0x82388334,0x82388335,0x82388336,0x82388337,0x82388338,0x82388339, +0x82388430,0x82388431,0x82388432,0x82388433,0x82388434,0x82388435,0x82388436, +0x82388437,0x82388438,0x82388439,0x82388530,0x82388531,0x82388532,0x82388533, +0x82388534,0x82388535,0x82388536,0x82388537,0x82388538,0x82388539,0x82388630, +0x82388631,0x82388632,0x82388633,0x82388634,0x82388635,0x82388636,0x82388637, +0x82388638,0x82388639,0x82388730,0x82388731,0x82388732,0x82388733,0x82388734, +0x82388735,0x82388736,0x82388737,0x82388738,0x82388739,0x82388830,0x82388831, +0x82388832,0x82388833,0x82388834,0x82388835,0x82388836,0x82388837,0x82388838, +0x82388839,0x82388930,0x82388931,0x82388932,0x82388933,0x82388934,0x82388935, +0x82388936,0x82388937,0x82388938,0x82388939,0x82388a30,0x82388a31,0x82388a32, +0x82388a33,0x82388a34,0x82388a35,0x82388a36,0x82388a37,0x82388a38,0x82388a39, +0x82388b30,0x82388b31,0x82388b32,0x82388b33,0x82388b34,0x82388b35,0x82388b36, +0x82388b37,0x82388b38,0x82388b39,0x82388c30,0x82388c31,0x82388c32,0x82388c33, +0x82388c34,0x82388c35,0x82388c36,0x82388c37,0x82388c38,0x82388c39,0x82388d30, +0x82388d31,0x82388d32,0x82388d33,0x82388d34,0x82388d35,0x82388d36,0x82388d37, +0x82388d38,0x82388d39,0x82388e30,0x82388e31,0x82388e32,0x82388e33,0x82388e34, +0x82388e35,0x82388e36,0x82388e37,0x82388e38,0x82388e39,0x82388f30,0x82388f31, +0x82388f32,0x82388f33,0x82388f34,0x82388f35,0x82388f36,0x82388f37,0x82388f38, +0x82388f39,0x82389030,0x82389031,0x82389032,0x82389033,0x82389034,0x82389035, +0x82389036,0x82389037,0x82389038,0x82389039,0x82389130,0x82389131,0x82389132, +0x82389133,0x82389134,0x82389135,0x82389136,0x82389137,0x82389138,0x82389139, +0x82389230,0x82389231,0x82389232,0x82389233,0x82389234,0x82389235,0x82389236, +0x82389237,0x82389238,0x82389239,0x82389330,0x82389331,0x82389332,0x82389333, +0x82389334,0x82389335,0x82389336,0x82389337,0x82389338,0x82389339,0x82389430, +0x82389431,0x82389432,0x82389433,0x82389434,0x82389435,0x82389436,0x82389437, +0x82389438,0x82389439,0x82389530,0x82389531,0x82389532,0x82389533,0x82389534, +0x82389535,0x82389536,0x82389537,0x82389538,0x82389539,0x82389630,0x82389631, +0x82389632,0x82389633,0x82389634,0x82389635,0x82389636,0x82389637,0x82389638, +0x82389639,0x82389730,0x82389731,0x82389732,0x82389733,0x82389734,0x82389735, +0x82389736,0x82389737,0x82389738,0x82389739,0x82389830,0x82389831,0x82389832, +0x82389833,0x82389834,0x82389835,0x82389836,0x82389837,0x82389838,0x82389839, +0x82389930,0x82389931,0x82389932,0x82389933,0x82389934,0x82389935,0x82389936, +0x82389937,0x82389938,0x82389939,0x82389a30,0x82389a31,0x82389a32,0x82389a33, +0x82389a34,0x82389a35,0x82389a36,0x82389a37,0x82389a38,0x82389a39,0x82389b30, +0x82389b31,0x82389b32,0x82389b33,0x82389b34,0x82389b35,0x82389b36,0x82389b37, +0x82389b38,0x82389b39,0x82389c30,0x82389c31,0x82389c32,0x82389c33,0x82389c34, +0x82389c35,0x82389c36,0x82389c37,0x82389c38,0x82389c39,0x82389d30,0x82389d31, +0x82389d32,0x82389d33,0x82389d34,0x82389d35,0x82389d36,0x82389d37,0x82389d38, +0x82389d39,0x82389e30,0x82389e31,0x82389e32,0x82389e33,0x82389e34,0x82389e35, +0x82389e36,0x82389e37,0x82389e38,0x82389e39,0x82389f30,0x82389f31,0x82389f32, +0x82389f33,0x82389f34,0x82389f35,0x82389f36,0x82389f37,0x82389f38,0x82389f39, +0x8238a030,0x8238a031,0x8238a032,0x8238a033,0x8238a034,0x8238a035,0x8238a036, +0x8238a037,0x8238a038,0x8238a039,0x8238a130,0x8238a131,0x8238a132,0x8238a133, +0x8238a134,0x8238a135,0x8238a136,0x8238a137,0x8238a138,0x8238a139,0x8238a230, +0x8238a231,0x8238a232,0x8238a233,0x8238a234,0x8238a235,0x8238a236,0x8238a237, +0x8238a238,0x8238a239,0x8238a330,0x8238a331,0x8238a332,0x8238a333,0x8238a334, +0x8238a335,0x8238a336,0x8238a337,0x8238a338,0x8238a339,0x8238a430,0x8238a431, +0x8238a432,0x8238a433,0x8238a434,0x8238a435,0x8238a436,0x8238a437,0x8238a438, +0x8238a439,0x8238a530,0x8238a531,0x8238a532,0x8238a533,0x8238a534,0x8238a535, +0x8238a536,0x8238a537,0x8238a538,0x8238a539,0x8238a630,0x8238a631,0x8238a632, +0x8238a633,0x8238a634,0x8238a635,0x8238a636,0x8238a637,0x8238a638,0x8238a639, +0x8238a730,0x8238a731,0x8238a732,0x8238a733,0x8238a734,0x8238a735,0x8238a736, +0x8238a737,0x8238a738,0x8238a739,0x8238a830,0x8238a831,0x8238a832,0x8238a833, +0x8238a834,0x8238a835,0x8238a836,0x8238a837,0x8238a838,0x8238a839,0x8238a930, +0x8238a931,0x8238a932,0x8238a933,0x8238a934,0x8238a935,0x8238a936,0x8238a937, +0x8238a938,0x8238a939,0x8238aa30,0x8238aa31,0x8238aa32,0x8238aa33,0x8238aa34, +0x8238aa35,0x8238aa36,0x8238aa37,0x8238aa38,0x8238aa39,0x8238ab30,0x8238ab31, +0x8238ab32,0x8238ab33,0x8238ab34,0x8238ab35,0x8238ab36,0x8238ab37,0x8238ab38, +0x8238ab39,0x8238ac30,0x8238ac31,0x8238ac32,0x8238ac33,0x8238ac34,0x8238ac35, +0x8238ac36,0x8238ac37,0x8238ac38,0x8238ac39,0x8238ad30,0x8238ad31,0x8238ad32, +0x8238ad33,0x8238ad34,0x8238ad35,0x8238ad36,0x8238ad37,0x8238ad38,0x8238ad39, +0x8238ae30,0x8238ae31,0x8238ae32,0x8238ae33,0x8238ae34,0x8238ae35,0x8238ae36, +0x8238ae37,0x8238ae38,0x8238ae39,0x8238af30,0x8238af31,0x8238af32,0x8238af33, +0x8238af34,0x8238af35,0x8238af36,0x8238af37,0x8238af38,0x8238af39,0x8238b030, +0x8238b031,0x8238b032,0x8238b033,0x8238b034,0x8238b035,0x8238b036,0x8238b037, +0x8238b038,0x8238b039,0x8238b130,0x8238b131,0x8238b132,0x8238b133,0x8238b134, +0x8238b135,0x8238b136,0x8238b137,0x8238b138,0x8238b139,0x8238b230,0x8238b231, +0x8238b232,0x8238b233,0x8238b234,0x8238b235,0x8238b236,0x8238b237,0x8238b238, +0x8238b239,0x8238b330,0x8238b331,0x8238b332,0x8238b333,0x8238b334,0x8238b335, +0x8238b336,0x8238b337,0x8238b338,0x8238b339,0x8238b430,0x8238b431,0x8238b432, +0x8238b433,0x8238b434,0x8238b435,0x8238b436,0x8238b437,0x8238b438,0x8238b439, +0x8238b530,0x8238b531,0x8238b532,0x8238b533,0x8238b534,0x8238b535,0x8238b536, +0x8238b537,0x8238b538,0x8238b539,0x8238b630,0x8238b631,0x8238b632,0x8238b633, +0x8238b634,0x8238b635,0x8238b636,0x8238b637,0x8238b638,0x8238b639,0x8238b730, +0x8238b731,0x8238b732,0x8238b733,0x8238b734,0x8238b735,0x8238b736,0x8238b737, +0x8238b738,0x8238b739,0x8238b830,0x8238b831,0x8238b832,0x8238b833,0x8238b834, +0x8238b835,0x8238b836,0x8238b837,0x8238b838,0x8238b839,0x8238b930,0x8238b931, +0x8238b932,0x8238b933,0x8238b934,0x8238b935,0x8238b936,0x8238b937,0x8238b938, +0x8238b939,0x8238ba30,0x8238ba31,0x8238ba32,0x8238ba33,0x8238ba34,0x8238ba35, +0x8238ba36,0x8238ba37,0x8238ba38,0x8238ba39,0x8238bb30,0x8238bb31,0x8238bb32, +0x8238bb33,0x8238bb34,0x8238bb35,0x8238bb36,0x8238bb37,0x8238bb38,0x8238bb39, +0x8238bc30,0x8238bc31,0x8238bc32,0x8238bc33,0x8238bc34,0x8238bc35,0x8238bc36, +0x8238bc37,0x8238bc38,0x8238bc39,0x8238bd30,0x8238bd31,0x8238bd32,0x8238bd33, +0x8238bd34,0x8238bd35,0x8238bd36,0x8238bd37,0x8238bd38,0x8238bd39,0x8238be30, +0x8238be31,0x8238be32,0x8238be33,0x8238be34,0x8238be35,0x8238be36,0x8238be37, +0x8238be38,0x8238be39,0x8238bf30,0x8238bf31,0x8238bf32,0x8238bf33,0x8238bf34, +0x8238bf35,0x8238bf36,0x8238bf37,0x8238bf38,0x8238bf39,0x8238c030,0x8238c031, +0x8238c032,0x8238c033,0x8238c034,0x8238c035,0x8238c036,0x8238c037,0x8238c038, +0x8238c039,0x8238c130,0x8238c131,0x8238c132,0x8238c133,0x8238c134,0x8238c135, +0x8238c136,0x8238c137,0x8238c138,0x8238c139,0x8238c230,0x8238c231,0x8238c232, +0x8238c233,0x8238c234,0x8238c235,0x8238c236,0x8238c237,0x8238c238,0x8238c239, +0x8238c330,0x8238c331,0x8238c332,0x8238c333,0x8238c334,0x8238c335,0x8238c336, +0x8238c337,0x8238c338,0x8238c339,0x8238c430,0x8238c431,0x8238c432,0x8238c433, +0x8238c434,0x8238c435,0x8238c436,0x8238c437,0x8238c438,0x8238c439,0x8238c530, +0x8238c531,0x8238c532,0x8238c533,0x8238c534,0x8238c535,0x8238c536,0x8238c537, +0x8238c538,0x8238c539,0x8238c630,0x8238c631,0x8238c632,0x8238c633,0x8238c634, +0x8238c635,0x8238c636,0x8238c637,0x8238c638,0x8238c639,0x8238c730,0x8238c731, +0x8238c732,0x8238c733,0x8238c734,0x8238c735,0x8238c736,0x8238c737,0x8238c738, +0x8238c739,0x8238c830,0x8238c831,0x8238c832,0x8238c833,0x8238c834,0x8238c835, +0x8238c836,0x8238c837,0x8238c838,0x8238c839,0x8238c930,0x8238c931,0x8238c932, +0x8238c933,0x8238c934,0x8238c935,0x8238c936,0x8238c937,0x8238c938,0x8238c939, +0x8238ca30,0x8238ca31,0x8238ca32,0x8238ca33,0x8238ca34,0x8238ca35,0x8238ca36, +0x8238ca37,0x8238ca38,0x8238ca39,0x8238cb30,0x8238cb31,0x8238cb32,0x8238cb33, +0x8238cb34,0x8238cb35,0x8238cb36,0x8238cb37,0x8238cb38,0x8238cb39,0x8238cc30, +0x8238cc31,0x8238cc32,0x8238cc33,0x8238cc34,0x8238cc35,0x8238cc36,0x8238cc37, +0x8238cc38,0x8238cc39,0x8238cd30,0x8238cd31,0x8238cd32,0x8238cd33,0x8238cd34, +0x8238cd35,0x8238cd36,0x8238cd37,0x8238cd38,0x8238cd39,0x8238ce30,0x8238ce31, +0x8238ce32,0x8238ce33,0x8238ce34,0x8238ce35,0x8238ce36,0x8238ce37,0x8238ce38, +0x8238ce39,0x8238cf30,0x8238cf31,0x8238cf32,0x8238cf33,0x8238cf34,0x8238cf35, +0x8238cf36,0x8238cf37,0x8238cf38,0x8238cf39,0x8238d030,0x8238d031,0x8238d032, +0x8238d033,0x8238d034,0x8238d035,0x8238d036,0x8238d037,0x8238d038,0x8238d039, +0x8238d130,0x8238d131,0x8238d132,0x8238d133,0x8238d134,0x8238d135,0x8238d136, +0x8238d137,0x8238d138,0x8238d139,0x8238d230,0x8238d231,0x8238d232,0x8238d233, +0x8238d234,0x8238d235,0x8238d236,0x8238d237,0x8238d238,0x8238d239,0x8238d330, +0x8238d331,0x8238d332,0x8238d333,0x8238d334,0x8238d335,0x8238d336,0x8238d337, +0x8238d338,0x8238d339,0x8238d430,0x8238d431,0x8238d432,0x8238d433,0x8238d434, +0x8238d435,0x8238d436,0x8238d437,0x8238d438,0x8238d439,0x8238d530,0x8238d531, +0x8238d532,0x8238d533,0x8238d534,0x8238d535,0x8238d536,0x8238d537,0x8238d538, +0x8238d539,0x8238d630,0x8238d631,0x8238d632,0x8238d633,0x8238d634,0x8238d635, +0x8238d636,0x8238d637,0x8238d638,0x8238d639,0x8238d730,0x8238d731,0x8238d732, +0x8238d733,0x8238d734,0x8238d735,0x8238d736,0x8238d737,0x8238d738,0x8238d739, +0x8238d830,0x8238d831,0x8238d832,0x8238d833,0x8238d834,0x8238d835,0x8238d836, +0x8238d837,0x8238d838,0x8238d839,0x8238d930,0x8238d931,0x8238d932,0x8238d933, +0x8238d934,0x8238d935,0x8238d936,0x8238d937,0x8238d938,0x8238d939,0x8238da30, +0x8238da31,0x8238da32,0x8238da33,0x8238da34,0x8238da35,0x8238da36,0x8238da37, +0x8238da38,0x8238da39,0x8238db30,0x8238db31,0x8238db32,0x8238db33,0x8238db34, +0x8238db35,0x8238db36,0x8238db37,0x8238db38,0x8238db39,0x8238dc30,0x8238dc31, +0x8238dc32,0x8238dc33,0x8238dc34,0x8238dc35,0x8238dc36,0x8238dc37,0x8238dc38, +0x8238dc39,0x8238dd30,0x8238dd31,0x8238dd32,0x8238dd33,0x8238dd34,0x8238dd35, +0x8238dd36,0x8238dd37,0x8238dd38,0x8238dd39,0x8238de30,0x8238de31,0x8238de32, +0x8238de33,0x8238de34,0x8238de35,0x8238de36,0x8238de37,0x8238de38,0x8238de39, +0x8238df30,0x8238df31,0x8238df32,0x8238df33,0x8238df34,0x8238df35,0x8238df36, +0x8238df37,0x8238df38,0x8238df39,0x8238e030,0x8238e031,0x8238e032,0x8238e033, +0x8238e034,0x8238e035,0x8238e036,0x8238e037,0x8238e038,0x8238e039,0x8238e130, +0x8238e131,0x8238e132,0x8238e133,0x8238e134,0x8238e135,0x8238e136,0x8238e137, +0x8238e138,0x8238e139,0x8238e230,0x8238e231,0x8238e232,0x8238e233,0x8238e234, +0x8238e235,0x8238e236,0x8238e237,0x8238e238,0x8238e239,0x8238e330,0x8238e331, +0x8238e332,0x8238e333,0x8238e334,0x8238e335,0x8238e336,0x8238e337,0x8238e338, +0x8238e339,0x8238e430,0x8238e431,0x8238e432,0x8238e433,0x8238e434,0x8238e435, +0x8238e436,0x8238e437,0x8238e438,0x8238e439,0x8238e530,0x8238e531,0x8238e532, +0x8238e533,0x8238e534,0x8238e535,0x8238e536,0x8238e537,0x8238e538,0x8238e539, +0x8238e630,0x8238e631,0x8238e632,0x8238e633,0x8238e634,0x8238e635,0x8238e636, +0x8238e637,0x8238e638,0x8238e639,0x8238e730,0x8238e731,0x8238e732,0x8238e733, +0x8238e734,0x8238e735,0x8238e736,0x8238e737,0x8238e738,0x8238e739,0x8238e830, +0x8238e831,0x8238e832,0x8238e833,0x8238e834,0x8238e835,0x8238e836,0x8238e837, +0x8238e838,0x8238e839,0x8238e930,0x8238e931,0x8238e932,0x8238e933,0x8238e934, +0x8238e935,0x8238e936,0x8238e937,0x8238e938,0x8238e939,0x8238ea30,0x8238ea31, +0x8238ea32,0x8238ea33,0x8238ea34,0x8238ea35,0x8238ea36,0x8238ea37,0x8238ea38, +0x8238ea39,0x8238eb30,0x8238eb31,0x8238eb32,0x8238eb33,0x8238eb34,0x8238eb35, +0x8238eb36,0x8238eb37,0x8238eb38,0x8238eb39,0x8238ec30,0x8238ec31,0x8238ec32, +0x8238ec33,0x8238ec34,0x8238ec35,0x8238ec36,0x8238ec37,0x8238ec38,0x8238ec39, +0x8238ed30,0x8238ed31,0x8238ed32,0x8238ed33,0x8238ed34,0x8238ed35,0x8238ed36, +0x8238ed37,0x8238ed38,0x8238ed39,0x8238ee30,0x8238ee31,0x8238ee32,0x8238ee33, +0x8238ee34,0x8238ee35,0x8238ee36,0x8238ee37,0x8238ee38,0x8238ee39,0x8238ef30, +0x8238ef31,0x8238ef32,0x8238ef33,0x8238ef34,0x8238ef35,0x8238ef36,0x8238ef37, +0x8238ef38,0x8238ef39,0x8238f030,0x8238f031,0x8238f032,0x8238f033,0x8238f034, +0x8238f035,0x8238f036,0x8238f037,0x8238f038,0x8238f039,0x8238f130,0x8238f131, +0x8238f132,0x8238f133,0x8238f134,0x8238f135,0x8238f136,0x8238f137,0x8238f138, +0x8238f139,0x8238f230,0x8238f231,0x8238f232,0x8238f233,0x8238f234,0x8238f235, +0x8238f236,0x8238f237,0x8238f238,0x8238f239,0x8238f330,0x8238f331,0x8238f332, +0x8238f333,0x8238f334,0x8238f335,0x8238f336,0x8238f337,0x8238f338,0x8238f339, +0x8238f430,0x8238f431,0x8238f432,0x8238f433,0x8238f434,0x8238f435,0x8238f436, +0x8238f437,0x8238f438,0x8238f439,0x8238f530,0x8238f531,0x8238f532,0x8238f533, +0x8238f534,0x8238f535,0x8238f536,0x8238f537,0x8238f538,0x8238f539,0x8238f630, +0x8238f631,0x8238f632,0x8238f633,0x8238f634,0x8238f635,0x8238f636,0x8238f637, +0x8238f638,0x8238f639,0x8238f730,0x8238f731,0x8238f732,0x8238f733,0x8238f734, +0x8238f735,0x8238f736,0x8238f737,0x8238f738,0x8238f739,0x8238f830,0x8238f831, +0x8238f832,0x8238f833,0x8238f834,0x8238f835,0x8238f836,0x8238f837,0x8238f838, +0x8238f839,0x8238f930,0x8238f931,0x8238f932,0x8238f933,0x8238f934,0x8238f935, +0x8238f936,0x8238f937,0x8238f938,0x8238f939,0x8238fa30,0x8238fa31,0x8238fa32, +0x8238fa33,0x8238fa34,0x8238fa35,0x8238fa36,0x8238fa37,0x8238fa38,0x8238fa39, +0x8238fb30,0x8238fb31,0x8238fb32,0x8238fb33,0x8238fb34,0x8238fb35,0x8238fb36, +0x8238fb37,0x8238fb38,0x8238fb39,0x8238fc30,0x8238fc31,0x8238fc32,0x8238fc33, +0x8238fc34,0x8238fc35,0x8238fc36,0x8238fc37,0x8238fc38,0x8238fc39,0x8238fd30, +0x8238fd31,0x8238fd32,0x8238fd33,0x8238fd34,0x8238fd35,0x8238fd36,0x8238fd37, +0x8238fd38,0x8238fd39,0x8238fe30,0x8238fe31,0x8238fe32,0x8238fe33,0x8238fe34, +0x8238fe35,0x8238fe36,0x8238fe37,0x8238fe38,0x8238fe39,0x82398130,0x82398131, +0x82398132,0x82398133,0x82398134,0x82398135,0x82398136,0x82398137,0x82398138, +0x82398139,0x82398230,0x82398231,0x82398232,0x82398233,0x82398234,0x82398235, +0x82398236,0x82398237,0x82398238,0x82398239,0x82398330,0x82398331,0x82398332, +0x82398333,0x82398334,0x82398335,0x82398336,0x82398337,0x82398338,0x82398339, +0x82398430,0x82398431,0x82398432,0x82398433,0x82398434,0x82398435,0x82398436, +0x82398437,0x82398438,0x82398439,0x82398530,0x82398531,0x82398532,0x82398533, +0x82398534,0x82398535,0x82398536,0x82398537,0x82398538,0x82398539,0x82398630, +0x82398631,0x82398632,0x82398633,0x82398634,0x82398635,0x82398636,0x82398637, +0x82398638,0x82398639,0x82398730,0x82398731,0x82398732,0x82398733,0x82398734, +0x82398735,0x82398736,0x82398737,0x82398738,0x82398739,0x82398830,0x82398831, +0x82398832,0x82398833,0x82398834,0x82398835,0x82398836,0x82398837,0x82398838, +0x82398839,0x82398930,0x82398931,0x82398932,0x82398933,0x82398934,0x82398935, +0x82398936,0x82398937,0x82398938,0x82398939,0x82398a30,0x82398a31,0x82398a32, +0x82398a33,0x82398a34,0x82398a35,0x82398a36,0x82398a37,0x82398a38,0x82398a39, +0x82398b30,0x82398b31,0x82398b32,0x82398b33,0x82398b34,0x82398b35,0x82398b36, +0x82398b37,0x82398b38,0x82398b39,0x82398c30,0x82398c31,0x82398c32,0x82398c33, +0x82398c34,0x82398c35,0x82398c36,0x82398c37,0x82398c38,0x82398c39,0x82398d30, +0x82398d31,0x82398d32,0x82398d33,0x82398d34,0x82398d35,0x82398d36,0x82398d37, +0x82398d38,0x82398d39,0x82398e30,0x82398e31,0x82398e32,0x82398e33,0x82398e34, +0x82398e35,0x82398e36,0x82398e37,0x82398e38,0x82398e39,0x82398f30,0x82398f31, +0x82398f32,0x82398f33,0x82398f34,0x82398f35,0x82398f36,0x82398f37,0x82398f38, +0x82398f39,0x82399030,0x82399031,0x82399032,0x82399033,0x82399034,0x82399035, +0x82399036,0x82399037,0x82399038,0x82399039,0x82399130,0x82399131,0x82399132, +0x82399133,0x82399134,0x82399135,0x82399136,0x82399137,0x82399138,0x82399139, +0x82399230,0x82399231,0x82399232,0x82399233,0x82399234,0x82399235,0x82399236, +0x82399237,0x82399238,0x82399239,0x82399330,0x82399331,0x82399332,0x82399333, +0x82399334,0x82399335,0x82399336,0x82399337,0x82399338,0x82399339,0x82399430, +0x82399431,0x82399432,0x82399433,0x82399434,0x82399435,0x82399436,0x82399437, +0x82399438,0x82399439,0x82399530,0x82399531,0x82399532,0x82399533,0x82399534, +0x82399535,0x82399536,0x82399537,0x82399538,0x82399539,0x82399630,0x82399631, +0x82399632,0x82399633,0x82399634,0x82399635,0x82399636,0x82399637,0x82399638, +0x82399639,0x82399730,0x82399731,0x82399732,0x82399733,0x82399734,0x82399735, +0x82399736,0x82399737,0x82399738,0x82399739,0x82399830,0x82399831,0x82399832, +0x82399833,0x82399834,0x82399835,0x82399836,0x82399837,0x82399838,0x82399839, +0x82399930,0x82399931,0x82399932,0x82399933,0x82399934,0x82399935,0x82399936, +0x82399937,0x82399938,0x82399939,0x82399a30,0x82399a31,0x82399a32,0x82399a33, +0x82399a34,0x82399a35,0x82399a36,0x82399a37,0x82399a38,0x82399a39,0x82399b30, +0x82399b31,0x82399b32,0x82399b33,0x82399b34,0x82399b35,0x82399b36,0x82399b37, +0x82399b38,0x82399b39,0x82399c30,0x82399c31,0x82399c32,0x82399c33,0x82399c34, +0x82399c35,0x82399c36,0x82399c37,0x82399c38,0x82399c39,0x82399d30,0x82399d31, +0x82399d32,0x82399d33,0x82399d34,0x82399d35,0x82399d36,0x82399d37,0x82399d38, +0x82399d39,0x82399e30,0x82399e31,0x82399e32,0x82399e33,0x82399e34,0x82399e35, +0x82399e36,0x82399e37,0x82399e38,0x82399e39,0x82399f30,0x82399f31,0x82399f32, +0x82399f33,0x82399f34,0x82399f35,0x82399f36,0x82399f37,0x82399f38,0x82399f39, +0x8239a030,0x8239a031,0x8239a032,0x8239a033,0x8239a034,0x8239a035,0x8239a036, +0x8239a037,0x8239a038,0x8239a039,0x8239a130,0x8239a131,0x8239a132,0x8239a133, +0x8239a134,0x8239a135,0x8239a136,0x8239a137,0x8239a138,0x8239a139,0x8239a230, +0x8239a231,0x8239a232,0x8239a233,0x8239a234,0x8239a235,0x8239a236,0x8239a237, +0x8239a238,0x8239a239,0x8239a330,0x8239a331,0x8239a332,0x8239a333,0x8239a334, +0x8239a335,0x8239a336,0x8239a337,0x8239a338,0x8239a339,0x8239a430,0x8239a431, +0x8239a432,0x8239a433,0x8239a434,0x8239a435,0x8239a436,0x8239a437,0x8239a438, +0x8239a439,0x8239a530,0x8239a531,0x8239a532,0x8239a533,0x8239a534,0x8239a535, +0x8239a536,0x8239a537,0x8239a538,0x8239a539,0x8239a630,0x8239a631,0x8239a632, +0x8239a633,0x8239a634,0x8239a635,0x8239a636,0x8239a637,0x8239a638,0x8239a639, +0x8239a730,0x8239a731,0x8239a732,0x8239a733,0x8239a734,0x8239a735,0x8239a736, +0x8239a737,0x8239a738,0x8239a739,0x8239a830,0x8239a831,0x8239a832,0x8239a833, +0x8239a834,0x8239a835,0x8239a836,0x8239a837,0x8239a838,0x8239a839,0x8239a930, +0x8239a931,0x8239a932,0x8239a933,0x8239a934,0x8239a935,0x8239a936,0x8239a937, +0x8239a938,0x8239a939,0x8239aa30,0x8239aa31,0x8239aa32,0x8239aa33,0x8239aa34, +0x8239aa35,0x8239aa36,0x8239aa37,0x8239aa38,0x8239aa39,0x8239ab30,0x8239ab31, +0x8239ab32,0x8239ab33,0x8239ab34,0x8239ab35,0x8239ab36,0x8239ab37,0x8239ab38, +0x8239ab39,0x8239ac30,0x8239ac31,0x8239ac32,0x8239ac33,0x8239ac34,0x8239ac35, +0x8239ac36,0x8239ac37,0x8239ac38,0x8239ac39,0x8239ad30,0x8239ad31,0x8239ad32, +0x8239ad33,0x8239ad34,0x8239ad35,0x8239ad36,0x8239ad37,0x8239ad38,0x8239ad39, +0x8239ae30,0x8239ae31,0x8239ae32,0x8239ae33,0x8239ae34,0x8239ae35,0x8239ae36, +0x8239ae37,0x8239ae38,0x8239ae39,0x8239af30,0x8239af31,0x8239af32,0x8239af33, +0x8239af34,0x8239af35,0x8239af36,0x8239af37,0x8239af38,0x8239af39,0x8239b030, +0x8239b031,0x8239b032,0x8239b033,0x8239b034,0x8239b035,0x8239b036,0x8239b037, +0x8239b038,0x8239b039,0x8239b130,0x8239b131,0x8239b132,0x8239b133,0x8239b134, +0x8239b135,0x8239b136,0x8239b137,0x8239b138,0x8239b139,0x8239b230,0x8239b231, +0x8239b232,0x8239b233,0x8239b234,0x8239b235,0x8239b236,0x8239b237,0x8239b238, +0x8239b239,0x8239b330,0x8239b331,0x8239b332,0x8239b333,0x8239b334,0x8239b335, +0x8239b336,0x8239b337,0x8239b338,0x8239b339,0x8239b430,0x8239b431,0x8239b432, +0x8239b433,0x8239b434,0x8239b435,0x8239b436,0x8239b437,0x8239b438,0x8239b439, +0x8239b530,0x8239b531,0x8239b532,0x8239b533,0x8239b534,0x8239b535,0x8239b536, +0x8239b537,0x8239b538,0x8239b539,0x8239b630,0x8239b631,0x8239b632,0x8239b633, +0x8239b634,0x8239b635,0x8239b636,0x8239b637,0x8239b638,0x8239b639,0x8239b730, +0x8239b731,0x8239b732,0x8239b733,0x8239b734,0x8239b735,0x8239b736,0x8239b737, +0x8239b738,0x8239b739,0x8239b830,0x8239b831,0x8239b832,0x8239b833,0x8239b834, +0x8239b835,0x8239b836,0x8239b837,0x8239b838,0x8239b839,0x8239b930,0x8239b931, +0x8239b932,0x8239b933,0x8239b934,0x8239b935,0x8239b936,0x8239b937,0x8239b938, +0x8239b939,0x8239ba30,0x8239ba31,0x8239ba32,0x8239ba33,0x8239ba34,0x8239ba35, +0x8239ba36,0x8239ba37,0x8239ba38,0x8239ba39,0x8239bb30,0x8239bb31,0x8239bb32, +0x8239bb33,0x8239bb34,0x8239bb35,0x8239bb36,0x8239bb37,0x8239bb38,0x8239bb39, +0x8239bc30,0x8239bc31,0x8239bc32,0x8239bc33,0x8239bc34,0x8239bc35,0x8239bc36, +0x8239bc37,0x8239bc38,0x8239bc39,0x8239bd30,0x8239bd31,0x8239bd32,0x8239bd33, +0x8239bd34,0x8239bd35,0x8239bd36,0x8239bd37,0x8239bd38,0x8239bd39,0x8239be30, +0x8239be31,0x8239be32,0x8239be33,0x8239be34,0x8239be35,0x8239be36,0x8239be37, +0x8239be38,0x8239be39,0x8239bf30,0x8239bf31,0x8239bf32,0x8239bf33,0x8239bf34, +0x8239bf35,0x8239bf36,0x8239bf37,0x8239bf38,0x8239bf39,0x8239c030,0x8239c031, +0x8239c032,0x8239c033,0x8239c034,0x8239c035,0x8239c036,0x8239c037,0x8239c038, +0x8239c039,0x8239c130,0x8239c131,0x8239c132,0x8239c133,0x8239c134,0x8239c135, +0x8239c136,0x8239c137,0x8239c138,0x8239c139,0x8239c230,0x8239c231,0x8239c232, +0x8239c233,0x8239c234,0x8239c235,0x8239c236,0x8239c237,0x8239c238,0x8239c239, +0x8239c330,0x8239c331,0x8239c332,0x8239c333,0x8239c334,0x8239c335,0x8239c336, +0x8239c337,0x8239c338,0x8239c339,0x8239c430,0x8239c431,0x8239c432,0x8239c433, +0x8239c434,0x8239c435,0x8239c436,0x8239c437,0x8239c438,0x8239c439,0x8239c530, +0x8239c531,0x8239c532,0x8239c533,0x8239c534,0x8239c535,0x8239c536,0x8239c537, +0x8239c538,0x8239c539,0x8239c630,0x8239c631,0x8239c632,0x8239c633,0x8239c634, +0x8239c635,0x8239c636,0x8239c637,0x8239c638,0x8239c639,0x8239c730,0x8239c731, +0x8239c732,0x8239c733,0x8239c734,0x8239c735,0x8239c736,0x8239c737,0x8239c738, +0x8239c739,0x8239c830,0x8239c831,0x8239c832,0x8239c833,0x8239c834,0x8239c835, +0x8239c836,0x8239c837,0x8239c838,0x8239c839,0x8239c930,0x8239c931,0x8239c932, +0x8239c933,0x8239c934,0x8239c935,0x8239c936,0x8239c937,0x8239c938,0x8239c939, +0x8239ca30,0x8239ca31,0x8239ca32,0x8239ca33,0x8239ca34,0x8239ca35,0x8239ca36, +0x8239ca37,0x8239ca38,0x8239ca39,0x8239cb30,0x8239cb31,0x8239cb32,0x8239cb33, +0x8239cb34,0x8239cb35,0x8239cb36,0x8239cb37,0x8239cb38,0x8239cb39,0x8239cc30, +0x8239cc31,0x8239cc32,0x8239cc33,0x8239cc34,0x8239cc35,0x8239cc36,0x8239cc37, +0x8239cc38,0x8239cc39,0x8239cd30,0x8239cd31,0x8239cd32,0x8239cd33,0x8239cd34, +0x8239cd35,0x8239cd36,0x8239cd37,0x8239cd38,0x8239cd39,0x8239ce30,0x8239ce31, +0x8239ce32,0x8239ce33,0x8239ce34,0x8239ce35,0x8239ce36,0x8239ce37,0x8239ce38, +0x8239ce39,0x8239cf30,0x8239cf31,0x8239cf32,0x8239cf33,0x8239cf34,0x8239cf35, +0x8239cf36,0x8239cf37,0x8239cf38,0x8239cf39,0x8239d030,0x8239d031,0x8239d032, +0x8239d033,0x8239d034,0x8239d035,0x8239d036,0x8239d037,0x8239d038,0x8239d039, +0x8239d130,0x8239d131,0x8239d132,0x8239d133,0x8239d134,0x8239d135,0x8239d136, +0x8239d137,0x8239d138,0x8239d139,0x8239d230,0x8239d231,0x8239d232,0x8239d233, +0x8239d234,0x8239d235,0x8239d236,0x8239d237,0x8239d238,0x8239d239,0x8239d330, +0x8239d331,0x8239d332,0x8239d333,0x8239d334,0x8239d335,0x8239d336,0x8239d337, +0x8239d338,0x8239d339,0x8239d430,0x8239d431,0x8239d432,0x8239d433,0x8239d434, +0x8239d435,0x8239d436,0x8239d437,0x8239d438,0x8239d439,0x8239d530,0x8239d531, +0x8239d532,0x8239d533,0x8239d534,0x8239d535,0x8239d536,0x8239d537,0x8239d538, +0x8239d539,0x8239d630,0x8239d631,0x8239d632,0x8239d633,0x8239d634,0x8239d635, +0x8239d636,0x8239d637,0x8239d638,0x8239d639,0x8239d730,0x8239d731,0x8239d732, +0x8239d733,0x8239d734,0x8239d735,0x8239d736,0x8239d737,0x8239d738,0x8239d739, +0x8239d830,0x8239d831,0x8239d832,0x8239d833,0x8239d834,0x8239d835,0x8239d836, +0x8239d837,0x8239d838,0x8239d839,0x8239d930,0x8239d931,0x8239d932,0x8239d933, +0x8239d934,0x8239d935,0x8239d936,0x8239d937,0x8239d938,0x8239d939,0x8239da30, +0x8239da31,0x8239da32,0x8239da33,0x8239da34,0x8239da35,0x8239da36,0x8239da37, +0x8239da38,0x8239da39,0x8239db30,0x8239db31,0x8239db32,0x8239db33,0x8239db34, +0x8239db35,0x8239db36,0x8239db37,0x8239db38,0x8239db39,0x8239dc30,0x8239dc31, +0x8239dc32,0x8239dc33,0x8239dc34,0x8239dc35,0x8239dc36,0x8239dc37,0x8239dc38, +0x8239dc39,0x8239dd30,0x8239dd31,0x8239dd32,0x8239dd33,0x8239dd34,0x8239dd35, +0x8239dd36,0x8239dd37,0x8239dd38,0x8239dd39,0x8239de30,0x8239de31,0x8239de32, +0x8239de33,0x8239de34,0x8239de35,0x8239de36,0x8239de37,0x8239de38,0x8239de39, +0x8239df30,0x8239df31,0x8239df32,0x8239df33,0x8239df34,0x8239df35,0x8239df36, +0x8239df37,0x8239df38,0x8239df39,0x8239e030,0x8239e031,0x8239e032,0x8239e033, +0x8239e034,0x8239e035,0x8239e036,0x8239e037,0x8239e038,0x8239e039,0x8239e130, +0x8239e131,0x8239e132,0x8239e133,0x8239e134,0x8239e135,0x8239e136,0x8239e137, +0x8239e138,0x8239e139,0x8239e230,0x8239e231,0x8239e232,0x8239e233,0x8239e234, +0x8239e235,0x8239e236,0x8239e237,0x8239e238,0x8239e239,0x8239e330,0x8239e331, +0x8239e332,0x8239e333,0x8239e334,0x8239e335,0x8239e336,0x8239e337,0x8239e338, +0x8239e339,0x8239e430,0x8239e431,0x8239e432,0x8239e433,0x8239e434,0x8239e435, +0x8239e436,0x8239e437,0x8239e438,0x8239e439,0x8239e530,0x8239e531,0x8239e532, +0x8239e533,0x8239e534,0x8239e535,0x8239e536,0x8239e537,0x8239e538,0x8239e539, +0x8239e630,0x8239e631,0x8239e632,0x8239e633,0x8239e634,0x8239e635,0x8239e636, +0x8239e637,0x8239e638,0x8239e639,0x8239e730,0x8239e731,0x8239e732,0x8239e733, +0x8239e734,0x8239e735,0x8239e736,0x8239e737,0x8239e738,0x8239e739,0x8239e830, +0x8239e831,0x8239e832,0x8239e833,0x8239e834,0x8239e835,0x8239e836,0x8239e837, +0x8239e838,0x8239e839,0x8239e930,0x8239e931,0x8239e932,0x8239e933,0x8239e934, +0x8239e935,0x8239e936,0x8239e937,0x8239e938,0x8239e939,0x8239ea30,0x8239ea31, +0x8239ea32,0x8239ea33,0x8239ea34,0x8239ea35,0x8239ea36,0x8239ea37,0x8239ea38, +0x8239ea39,0x8239eb30,0x8239eb31,0x8239eb32,0x8239eb33,0x8239eb34,0x8239eb35, +0x8239eb36,0x8239eb37,0x8239eb38,0x8239eb39,0x8239ec30,0x8239ec31,0x8239ec32, +0x8239ec33,0x8239ec34,0x8239ec35,0x8239ec36,0x8239ec37,0x8239ec38,0x8239ec39, +0x8239ed30,0x8239ed31,0x8239ed32,0x8239ed33,0x8239ed34,0x8239ed35,0x8239ed36, +0x8239ed37,0x8239ed38,0x8239ed39,0x8239ee30,0x8239ee31,0x8239ee32,0x8239ee33, +0x8239ee34,0x8239ee35,0x8239ee36,0x8239ee37,0x8239ee38,0x8239ee39,0x8239ef30, +0x8239ef31,0x8239ef32,0x8239ef33,0x8239ef34,0x8239ef35,0x8239ef36,0x8239ef37, +0x8239ef38,0x8239ef39,0x8239f030,0x8239f031,0x8239f032,0x8239f033,0x8239f034, +0x8239f035,0x8239f036,0x8239f037,0x8239f038,0x8239f039,0x8239f130,0x8239f131, +0x8239f132,0x8239f133,0x8239f134,0x8239f135,0x8239f136,0x8239f137,0x8239f138, +0x8239f139,0x8239f230,0x8239f231,0x8239f232,0x8239f233,0x8239f234,0x8239f235, +0x8239f236,0x8239f237,0x8239f238,0x8239f239,0x8239f330,0x8239f331,0x8239f332, +0x8239f333,0x8239f334,0x8239f335,0x8239f336,0x8239f337,0x8239f338,0x8239f339, +0x8239f430,0x8239f431,0x8239f432,0x8239f433,0x8239f434,0x8239f435,0x8239f436, +0x8239f437,0x8239f438,0x8239f439,0x8239f530,0x8239f531,0x8239f532,0x8239f533, +0x8239f534,0x8239f535,0x8239f536,0x8239f537,0x8239f538,0x8239f539,0x8239f630, +0x8239f631,0x8239f632,0x8239f633,0x8239f634,0x8239f635,0x8239f636,0x8239f637, +0x8239f638,0x8239f639,0x8239f730,0x8239f731,0x8239f732,0x8239f733,0x8239f734, +0x8239f735,0x8239f736,0x8239f737,0x8239f738,0x8239f739,0x8239f830,0x8239f831, +0x8239f832,0x8239f833,0x8239f834,0x8239f835,0x8239f836,0x8239f837,0x8239f838, +0x8239f839,0x8239f930,0x8239f931,0x8239f932,0x8239f933,0x8239f934,0x8239f935, +0x8239f936,0x8239f937,0x8239f938,0x8239f939,0x8239fa30,0x8239fa31,0x8239fa32, +0x8239fa33,0x8239fa34,0x8239fa35,0x8239fa36,0x8239fa37,0x8239fa38,0x8239fa39, +0x8239fb30,0x8239fb31,0x8239fb32,0x8239fb33,0x8239fb34,0x8239fb35,0x8239fb36, +0x8239fb37,0x8239fb38,0x8239fb39,0x8239fc30,0x8239fc31,0x8239fc32,0x8239fc33, +0x8239fc34,0x8239fc35,0x8239fc36,0x8239fc37,0x8239fc38,0x8239fc39,0x8239fd30, +0x8239fd31,0x8239fd32,0x8239fd33,0x8239fd34,0x8239fd35,0x8239fd36,0x8239fd37, +0x8239fd38,0x8239fd39,0x8239fe30,0x8239fe31,0x8239fe32,0x8239fe33,0x8239fe34, +0x8239fe35,0x8239fe36,0x8239fe37,0x8239fe38,0x8239fe39,0x83308130,0x83308131, +0x83308132,0x83308133,0x83308134,0x83308135,0x83308136,0x83308137,0x83308138, +0x83308139,0x83308230,0x83308231,0x83308232,0x83308233,0x83308234,0x83308235, +0x83308236,0x83308237,0x83308238,0x83308239,0x83308330,0x83308331,0x83308332, +0x83308333,0x83308334,0x83308335,0x83308336,0x83308337,0x83308338,0x83308339, +0x83308430,0x83308431,0x83308432,0x83308433,0x83308434,0x83308435,0x83308436, +0x83308437,0x83308438,0x83308439,0x83308530,0x83308531,0x83308532,0x83308533, +0x83308534,0x83308535,0x83308536,0x83308537,0x83308538,0x83308539,0x83308630, +0x83308631,0x83308632,0x83308633,0x83308634,0x83308635,0x83308636,0x83308637, +0x83308638,0x83308639,0x83308730,0x83308731,0x83308732,0x83308733,0x83308734, +0x83308735,0x83308736,0x83308737,0x83308738,0x83308739,0x83308830,0x83308831, +0x83308832,0x83308833,0x83308834,0x83308835,0x83308836,0x83308837,0x83308838, +0x83308839,0x83308930,0x83308931,0x83308932,0x83308933,0x83308934,0x83308935, +0x83308936,0x83308937,0x83308938,0x83308939,0x83308a30,0x83308a31,0x83308a32, +0x83308a33,0x83308a34,0x83308a35,0x83308a36,0x83308a37,0x83308a38,0x83308a39, +0x83308b30,0x83308b31,0x83308b32,0x83308b33,0x83308b34,0x83308b35,0x83308b36, +0x83308b37,0x83308b38,0x83308b39,0x83308c30,0x83308c31,0x83308c32,0x83308c33, +0x83308c34,0x83308c35,0x83308c36,0x83308c37,0x83308c38,0x83308c39,0x83308d30, +0x83308d31,0x83308d32,0x83308d33,0x83308d34,0x83308d35,0x83308d36,0x83308d37, +0x83308d38,0x83308d39,0x83308e30,0x83308e31,0x83308e32,0x83308e33,0x83308e34, +0x83308e35,0x83308e36,0x83308e37,0x83308e38,0x83308e39,0x83308f30,0x83308f31, +0x83308f32,0x83308f33,0x83308f34,0x83308f35,0x83308f36,0x83308f37,0x83308f38, +0x83308f39,0x83309030,0x83309031,0x83309032,0x83309033,0x83309034,0x83309035, +0x83309036,0x83309037,0x83309038,0x83309039,0x83309130,0x83309131,0x83309132, +0x83309133,0x83309134,0x83309135,0x83309136,0x83309137,0x83309138,0x83309139, +0x83309230,0x83309231,0x83309232,0x83309233,0x83309234,0x83309235,0x83309236, +0x83309237,0x83309238,0x83309239,0x83309330,0x83309331,0x83309332,0x83309333, +0x83309334,0x83309335,0x83309336,0x83309337,0x83309338,0x83309339,0x83309430, +0x83309431,0x83309432,0x83309433,0x83309434,0x83309435,0x83309436,0x83309437, +0x83309438,0x83309439,0x83309530,0x83309531,0x83309532,0x83309533,0x83309534, +0x83309535,0x83309536,0x83309537,0x83309538,0x83309539,0x83309630,0x83309631, +0x83309632,0x83309633,0x83309634,0x83309635,0x83309636,0x83309637,0x83309638, +0x83309639,0x83309730,0x83309731,0x83309732,0x83309733,0x83309734,0x83309735, +0x83309736,0x83309737,0x83309738,0x83309739,0x83309830,0x83309831,0x83309832, +0x83309833,0x83309834,0x83309835,0x83309836,0x83309837,0x83309838,0x83309839, +0x83309930,0x83309931,0x83309932,0x83309933,0x83309934,0x83309935,0x83309936, +0x83309937,0x83309938,0x83309939,0x83309a30,0x83309a31,0x83309a32,0x83309a33, +0x83309a34,0x83309a35,0x83309a36,0x83309a37,0x83309a38,0x83309a39,0x83309b30, +0x83309b31,0x83309b32,0x83309b33,0x83309b34,0x83309b35,0x83309b36,0x83309b37, +0x83309b38,0x83309b39,0x83309c30,0x83309c31,0x83309c32,0x83309c33,0x83309c34, +0x83309c35,0x83309c36,0x83309c37,0x83309c38,0x83309c39,0x83309d30,0x83309d31, +0x83309d32,0x83309d33,0x83309d34,0x83309d35,0x83309d36,0x83309d37,0x83309d38, +0x83309d39,0x83309e30,0x83309e31,0x83309e32,0x83309e33,0x83309e34,0x83309e35, +0x83309e36,0x83309e37,0x83309e38,0x83309e39,0x83309f30,0x83309f31,0x83309f32, +0x83309f33,0x83309f34,0x83309f35,0x83309f36,0x83309f37,0x83309f38,0x83309f39, +0x8330a030,0x8330a031,0x8330a032,0x8330a033,0x8330a034,0x8330a035,0x8330a036, +0x8330a037,0x8330a038,0x8330a039,0x8330a130,0x8330a131,0x8330a132,0x8330a133, +0x8330a134,0x8330a135,0x8330a136,0x8330a137,0x8330a138,0x8330a139,0x8330a230, +0x8330a231,0x8330a232,0x8330a233,0x8330a234,0x8330a235,0x8330a236,0x8330a237, +0x8330a238,0x8330a239,0x8330a330,0x8330a331,0x8330a332,0x8330a333,0x8330a334, +0x8330a335,0x8330a336,0x8330a337,0x8330a338,0x8330a339,0x8330a430,0x8330a431, +0x8330a432,0x8330a433,0x8330a434,0x8330a435,0x8330a436,0x8330a437,0x8330a438, +0x8330a439,0x8330a530,0x8330a531,0x8330a532,0x8330a533,0x8330a534,0x8330a535, +0x8330a536,0x8330a537,0x8330a538,0x8330a539,0x8330a630,0x8330a631,0x8330a632, +0x8330a633,0x8330a634,0x8330a635,0x8330a636,0x8330a637,0x8330a638,0x8330a639, +0x8330a730,0x8330a731,0x8330a732,0x8330a733,0x8330a734,0x8330a735,0x8330a736, +0x8330a737,0x8330a738,0x8330a739,0x8330a830,0x8330a831,0x8330a832,0x8330a833, +0x8330a834,0x8330a835,0x8330a836,0x8330a837,0x8330a838,0x8330a839,0x8330a930, +0x8330a931,0x8330a932,0x8330a933,0x8330a934,0x8330a935,0x8330a936,0x8330a937, +0x8330a938,0x8330a939,0x8330aa30,0x8330aa31,0x8330aa32,0x8330aa33,0x8330aa34, +0x8330aa35,0x8330aa36,0x8330aa37,0x8330aa38,0x8330aa39,0x8330ab30,0x8330ab31, +0x8330ab32,0x8330ab33,0x8330ab34,0x8330ab35,0x8330ab36,0x8330ab37,0x8330ab38, +0x8330ab39,0x8330ac30,0x8330ac31,0x8330ac32,0x8330ac33,0x8330ac34,0x8330ac35, +0x8330ac36,0x8330ac37,0x8330ac38,0x8330ac39,0x8330ad30,0x8330ad31,0x8330ad32, +0x8330ad33,0x8330ad34,0x8330ad35,0x8330ad36,0x8330ad37,0x8330ad38,0x8330ad39, +0x8330ae30,0x8330ae31,0x8330ae32,0x8330ae33,0x8330ae34,0x8330ae35,0x8330ae36, +0x8330ae37,0x8330ae38,0x8330ae39,0x8330af30,0x8330af31,0x8330af32,0x8330af33, +0x8330af34,0x8330af35,0x8330af36,0x8330af37,0x8330af38,0x8330af39,0x8330b030, +0x8330b031,0x8330b032,0x8330b033,0x8330b034,0x8330b035,0x8330b036,0x8330b037, +0x8330b038,0x8330b039,0x8330b130,0x8330b131,0x8330b132,0x8330b133,0x8330b134, +0x8330b135,0x8330b136,0x8330b137,0x8330b138,0x8330b139,0x8330b230,0x8330b231, +0x8330b232,0x8330b233,0x8330b234,0x8330b235,0x8330b236,0x8330b237,0x8330b238, +0x8330b239,0x8330b330,0x8330b331,0x8330b332,0x8330b333,0x8330b334,0x8330b335, +0x8330b336,0x8330b337,0x8330b338,0x8330b339,0x8330b430,0x8330b431,0x8330b432, +0x8330b433,0x8330b434,0x8330b435,0x8330b436,0x8330b437,0x8330b438,0x8330b439, +0x8330b530,0x8330b531,0x8330b532,0x8330b533,0x8330b534,0x8330b535,0x8330b536, +0x8330b537,0x8330b538,0x8330b539,0x8330b630,0x8330b631,0x8330b632,0x8330b633, +0x8330b634,0x8330b635,0x8330b636,0x8330b637,0x8330b638,0x8330b639,0x8330b730, +0x8330b731,0x8330b732,0x8330b733,0x8330b734,0x8330b735,0x8330b736,0x8330b737, +0x8330b738,0x8330b739,0x8330b830,0x8330b831,0x8330b832,0x8330b833,0x8330b834, +0x8330b835,0x8330b836,0x8330b837,0x8330b838,0x8330b839,0x8330b930,0x8330b931, +0x8330b932,0x8330b933,0x8330b934,0x8330b935,0x8330b936,0x8330b937,0x8330b938, +0x8330b939,0x8330ba30,0x8330ba31,0x8330ba32,0x8330ba33,0x8330ba34,0x8330ba35, +0x8330ba36,0x8330ba37,0x8330ba38,0x8330ba39,0x8330bb30,0x8330bb31,0x8330bb32, +0x8330bb33,0x8330bb34,0x8330bb35,0x8330bb36,0x8330bb37,0x8330bb38,0x8330bb39, +0x8330bc30,0x8330bc31,0x8330bc32,0x8330bc33,0x8330bc34,0x8330bc35,0x8330bc36, +0x8330bc37,0x8330bc38,0x8330bc39,0x8330bd30,0x8330bd31,0x8330bd32,0x8330bd33, +0x8330bd34,0x8330bd35,0x8330bd36,0x8330bd37,0x8330bd38,0x8330bd39,0x8330be30, +0x8330be31,0x8330be32,0x8330be33,0x8330be34,0x8330be35,0x8330be36,0x8330be37, +0x8330be38,0x8330be39,0x8330bf30,0x8330bf31,0x8330bf32,0x8330bf33,0x8330bf34, +0x8330bf35,0x8330bf36,0x8330bf37,0x8330bf38,0x8330bf39,0x8330c030,0x8330c031, +0x8330c032,0x8330c033,0x8330c034,0x8330c035,0x8330c036,0x8330c037,0x8330c038, +0x8330c039,0x8330c130,0x8330c131,0x8330c132,0x8330c133,0x8330c134,0x8330c135, +0x8330c136,0x8330c137,0x8330c138,0x8330c139,0x8330c230,0x8330c231,0x8330c232, +0x8330c233,0x8330c234,0x8330c235,0x8330c236,0x8330c237,0x8330c238,0x8330c239, +0x8330c330,0x8330c331,0x8330c332,0x8330c333,0x8330c334,0x8330c335,0x8330c336, +0x8330c337,0x8330c338,0x8330c339,0x8330c430,0x8330c431,0x8330c432,0x8330c433, +0x8330c434,0x8330c435,0x8330c436,0x8330c437,0x8330c438,0x8330c439,0x8330c530, +0x8330c531,0x8330c532,0x8330c533,0x8330c534,0x8330c535,0x8330c536,0x8330c537, +0x8330c538,0x8330c539,0x8330c630,0x8330c631,0x8330c632,0x8330c633,0x8330c634, +0x8330c635,0x8330c636,0x8330c637,0x8330c638,0x8330c639,0x8330c730,0x8330c731, +0x8330c732,0x8330c733,0x8330c734,0x8330c735,0x8330c736,0x8330c737,0x8330c738, +0x8330c739,0x8330c830,0x8330c831,0x8330c832,0x8330c833,0x8330c834,0x8330c835, +0x8330c836,0x8330c837,0x8330c838,0x8330c839,0x8330c930,0x8330c931,0x8330c932, +0x8330c933,0x8330c934,0x8330c935,0x8330c936,0x8330c937,0x8330c938,0x8330c939, +0x8330ca30,0x8330ca31,0x8330ca32,0x8330ca33,0x8330ca34,0x8330ca35,0x8330ca36, +0x8330ca37,0x8330ca38,0x8330ca39,0x8330cb30,0x8330cb31,0x8330cb32,0x8330cb33, +0x8330cb34,0x8330cb35,0x8330cb36,0x8330cb37,0x8330cb38,0x8330cb39,0x8330cc30, +0x8330cc31,0x8330cc32,0x8330cc33,0x8330cc34,0x8330cc35,0x8330cc36,0x8330cc37, +0x8330cc38,0x8330cc39,0x8330cd30,0x8330cd31,0x8330cd32,0x8330cd33,0x8330cd34, +0x8330cd35,0x8330cd36,0x8330cd37,0x8330cd38,0x8330cd39,0x8330ce30,0x8330ce31, +0x8330ce32,0x8330ce33,0x8330ce34,0x8330ce35,0x8330ce36,0x8330ce37,0x8330ce38, +0x8330ce39,0x8330cf30,0x8330cf31,0x8330cf32,0x8330cf33,0x8330cf34,0x8330cf35, +0x8330cf36,0x8330cf37,0x8330cf38,0x8330cf39,0x8330d030,0x8330d031,0x8330d032, +0x8330d033,0x8330d034,0x8330d035,0x8330d036,0x8330d037,0x8330d038,0x8330d039, +0x8330d130,0x8330d131,0x8330d132,0x8330d133,0x8330d134,0x8330d135,0x8330d136, +0x8330d137,0x8330d138,0x8330d139,0x8330d230,0x8330d231,0x8330d232,0x8330d233, +0x8330d234,0x8330d235,0x8330d236,0x8330d237,0x8330d238,0x8330d239,0x8330d330, +0x8330d331,0x8330d332,0x8330d333,0x8330d334,0x8330d335,0x8330d336,0x8330d337, +0x8330d338,0x8330d339,0x8330d430,0x8330d431,0x8330d432,0x8330d433,0x8330d434, +0x8330d435,0x8330d436,0x8330d437,0x8330d438,0x8330d439,0x8330d530,0x8330d531, +0x8330d532,0x8330d533,0x8330d534,0x8330d535,0x8330d536,0x8330d537,0x8330d538, +0x8330d539,0x8330d630,0x8330d631,0x8330d632,0x8330d633,0x8330d634,0x8330d635, +0x8330d636,0x8330d637,0x8330d638,0x8330d639,0x8330d730,0x8330d731,0x8330d732, +0x8330d733,0x8330d734,0x8330d735,0x8330d736,0x8330d737,0x8330d738,0x8330d739, +0x8330d830,0x8330d831,0x8330d832,0x8330d833,0x8330d834,0x8330d835,0x8330d836, +0x8330d837,0x8330d838,0x8330d839,0x8330d930,0x8330d931,0x8330d932,0x8330d933, +0x8330d934,0x8330d935,0x8330d936,0x8330d937,0x8330d938,0x8330d939,0x8330da30, +0x8330da31,0x8330da32,0x8330da33,0x8330da34,0x8330da35,0x8330da36,0x8330da37, +0x8330da38,0x8330da39,0x8330db30,0x8330db31,0x8330db32,0x8330db33,0x8330db34, +0x8330db35,0x8330db36,0x8330db37,0x8330db38,0x8330db39,0x8330dc30,0x8330dc31, +0x8330dc32,0x8330dc33,0x8330dc34,0x8330dc35,0x8330dc36,0x8330dc37,0x8330dc38, +0x8330dc39,0x8330dd30,0x8330dd31,0x8330dd32,0x8330dd33,0x8330dd34,0x8330dd35, +0x8330dd36,0x8330dd37,0x8330dd38,0x8330dd39,0x8330de30,0x8330de31,0x8330de32, +0x8330de33,0x8330de34,0x8330de35,0x8330de36,0x8330de37,0x8330de38,0x8330de39, +0x8330df30,0x8330df31,0x8330df32,0x8330df33,0x8330df34,0x8330df35,0x8330df36, +0x8330df37,0x8330df38,0x8330df39,0x8330e030,0x8330e031,0x8330e032,0x8330e033, +0x8330e034,0x8330e035,0x8330e036,0x8330e037,0x8330e038,0x8330e039,0x8330e130, +0x8330e131,0x8330e132,0x8330e133,0x8330e134,0x8330e135,0x8330e136,0x8330e137, +0x8330e138,0x8330e139,0x8330e230,0x8330e231,0x8330e232,0x8330e233,0x8330e234, +0x8330e235,0x8330e236,0x8330e237,0x8330e238,0x8330e239,0x8330e330,0x8330e331, +0x8330e332,0x8330e333,0x8330e334,0x8330e335,0x8330e336,0x8330e337,0x8330e338, +0x8330e339,0x8330e430,0x8330e431,0x8330e432,0x8330e433,0x8330e434,0x8330e435, +0x8330e436,0x8330e437,0x8330e438,0x8330e439,0x8330e530,0x8330e531,0x8330e532, +0x8330e533,0x8330e534,0x8330e535,0x8330e536,0x8330e537,0x8330e538,0x8330e539, +0x8330e630,0x8330e631,0x8330e632,0x8330e633,0x8330e634,0x8330e635,0x8330e636, +0x8330e637,0x8330e638,0x8330e639,0x8330e730,0x8330e731,0x8330e732,0x8330e733, +0x8330e734,0x8330e735,0x8330e736,0x8330e737,0x8330e738,0x8330e739,0x8330e830, +0x8330e831,0x8330e832,0x8330e833,0x8330e834,0x8330e835,0x8330e836,0x8330e837, +0x8330e838,0x8330e839,0x8330e930,0x8330e931,0x8330e932,0x8330e933,0x8330e934, +0x8330e935,0x8330e936,0x8330e937,0x8330e938,0x8330e939,0x8330ea30,0x8330ea31, +0x8330ea32,0x8330ea33,0x8330ea34,0x8330ea35,0x8330ea36,0x8330ea37,0x8330ea38, +0x8330ea39,0x8330eb30,0x8330eb31,0x8330eb32,0x8330eb33,0x8330eb34,0x8330eb35, +0x8330eb36,0x8330eb37,0x8330eb38,0x8330eb39,0x8330ec30,0x8330ec31,0x8330ec32, +0x8330ec33,0x8330ec34,0x8330ec35,0x8330ec36,0x8330ec37,0x8330ec38,0x8330ec39, +0x8330ed30,0x8330ed31,0x8330ed32,0x8330ed33,0x8330ed34,0x8330ed35,0x8330ed36, +0x8330ed37,0x8330ed38,0x8330ed39,0x8330ee30,0x8330ee31,0x8330ee32,0x8330ee33, +0x8330ee34,0x8330ee35,0x8330ee36,0x8330ee37,0x8330ee38,0x8330ee39,0x8330ef30, +0x8330ef31,0x8330ef32,0x8330ef33,0x8330ef34,0x8330ef35,0x8330ef36,0x8330ef37, +0x8330ef38,0x8330ef39,0x8330f030,0x8330f031,0x8330f032,0x8330f033,0x8330f034, +0x8330f035,0x8330f036,0x8330f037,0x8330f038,0x8330f039,0x8330f130,0x8330f131, +0x8330f132,0x8330f133,0x8330f134,0x8330f135,0x8330f136,0x8330f137,0x8330f138, +0x8330f139,0x8330f230,0x8330f231,0x8330f232,0x8330f233,0x8330f234,0x8330f235, +0x8330f236,0x8330f237,0x8330f238,0x8330f239,0x8330f330,0x8330f331,0x8330f332, +0x8330f333,0x8330f334,0x8330f335,0x8330f336,0x8330f337,0x8330f338,0x8330f339, +0x8330f430,0x8330f431,0x8330f432,0x8330f433,0x8330f434,0x8330f435,0x8330f436, +0x8330f437,0x8330f438,0x8330f439,0x8330f530,0x8330f531,0x8330f532,0x8330f533, +0x8330f534,0x8330f535,0x8330f536,0x8330f537,0x8330f538,0x8330f539,0x8330f630, +0x8330f631,0x8330f632,0x8330f633,0x8330f634,0x8330f635,0x8330f636,0x8330f637, +0x8330f638,0x8330f639,0x8330f730,0x8330f731,0x8330f732,0x8330f733,0x8330f734, +0x8330f735,0x8330f736,0x8330f737,0x8330f738,0x8330f739,0x8330f830,0x8330f831, +0x8330f832,0x8330f833,0x8330f834,0x8330f835,0x8330f836,0x8330f837,0x8330f838, +0x8330f839,0x8330f930,0x8330f931,0x8330f932,0x8330f933,0x8330f934,0x8330f935, +0x8330f936,0x8330f937,0x8330f938,0x8330f939,0x8330fa30,0x8330fa31,0x8330fa32, +0x8330fa33,0x8330fa34,0x8330fa35,0x8330fa36,0x8330fa37,0x8330fa38,0x8330fa39, +0x8330fb30,0x8330fb31,0x8330fb32,0x8330fb33,0x8330fb34,0x8330fb35,0x8330fb36, +0x8330fb37,0x8330fb38,0x8330fb39,0x8330fc30,0x8330fc31,0x8330fc32,0x8330fc33, +0x8330fc34,0x8330fc35,0x8330fc36,0x8330fc37,0x8330fc38,0x8330fc39,0x8330fd30, +0x8330fd31,0x8330fd32,0x8330fd33,0x8330fd34,0x8330fd35,0x8330fd36,0x8330fd37, +0x8330fd38,0x8330fd39,0x8330fe30,0x8330fe31,0x8330fe32,0x8330fe33,0x8330fe34, +0x8330fe35,0x8330fe36,0x8330fe37,0x8330fe38,0x8330fe39,0x83318130,0x83318131, +0x83318132,0x83318133,0x83318134,0x83318135,0x83318136,0x83318137,0x83318138, +0x83318139,0x83318230,0x83318231,0x83318232,0x83318233,0x83318234,0x83318235, +0x83318236,0x83318237,0x83318238,0x83318239,0x83318330,0x83318331,0x83318332, +0x83318333,0x83318334,0x83318335,0x83318336,0x83318337,0x83318338,0x83318339, +0x83318430,0x83318431,0x83318432,0x83318433,0x83318434,0x83318435,0x83318436, +0x83318437,0x83318438,0x83318439,0x83318530,0x83318531,0x83318532,0x83318533, +0x83318534,0x83318535,0x83318536,0x83318537,0x83318538,0x83318539,0x83318630, +0x83318631,0x83318632,0x83318633,0x83318634,0x83318635,0x83318636,0x83318637, +0x83318638,0x83318639,0x83318730,0x83318731,0x83318732,0x83318733,0x83318734, +0x83318735,0x83318736,0x83318737,0x83318738,0x83318739,0x83318830,0x83318831, +0x83318832,0x83318833,0x83318834,0x83318835,0x83318836,0x83318837,0x83318838, +0x83318839,0x83318930,0x83318931,0x83318932,0x83318933,0x83318934,0x83318935, +0x83318936,0x83318937,0x83318938,0x83318939,0x83318a30,0x83318a31,0x83318a32, +0x83318a33,0x83318a34,0x83318a35,0x83318a36,0x83318a37,0x83318a38,0x83318a39, +0x83318b30,0x83318b31,0x83318b32,0x83318b33,0x83318b34,0x83318b35,0x83318b36, +0x83318b37,0x83318b38,0x83318b39,0x83318c30,0x83318c31,0x83318c32,0x83318c33, +0x83318c34,0x83318c35,0x83318c36,0x83318c37,0x83318c38,0x83318c39,0x83318d30, +0x83318d31,0x83318d32,0x83318d33,0x83318d34,0x83318d35,0x83318d36,0x83318d37, +0x83318d38,0x83318d39,0x83318e30,0x83318e31,0x83318e32,0x83318e33,0x83318e34, +0x83318e35,0x83318e36,0x83318e37,0x83318e38,0x83318e39,0x83318f30,0x83318f31, +0x83318f32,0x83318f33,0x83318f34,0x83318f35,0x83318f36,0x83318f37,0x83318f38, +0x83318f39,0x83319030,0x83319031,0x83319032,0x83319033,0x83319034,0x83319035, +0x83319036,0x83319037,0x83319038,0x83319039,0x83319130,0x83319131,0x83319132, +0x83319133,0x83319134,0x83319135,0x83319136,0x83319137,0x83319138,0x83319139, +0x83319230,0x83319231,0x83319232,0x83319233,0x83319234,0x83319235,0x83319236, +0x83319237,0x83319238,0x83319239,0x83319330,0x83319331,0x83319332,0x83319333, +0x83319334,0x83319335,0x83319336,0x83319337,0x83319338,0x83319339,0x83319430, +0x83319431,0x83319432,0x83319433,0x83319434,0x83319435,0x83319436,0x83319437, +0x83319438,0x83319439,0x83319530,0x83319531,0x83319532,0x83319533,0x83319534, +0x83319535,0x83319536,0x83319537,0x83319538,0x83319539,0x83319630,0x83319631, +0x83319632,0x83319633,0x83319634,0x83319635,0x83319636,0x83319637,0x83319638, +0x83319639,0x83319730,0x83319731,0x83319732,0x83319733,0x83319734,0x83319735, +0x83319736,0x83319737,0x83319738,0x83319739,0x83319830,0x83319831,0x83319832, +0x83319833,0x83319834,0x83319835,0x83319836,0x83319837,0x83319838,0x83319839, +0x83319930,0x83319931,0x83319932,0x83319933,0x83319934,0x83319935,0x83319936, +0x83319937,0x83319938,0x83319939,0x83319a30,0x83319a31,0x83319a32,0x83319a33, +0x83319a34,0x83319a35,0x83319a36,0x83319a37,0x83319a38,0x83319a39,0x83319b30, +0x83319b31,0x83319b32,0x83319b33,0x83319b34,0x83319b35,0x83319b36,0x83319b37, +0x83319b38,0x83319b39,0x83319c30,0x83319c31,0x83319c32,0x83319c33,0x83319c34, +0x83319c35,0x83319c36,0x83319c37,0x83319c38,0x83319c39,0x83319d30,0x83319d31, +0x83319d32,0x83319d33,0x83319d34,0x83319d35,0x83319d36,0x83319d37,0x83319d38, +0x83319d39,0x83319e30,0x83319e31,0x83319e32,0x83319e33,0x83319e34,0x83319e35, +0x83319e36,0x83319e37,0x83319e38,0x83319e39,0x83319f30,0x83319f31,0x83319f32, +0x83319f33,0x83319f34,0x83319f35,0x83319f36,0x83319f37,0x83319f38,0x83319f39, +0x8331a030,0x8331a031,0x8331a032,0x8331a033,0x8331a034,0x8331a035,0x8331a036, +0x8331a037,0x8331a038,0x8331a039,0x8331a130,0x8331a131,0x8331a132,0x8331a133, +0x8331a134,0x8331a135,0x8331a136,0x8331a137,0x8331a138,0x8331a139,0x8331a230, +0x8331a231,0x8331a232,0x8331a233,0x8331a234,0x8331a235,0x8331a236,0x8331a237, +0x8331a238,0x8331a239,0x8331a330,0x8331a331,0x8331a332,0x8331a333,0x8331a334, +0x8331a335,0x8331a336,0x8331a337,0x8331a338,0x8331a339,0x8331a430,0x8331a431, +0x8331a432,0x8331a433,0x8331a434,0x8331a435,0x8331a436,0x8331a437,0x8331a438, +0x8331a439,0x8331a530,0x8331a531,0x8331a532,0x8331a533,0x8331a534,0x8331a535, +0x8331a536,0x8331a537,0x8331a538,0x8331a539,0x8331a630,0x8331a631,0x8331a632, +0x8331a633,0x8331a634,0x8331a635,0x8331a636,0x8331a637,0x8331a638,0x8331a639, +0x8331a730,0x8331a731,0x8331a732,0x8331a733,0x8331a734,0x8331a735,0x8331a736, +0x8331a737,0x8331a738,0x8331a739,0x8331a830,0x8331a831,0x8331a832,0x8331a833, +0x8331a834,0x8331a835,0x8331a836,0x8331a837,0x8331a838,0x8331a839,0x8331a930, +0x8331a931,0x8331a932,0x8331a933,0x8331a934,0x8331a935,0x8331a936,0x8331a937, +0x8331a938,0x8331a939,0x8331aa30,0x8331aa31,0x8331aa32,0x8331aa33,0x8331aa34, +0x8331aa35,0x8331aa36,0x8331aa37,0x8331aa38,0x8331aa39,0x8331ab30,0x8331ab31, +0x8331ab32,0x8331ab33,0x8331ab34,0x8331ab35,0x8331ab36,0x8331ab37,0x8331ab38, +0x8331ab39,0x8331ac30,0x8331ac31,0x8331ac32,0x8331ac33,0x8331ac34,0x8331ac35, +0x8331ac36,0x8331ac37,0x8331ac38,0x8331ac39,0x8331ad30,0x8331ad31,0x8331ad32, +0x8331ad33,0x8331ad34,0x8331ad35,0x8331ad36,0x8331ad37,0x8331ad38,0x8331ad39, +0x8331ae30,0x8331ae31,0x8331ae32,0x8331ae33,0x8331ae34,0x8331ae35,0x8331ae36, +0x8331ae37,0x8331ae38,0x8331ae39,0x8331af30,0x8331af31,0x8331af32,0x8331af33, +0x8331af34,0x8331af35,0x8331af36,0x8331af37,0x8331af38,0x8331af39,0x8331b030, +0x8331b031,0x8331b032,0x8331b033,0x8331b034,0x8331b035,0x8331b036,0x8331b037, +0x8331b038,0x8331b039,0x8331b130,0x8331b131,0x8331b132,0x8331b133,0x8331b134, +0x8331b135,0x8331b136,0x8331b137,0x8331b138,0x8331b139,0x8331b230,0x8331b231, +0x8331b232,0x8331b233,0x8331b234,0x8331b235,0x8331b236,0x8331b237,0x8331b238, +0x8331b239,0x8331b330,0x8331b331,0x8331b332,0x8331b333,0x8331b334,0x8331b335, +0x8331b336,0x8331b337,0x8331b338,0x8331b339,0x8331b430,0x8331b431,0x8331b432, +0x8331b433,0x8331b434,0x8331b435,0x8331b436,0x8331b437,0x8331b438,0x8331b439, +0x8331b530,0x8331b531,0x8331b532,0x8331b533,0x8331b534,0x8331b535,0x8331b536, +0x8331b537,0x8331b538,0x8331b539,0x8331b630,0x8331b631,0x8331b632,0x8331b633, +0x8331b634,0x8331b635,0x8331b636,0x8331b637,0x8331b638,0x8331b639,0x8331b730, +0x8331b731,0x8331b732,0x8331b733,0x8331b734,0x8331b735,0x8331b736,0x8331b737, +0x8331b738,0x8331b739,0x8331b830,0x8331b831,0x8331b832,0x8331b833,0x8331b834, +0x8331b835,0x8331b836,0x8331b837,0x8331b838,0x8331b839,0x8331b930,0x8331b931, +0x8331b932,0x8331b933,0x8331b934,0x8331b935,0x8331b936,0x8331b937,0x8331b938, +0x8331b939,0x8331ba30,0x8331ba31,0x8331ba32,0x8331ba33,0x8331ba34,0x8331ba35, +0x8331ba36,0x8331ba37,0x8331ba38,0x8331ba39,0x8331bb30,0x8331bb31,0x8331bb32, +0x8331bb33,0x8331bb34,0x8331bb35,0x8331bb36,0x8331bb37,0x8331bb38,0x8331bb39, +0x8331bc30,0x8331bc31,0x8331bc32,0x8331bc33,0x8331bc34,0x8331bc35,0x8331bc36, +0x8331bc37,0x8331bc38,0x8331bc39,0x8331bd30,0x8331bd31,0x8331bd32,0x8331bd33, +0x8331bd34,0x8331bd35,0x8331bd36,0x8331bd37,0x8331bd38,0x8331bd39,0x8331be30, +0x8331be31,0x8331be32,0x8331be33,0x8331be34,0x8331be35,0x8331be36,0x8331be37, +0x8331be38,0x8331be39,0x8331bf30,0x8331bf31,0x8331bf32,0x8331bf33,0x8331bf34, +0x8331bf35,0x8331bf36,0x8331bf37,0x8331bf38,0x8331bf39,0x8331c030,0x8331c031, +0x8331c032,0x8331c033,0x8331c034,0x8331c035,0x8331c036,0x8331c037,0x8331c038, +0x8331c039,0x8331c130,0x8331c131,0x8331c132,0x8331c133,0x8331c134,0x8331c135, +0x8331c136,0x8331c137,0x8331c138,0x8331c139,0x8331c230,0x8331c231,0x8331c232, +0x8331c233,0x8331c234,0x8331c235,0x8331c236,0x8331c237,0x8331c238,0x8331c239, +0x8331c330,0x8331c331,0x8331c332,0x8331c333,0x8331c334,0x8331c335,0x8331c336, +0x8331c337,0x8331c338,0x8331c339,0x8331c430,0x8331c431,0x8331c432,0x8331c433, +0x8331c434,0x8331c435,0x8331c436,0x8331c437,0x8331c438,0x8331c439,0x8331c530, +0x8331c531,0x8331c532,0x8331c533,0x8331c534,0x8331c535,0x8331c536,0x8331c537, +0x8331c538,0x8331c539,0x8331c630,0x8331c631,0x8331c632,0x8331c633,0x8331c634, +0x8331c635,0x8331c636,0x8331c637,0x8331c638,0x8331c639,0x8331c730,0x8331c731, +0x8331c732,0x8331c733,0x8331c734,0x8331c735,0x8331c736,0x8331c737,0x8331c738, +0x8331c739,0x8331c830,0x8331c831,0x8331c832,0x8331c833,0x8331c834,0x8331c835, +0x8331c836,0x8331c837,0x8331c838,0x8331c839,0x8331c930,0x8331c931,0x8331c932, +0x8331c933,0x8331c934,0x8331c935,0x8331c936,0x8331c937,0x8331c938,0x8331c939, +0x8331ca30,0x8331ca31,0x8331ca32,0x8331ca33,0x8331ca34,0x8331ca35,0x8331ca36, +0x8331ca37,0x8331ca38,0x8331ca39,0x8331cb30,0x8331cb31,0x8331cb32,0x8331cb33, +0x8331cb34,0x8331cb35,0x8331cb36,0x8331cb37,0x8331cb38,0x8331cb39,0x8331cc30, +0x8331cc31,0x8331cc32,0x8331cc33,0x8331cc34,0x8331cc35,0x8331cc36,0x8331cc37, +0x8331cc38,0x8331cc39,0x8331cd30,0x8331cd31,0x8331cd32,0x8331cd33,0x8331cd34, +0x8331cd35,0x8331cd36,0x8331cd37,0x8331cd38,0x8331cd39,0x8331ce30,0x8331ce31, +0x8331ce32,0x8331ce33,0x8331ce34,0x8331ce35,0x8331ce36,0x8331ce37,0x8331ce38, +0x8331ce39,0x8331cf30,0x8331cf31,0x8331cf32,0x8331cf33,0x8331cf34,0x8331cf35, +0x8331cf36,0x8331cf37,0x8331cf38,0x8331cf39,0x8331d030,0x8331d031,0x8331d032, +0x8331d033,0x8331d034,0x8331d035,0x8331d036,0x8331d037,0x8331d038,0x8331d039, +0x8331d130,0x8331d131,0x8331d132,0x8331d133,0x8331d134,0x8331d135,0x8331d136, +0x8331d137,0x8331d138,0x8331d139,0x8331d230,0x8331d231,0x8331d232,0x8331d233, +0x8331d234,0x8331d235,0x8331d236,0x8331d237,0x8331d238,0x8331d239,0x8331d330, +0x8331d331,0x8331d332,0x8331d333,0x8331d334,0x8331d335,0x8331d336,0x8331d337, +0x8331d338,0x8331d339,0x8331d430,0x8331d431,0x8331d432,0x8331d433,0x8331d434, +0x8331d435,0x8331d436,0x8331d437,0x8331d438,0x8331d439,0x8331d530,0x8331d531, +0x8331d532,0x8331d533,0x8331d534,0x8331d535,0x8331d536,0x8331d537,0x8331d538, +0x8331d539,0x8331d630,0x8331d631,0x8331d632,0x8331d633,0x8331d634,0x8331d635, +0x8331d636,0x8331d637,0x8331d638,0x8331d639,0x8331d730,0x8331d731,0x8331d732, +0x8331d733,0x8331d734,0x8331d735,0x8331d736,0x8331d737,0x8331d738,0x8331d739, +0x8331d830,0x8331d831,0x8331d832,0x8331d833,0x8331d834,0x8331d835,0x8331d836, +0x8331d837,0x8331d838,0x8331d839,0x8331d930,0x8331d931,0x8331d932,0x8331d933, +0x8331d934,0x8331d935,0x8331d936,0x8331d937,0x8331d938,0x8331d939,0x8331da30, +0x8331da31,0x8331da32,0x8331da33,0x8331da34,0x8331da35,0x8331da36,0x8331da37, +0x8331da38,0x8331da39,0x8331db30,0x8331db31,0x8331db32,0x8331db33,0x8331db34, +0x8331db35,0x8331db36,0x8331db37,0x8331db38,0x8331db39,0x8331dc30,0x8331dc31, +0x8331dc32,0x8331dc33,0x8331dc34,0x8331dc35,0x8331dc36,0x8331dc37,0x8331dc38, +0x8331dc39,0x8331dd30,0x8331dd31,0x8331dd32,0x8331dd33,0x8331dd34,0x8331dd35, +0x8331dd36,0x8331dd37,0x8331dd38,0x8331dd39,0x8331de30,0x8331de31,0x8331de32, +0x8331de33,0x8331de34,0x8331de35,0x8331de36,0x8331de37,0x8331de38,0x8331de39, +0x8331df30,0x8331df31,0x8331df32,0x8331df33,0x8331df34,0x8331df35,0x8331df36, +0x8331df37,0x8331df38,0x8331df39,0x8331e030,0x8331e031,0x8331e032,0x8331e033, +0x8331e034,0x8331e035,0x8331e036,0x8331e037,0x8331e038,0x8331e039,0x8331e130, +0x8331e131,0x8331e132,0x8331e133,0x8331e134,0x8331e135,0x8331e136,0x8331e137, +0x8331e138,0x8331e139,0x8331e230,0x8331e231,0x8331e232,0x8331e233,0x8331e234, +0x8331e235,0x8331e236,0x8331e237,0x8331e238,0x8331e239,0x8331e330,0x8331e331, +0x8331e332,0x8331e333,0x8331e334,0x8331e335,0x8331e336,0x8331e337,0x8331e338, +0x8331e339,0x8331e430,0x8331e431,0x8331e432,0x8331e433,0x8331e434,0x8331e435, +0x8331e436,0x8331e437,0x8331e438,0x8331e439,0x8331e530,0x8331e531,0x8331e532, +0x8331e533,0x8331e534,0x8331e535,0x8331e536,0x8331e537,0x8331e538,0x8331e539, +0x8331e630,0x8331e631,0x8331e632,0x8331e633,0x8331e634,0x8331e635,0x8331e636, +0x8331e637,0x8331e638,0x8331e639,0x8331e730,0x8331e731,0x8331e732,0x8331e733, +0x8331e734,0x8331e735,0x8331e736,0x8331e737,0x8331e738,0x8331e739,0x8331e830, +0x8331e831,0x8331e832,0x8331e833,0x8331e834,0x8331e835,0x8331e836,0x8331e837, +0x8331e838,0x8331e839,0x8331e930,0x8331e931,0x8331e932,0x8331e933,0x8331e934, +0x8331e935,0x8331e936,0x8331e937,0x8331e938,0x8331e939,0x8331ea30,0x8331ea31, +0x8331ea32,0x8331ea33,0x8331ea34,0x8331ea35,0x8331ea36,0x8331ea37,0x8331ea38, +0x8331ea39,0x8331eb30,0x8331eb31,0x8331eb32,0x8331eb33,0x8331eb34,0x8331eb35, +0x8331eb36,0x8331eb37,0x8331eb38,0x8331eb39,0x8331ec30,0x8331ec31,0x8331ec32, +0x8331ec33,0x8331ec34,0x8331ec35,0x8331ec36,0x8331ec37,0x8331ec38,0x8331ec39, +0x8331ed30,0x8331ed31,0x8331ed32,0x8331ed33,0x8331ed34,0x8331ed35,0x8331ed36, +0x8331ed37,0x8331ed38,0x8331ed39,0x8331ee30,0x8331ee31,0x8331ee32,0x8331ee33, +0x8331ee34,0x8331ee35,0x8331ee36,0x8331ee37,0x8331ee38,0x8331ee39,0x8331ef30, +0x8331ef31,0x8331ef32,0x8331ef33,0x8331ef34,0x8331ef35,0x8331ef36,0x8331ef37, +0x8331ef38,0x8331ef39,0x8331f030,0x8331f031,0x8331f032,0x8331f033,0x8331f034, +0x8331f035,0x8331f036,0x8331f037,0x8331f038,0x8331f039,0x8331f130,0x8331f131, +0x8331f132,0x8331f133,0x8331f134,0x8331f135,0x8331f136,0x8331f137,0x8331f138, +0x8331f139,0x8331f230,0x8331f231,0x8331f232,0x8331f233,0x8331f234,0x8331f235, +0x8331f236,0x8331f237,0x8331f238,0x8331f239,0x8331f330,0x8331f331,0x8331f332, +0x8331f333,0x8331f334,0x8331f335,0x8331f336,0x8331f337,0x8331f338,0x8331f339, +0x8331f430,0x8331f431,0x8331f432,0x8331f433,0x8331f434,0x8331f435,0x8331f436, +0x8331f437,0x8331f438,0x8331f439,0x8331f530,0x8331f531,0x8331f532,0x8331f533, +0x8331f534,0x8331f535,0x8331f536,0x8331f537,0x8331f538,0x8331f539,0x8331f630, +0x8331f631,0x8331f632,0x8331f633,0x8331f634,0x8331f635,0x8331f636,0x8331f637, +0x8331f638,0x8331f639,0x8331f730,0x8331f731,0x8331f732,0x8331f733,0x8331f734, +0x8331f735,0x8331f736,0x8331f737,0x8331f738,0x8331f739,0x8331f830,0x8331f831, +0x8331f832,0x8331f833,0x8331f834,0x8331f835,0x8331f836,0x8331f837,0x8331f838, +0x8331f839,0x8331f930,0x8331f931,0x8331f932,0x8331f933,0x8331f934,0x8331f935, +0x8331f936,0x8331f937,0x8331f938,0x8331f939,0x8331fa30,0x8331fa31,0x8331fa32, +0x8331fa33,0x8331fa34,0x8331fa35,0x8331fa36,0x8331fa37,0x8331fa38,0x8331fa39, +0x8331fb30,0x8331fb31,0x8331fb32,0x8331fb33,0x8331fb34,0x8331fb35,0x8331fb36, +0x8331fb37,0x8331fb38,0x8331fb39,0x8331fc30,0x8331fc31,0x8331fc32,0x8331fc33, +0x8331fc34,0x8331fc35,0x8331fc36,0x8331fc37,0x8331fc38,0x8331fc39,0x8331fd30, +0x8331fd31,0x8331fd32,0x8331fd33,0x8331fd34,0x8331fd35,0x8331fd36,0x8331fd37, +0x8331fd38,0x8331fd39,0x8331fe30,0x8331fe31,0x8331fe32,0x8331fe33,0x8331fe34, +0x8331fe35,0x8331fe36,0x8331fe37,0x8331fe38,0x8331fe39,0x83328130,0x83328131, +0x83328132,0x83328133,0x83328134,0x83328135,0x83328136,0x83328137,0x83328138, +0x83328139,0x83328230,0x83328231,0x83328232,0x83328233,0x83328234,0x83328235, +0x83328236,0x83328237,0x83328238,0x83328239,0x83328330,0x83328331,0x83328332, +0x83328333,0x83328334,0x83328335,0x83328336,0x83328337,0x83328338,0x83328339, +0x83328430,0x83328431,0x83328432,0x83328433,0x83328434,0x83328435,0x83328436, +0x83328437,0x83328438,0x83328439,0x83328530,0x83328531,0x83328532,0x83328533, +0x83328534,0x83328535,0x83328536,0x83328537,0x83328538,0x83328539,0x83328630, +0x83328631,0x83328632,0x83328633,0x83328634,0x83328635,0x83328636,0x83328637, +0x83328638,0x83328639,0x83328730,0x83328731,0x83328732,0x83328733,0x83328734, +0x83328735,0x83328736,0x83328737,0x83328738,0x83328739,0x83328830,0x83328831, +0x83328832,0x83328833,0x83328834,0x83328835,0x83328836,0x83328837,0x83328838, +0x83328839,0x83328930,0x83328931,0x83328932,0x83328933,0x83328934,0x83328935, +0x83328936,0x83328937,0x83328938,0x83328939,0x83328a30,0x83328a31,0x83328a32, +0x83328a33,0x83328a34,0x83328a35,0x83328a36,0x83328a37,0x83328a38,0x83328a39, +0x83328b30,0x83328b31,0x83328b32,0x83328b33,0x83328b34,0x83328b35,0x83328b36, +0x83328b37,0x83328b38,0x83328b39,0x83328c30,0x83328c31,0x83328c32,0x83328c33, +0x83328c34,0x83328c35,0x83328c36,0x83328c37,0x83328c38,0x83328c39,0x83328d30, +0x83328d31,0x83328d32,0x83328d33,0x83328d34,0x83328d35,0x83328d36,0x83328d37, +0x83328d38,0x83328d39,0x83328e30,0x83328e31,0x83328e32,0x83328e33,0x83328e34, +0x83328e35,0x83328e36,0x83328e37,0x83328e38,0x83328e39,0x83328f30,0x83328f31, +0x83328f32,0x83328f33,0x83328f34,0x83328f35,0x83328f36,0x83328f37,0x83328f38, +0x83328f39,0x83329030,0x83329031,0x83329032,0x83329033,0x83329034,0x83329035, +0x83329036,0x83329037,0x83329038,0x83329039,0x83329130,0x83329131,0x83329132, +0x83329133,0x83329134,0x83329135,0x83329136,0x83329137,0x83329138,0x83329139, +0x83329230,0x83329231,0x83329232,0x83329233,0x83329234,0x83329235,0x83329236, +0x83329237,0x83329238,0x83329239,0x83329330,0x83329331,0x83329332,0x83329333, +0x83329334,0x83329335,0x83329336,0x83329337,0x83329338,0x83329339,0x83329430, +0x83329431,0x83329432,0x83329433,0x83329434,0x83329435,0x83329436,0x83329437, +0x83329438,0x83329439,0x83329530,0x83329531,0x83329532,0x83329533,0x83329534, +0x83329535,0x83329536,0x83329537,0x83329538,0x83329539,0x83329630,0x83329631, +0x83329632,0x83329633,0x83329634,0x83329635,0x83329636,0x83329637,0x83329638, +0x83329639,0x83329730,0x83329731,0x83329732,0x83329733,0x83329734,0x83329735, +0x83329736,0x83329737,0x83329738,0x83329739,0x83329830,0x83329831,0x83329832, +0x83329833,0x83329834,0x83329835,0x83329836,0x83329837,0x83329838,0x83329839, +0x83329930,0x83329931,0x83329932,0x83329933,0x83329934,0x83329935,0x83329936, +0x83329937,0x83329938,0x83329939,0x83329a30,0x83329a31,0x83329a32,0x83329a33, +0x83329a34,0x83329a35,0x83329a36,0x83329a37,0x83329a38,0x83329a39,0x83329b30, +0x83329b31,0x83329b32,0x83329b33,0x83329b34,0x83329b35,0x83329b36,0x83329b37, +0x83329b38,0x83329b39,0x83329c30,0x83329c31,0x83329c32,0x83329c33,0x83329c34, +0x83329c35,0x83329c36,0x83329c37,0x83329c38,0x83329c39,0x83329d30,0x83329d31, +0x83329d32,0x83329d33,0x83329d34,0x83329d35,0x83329d36,0x83329d37,0x83329d38, +0x83329d39,0x83329e30,0x83329e31,0x83329e32,0x83329e33,0x83329e34,0x83329e35, +0x83329e36,0x83329e37,0x83329e38,0x83329e39,0x83329f30,0x83329f31,0x83329f32, +0x83329f33,0x83329f34,0x83329f35,0x83329f36,0x83329f37,0x83329f38,0x83329f39, +0x8332a030,0x8332a031,0x8332a032,0x8332a033,0x8332a034,0x8332a035,0x8332a036, +0x8332a037,0x8332a038,0x8332a039,0x8332a130,0x8332a131,0x8332a132,0x8332a133, +0x8332a134,0x8332a135,0x8332a136,0x8332a137,0x8332a138,0x8332a139,0x8332a230, +0x8332a231,0x8332a232,0x8332a233,0x8332a234,0x8332a235,0x8332a236,0x8332a237, +0x8332a238,0x8332a239,0x8332a330,0x8332a331,0x8332a332,0x8332a333,0x8332a334, +0x8332a335,0x8332a336,0x8332a337,0x8332a338,0x8332a339,0x8332a430,0x8332a431, +0x8332a432,0x8332a433,0x8332a434,0x8332a435,0x8332a436,0x8332a437,0x8332a438, +0x8332a439,0x8332a530,0x8332a531,0x8332a532,0x8332a533,0x8332a534,0x8332a535, +0x8332a536,0x8332a537,0x8332a538,0x8332a539,0x8332a630,0x8332a631,0x8332a632, +0x8332a633,0x8332a634,0x8332a635,0x8332a636,0x8332a637,0x8332a638,0x8332a639, +0x8332a730,0x8332a731,0x8332a732,0x8332a733,0x8332a734,0x8332a735,0x8332a736, +0x8332a737,0x8332a738,0x8332a739,0x8332a830,0x8332a831,0x8332a832,0x8332a833, +0x8332a834,0x8332a835,0x8332a836,0x8332a837,0x8332a838,0x8332a839,0x8332a930, +0x8332a931,0x8332a932,0x8332a933,0x8332a934,0x8332a935,0x8332a936,0x8332a937, +0x8332a938,0x8332a939,0x8332aa30,0x8332aa31,0x8332aa32,0x8332aa33,0x8332aa34, +0x8332aa35,0x8332aa36,0x8332aa37,0x8332aa38,0x8332aa39,0x8332ab30,0x8332ab31, +0x8332ab32,0x8332ab33,0x8332ab34,0x8332ab35,0x8332ab36,0x8332ab37,0x8332ab38, +0x8332ab39,0x8332ac30,0x8332ac31,0x8332ac32,0x8332ac33,0x8332ac34,0x8332ac35, +0x8332ac36,0x8332ac37,0x8332ac38,0x8332ac39,0x8332ad30,0x8332ad31,0x8332ad32, +0x8332ad33,0x8332ad34,0x8332ad35,0x8332ad36,0x8332ad37,0x8332ad38,0x8332ad39, +0x8332ae30,0x8332ae31,0x8332ae32,0x8332ae33,0x8332ae34,0x8332ae35,0x8332ae36, +0x8332ae37,0x8332ae38,0x8332ae39,0x8332af30,0x8332af31,0x8332af32,0x8332af33, +0x8332af34,0x8332af35,0x8332af36,0x8332af37,0x8332af38,0x8332af39,0x8332b030, +0x8332b031,0x8332b032,0x8332b033,0x8332b034,0x8332b035,0x8332b036,0x8332b037, +0x8332b038,0x8332b039,0x8332b130,0x8332b131,0x8332b132,0x8332b133,0x8332b134, +0x8332b135,0x8332b136,0x8332b137,0x8332b138,0x8332b139,0x8332b230,0x8332b231, +0x8332b232,0x8332b233,0x8332b234,0x8332b235,0x8332b236,0x8332b237,0x8332b238, +0x8332b239,0x8332b330,0x8332b331,0x8332b332,0x8332b333,0x8332b334,0x8332b335, +0x8332b336,0x8332b337,0x8332b338,0x8332b339,0x8332b430,0x8332b431,0x8332b432, +0x8332b433,0x8332b434,0x8332b435,0x8332b436,0x8332b437,0x8332b438,0x8332b439, +0x8332b530,0x8332b531,0x8332b532,0x8332b533,0x8332b534,0x8332b535,0x8332b536, +0x8332b537,0x8332b538,0x8332b539,0x8332b630,0x8332b631,0x8332b632,0x8332b633, +0x8332b634,0x8332b635,0x8332b636,0x8332b637,0x8332b638,0x8332b639,0x8332b730, +0x8332b731,0x8332b732,0x8332b733,0x8332b734,0x8332b735,0x8332b736,0x8332b737, +0x8332b738,0x8332b739,0x8332b830,0x8332b831,0x8332b832,0x8332b833,0x8332b834, +0x8332b835,0x8332b836,0x8332b837,0x8332b838,0x8332b839,0x8332b930,0x8332b931, +0x8332b932,0x8332b933,0x8332b934,0x8332b935,0x8332b936,0x8332b937,0x8332b938, +0x8332b939,0x8332ba30,0x8332ba31,0x8332ba32,0x8332ba33,0x8332ba34,0x8332ba35, +0x8332ba36,0x8332ba37,0x8332ba38,0x8332ba39,0x8332bb30,0x8332bb31,0x8332bb32, +0x8332bb33,0x8332bb34,0x8332bb35,0x8332bb36,0x8332bb37,0x8332bb38,0x8332bb39, +0x8332bc30,0x8332bc31,0x8332bc32,0x8332bc33,0x8332bc34,0x8332bc35,0x8332bc36, +0x8332bc37,0x8332bc38,0x8332bc39,0x8332bd30,0x8332bd31,0x8332bd32,0x8332bd33, +0x8332bd34,0x8332bd35,0x8332bd36,0x8332bd37,0x8332bd38,0x8332bd39,0x8332be30, +0x8332be31,0x8332be32,0x8332be33,0x8332be34,0x8332be35,0x8332be36,0x8332be37, +0x8332be38,0x8332be39,0x8332bf30,0x8332bf31,0x8332bf32,0x8332bf33,0x8332bf34, +0x8332bf35,0x8332bf36,0x8332bf37,0x8332bf38,0x8332bf39,0x8332c030,0x8332c031, +0x8332c032,0x8332c033,0x8332c034,0x8332c035,0x8332c036,0x8332c037,0x8332c038, +0x8332c039,0x8332c130,0x8332c131,0x8332c132,0x8332c133,0x8332c134,0x8332c135, +0x8332c136,0x8332c137,0x8332c138,0x8332c139,0x8332c230,0x8332c231,0x8332c232, +0x8332c233,0x8332c234,0x8332c235,0x8332c236,0x8332c237,0x8332c238,0x8332c239, +0x8332c330,0x8332c331,0x8332c332,0x8332c333,0x8332c334,0x8332c335,0x8332c336, +0x8332c337,0x8332c338,0x8332c339,0x8332c430,0x8332c431,0x8332c432,0x8332c433, +0x8332c434,0x8332c435,0x8332c436,0x8332c437,0x8332c438,0x8332c439,0x8332c530, +0x8332c531,0x8332c532,0x8332c533,0x8332c534,0x8332c535,0x8332c536,0x8332c537, +0x8332c538,0x8332c539,0x8332c630,0x8332c631,0x8332c632,0x8332c633,0x8332c634, +0x8332c635,0x8332c636,0x8332c637,0x8332c638,0x8332c639,0x8332c730,0x8332c731, +0x8332c732,0x8332c733,0x8332c734,0x8332c735,0x8332c736,0x8332c737,0x8332c738, +0x8332c739,0x8332c830,0x8332c831,0x8332c832,0x8332c833,0x8332c834,0x8332c835, +0x8332c836,0x8332c837,0x8332c838,0x8332c839,0x8332c930,0x8332c931,0x8332c932, +0x8332c933,0x8332c934,0x8332c935,0x8332c936,0x8332c937,0x8332c938,0x8332c939, +0x8332ca30,0x8332ca31,0x8332ca32,0x8332ca33,0x8332ca34,0x8332ca35,0x8332ca36, +0x8332ca37,0x8332ca38,0x8332ca39,0x8332cb30,0x8332cb31,0x8332cb32,0x8332cb33, +0x8332cb34,0x8332cb35,0x8332cb36,0x8332cb37,0x8332cb38,0x8332cb39,0x8332cc30, +0x8332cc31,0x8332cc32,0x8332cc33,0x8332cc34,0x8332cc35,0x8332cc36,0x8332cc37, +0x8332cc38,0x8332cc39,0x8332cd30,0x8332cd31,0x8332cd32,0x8332cd33,0x8332cd34, +0x8332cd35,0x8332cd36,0x8332cd37,0x8332cd38,0x8332cd39,0x8332ce30,0x8332ce31, +0x8332ce32,0x8332ce33,0x8332ce34,0x8332ce35,0x8332ce36,0x8332ce37,0x8332ce38, +0x8332ce39,0x8332cf30,0x8332cf31,0x8332cf32,0x8332cf33,0x8332cf34,0x8332cf35, +0x8332cf36,0x8332cf37,0x8332cf38,0x8332cf39,0x8332d030,0x8332d031,0x8332d032, +0x8332d033,0x8332d034,0x8332d035,0x8332d036,0x8332d037,0x8332d038,0x8332d039, +0x8332d130,0x8332d131,0x8332d132,0x8332d133,0x8332d134,0x8332d135,0x8332d136, +0x8332d137,0x8332d138,0x8332d139,0x8332d230,0x8332d231,0x8332d232,0x8332d233, +0x8332d234,0x8332d235,0x8332d236,0x8332d237,0x8332d238,0x8332d239,0x8332d330, +0x8332d331,0x8332d332,0x8332d333,0x8332d334,0x8332d335,0x8332d336,0x8332d337, +0x8332d338,0x8332d339,0x8332d430,0x8332d431,0x8332d432,0x8332d433,0x8332d434, +0x8332d435,0x8332d436,0x8332d437,0x8332d438,0x8332d439,0x8332d530,0x8332d531, +0x8332d532,0x8332d533,0x8332d534,0x8332d535,0x8332d536,0x8332d537,0x8332d538, +0x8332d539,0x8332d630,0x8332d631,0x8332d632,0x8332d633,0x8332d634,0x8332d635, +0x8332d636,0x8332d637,0x8332d638,0x8332d639,0x8332d730,0x8332d731,0x8332d732, +0x8332d733,0x8332d734,0x8332d735,0x8332d736,0x8332d737,0x8332d738,0x8332d739, +0x8332d830,0x8332d831,0x8332d832,0x8332d833,0x8332d834,0x8332d835,0x8332d836, +0x8332d837,0x8332d838,0x8332d839,0x8332d930,0x8332d931,0x8332d932,0x8332d933, +0x8332d934,0x8332d935,0x8332d936,0x8332d937,0x8332d938,0x8332d939,0x8332da30, +0x8332da31,0x8332da32,0x8332da33,0x8332da34,0x8332da35,0x8332da36,0x8332da37, +0x8332da38,0x8332da39,0x8332db30,0x8332db31,0x8332db32,0x8332db33,0x8332db34, +0x8332db35,0x8332db36,0x8332db37,0x8332db38,0x8332db39,0x8332dc30,0x8332dc31, +0x8332dc32,0x8332dc33,0x8332dc34,0x8332dc35,0x8332dc36,0x8332dc37,0x8332dc38, +0x8332dc39,0x8332dd30,0x8332dd31,0x8332dd32,0x8332dd33,0x8332dd34,0x8332dd35, +0x8332dd36,0x8332dd37,0x8332dd38,0x8332dd39,0x8332de30,0x8332de31,0x8332de32, +0x8332de33,0x8332de34,0x8332de35,0x8332de36,0x8332de37,0x8332de38,0x8332de39, +0x8332df30,0x8332df31,0x8332df32,0x8332df33,0x8332df34,0x8332df35,0x8332df36, +0x8332df37,0x8332df38,0x8332df39,0x8332e030,0x8332e031,0x8332e032,0x8332e033, +0x8332e034,0x8332e035,0x8332e036,0x8332e037,0x8332e038,0x8332e039,0x8332e130, +0x8332e131,0x8332e132,0x8332e133,0x8332e134,0x8332e135,0x8332e136,0x8332e137, +0x8332e138,0x8332e139,0x8332e230,0x8332e231,0x8332e232,0x8332e233,0x8332e234, +0x8332e235,0x8332e236,0x8332e237,0x8332e238,0x8332e239,0x8332e330,0x8332e331, +0x8332e332,0x8332e333,0x8332e334,0x8332e335,0x8332e336,0x8332e337,0x8332e338, +0x8332e339,0x8332e430,0x8332e431,0x8332e432,0x8332e433,0x8332e434,0x8332e435, +0x8332e436,0x8332e437,0x8332e438,0x8332e439,0x8332e530,0x8332e531,0x8332e532, +0x8332e533,0x8332e534,0x8332e535,0x8332e536,0x8332e537,0x8332e538,0x8332e539, +0x8332e630,0x8332e631,0x8332e632,0x8332e633,0x8332e634,0x8332e635,0x8332e636, +0x8332e637,0x8332e638,0x8332e639,0x8332e730,0x8332e731,0x8332e732,0x8332e733, +0x8332e734,0x8332e735,0x8332e736,0x8332e737,0x8332e738,0x8332e739,0x8332e830, +0x8332e831,0x8332e832,0x8332e833,0x8332e834,0x8332e835,0x8332e836,0x8332e837, +0x8332e838,0x8332e839,0x8332e930,0x8332e931,0x8332e932,0x8332e933,0x8332e934, +0x8332e935,0x8332e936,0x8332e937,0x8332e938,0x8332e939,0x8332ea30,0x8332ea31, +0x8332ea32,0x8332ea33,0x8332ea34,0x8332ea35,0x8332ea36,0x8332ea37,0x8332ea38, +0x8332ea39,0x8332eb30,0x8332eb31,0x8332eb32,0x8332eb33,0x8332eb34,0x8332eb35, +0x8332eb36,0x8332eb37,0x8332eb38,0x8332eb39,0x8332ec30,0x8332ec31,0x8332ec32, +0x8332ec33,0x8332ec34,0x8332ec35,0x8332ec36,0x8332ec37,0x8332ec38,0x8332ec39, +0x8332ed30,0x8332ed31,0x8332ed32,0x8332ed33,0x8332ed34,0x8332ed35,0x8332ed36, +0x8332ed37,0x8332ed38,0x8332ed39,0x8332ee30,0x8332ee31,0x8332ee32,0x8332ee33, +0x8332ee34,0x8332ee35,0x8332ee36,0x8332ee37,0x8332ee38,0x8332ee39,0x8332ef30, +0x8332ef31,0x8332ef32,0x8332ef33,0x8332ef34,0x8332ef35,0x8332ef36,0x8332ef37, +0x8332ef38,0x8332ef39,0x8332f030,0x8332f031,0x8332f032,0x8332f033,0x8332f034, +0x8332f035,0x8332f036,0x8332f037,0x8332f038,0x8332f039,0x8332f130,0x8332f131, +0x8332f132,0x8332f133,0x8332f134,0x8332f135,0x8332f136,0x8332f137,0x8332f138, +0x8332f139,0x8332f230,0x8332f231,0x8332f232,0x8332f233,0x8332f234,0x8332f235, +0x8332f236,0x8332f237,0x8332f238,0x8332f239,0x8332f330,0x8332f331,0x8332f332, +0x8332f333,0x8332f334,0x8332f335,0x8332f336,0x8332f337,0x8332f338,0x8332f339, +0x8332f430,0x8332f431,0x8332f432,0x8332f433,0x8332f434,0x8332f435,0x8332f436, +0x8332f437,0x8332f438,0x8332f439,0x8332f530,0x8332f531,0x8332f532,0x8332f533, +0x8332f534,0x8332f535,0x8332f536,0x8332f537,0x8332f538,0x8332f539,0x8332f630, +0x8332f631,0x8332f632,0x8332f633,0x8332f634,0x8332f635,0x8332f636,0x8332f637, +0x8332f638,0x8332f639,0x8332f730,0x8332f731,0x8332f732,0x8332f733,0x8332f734, +0x8332f735,0x8332f736,0x8332f737,0x8332f738,0x8332f739,0x8332f830,0x8332f831, +0x8332f832,0x8332f833,0x8332f834,0x8332f835,0x8332f836,0x8332f837,0x8332f838, +0x8332f839,0x8332f930,0x8332f931,0x8332f932,0x8332f933,0x8332f934,0x8332f935, +0x8332f936,0x8332f937,0x8332f938,0x8332f939,0x8332fa30,0x8332fa31,0x8332fa32, +0x8332fa33,0x8332fa34,0x8332fa35,0x8332fa36,0x8332fa37,0x8332fa38,0x8332fa39, +0x8332fb30,0x8332fb31,0x8332fb32,0x8332fb33,0x8332fb34,0x8332fb35,0x8332fb36, +0x8332fb37,0x8332fb38,0x8332fb39,0x8332fc30,0x8332fc31,0x8332fc32,0x8332fc33, +0x8332fc34,0x8332fc35,0x8332fc36,0x8332fc37,0x8332fc38,0x8332fc39,0x8332fd30, +0x8332fd31,0x8332fd32,0x8332fd33,0x8332fd34,0x8332fd35,0x8332fd36,0x8332fd37, +0x8332fd38,0x8332fd39,0x8332fe30,0x8332fe31,0x8332fe32,0x8332fe33,0x8332fe34, +0x8332fe35,0x8332fe36,0x8332fe37,0x8332fe38,0x8332fe39,0x83338130,0x83338131, +0x83338132,0x83338133,0x83338134,0x83338135,0x83338136,0x83338137,0x83338138, +0x83338139,0x83338230,0x83338231,0x83338232,0x83338233,0x83338234,0x83338235, +0x83338236,0x83338237,0x83338238,0x83338239,0x83338330,0x83338331,0x83338332, +0x83338333,0x83338334,0x83338335,0x83338336,0x83338337,0x83338338,0x83338339, +0x83338430,0x83338431,0x83338432,0x83338433,0x83338434,0x83338435,0x83338436, +0x83338437,0x83338438,0x83338439,0x83338530,0x83338531,0x83338532,0x83338533, +0x83338534,0x83338535,0x83338536,0x83338537,0x83338538,0x83338539,0x83338630, +0x83338631,0x83338632,0x83338633,0x83338634,0x83338635,0x83338636,0x83338637, +0x83338638,0x83338639,0x83338730,0x83338731,0x83338732,0x83338733,0x83338734, +0x83338735,0x83338736,0x83338737,0x83338738,0x83338739,0x83338830,0x83338831, +0x83338832,0x83338833,0x83338834,0x83338835,0x83338836,0x83338837,0x83338838, +0x83338839,0x83338930,0x83338931,0x83338932,0x83338933,0x83338934,0x83338935, +0x83338936,0x83338937,0x83338938,0x83338939,0x83338a30,0x83338a31,0x83338a32, +0x83338a33,0x83338a34,0x83338a35,0x83338a36,0x83338a37,0x83338a38,0x83338a39, +0x83338b30,0x83338b31,0x83338b32,0x83338b33,0x83338b34,0x83338b35,0x83338b36, +0x83338b37,0x83338b38,0x83338b39,0x83338c30,0x83338c31,0x83338c32,0x83338c33, +0x83338c34,0x83338c35,0x83338c36,0x83338c37,0x83338c38,0x83338c39,0x83338d30, +0x83338d31,0x83338d32,0x83338d33,0x83338d34,0x83338d35,0x83338d36,0x83338d37, +0x83338d38,0x83338d39,0x83338e30,0x83338e31,0x83338e32,0x83338e33,0x83338e34, +0x83338e35,0x83338e36,0x83338e37,0x83338e38,0x83338e39,0x83338f30,0x83338f31, +0x83338f32,0x83338f33,0x83338f34,0x83338f35,0x83338f36,0x83338f37,0x83338f38, +0x83338f39,0x83339030,0x83339031,0x83339032,0x83339033,0x83339034,0x83339035, +0x83339036,0x83339037,0x83339038,0x83339039,0x83339130,0x83339131,0x83339132, +0x83339133,0x83339134,0x83339135,0x83339136,0x83339137,0x83339138,0x83339139, +0x83339230,0x83339231,0x83339232,0x83339233,0x83339234,0x83339235,0x83339236, +0x83339237,0x83339238,0x83339239,0x83339330,0x83339331,0x83339332,0x83339333, +0x83339334,0x83339335,0x83339336,0x83339337,0x83339338,0x83339339,0x83339430, +0x83339431,0x83339432,0x83339433,0x83339434,0x83339435,0x83339436,0x83339437, +0x83339438,0x83339439,0x83339530,0x83339531,0x83339532,0x83339533,0x83339534, +0x83339535,0x83339536,0x83339537,0x83339538,0x83339539,0x83339630,0x83339631, +0x83339632,0x83339633,0x83339634,0x83339635,0x83339636,0x83339637,0x83339638, +0x83339639,0x83339730,0x83339731,0x83339732,0x83339733,0x83339734,0x83339735, +0x83339736,0x83339737,0x83339738,0x83339739,0x83339830,0x83339831,0x83339832, +0x83339833,0x83339834,0x83339835,0x83339836,0x83339837,0x83339838,0x83339839, +0x83339930,0x83339931,0x83339932,0x83339933,0x83339934,0x83339935,0x83339936, +0x83339937,0x83339938,0x83339939,0x83339a30,0x83339a31,0x83339a32,0x83339a33, +0x83339a34,0x83339a35,0x83339a36,0x83339a37,0x83339a38,0x83339a39,0x83339b30, +0x83339b31,0x83339b32,0x83339b33,0x83339b34,0x83339b35,0x83339b36,0x83339b37, +0x83339b38,0x83339b39,0x83339c30,0x83339c31,0x83339c32,0x83339c33,0x83339c34, +0x83339c35,0x83339c36,0x83339c37,0x83339c38,0x83339c39,0x83339d30,0x83339d31, +0x83339d32,0x83339d33,0x83339d34,0x83339d35,0x83339d36,0x83339d37,0x83339d38, +0x83339d39,0x83339e30,0x83339e31,0x83339e32,0x83339e33,0x83339e34,0x83339e35, +0x83339e36,0x83339e37,0x83339e38,0x83339e39,0x83339f30,0x83339f31,0x83339f32, +0x83339f33,0x83339f34,0x83339f35,0x83339f36,0x83339f37,0x83339f38,0x83339f39, +0x8333a030,0x8333a031,0x8333a032,0x8333a033,0x8333a034,0x8333a035,0x8333a036, +0x8333a037,0x8333a038,0x8333a039,0x8333a130,0x8333a131,0x8333a132,0x8333a133, +0x8333a134,0x8333a135,0x8333a136,0x8333a137,0x8333a138,0x8333a139,0x8333a230, +0x8333a231,0x8333a232,0x8333a233,0x8333a234,0x8333a235,0x8333a236,0x8333a237, +0x8333a238,0x8333a239,0x8333a330,0x8333a331,0x8333a332,0x8333a333,0x8333a334, +0x8333a335,0x8333a336,0x8333a337,0x8333a338,0x8333a339,0x8333a430,0x8333a431, +0x8333a432,0x8333a433,0x8333a434,0x8333a435,0x8333a436,0x8333a437,0x8333a438, +0x8333a439,0x8333a530,0x8333a531,0x8333a532,0x8333a533,0x8333a534,0x8333a535, +0x8333a536,0x8333a537,0x8333a538,0x8333a539,0x8333a630,0x8333a631,0x8333a632, +0x8333a633,0x8333a634,0x8333a635,0x8333a636,0x8333a637,0x8333a638,0x8333a639, +0x8333a730,0x8333a731,0x8333a732,0x8333a733,0x8333a734,0x8333a735,0x8333a736, +0x8333a737,0x8333a738,0x8333a739,0x8333a830,0x8333a831,0x8333a832,0x8333a833, +0x8333a834,0x8333a835,0x8333a836,0x8333a837,0x8333a838,0x8333a839,0x8333a930, +0x8333a931,0x8333a932,0x8333a933,0x8333a934,0x8333a935,0x8333a936,0x8333a937, +0x8333a938,0x8333a939,0x8333aa30,0x8333aa31,0x8333aa32,0x8333aa33,0x8333aa34, +0x8333aa35,0x8333aa36,0x8333aa37,0x8333aa38,0x8333aa39,0x8333ab30,0x8333ab31, +0x8333ab32,0x8333ab33,0x8333ab34,0x8333ab35,0x8333ab36,0x8333ab37,0x8333ab38, +0x8333ab39,0x8333ac30,0x8333ac31,0x8333ac32,0x8333ac33,0x8333ac34,0x8333ac35, +0x8333ac36,0x8333ac37,0x8333ac38,0x8333ac39,0x8333ad30,0x8333ad31,0x8333ad32, +0x8333ad33,0x8333ad34,0x8333ad35,0x8333ad36,0x8333ad37,0x8333ad38,0x8333ad39, +0x8333ae30,0x8333ae31,0x8333ae32,0x8333ae33,0x8333ae34,0x8333ae35,0x8333ae36, +0x8333ae37,0x8333ae38,0x8333ae39,0x8333af30,0x8333af31,0x8333af32,0x8333af33, +0x8333af34,0x8333af35,0x8333af36,0x8333af37,0x8333af38,0x8333af39,0x8333b030, +0x8333b031,0x8333b032,0x8333b033,0x8333b034,0x8333b035,0x8333b036,0x8333b037, +0x8333b038,0x8333b039,0x8333b130,0x8333b131,0x8333b132,0x8333b133,0x8333b134, +0x8333b135,0x8333b136,0x8333b137,0x8333b138,0x8333b139,0x8333b230,0x8333b231, +0x8333b232,0x8333b233,0x8333b234,0x8333b235,0x8333b236,0x8333b237,0x8333b238, +0x8333b239,0x8333b330,0x8333b331,0x8333b332,0x8333b333,0x8333b334,0x8333b335, +0x8333b336,0x8333b337,0x8333b338,0x8333b339,0x8333b430,0x8333b431,0x8333b432, +0x8333b433,0x8333b434,0x8333b435,0x8333b436,0x8333b437,0x8333b438,0x8333b439, +0x8333b530,0x8333b531,0x8333b532,0x8333b533,0x8333b534,0x8333b535,0x8333b536, +0x8333b537,0x8333b538,0x8333b539,0x8333b630,0x8333b631,0x8333b632,0x8333b633, +0x8333b634,0x8333b635,0x8333b636,0x8333b637,0x8333b638,0x8333b639,0x8333b730, +0x8333b731,0x8333b732,0x8333b733,0x8333b734,0x8333b735,0x8333b736,0x8333b737, +0x8333b738,0x8333b739,0x8333b830,0x8333b831,0x8333b832,0x8333b833,0x8333b834, +0x8333b835,0x8333b836,0x8333b837,0x8333b838,0x8333b839,0x8333b930,0x8333b931, +0x8333b932,0x8333b933,0x8333b934,0x8333b935,0x8333b936,0x8333b937,0x8333b938, +0x8333b939,0x8333ba30,0x8333ba31,0x8333ba32,0x8333ba33,0x8333ba34,0x8333ba35, +0x8333ba36,0x8333ba37,0x8333ba38,0x8333ba39,0x8333bb30,0x8333bb31,0x8333bb32, +0x8333bb33,0x8333bb34,0x8333bb35,0x8333bb36,0x8333bb37,0x8333bb38,0x8333bb39, +0x8333bc30,0x8333bc31,0x8333bc32,0x8333bc33,0x8333bc34,0x8333bc35,0x8333bc36, +0x8333bc37,0x8333bc38,0x8333bc39,0x8333bd30,0x8333bd31,0x8333bd32,0x8333bd33, +0x8333bd34,0x8333bd35,0x8333bd36,0x8333bd37,0x8333bd38,0x8333bd39,0x8333be30, +0x8333be31,0x8333be32,0x8333be33,0x8333be34,0x8333be35,0x8333be36,0x8333be37, +0x8333be38,0x8333be39,0x8333bf30,0x8333bf31,0x8333bf32,0x8333bf33,0x8333bf34, +0x8333bf35,0x8333bf36,0x8333bf37,0x8333bf38,0x8333bf39,0x8333c030,0x8333c031, +0x8333c032,0x8333c033,0x8333c034,0x8333c035,0x8333c036,0x8333c037,0x8333c038, +0x8333c039,0x8333c130,0x8333c131,0x8333c132,0x8333c133,0x8333c134,0x8333c135, +0x8333c136,0x8333c137,0x8333c138,0x8333c139,0x8333c230,0x8333c231,0x8333c232, +0x8333c233,0x8333c234,0x8333c235,0x8333c236,0x8333c237,0x8333c238,0x8333c239, +0x8333c330,0x8333c331,0x8333c332,0x8333c333,0x8333c334,0x8333c335,0x8333c336, +0x8333c337,0x8333c338,0x8333c339,0x8333c430,0x8333c431,0x8333c432,0x8333c433, +0x8333c434,0x8333c435,0x8333c436,0x8333c437,0x8333c438,0x8333c439,0x8333c530, +0x8333c531,0x8333c532,0x8333c533,0x8333c534,0x8333c535,0x8333c536,0x8333c537, +0x8333c538,0x8333c539,0x8333c630,0x8333c631,0x8333c632,0x8333c633,0x8333c634, +0x8333c635,0x8333c636,0x8333c637,0x8333c638,0x8333c639,0x8333c730,0x8333c731, +0x8333c732,0x8333c733,0x8333c734,0x8333c735,0x8333c736,0x8333c737,0x8333c738, +0x8333c739,0x8333c830,0x8333c831,0x8333c832,0x8333c833,0x8333c834,0x8333c835, +0x8333c836,0x8333c837,0x8333c838,0x8333c839,0x8333c930,0x8333c931,0x8333c932, +0x8333c933,0x8333c934,0x8333c935,0x8333c936,0x8333c937,0x8333c938,0x8333c939, +0x8333ca30,0x8333ca31,0x8333ca32,0x8333ca33,0x8333ca34,0x8333ca35,0x8333ca36, +0x8333ca37,0x8333ca38,0x8333ca39,0x8333cb30,0x8333cb31,0x8333cb32,0x8333cb33, +0x8333cb34,0x8333cb35,0x8333cb36,0x8333cb37,0x8333cb38,0x8333cb39,0x8333cc30, +0x8333cc31,0x8333cc32,0x8333cc33,0x8333cc34,0x8333cc35,0x8333cc36,0x8333cc37, +0x8333cc38,0x8333cc39,0x8333cd30,0x8333cd31,0x8333cd32,0x8333cd33,0x8333cd34, +0x8333cd35,0x8333cd36,0x8333cd37,0x8333cd38,0x8333cd39,0x8333ce30,0x8333ce31, +0x8333ce32,0x8333ce33,0x8333ce34,0x8333ce35,0x8333ce36,0x8333ce37,0x8333ce38, +0x8333ce39,0x8333cf30,0x8333cf31,0x8333cf32,0x8333cf33,0x8333cf34,0x8333cf35, +0x8333cf36,0x8333cf37,0x8333cf38,0x8333cf39,0x8333d030,0x8333d031,0x8333d032, +0x8333d033,0x8333d034,0x8333d035,0x8333d036,0x8333d037,0x8333d038,0x8333d039, +0x8333d130,0x8333d131,0x8333d132,0x8333d133,0x8333d134,0x8333d135,0x8333d136, +0x8333d137,0x8333d138,0x8333d139,0x8333d230,0x8333d231,0x8333d232,0x8333d233, +0x8333d234,0x8333d235,0x8333d236,0x8333d237,0x8333d238,0x8333d239,0x8333d330, +0x8333d331,0x8333d332,0x8333d333,0x8333d334,0x8333d335,0x8333d336,0x8333d337, +0x8333d338,0x8333d339,0x8333d430,0x8333d431,0x8333d432,0x8333d433,0x8333d434, +0x8333d435,0x8333d436,0x8333d437,0x8333d438,0x8333d439,0x8333d530,0x8333d531, +0x8333d532,0x8333d533,0x8333d534,0x8333d535,0x8333d536,0x8333d537,0x8333d538, +0x8333d539,0x8333d630,0x8333d631,0x8333d632,0x8333d633,0x8333d634,0x8333d635, +0x8333d636,0x8333d637,0x8333d638,0x8333d639,0x8333d730,0x8333d731,0x8333d732, +0x8333d733,0x8333d734,0x8333d735,0x8333d736,0x8333d737,0x8333d738,0x8333d739, +0x8333d830,0x8333d831,0x8333d832,0x8333d833,0x8333d834,0x8333d835,0x8333d836, +0x8333d837,0x8333d838,0x8333d839,0x8333d930,0x8333d931,0x8333d932,0x8333d933, +0x8333d934,0x8333d935,0x8333d936,0x8333d937,0x8333d938,0x8333d939,0x8333da30, +0x8333da31,0x8333da32,0x8333da33,0x8333da34,0x8333da35,0x8333da36,0x8333da37, +0x8333da38,0x8333da39,0x8333db30,0x8333db31,0x8333db32,0x8333db33,0x8333db34, +0x8333db35,0x8333db36,0x8333db37,0x8333db38,0x8333db39,0x8333dc30,0x8333dc31, +0x8333dc32,0x8333dc33,0x8333dc34,0x8333dc35,0x8333dc36,0x8333dc37,0x8333dc38, +0x8333dc39,0x8333dd30,0x8333dd31,0x8333dd32,0x8333dd33,0x8333dd34,0x8333dd35, +0x8333dd36,0x8333dd37,0x8333dd38,0x8333dd39,0x8333de30,0x8333de31,0x8333de32, +0x8333de33,0x8333de34,0x8333de35,0x8333de36,0x8333de37,0x8333de38,0x8333de39, +0x8333df30,0x8333df31,0x8333df32,0x8333df33,0x8333df34,0x8333df35,0x8333df36, +0x8333df37,0x8333df38,0x8333df39,0x8333e030,0x8333e031,0x8333e032,0x8333e033, +0x8333e034,0x8333e035,0x8333e036,0x8333e037,0x8333e038,0x8333e039,0x8333e130, +0x8333e131,0x8333e132,0x8333e133,0x8333e134,0x8333e135,0x8333e136,0x8333e137, +0x8333e138,0x8333e139,0x8333e230,0x8333e231,0x8333e232,0x8333e233,0x8333e234, +0x8333e235,0x8333e236,0x8333e237,0x8333e238,0x8333e239,0x8333e330,0x8333e331, +0x8333e332,0x8333e333,0x8333e334,0x8333e335,0x8333e336,0x8333e337,0x8333e338, +0x8333e339,0x8333e430,0x8333e431,0x8333e432,0x8333e433,0x8333e434,0x8333e435, +0x8333e436,0x8333e437,0x8333e438,0x8333e439,0x8333e530,0x8333e531,0x8333e532, +0x8333e533,0x8333e534,0x8333e535,0x8333e536,0x8333e537,0x8333e538,0x8333e539, +0x8333e630,0x8333e631,0x8333e632,0x8333e633,0x8333e634,0x8333e635,0x8333e636, +0x8333e637,0x8333e638,0x8333e639,0x8333e730,0x8333e731,0x8333e732,0x8333e733, +0x8333e734,0x8333e735,0x8333e736,0x8333e737,0x8333e738,0x8333e739,0x8333e830, +0x8333e831,0x8333e832,0x8333e833,0x8333e834,0x8333e835,0x8333e836,0x8333e837, +0x8333e838,0x8333e839,0x8333e930,0x8333e931,0x8333e932,0x8333e933,0x8333e934, +0x8333e935,0x8333e936,0x8333e937,0x8333e938,0x8333e939,0x8333ea30,0x8333ea31, +0x8333ea32,0x8333ea33,0x8333ea34,0x8333ea35,0x8333ea36,0x8333ea37,0x8333ea38, +0x8333ea39,0x8333eb30,0x8333eb31,0x8333eb32,0x8333eb33,0x8333eb34,0x8333eb35, +0x8333eb36,0x8333eb37,0x8333eb38,0x8333eb39,0x8333ec30,0x8333ec31,0x8333ec32, +0x8333ec33,0x8333ec34,0x8333ec35,0x8333ec36,0x8333ec37,0x8333ec38,0x8333ec39, +0x8333ed30,0x8333ed31,0x8333ed32,0x8333ed33,0x8333ed34,0x8333ed35,0x8333ed36, +0x8333ed37,0x8333ed38,0x8333ed39,0x8333ee30,0x8333ee31,0x8333ee32,0x8333ee33, +0x8333ee34,0x8333ee35,0x8333ee36,0x8333ee37,0x8333ee38,0x8333ee39,0x8333ef30, +0x8333ef31,0x8333ef32,0x8333ef33,0x8333ef34,0x8333ef35,0x8333ef36,0x8333ef37, +0x8333ef38,0x8333ef39,0x8333f030,0x8333f031,0x8333f032,0x8333f033,0x8333f034, +0x8333f035,0x8333f036,0x8333f037,0x8333f038,0x8333f039,0x8333f130,0x8333f131, +0x8333f132,0x8333f133,0x8333f134,0x8333f135,0x8333f136,0x8333f137,0x8333f138, +0x8333f139,0x8333f230,0x8333f231,0x8333f232,0x8333f233,0x8333f234,0x8333f235, +0x8333f236,0x8333f237,0x8333f238,0x8333f239,0x8333f330,0x8333f331,0x8333f332, +0x8333f333,0x8333f334,0x8333f335,0x8333f336,0x8333f337,0x8333f338,0x8333f339, +0x8333f430,0x8333f431,0x8333f432,0x8333f433,0x8333f434,0x8333f435,0x8333f436, +0x8333f437,0x8333f438,0x8333f439,0x8333f530,0x8333f531,0x8333f532,0x8333f533, +0x8333f534,0x8333f535,0x8333f536,0x8333f537,0x8333f538,0x8333f539,0x8333f630, +0x8333f631,0x8333f632,0x8333f633,0x8333f634,0x8333f635,0x8333f636,0x8333f637, +0x8333f638,0x8333f639,0x8333f730,0x8333f731,0x8333f732,0x8333f733,0x8333f734, +0x8333f735,0x8333f736,0x8333f737,0x8333f738,0x8333f739,0x8333f830,0x8333f831, +0x8333f832,0x8333f833,0x8333f834,0x8333f835,0x8333f836,0x8333f837,0x8333f838, +0x8333f839,0x8333f930,0x8333f931,0x8333f932,0x8333f933,0x8333f934,0x8333f935, +0x8333f936,0x8333f937,0x8333f938,0x8333f939,0x8333fa30,0x8333fa31,0x8333fa32, +0x8333fa33,0x8333fa34,0x8333fa35,0x8333fa36,0x8333fa37,0x8333fa38,0x8333fa39, +0x8333fb30,0x8333fb31,0x8333fb32,0x8333fb33,0x8333fb34,0x8333fb35,0x8333fb36, +0x8333fb37,0x8333fb38,0x8333fb39,0x8333fc30,0x8333fc31,0x8333fc32,0x8333fc33, +0x8333fc34,0x8333fc35,0x8333fc36,0x8333fc37,0x8333fc38,0x8333fc39,0x8333fd30, +0x8333fd31,0x8333fd32,0x8333fd33,0x8333fd34,0x8333fd35,0x8333fd36,0x8333fd37, +0x8333fd38,0x8333fd39,0x8333fe30,0x8333fe31,0x8333fe32,0x8333fe33,0x8333fe34, +0x8333fe35,0x8333fe36,0x8333fe37,0x8333fe38,0x8333fe39,0x83348130,0x83348131, +0x83348132,0x83348133,0x83348134,0x83348135,0x83348136,0x83348137,0x83348138, +0x83348139,0x83348230,0x83348231,0x83348232,0x83348233,0x83348234,0x83348235, +0x83348236,0x83348237,0x83348238,0x83348239,0x83348330,0x83348331,0x83348332, +0x83348333,0x83348334,0x83348335,0x83348336,0x83348337,0x83348338,0x83348339, +0x83348430,0x83348431,0x83348432,0x83348433,0x83348434,0x83348435,0x83348436, +0x83348437,0x83348438,0x83348439,0x83348530,0x83348531,0x83348532,0x83348533, +0x83348534,0x83348535,0x83348536,0x83348537,0x83348538,0x83348539,0x83348630, +0x83348631,0x83348632,0x83348633,0x83348634,0x83348635,0x83348636,0x83348637, +0x83348638,0x83348639,0x83348730,0x83348731,0x83348732,0x83348733,0x83348734, +0x83348735,0x83348736,0x83348737,0x83348738,0x83348739,0x83348830,0x83348831, +0x83348832,0x83348833,0x83348834,0x83348835,0x83348836,0x83348837,0x83348838, +0x83348839,0x83348930,0x83348931,0x83348932,0x83348933,0x83348934,0x83348935, +0x83348936,0x83348937,0x83348938,0x83348939,0x83348a30,0x83348a31,0x83348a32, +0x83348a33,0x83348a34,0x83348a35,0x83348a36,0x83348a37,0x83348a38,0x83348a39, +0x83348b30,0x83348b31,0x83348b32,0x83348b33,0x83348b34,0x83348b35,0x83348b36, +0x83348b37,0x83348b38,0x83348b39,0x83348c30,0x83348c31,0x83348c32,0x83348c33, +0x83348c34,0x83348c35,0x83348c36,0x83348c37,0x83348c38,0x83348c39,0x83348d30, +0x83348d31,0x83348d32,0x83348d33,0x83348d34,0x83348d35,0x83348d36,0x83348d37, +0x83348d38,0x83348d39,0x83348e30,0x83348e31,0x83348e32,0x83348e33,0x83348e34, +0x83348e35,0x83348e36,0x83348e37,0x83348e38,0x83348e39,0x83348f30,0x83348f31, +0x83348f32,0x83348f33,0x83348f34,0x83348f35,0x83348f36,0x83348f37,0x83348f38, +0x83348f39,0x83349030,0x83349031,0x83349032,0x83349033,0x83349034,0x83349035, +0x83349036,0x83349037,0x83349038,0x83349039,0x83349130,0x83349131,0x83349132, +0x83349133,0x83349134,0x83349135,0x83349136,0x83349137,0x83349138,0x83349139, +0x83349230,0x83349231,0x83349232,0x83349233,0x83349234,0x83349235,0x83349236, +0x83349237,0x83349238,0x83349239,0x83349330,0x83349331,0x83349332,0x83349333, +0x83349334,0x83349335,0x83349336,0x83349337,0x83349338,0x83349339,0x83349430, +0x83349431,0x83349432,0x83349433,0x83349434,0x83349435,0x83349436,0x83349437, +0x83349438,0x83349439,0x83349530,0x83349531,0x83349532,0x83349533,0x83349534, +0x83349535,0x83349536,0x83349537,0x83349538,0x83349539,0x83349630,0x83349631, +0x83349632,0x83349633,0x83349634,0x83349635,0x83349636,0x83349637,0x83349638, +0x83349639,0x83349730,0x83349731,0x83349732,0x83349733,0x83349734,0x83349735, +0x83349736,0x83349737,0x83349738,0x83349739,0x83349830,0x83349831,0x83349832, +0x83349833,0x83349834,0x83349835,0x83349836,0x83349837,0x83349838,0x83349839, +0x83349930,0x83349931,0x83349932,0x83349933,0x83349934,0x83349935,0x83349936, +0x83349937,0x83349938,0x83349939,0x83349a30,0x83349a31,0x83349a32,0x83349a33, +0x83349a34,0x83349a35,0x83349a36,0x83349a37,0x83349a38,0x83349a39,0x83349b30, +0x83349b31,0x83349b32,0x83349b33,0x83349b34,0x83349b35,0x83349b36,0x83349b37, +0x83349b38,0x83349b39,0x83349c30,0x83349c31,0x83349c32,0x83349c33,0x83349c34, +0x83349c35,0x83349c36,0x83349c37,0x83349c38,0x83349c39,0x83349d30,0x83349d31, +0x83349d32,0x83349d33,0x83349d34,0x83349d35,0x83349d36,0x83349d37,0x83349d38, +0x83349d39,0x83349e30,0x83349e31,0x83349e32,0x83349e33,0x83349e34,0x83349e35, +0x83349e36,0x83349e37,0x83349e38,0x83349e39,0x83349f30,0x83349f31,0x83349f32, +0x83349f33,0x83349f34,0x83349f35,0x83349f36,0x83349f37,0x83349f38,0x83349f39, +0x8334a030,0x8334a031,0x8334a032,0x8334a033,0x8334a034,0x8334a035,0x8334a036, +0x8334a037,0x8334a038,0x8334a039,0x8334a130,0x8334a131,0x8334a132,0x8334a133, +0x8334a134,0x8334a135,0x8334a136,0x8334a137,0x8334a138,0x8334a139,0x8334a230, +0x8334a231,0x8334a232,0x8334a233,0x8334a234,0x8334a235,0x8334a236,0x8334a237, +0x8334a238,0x8334a239,0x8334a330,0x8334a331,0x8334a332,0x8334a333,0x8334a334, +0x8334a335,0x8334a336,0x8334a337,0x8334a338,0x8334a339,0x8334a430,0x8334a431, +0x8334a432,0x8334a433,0x8334a434,0x8334a435,0x8334a436,0x8334a437,0x8334a438, +0x8334a439,0x8334a530,0x8334a531,0x8334a532,0x8334a533,0x8334a534,0x8334a535, +0x8334a536,0x8334a537,0x8334a538,0x8334a539,0x8334a630,0x8334a631,0x8334a632, +0x8334a633,0x8334a634,0x8334a635,0x8334a636,0x8334a637,0x8334a638,0x8334a639, +0x8334a730,0x8334a731,0x8334a732,0x8334a733,0x8334a734,0x8334a735,0x8334a736, +0x8334a737,0x8334a738,0x8334a739,0x8334a830,0x8334a831,0x8334a832,0x8334a833, +0x8334a834,0x8334a835,0x8334a836,0x8334a837,0x8334a838,0x8334a839,0x8334a930, +0x8334a931,0x8334a932,0x8334a933,0x8334a934,0x8334a935,0x8334a936,0x8334a937, +0x8334a938,0x8334a939,0x8334aa30,0x8334aa31,0x8334aa32,0x8334aa33,0x8334aa34, +0x8334aa35,0x8334aa36,0x8334aa37,0x8334aa38,0x8334aa39,0x8334ab30,0x8334ab31, +0x8334ab32,0x8334ab33,0x8334ab34,0x8334ab35,0x8334ab36,0x8334ab37,0x8334ab38, +0x8334ab39,0x8334ac30,0x8334ac31,0x8334ac32,0x8334ac33,0x8334ac34,0x8334ac35, +0x8334ac36,0x8334ac37,0x8334ac38,0x8334ac39,0x8334ad30,0x8334ad31,0x8334ad32, +0x8334ad33,0x8334ad34,0x8334ad35,0x8334ad36,0x8334ad37,0x8334ad38,0x8334ad39, +0x8334ae30,0x8334ae31,0x8334ae32,0x8334ae33,0x8334ae34,0x8334ae35,0x8334ae36, +0x8334ae37,0x8334ae38,0x8334ae39,0x8334af30,0x8334af31,0x8334af32,0x8334af33, +0x8334af34,0x8334af35,0x8334af36,0x8334af37,0x8334af38,0x8334af39,0x8334b030, +0x8334b031,0x8334b032,0x8334b033,0x8334b034,0x8334b035,0x8334b036,0x8334b037, +0x8334b038,0x8334b039,0x8334b130,0x8334b131,0x8334b132,0x8334b133,0x8334b134, +0x8334b135,0x8334b136,0x8334b137,0x8334b138,0x8334b139,0x8334b230,0x8334b231, +0x8334b232,0x8334b233,0x8334b234,0x8334b235,0x8334b236,0x8334b237,0x8334b238, +0x8334b239,0x8334b330,0x8334b331,0x8334b332,0x8334b333,0x8334b334,0x8334b335, +0x8334b336,0x8334b337,0x8334b338,0x8334b339,0x8334b430,0x8334b431,0x8334b432, +0x8334b433,0x8334b434,0x8334b435,0x8334b436,0x8334b437,0x8334b438,0x8334b439, +0x8334b530,0x8334b531,0x8334b532,0x8334b533,0x8334b534,0x8334b535,0x8334b536, +0x8334b537,0x8334b538,0x8334b539,0x8334b630,0x8334b631,0x8334b632,0x8334b633, +0x8334b634,0x8334b635,0x8334b636,0x8334b637,0x8334b638,0x8334b639,0x8334b730, +0x8334b731,0x8334b732,0x8334b733,0x8334b734,0x8334b735,0x8334b736,0x8334b737, +0x8334b738,0x8334b739,0x8334b830,0x8334b831,0x8334b832,0x8334b833,0x8334b834, +0x8334b835,0x8334b836,0x8334b837,0x8334b838,0x8334b839,0x8334b930,0x8334b931, +0x8334b932,0x8334b933,0x8334b934,0x8334b935,0x8334b936,0x8334b937,0x8334b938, +0x8334b939,0x8334ba30,0x8334ba31,0x8334ba32,0x8334ba33,0x8334ba34,0x8334ba35, +0x8334ba36,0x8334ba37,0x8334ba38,0x8334ba39,0x8334bb30,0x8334bb31,0x8334bb32, +0x8334bb33,0x8334bb34,0x8334bb35,0x8334bb36,0x8334bb37,0x8334bb38,0x8334bb39, +0x8334bc30,0x8334bc31,0x8334bc32,0x8334bc33,0x8334bc34,0x8334bc35,0x8334bc36, +0x8334bc37,0x8334bc38,0x8334bc39,0x8334bd30,0x8334bd31,0x8334bd32,0x8334bd33, +0x8334bd34,0x8334bd35,0x8334bd36,0x8334bd37,0x8334bd38,0x8334bd39,0x8334be30, +0x8334be31,0x8334be32,0x8334be33,0x8334be34,0x8334be35,0x8334be36,0x8334be37, +0x8334be38,0x8334be39,0x8334bf30,0x8334bf31,0x8334bf32,0x8334bf33,0x8334bf34, +0x8334bf35,0x8334bf36,0x8334bf37,0x8334bf38,0x8334bf39,0x8334c030,0x8334c031, +0x8334c032,0x8334c033,0x8334c034,0x8334c035,0x8334c036,0x8334c037,0x8334c038, +0x8334c039,0x8334c130,0x8334c131,0x8334c132,0x8334c133,0x8334c134,0x8334c135, +0x8334c136,0x8334c137,0x8334c138,0x8334c139,0x8334c230,0x8334c231,0x8334c232, +0x8334c233,0x8334c234,0x8334c235,0x8334c236,0x8334c237,0x8334c238,0x8334c239, +0x8334c330,0x8334c331,0x8334c332,0x8334c333,0x8334c334,0x8334c335,0x8334c336, +0x8334c337,0x8334c338,0x8334c339,0x8334c430,0x8334c431,0x8334c432,0x8334c433, +0x8334c434,0x8334c435,0x8334c436,0x8334c437,0x8334c438,0x8334c439,0x8334c530, +0x8334c531,0x8334c532,0x8334c533,0x8334c534,0x8334c535,0x8334c536,0x8334c537, +0x8334c538,0x8334c539,0x8334c630,0x8334c631,0x8334c632,0x8334c633,0x8334c634, +0x8334c635,0x8334c636,0x8334c637,0x8334c638,0x8334c639,0x8334c730,0x8334c731, +0x8334c732,0x8334c733,0x8334c734,0x8334c735,0x8334c736,0x8334c737,0x8334c738, +0x8334c739,0x8334c830,0x8334c831,0x8334c832,0x8334c833,0x8334c834,0x8334c835, +0x8334c836,0x8334c837,0x8334c838,0x8334c839,0x8334c930,0x8334c931,0x8334c932, +0x8334c933,0x8334c934,0x8334c935,0x8334c936,0x8334c937,0x8334c938,0x8334c939, +0x8334ca30,0x8334ca31,0x8334ca32,0x8334ca33,0x8334ca34,0x8334ca35,0x8334ca36, +0x8334ca37,0x8334ca38,0x8334ca39,0x8334cb30,0x8334cb31,0x8334cb32,0x8334cb33, +0x8334cb34,0x8334cb35,0x8334cb36,0x8334cb37,0x8334cb38,0x8334cb39,0x8334cc30, +0x8334cc31,0x8334cc32,0x8334cc33,0x8334cc34,0x8334cc35,0x8334cc36,0x8334cc37, +0x8334cc38,0x8334cc39,0x8334cd30,0x8334cd31,0x8334cd32,0x8334cd33,0x8334cd34, +0x8334cd35,0x8334cd36,0x8334cd37,0x8334cd38,0x8334cd39,0x8334ce30,0x8334ce31, +0x8334ce32,0x8334ce33,0x8334ce34,0x8334ce35,0x8334ce36,0x8334ce37,0x8334ce38, +0x8334ce39,0x8334cf30,0x8334cf31,0x8334cf32,0x8334cf33,0x8334cf34,0x8334cf35, +0x8334cf36,0x8334cf37,0x8334cf38,0x8334cf39,0x8334d030,0x8334d031,0x8334d032, +0x8334d033,0x8334d034,0x8334d035,0x8334d036,0x8334d037,0x8334d038,0x8334d039, +0x8334d130,0x8334d131,0x8334d132,0x8334d133,0x8334d134,0x8334d135,0x8334d136, +0x8334d137,0x8334d138,0x8334d139,0x8334d230,0x8334d231,0x8334d232,0x8334d233, +0x8334d234,0x8334d235,0x8334d236,0x8334d237,0x8334d238,0x8334d239,0x8334d330, +0x8334d331,0x8334d332,0x8334d333,0x8334d334,0x8334d335,0x8334d336,0x8334d337, +0x8334d338,0x8334d339,0x8334d430,0x8334d431,0x8334d432,0x8334d433,0x8334d434, +0x8334d435,0x8334d436,0x8334d437,0x8334d438,0x8334d439,0x8334d530,0x8334d531, +0x8334d532,0x8334d533,0x8334d534,0x8334d535,0x8334d536,0x8334d537,0x8334d538, +0x8334d539,0x8334d630,0x8334d631,0x8334d632,0x8334d633,0x8334d634,0x8334d635, +0x8334d636,0x8334d637,0x8334d638,0x8334d639,0x8334d730,0x8334d731,0x8334d732, +0x8334d733,0x8334d734,0x8334d735,0x8334d736,0x8334d737,0x8334d738,0x8334d739, +0x8334d830,0x8334d831,0x8334d832,0x8334d833,0x8334d834,0x8334d835,0x8334d836, +0x8334d837,0x8334d838,0x8334d839,0x8334d930,0x8334d931,0x8334d932,0x8334d933, +0x8334d934,0x8334d935,0x8334d936,0x8334d937,0x8334d938,0x8334d939,0x8334da30, +0x8334da31,0x8334da32,0x8334da33,0x8334da34,0x8334da35,0x8334da36,0x8334da37, +0x8334da38,0x8334da39,0x8334db30,0x8334db31,0x8334db32,0x8334db33,0x8334db34, +0x8334db35,0x8334db36,0x8334db37,0x8334db38,0x8334db39,0x8334dc30,0x8334dc31, +0x8334dc32,0x8334dc33,0x8334dc34,0x8334dc35,0x8334dc36,0x8334dc37,0x8334dc38, +0x8334dc39,0x8334dd30,0x8334dd31,0x8334dd32,0x8334dd33,0x8334dd34,0x8334dd35, +0x8334dd36,0x8334dd37,0x8334dd38,0x8334dd39,0x8334de30,0x8334de31,0x8334de32, +0x8334de33,0x8334de34,0x8334de35,0x8334de36,0x8334de37,0x8334de38,0x8334de39, +0x8334df30,0x8334df31,0x8334df32,0x8334df33,0x8334df34,0x8334df35,0x8334df36, +0x8334df37,0x8334df38,0x8334df39,0x8334e030,0x8334e031,0x8334e032,0x8334e033, +0x8334e034,0x8334e035,0x8334e036,0x8334e037,0x8334e038,0x8334e039,0x8334e130, +0x8334e131,0x8334e132,0x8334e133,0x8334e134,0x8334e135,0x8334e136,0x8334e137, +0x8334e138,0x8334e139,0x8334e230,0x8334e231,0x8334e232,0x8334e233,0x8334e234, +0x8334e235,0x8334e236,0x8334e237,0x8334e238,0x8334e239,0x8334e330,0x8334e331, +0x8334e332,0x8334e333,0x8334e334,0x8334e335,0x8334e336,0x8334e337,0x8334e338, +0x8334e339,0x8334e430,0x8334e431,0x8334e432,0x8334e433,0x8334e434,0x8334e435, +0x8334e436,0x8334e437,0x8334e438,0x8334e439,0x8334e530,0x8334e531,0x8334e532, +0x8334e533,0x8334e534,0x8334e535,0x8334e536,0x8334e537,0x8334e538,0x8334e539, +0x8334e630,0x8334e631,0x8334e632,0x8334e633,0x8334e634,0x8334e635,0x8334e636, +0x8334e637,0x8334e638,0x8334e639,0x8334e730,0x8334e731,0x8334e732,0x8334e733, +0x8334e734,0x8334e735,0x8334e736,0x8334e737,0x8334e738,0x8334e739,0x8334e830, +0x8334e831,0x8334e832,0x8334e833,0x8334e834,0x8334e835,0x8334e836,0x8334e837, +0x8334e838,0x8334e839,0x8334e930,0x8334e931,0x8334e932,0x8334e933,0x8334e934, +0x8334e935,0x8334e936,0x8334e937,0x8334e938,0x8334e939,0x8334ea30,0x8334ea31, +0x8334ea32,0x8334ea33,0x8334ea34,0x8334ea35,0x8334ea36,0x8334ea37,0x8334ea38, +0x8334ea39,0x8334eb30,0x8334eb31,0x8334eb32,0x8334eb33,0x8334eb34,0x8334eb35, +0x8334eb36,0x8334eb37,0x8334eb38,0x8334eb39,0x8334ec30,0x8334ec31,0x8334ec32, +0x8334ec33,0x8334ec34,0x8334ec35,0x8334ec36,0x8334ec37,0x8334ec38,0x8334ec39, +0x8334ed30,0x8334ed31,0x8334ed32,0x8334ed33,0x8334ed34,0x8334ed35,0x8334ed36, +0x8334ed37,0x8334ed38,0x8334ed39,0x8334ee30,0x8334ee31,0x8334ee32,0x8334ee33, +0x8334ee34,0x8334ee35,0x8334ee36,0x8334ee37,0x8334ee38,0x8334ee39,0x8334ef30, +0x8334ef31,0x8334ef32,0x8334ef33,0x8334ef34,0x8334ef35,0x8334ef36,0x8334ef37, +0x8334ef38,0x8334ef39,0x8334f030,0x8334f031,0x8334f032,0x8334f033,0x8334f034, +0x8334f035,0x8334f036,0x8334f037,0x8334f038,0x8334f039,0x8334f130,0x8334f131, +0x8334f132,0x8334f133,0x8334f134,0x8334f135,0x8334f136,0x8334f137,0x8334f138, +0x8334f139,0x8334f230,0x8334f231,0x8334f232,0x8334f233,0x8334f234,0x8334f235, +0x8334f236,0x8334f237,0x8334f238,0x8334f239,0x8334f330,0x8334f331,0x8334f332, +0x8334f333,0x8334f334,0x8334f335,0x8334f336,0x8334f337,0x8334f338,0x8334f339, +0x8334f430,0x8334f431,0x8334f432,0x8334f433,0x8334f434,0x8334f435,0x8334f436, +0x8334f437,0x8334f438,0x8334f439,0x8334f530,0x8334f531,0x8334f532,0x8334f533, +0x8334f534,0x8334f535,0x8334f536,0x8334f537,0x8334f538,0x8334f539,0x8334f630, +0x8334f631,0x8334f632,0x8334f633,0x8334f634,0x8334f635,0x8334f636,0x8334f637, +0x8334f638,0x8334f639,0x8334f730,0x8334f731,0x8334f732,0x8334f733,0x8334f734, +0x8334f735,0x8334f736,0x8334f737,0x8334f738,0x8334f739,0x8334f830,0x8334f831, +0x8334f832,0x8334f833,0x8334f834,0x8334f835,0x8334f836,0x8334f837,0x8334f838, +0x8334f839,0x8334f930,0x8334f931,0x8334f932,0x8334f933,0x8334f934,0x8334f935, +0x8334f936,0x8334f937,0x8334f938,0x8334f939,0x8334fa30,0x8334fa31,0x8334fa32, +0x8334fa33,0x8334fa34,0x8334fa35,0x8334fa36,0x8334fa37,0x8334fa38,0x8334fa39, +0x8334fb30,0x8334fb31,0x8334fb32,0x8334fb33,0x8334fb34,0x8334fb35,0x8334fb36, +0x8334fb37,0x8334fb38,0x8334fb39,0x8334fc30,0x8334fc31,0x8334fc32,0x8334fc33, +0x8334fc34,0x8334fc35,0x8334fc36,0x8334fc37,0x8334fc38,0x8334fc39,0x8334fd30, +0x8334fd31,0x8334fd32,0x8334fd33,0x8334fd34,0x8334fd35,0x8334fd36,0x8334fd37, +0x8334fd38,0x8334fd39,0x8334fe30,0x8334fe31,0x8334fe32,0x8334fe33,0x8334fe34, +0x8334fe35,0x8334fe36,0x8334fe37,0x8334fe38,0x8334fe39,0x83358130,0x83358131, +0x83358132,0x83358133,0x83358134,0x83358135,0x83358136,0x83358137,0x83358138, +0x83358139,0x83358230,0x83358231,0x83358232,0x83358233,0x83358234,0x83358235, +0x83358236,0x83358237,0x83358238,0x83358239,0x83358330,0x83358331,0x83358332, +0x83358333,0x83358334,0x83358335,0x83358336,0x83358337,0x83358338,0x83358339, +0x83358430,0x83358431,0x83358432,0x83358433,0x83358434,0x83358435,0x83358436, +0x83358437,0x83358438,0x83358439,0x83358530,0x83358531,0x83358532,0x83358533, +0x83358534,0x83358535,0x83358536,0x83358537,0x83358538,0x83358539,0x83358630, +0x83358631,0x83358632,0x83358633,0x83358634,0x83358635,0x83358636,0x83358637, +0x83358638,0x83358639,0x83358730,0x83358731,0x83358732,0x83358733,0x83358734, +0x83358735,0x83358736,0x83358737,0x83358738,0x83358739,0x83358830,0x83358831, +0x83358832,0x83358833,0x83358834,0x83358835,0x83358836,0x83358837,0x83358838, +0x83358839,0x83358930,0x83358931,0x83358932,0x83358933,0x83358934,0x83358935, +0x83358936,0x83358937,0x83358938,0x83358939,0x83358a30,0x83358a31,0x83358a32, +0x83358a33,0x83358a34,0x83358a35,0x83358a36,0x83358a37,0x83358a38,0x83358a39, +0x83358b30,0x83358b31,0x83358b32,0x83358b33,0x83358b34,0x83358b35,0x83358b36, +0x83358b37,0x83358b38,0x83358b39,0x83358c30,0x83358c31,0x83358c32,0x83358c33, +0x83358c34,0x83358c35,0x83358c36,0x83358c37,0x83358c38,0x83358c39,0x83358d30, +0x83358d31,0x83358d32,0x83358d33,0x83358d34,0x83358d35,0x83358d36,0x83358d37, +0x83358d38,0x83358d39,0x83358e30,0x83358e31,0x83358e32,0x83358e33,0x83358e34, +0x83358e35,0x83358e36,0x83358e37,0x83358e38,0x83358e39,0x83358f30,0x83358f31, +0x83358f32,0x83358f33,0x83358f34,0x83358f35,0x83358f36,0x83358f37,0x83358f38, +0x83358f39,0x83359030,0x83359031,0x83359032,0x83359033,0x83359034,0x83359035, +0x83359036,0x83359037,0x83359038,0x83359039,0x83359130,0x83359131,0x83359132, +0x83359133,0x83359134,0x83359135,0x83359136,0x83359137,0x83359138,0x83359139, +0x83359230,0x83359231,0x83359232,0x83359233,0x83359234,0x83359235,0x83359236, +0x83359237,0x83359238,0x83359239,0x83359330,0x83359331,0x83359332,0x83359333, +0x83359334,0x83359335,0x83359336,0x83359337,0x83359338,0x83359339,0x83359430, +0x83359431,0x83359432,0x83359433,0x83359434,0x83359435,0x83359436,0x83359437, +0x83359438,0x83359439,0x83359530,0x83359531,0x83359532,0x83359533,0x83359534, +0x83359535,0x83359536,0x83359537,0x83359538,0x83359539,0x83359630,0x83359631, +0x83359632,0x83359633,0x83359634,0x83359635,0x83359636,0x83359637,0x83359638, +0x83359639,0x83359730,0x83359731,0x83359732,0x83359733,0x83359734,0x83359735, +0x83359736,0x83359737,0x83359738,0x83359739,0x83359830,0x83359831,0x83359832, +0x83359833,0x83359834,0x83359835,0x83359836,0x83359837,0x83359838,0x83359839, +0x83359930,0x83359931,0x83359932,0x83359933,0x83359934,0x83359935,0x83359936, +0x83359937,0x83359938,0x83359939,0x83359a30,0x83359a31,0x83359a32,0x83359a33, +0x83359a34,0x83359a35,0x83359a36,0x83359a37,0x83359a38,0x83359a39,0x83359b30, +0x83359b31,0x83359b32,0x83359b33,0x83359b34,0x83359b35,0x83359b36,0x83359b37, +0x83359b38,0x83359b39,0x83359c30,0x83359c31,0x83359c32,0x83359c33,0x83359c34, +0x83359c35,0x83359c36,0x83359c37,0x83359c38,0x83359c39,0x83359d30,0x83359d31, +0x83359d32,0x83359d33,0x83359d34,0x83359d35,0x83359d36,0x83359d37,0x83359d38, +0x83359d39,0x83359e30,0x83359e31,0x83359e32,0x83359e33,0x83359e34,0x83359e35, +0x83359e36,0x83359e37,0x83359e38,0x83359e39,0x83359f30,0x83359f31,0x83359f32, +0x83359f33,0x83359f34,0x83359f35,0x83359f36,0x83359f37,0x83359f38,0x83359f39, +0x8335a030,0x8335a031,0x8335a032,0x8335a033,0x8335a034,0x8335a035,0x8335a036, +0x8335a037,0x8335a038,0x8335a039,0x8335a130,0x8335a131,0x8335a132,0x8335a133, +0x8335a134,0x8335a135,0x8335a136,0x8335a137,0x8335a138,0x8335a139,0x8335a230, +0x8335a231,0x8335a232,0x8335a233,0x8335a234,0x8335a235,0x8335a236,0x8335a237, +0x8335a238,0x8335a239,0x8335a330,0x8335a331,0x8335a332,0x8335a333,0x8335a334, +0x8335a335,0x8335a336,0x8335a337,0x8335a338,0x8335a339,0x8335a430,0x8335a431, +0x8335a432,0x8335a433,0x8335a434,0x8335a435,0x8335a436,0x8335a437,0x8335a438, +0x8335a439,0x8335a530,0x8335a531,0x8335a532,0x8335a533,0x8335a534,0x8335a535, +0x8335a536,0x8335a537,0x8335a538,0x8335a539,0x8335a630,0x8335a631,0x8335a632, +0x8335a633,0x8335a634,0x8335a635,0x8335a636,0x8335a637,0x8335a638,0x8335a639, +0x8335a730,0x8335a731,0x8335a732,0x8335a733,0x8335a734,0x8335a735,0x8335a736, +0x8335a737,0x8335a738,0x8335a739,0x8335a830,0x8335a831,0x8335a832,0x8335a833, +0x8335a834,0x8335a835,0x8335a836,0x8335a837,0x8335a838,0x8335a839,0x8335a930, +0x8335a931,0x8335a932,0x8335a933,0x8335a934,0x8335a935,0x8335a936,0x8335a937, +0x8335a938,0x8335a939,0x8335aa30,0x8335aa31,0x8335aa32,0x8335aa33,0x8335aa34, +0x8335aa35,0x8335aa36,0x8335aa37,0x8335aa38,0x8335aa39,0x8335ab30,0x8335ab31, +0x8335ab32,0x8335ab33,0x8335ab34,0x8335ab35,0x8335ab36,0x8335ab37,0x8335ab38, +0x8335ab39,0x8335ac30,0x8335ac31,0x8335ac32,0x8335ac33,0x8335ac34,0x8335ac35, +0x8335ac36,0x8335ac37,0x8335ac38,0x8335ac39,0x8335ad30,0x8335ad31,0x8335ad32, +0x8335ad33,0x8335ad34,0x8335ad35,0x8335ad36,0x8335ad37,0x8335ad38,0x8335ad39, +0x8335ae30,0x8335ae31,0x8335ae32,0x8335ae33,0x8335ae34,0x8335ae35,0x8335ae36, +0x8335ae37,0x8335ae38,0x8335ae39,0x8335af30,0x8335af31,0x8335af32,0x8335af33, +0x8335af34,0x8335af35,0x8335af36,0x8335af37,0x8335af38,0x8335af39,0x8335b030, +0x8335b031,0x8335b032,0x8335b033,0x8335b034,0x8335b035,0x8335b036,0x8335b037, +0x8335b038,0x8335b039,0x8335b130,0x8335b131,0x8335b132,0x8335b133,0x8335b134, +0x8335b135,0x8335b136,0x8335b137,0x8335b138,0x8335b139,0x8335b230,0x8335b231, +0x8335b232,0x8335b233,0x8335b234,0x8335b235,0x8335b236,0x8335b237,0x8335b238, +0x8335b239,0x8335b330,0x8335b331,0x8335b332,0x8335b333,0x8335b334,0x8335b335, +0x8335b336,0x8335b337,0x8335b338,0x8335b339,0x8335b430,0x8335b431,0x8335b432, +0x8335b433,0x8335b434,0x8335b435,0x8335b436,0x8335b437,0x8335b438,0x8335b439, +0x8335b530,0x8335b531,0x8335b532,0x8335b533,0x8335b534,0x8335b535,0x8335b536, +0x8335b537,0x8335b538,0x8335b539,0x8335b630,0x8335b631,0x8335b632,0x8335b633, +0x8335b634,0x8335b635,0x8335b636,0x8335b637,0x8335b638,0x8335b639,0x8335b730, +0x8335b731,0x8335b732,0x8335b733,0x8335b734,0x8335b735,0x8335b736,0x8335b737, +0x8335b738,0x8335b739,0x8335b830,0x8335b831,0x8335b832,0x8335b833,0x8335b834, +0x8335b835,0x8335b836,0x8335b837,0x8335b838,0x8335b839,0x8335b930,0x8335b931, +0x8335b932,0x8335b933,0x8335b934,0x8335b935,0x8335b936,0x8335b937,0x8335b938, +0x8335b939,0x8335ba30,0x8335ba31,0x8335ba32,0x8335ba33,0x8335ba34,0x8335ba35, +0x8335ba36,0x8335ba37,0x8335ba38,0x8335ba39,0x8335bb30,0x8335bb31,0x8335bb32, +0x8335bb33,0x8335bb34,0x8335bb35,0x8335bb36,0x8335bb37,0x8335bb38,0x8335bb39, +0x8335bc30,0x8335bc31,0x8335bc32,0x8335bc33,0x8335bc34,0x8335bc35,0x8335bc36, +0x8335bc37,0x8335bc38,0x8335bc39,0x8335bd30,0x8335bd31,0x8335bd32,0x8335bd33, +0x8335bd34,0x8335bd35,0x8335bd36,0x8335bd37,0x8335bd38,0x8335bd39,0x8335be30, +0x8335be31,0x8335be32,0x8335be33,0x8335be34,0x8335be35,0x8335be36,0x8335be37, +0x8335be38,0x8335be39,0x8335bf30,0x8335bf31,0x8335bf32,0x8335bf33,0x8335bf34, +0x8335bf35,0x8335bf36,0x8335bf37,0x8335bf38,0x8335bf39,0x8335c030,0x8335c031, +0x8335c032,0x8335c033,0x8335c034,0x8335c035,0x8335c036,0x8335c037,0x8335c038, +0x8335c039,0x8335c130,0x8335c131,0x8335c132,0x8335c133,0x8335c134,0x8335c135, +0x8335c136,0x8335c137,0x8335c138,0x8335c139,0x8335c230,0x8335c231,0x8335c232, +0x8335c233,0x8335c234,0x8335c235,0x8335c236,0x8335c237,0x8335c238,0x8335c239, +0x8335c330,0x8335c331,0x8335c332,0x8335c333,0x8335c334,0x8335c335,0x8335c336, +0x8335c337,0x8335c338,0x8335c339,0x8335c430,0x8335c431,0x8335c432,0x8335c433, +0x8335c434,0x8335c435,0x8335c436,0x8335c437,0x8335c438,0x8335c439,0x8335c530, +0x8335c531,0x8335c532,0x8335c533,0x8335c534,0x8335c535,0x8335c536,0x8335c537, +0x8335c538,0x8335c539,0x8335c630,0x8335c631,0x8335c632,0x8335c633,0x8335c634, +0x8335c635,0x8335c636,0x8335c637,0x8335c638,0x8335c639,0x8335c730,0x8335c731, +0x8335c732,0x8335c733,0x8335c734,0x8335c735,0x8335c736,0x8335c737,0x8335c738, +0x8335c739,0x8335c830,0x8335c831,0x8335c832,0x8335c833,0x8335c834,0x8335c835, +0x8335c836,0x8335c837,0x8335c838,0x8335c839,0x8335c930,0x8335c931,0x8335c932, +0x8335c933,0x8335c934,0x8335c935,0x8335c936,0x8335c937,0x8335c938,0x8335c939, +0x8335ca30,0x8335ca31,0x8335ca32,0x8335ca33,0x8335ca34,0x8335ca35,0x8335ca36, +0x8335ca37,0x8335ca38,0x8335ca39,0x8335cb30,0x8335cb31,0x8335cb32,0x8335cb33, +0x8335cb34,0x8335cb35,0x8335cb36,0x8335cb37,0x8335cb38,0x8335cb39,0x8335cc30, +0x8335cc31,0x8335cc32,0x8335cc33,0x8335cc34,0x8335cc35,0x8335cc36,0x8335cc37, +0x8335cc38,0x8335cc39,0x8335cd30,0x8335cd31,0x8335cd32,0x8335cd33,0x8335cd34, +0x8335cd35,0x8335cd36,0x8335cd37,0x8335cd38,0x8335cd39,0x8335ce30,0x8335ce31, +0x8335ce32,0x8335ce33,0x8335ce34,0x8335ce35,0x8335ce36,0x8335ce37,0x8335ce38, +0x8335ce39,0x8335cf30,0x8335cf31,0x8335cf32,0x8335cf33,0x8335cf34,0x8335cf35, +0x8335cf36,0x8335cf37,0x8335cf38,0x8335cf39,0x8335d030,0x8335d031,0x8335d032, +0x8335d033,0x8335d034,0x8335d035,0x8335d036,0x8335d037,0x8335d038,0x8335d039, +0x8335d130,0x8335d131,0x8335d132,0x8335d133,0x8335d134,0x8335d135,0x8335d136, +0x8335d137,0x8335d138,0x8335d139,0x8335d230,0x8335d231,0x8335d232,0x8335d233, +0x8335d234,0x8335d235,0x8335d236,0x8335d237,0x8335d238,0x8335d239,0x8335d330, +0x8335d331,0x8335d332,0x8335d333,0x8335d334,0x8335d335,0x8335d336,0x8335d337, +0x8335d338,0x8335d339,0x8335d430,0x8335d431,0x8335d432,0x8335d433,0x8335d434, +0x8335d435,0x8335d436,0x8335d437,0x8335d438,0x8335d439,0x8335d530,0x8335d531, +0x8335d532,0x8335d533,0x8335d534,0x8335d535,0x8335d536,0x8335d537,0x8335d538, +0x8335d539,0x8335d630,0x8335d631,0x8335d632,0x8335d633,0x8335d634,0x8335d635, +0x8335d636,0x8335d637,0x8335d638,0x8335d639,0x8335d730,0x8335d731,0x8335d732, +0x8335d733,0x8335d734,0x8335d735,0x8335d736,0x8335d737,0x8335d738,0x8335d739, +0x8335d830,0x8335d831,0x8335d832,0x8335d833,0x8335d834,0x8335d835,0x8335d836, +0x8335d837,0x8335d838,0x8335d839,0x8335d930,0x8335d931,0x8335d932,0x8335d933, +0x8335d934,0x8335d935,0x8335d936,0x8335d937,0x8335d938,0x8335d939,0x8335da30, +0x8335da31,0x8335da32,0x8335da33,0x8335da34,0x8335da35,0x8335da36,0x8335da37, +0x8335da38,0x8335da39,0x8335db30,0x8335db31,0x8335db32,0x8335db33,0x8335db34, +0x8335db35,0x8335db36,0x8335db37,0x8335db38,0x8335db39,0x8335dc30,0x8335dc31, +0x8335dc32,0x8335dc33,0x8335dc34,0x8335dc35,0x8335dc36,0x8335dc37,0x8335dc38, +0x8335dc39,0x8335dd30,0x8335dd31,0x8335dd32,0x8335dd33,0x8335dd34,0x8335dd35, +0x8335dd36,0x8335dd37,0x8335dd38,0x8335dd39,0x8335de30,0x8335de31,0x8335de32, +0x8335de33,0x8335de34,0x8335de35,0x8335de36,0x8335de37,0x8335de38,0x8335de39, +0x8335df30,0x8335df31,0x8335df32,0x8335df33,0x8335df34,0x8335df35,0x8335df36, +0x8335df37,0x8335df38,0x8335df39,0x8335e030,0x8335e031,0x8335e032,0x8335e033, +0x8335e034,0x8335e035,0x8335e036,0x8335e037,0x8335e038,0x8335e039,0x8335e130, +0x8335e131,0x8335e132,0x8335e133,0x8335e134,0x8335e135,0x8335e136,0x8335e137, +0x8335e138,0x8335e139,0x8335e230,0x8335e231,0x8335e232,0x8335e233,0x8335e234, +0x8335e235,0x8335e236,0x8335e237,0x8335e238,0x8335e239,0x8335e330,0x8335e331, +0x8335e332,0x8335e333,0x8335e334,0x8335e335,0x8335e336,0x8335e337,0x8335e338, +0x8335e339,0x8335e430,0x8335e431,0x8335e432,0x8335e433,0x8335e434,0x8335e435, +0x8335e436,0x8335e437,0x8335e438,0x8335e439,0x8335e530,0x8335e531,0x8335e532, +0x8335e533,0x8335e534,0x8335e535,0x8335e536,0x8335e537,0x8335e538,0x8335e539, +0x8335e630,0x8335e631,0x8335e632,0x8335e633,0x8335e634,0x8335e635,0x8335e636, +0x8335e637,0x8335e638,0x8335e639,0x8335e730,0x8335e731,0x8335e732,0x8335e733, +0x8335e734,0x8335e735,0x8335e736,0x8335e737,0x8335e738,0x8335e739,0x8335e830, +0x8335e831,0x8335e832,0x8335e833,0x8335e834,0x8335e835,0x8335e836,0x8335e837, +0x8335e838,0x8335e839,0x8335e930,0x8335e931,0x8335e932,0x8335e933,0x8335e934, +0x8335e935,0x8335e936,0x8335e937,0x8335e938,0x8335e939,0x8335ea30,0x8335ea31, +0x8335ea32,0x8335ea33,0x8335ea34,0x8335ea35,0x8335ea36,0x8335ea37,0x8335ea38, +0x8335ea39,0x8335eb30,0x8335eb31,0x8335eb32,0x8335eb33,0x8335eb34,0x8335eb35, +0x8335eb36,0x8335eb37,0x8335eb38,0x8335eb39,0x8335ec30,0x8335ec31,0x8335ec32, +0x8335ec33,0x8335ec34,0x8335ec35,0x8335ec36,0x8335ec37,0x8335ec38,0x8335ec39, +0x8335ed30,0x8335ed31,0x8335ed32,0x8335ed33,0x8335ed34,0x8335ed35,0x8335ed36, +0x8335ed37,0x8335ed38,0x8335ed39,0x8335ee30,0x8335ee31,0x8335ee32,0x8335ee33, +0x8335ee34,0x8335ee35,0x8335ee36,0x8335ee37,0x8335ee38,0x8335ee39,0x8335ef30, +0x8335ef31,0x8335ef32,0x8335ef33,0x8335ef34,0x8335ef35,0x8335ef36,0x8335ef37, +0x8335ef38,0x8335ef39,0x8335f030,0x8335f031,0x8335f032,0x8335f033,0x8335f034, +0x8335f035,0x8335f036,0x8335f037,0x8335f038,0x8335f039,0x8335f130,0x8335f131, +0x8335f132,0x8335f133,0x8335f134,0x8335f135,0x8335f136,0x8335f137,0x8335f138, +0x8335f139,0x8335f230,0x8335f231,0x8335f232,0x8335f233,0x8335f234,0x8335f235, +0x8335f236,0x8335f237,0x8335f238,0x8335f239,0x8335f330,0x8335f331,0x8335f332, +0x8335f333,0x8335f334,0x8335f335,0x8335f336,0x8335f337,0x8335f338,0x8335f339, +0x8335f430,0x8335f431,0x8335f432,0x8335f433,0x8335f434,0x8335f435,0x8335f436, +0x8335f437,0x8335f438,0x8335f439,0x8335f530,0x8335f531,0x8335f532,0x8335f533, +0x8335f534,0x8335f535,0x8335f536,0x8335f537,0x8335f538,0x8335f539,0x8335f630, +0x8335f631,0x8335f632,0x8335f633,0x8335f634,0x8335f635,0x8335f636,0x8335f637, +0x8335f638,0x8335f639,0x8335f730,0x8335f731,0x8335f732,0x8335f733,0x8335f734, +0x8335f735,0x8335f736,0x8335f737,0x8335f738,0x8335f739,0x8335f830,0x8335f831, +0x8335f832,0x8335f833,0x8335f834,0x8335f835,0x8335f836,0x8335f837,0x8335f838, +0x8335f839,0x8335f930,0x8335f931,0x8335f932,0x8335f933,0x8335f934,0x8335f935, +0x8335f936,0x8335f937,0x8335f938,0x8335f939,0x8335fa30,0x8335fa31,0x8335fa32, +0x8335fa33,0x8335fa34,0x8335fa35,0x8335fa36,0x8335fa37,0x8335fa38,0x8335fa39, +0x8335fb30,0x8335fb31,0x8335fb32,0x8335fb33,0x8335fb34,0x8335fb35,0x8335fb36, +0x8335fb37,0x8335fb38,0x8335fb39,0x8335fc30,0x8335fc31,0x8335fc32,0x8335fc33, +0x8335fc34,0x8335fc35,0x8335fc36,0x8335fc37,0x8335fc38,0x8335fc39,0x8335fd30, +0x8335fd31,0x8335fd32,0x8335fd33,0x8335fd34,0x8335fd35,0x8335fd36,0x8335fd37, +0x8335fd38,0x8335fd39,0x8335fe30,0x8335fe31,0x8335fe32,0x8335fe33,0x8335fe34, +0x8335fe35,0x8335fe36,0x8335fe37,0x8335fe38,0x8335fe39,0x83368130,0x83368131, +0x83368132,0x83368133,0x83368134,0x83368135,0x83368136,0x83368137,0x83368138, +0x83368139,0x83368230,0x83368231,0x83368232,0x83368233,0x83368234,0x83368235, +0x83368236,0x83368237,0x83368238,0x83368239,0x83368330,0x83368331,0x83368332, +0x83368333,0x83368334,0x83368335,0x83368336,0x83368337,0x83368338,0x83368339, +0x83368430,0x83368431,0x83368432,0x83368433,0x83368434,0x83368435,0x83368436, +0x83368437,0x83368438,0x83368439,0x83368530,0x83368531,0x83368532,0x83368533, +0x83368534,0x83368535,0x83368536,0x83368537,0x83368538,0x83368539,0x83368630, +0x83368631,0x83368632,0x83368633,0x83368634,0x83368635,0x83368636,0x83368637, +0x83368638,0x83368639,0x83368730,0x83368731,0x83368732,0x83368733,0x83368734, +0x83368735,0x83368736,0x83368737,0x83368738,0x83368739,0x83368830,0x83368831, +0x83368832,0x83368833,0x83368834,0x83368835,0x83368836,0x83368837,0x83368838, +0x83368839,0x83368930,0x83368931,0x83368932,0x83368933,0x83368934,0x83368935, +0x83368936,0x83368937,0x83368938,0x83368939,0x83368a30,0x83368a31,0x83368a32, +0x83368a33,0x83368a34,0x83368a35,0x83368a36,0x83368a37,0x83368a38,0x83368a39, +0x83368b30,0x83368b31,0x83368b32,0x83368b33,0x83368b34,0x83368b35,0x83368b36, +0x83368b37,0x83368b38,0x83368b39,0x83368c30,0x83368c31,0x83368c32,0x83368c33, +0x83368c34,0x83368c35,0x83368c36,0x83368c37,0x83368c38,0x83368c39,0x83368d30, +0x83368d31,0x83368d32,0x83368d33,0x83368d34,0x83368d35,0x83368d36,0x83368d37, +0x83368d38,0x83368d39,0x83368e30,0x83368e31,0x83368e32,0x83368e33,0x83368e34, +0x83368e35,0x83368e36,0x83368e37,0x83368e38,0x83368e39,0x83368f30,0x83368f31, +0x83368f32,0x83368f33,0x83368f34,0x83368f35,0x83368f36,0x83368f37,0x83368f38, +0x83368f39,0x83369030,0x83369031,0x83369032,0x83369033,0x83369034,0x83369035, +0x83369036,0x83369037,0x83369038,0x83369039,0x83369130,0x83369131,0x83369132, +0x83369133,0x83369134,0x83369135,0x83369136,0x83369137,0x83369138,0x83369139, +0x83369230,0x83369231,0x83369232,0x83369233,0x83369234,0x83369235,0x83369236, +0x83369237,0x83369238,0x83369239,0x83369330,0x83369331,0x83369332,0x83369333, +0x83369334,0x83369335,0x83369336,0x83369337,0x83369338,0x83369339,0x83369430, +0x83369431,0x83369432,0x83369433,0x83369434,0x83369435,0x83369436,0x83369437, +0x83369438,0x83369439,0x83369530,0x83369531,0x83369532,0x83369533,0x83369534, +0x83369535,0x83369536,0x83369537,0x83369538,0x83369539,0x83369630,0x83369631, +0x83369632,0x83369633,0x83369634,0x83369635,0x83369636,0x83369637,0x83369638, +0x83369639,0x83369730,0x83369731,0x83369732,0x83369733,0x83369734,0x83369735, +0x83369736,0x83369737,0x83369738,0x83369739,0x83369830,0x83369831,0x83369832, +0x83369833,0x83369834,0x83369835,0x83369836,0x83369837,0x83369838,0x83369839, +0x83369930,0x83369931,0x83369932,0x83369933,0x83369934,0x83369935,0x83369936, +0x83369937,0x83369938,0x83369939,0x83369a30,0x83369a31,0x83369a32,0x83369a33, +0x83369a34,0x83369a35,0x83369a36,0x83369a37,0x83369a38,0x83369a39,0x83369b30, +0x83369b31,0x83369b32,0x83369b33,0x83369b34,0x83369b35,0x83369b36,0x83369b37, +0x83369b38,0x83369b39,0x83369c30,0x83369c31,0x83369c32,0x83369c33,0x83369c34, +0x83369c35,0x83369c36,0x83369c37,0x83369c38,0x83369c39,0x83369d30,0x83369d31, +0x83369d32,0x83369d33,0x83369d34,0x83369d35,0x83369d36,0x83369d37,0x83369d38, +0x83369d39,0x83369e30,0x83369e31,0x83369e32,0x83369e33,0x83369e34,0x83369e35, +0x83369e36,0x83369e37,0x83369e38,0x83369e39,0x83369f30,0x83369f31,0x83369f32, +0x83369f33,0x83369f34,0x83369f35,0x83369f36,0x83369f37,0x83369f38,0x83369f39, +0x8336a030,0x8336a031,0x8336a032,0x8336a033,0x8336a034,0x8336a035,0x8336a036, +0x8336a037,0x8336a038,0x8336a039,0x8336a130,0x8336a131,0x8336a132,0x8336a133, +0x8336a134,0x8336a135,0x8336a136,0x8336a137,0x8336a138,0x8336a139,0x8336a230, +0x8336a231,0x8336a232,0x8336a233,0x8336a234,0x8336a235,0x8336a236,0x8336a237, +0x8336a238,0x8336a239,0x8336a330,0x8336a331,0x8336a332,0x8336a333,0x8336a334, +0x8336a335,0x8336a336,0x8336a337,0x8336a338,0x8336a339,0x8336a430,0x8336a431, +0x8336a432,0x8336a433,0x8336a434,0x8336a435,0x8336a436,0x8336a437,0x8336a438, +0x8336a439,0x8336a530,0x8336a531,0x8336a532,0x8336a533,0x8336a534,0x8336a535, +0x8336a536,0x8336a537,0x8336a538,0x8336a539,0x8336a630,0x8336a631,0x8336a632, +0x8336a633,0x8336a634,0x8336a635,0x8336a636,0x8336a637,0x8336a638,0x8336a639, +0x8336a730,0x8336a731,0x8336a732,0x8336a733,0x8336a734,0x8336a735,0x8336a736, +0x8336a737,0x8336a738,0x8336a739,0x8336a830,0x8336a831,0x8336a832,0x8336a833, +0x8336a834,0x8336a835,0x8336a836,0x8336a837,0x8336a838,0x8336a839,0x8336a930, +0x8336a931,0x8336a932,0x8336a933,0x8336a934,0x8336a935,0x8336a936,0x8336a937, +0x8336a938,0x8336a939,0x8336aa30,0x8336aa31,0x8336aa32,0x8336aa33,0x8336aa34, +0x8336aa35,0x8336aa36,0x8336aa37,0x8336aa38,0x8336aa39,0x8336ab30,0x8336ab31, +0x8336ab32,0x8336ab33,0x8336ab34,0x8336ab35,0x8336ab36,0x8336ab37,0x8336ab38, +0x8336ab39,0x8336ac30,0x8336ac31,0x8336ac32,0x8336ac33,0x8336ac34,0x8336ac35, +0x8336ac36,0x8336ac37,0x8336ac38,0x8336ac39,0x8336ad30,0x8336ad31,0x8336ad32, +0x8336ad33,0x8336ad34,0x8336ad35,0x8336ad36,0x8336ad37,0x8336ad38,0x8336ad39, +0x8336ae30,0x8336ae31,0x8336ae32,0x8336ae33,0x8336ae34,0x8336ae35,0x8336ae36, +0x8336ae37,0x8336ae38,0x8336ae39,0x8336af30,0x8336af31,0x8336af32,0x8336af33, +0x8336af34,0x8336af35,0x8336af36,0x8336af37,0x8336af38,0x8336af39,0x8336b030, +0x8336b031,0x8336b032,0x8336b033,0x8336b034,0x8336b035,0x8336b036,0x8336b037, +0x8336b038,0x8336b039,0x8336b130,0x8336b131,0x8336b132,0x8336b133,0x8336b134, +0x8336b135,0x8336b136,0x8336b137,0x8336b138,0x8336b139,0x8336b230,0x8336b231, +0x8336b232,0x8336b233,0x8336b234,0x8336b235,0x8336b236,0x8336b237,0x8336b238, +0x8336b239,0x8336b330,0x8336b331,0x8336b332,0x8336b333,0x8336b334,0x8336b335, +0x8336b336,0x8336b337,0x8336b338,0x8336b339,0x8336b430,0x8336b431,0x8336b432, +0x8336b433,0x8336b434,0x8336b435,0x8336b436,0x8336b437,0x8336b438,0x8336b439, +0x8336b530,0x8336b531,0x8336b532,0x8336b533,0x8336b534,0x8336b535,0x8336b536, +0x8336b537,0x8336b538,0x8336b539,0x8336b630,0x8336b631,0x8336b632,0x8336b633, +0x8336b634,0x8336b635,0x8336b636,0x8336b637,0x8336b638,0x8336b639,0x8336b730, +0x8336b731,0x8336b732,0x8336b733,0x8336b734,0x8336b735,0x8336b736,0x8336b737, +0x8336b738,0x8336b739,0x8336b830,0x8336b831,0x8336b832,0x8336b833,0x8336b834, +0x8336b835,0x8336b836,0x8336b837,0x8336b838,0x8336b839,0x8336b930,0x8336b931, +0x8336b932,0x8336b933,0x8336b934,0x8336b935,0x8336b936,0x8336b937,0x8336b938, +0x8336b939,0x8336ba30,0x8336ba31,0x8336ba32,0x8336ba33,0x8336ba34,0x8336ba35, +0x8336ba36,0x8336ba37,0x8336ba38,0x8336ba39,0x8336bb30,0x8336bb31,0x8336bb32, +0x8336bb33,0x8336bb34,0x8336bb35,0x8336bb36,0x8336bb37,0x8336bb38,0x8336bb39, +0x8336bc30,0x8336bc31,0x8336bc32,0x8336bc33,0x8336bc34,0x8336bc35,0x8336bc36, +0x8336bc37,0x8336bc38,0x8336bc39,0x8336bd30,0x8336bd31,0x8336bd32,0x8336bd33, +0x8336bd34,0x8336bd35,0x8336bd36,0x8336bd37,0x8336bd38,0x8336bd39,0x8336be30, +0x8336be31,0x8336be32,0x8336be33,0x8336be34,0x8336be35,0x8336be36,0x8336be37, +0x8336be38,0x8336be39,0x8336bf30,0x8336bf31,0x8336bf32,0x8336bf33,0x8336bf34, +0x8336bf35,0x8336bf36,0x8336bf37,0x8336bf38,0x8336bf39,0x8336c030,0x8336c031, +0x8336c032,0x8336c033,0x8336c034,0x8336c035,0x8336c036,0x8336c037,0x8336c038, +0x8336c039,0x8336c130,0x8336c131,0x8336c132,0x8336c133,0x8336c134,0x8336c135, +0x8336c136,0x8336c137,0x8336c138,0x8336c139,0x8336c230,0x8336c231,0x8336c232, +0x8336c233,0x8336c234,0x8336c235,0x8336c236,0x8336c237,0x8336c238,0x8336c239, +0x8336c330,0x8336c331,0x8336c332,0x8336c333,0x8336c334,0x8336c335,0x8336c336, +0x8336c337,0x8336c338,0x8336c339,0x8336c430,0x8336c431,0x8336c432,0x8336c433, +0x8336c434,0x8336c435,0x8336c436,0x8336c437,0x8336c438,0x8336c439,0x8336c530, +0x8336c531,0x8336c532,0x8336c533,0x8336c534,0x8336c535,0x8336c536,0x8336c537, +0x8336c538,0x8336c539,0x8336c630,0x8336c631,0x8336c632,0x8336c633,0x8336c634, +0x8336c635,0x8336c636,0x8336c637,0x8336c638,0x8336c639,0x8336c730,0x8336c731, +0x8336c732,0x8336c733,0x8336c734,0x8336c735,0x8336c736,0x8336c737,0x8336c738, +0x8336d030,0x8336d031,0x8336d032,0x8336d033,0x8336d034,0x8336d035,0x8336d036, +0x8336d037,0x8336d038,0x8336d039,0x8336d130,0x8336d131,0x8336d132,0x8336d133, +0x8336d134,0x8336d135,0x8336d136,0x8336d137,0x8336d138,0x8336d139,0x8336d230, +0x8336d231,0x8336d232,0x8336d233,0x8336d234,0x8336d235,0x8336d236,0x8336d237, +0x8336d238,0x8336d239,0x8336d330,0x8336d331,0x8336d332,0x8336d333,0x8336d334, +0x8336d335,0x8336d336,0x8336d337,0x8336d338,0x8336d339,0x8336d430,0x8336d431, +0x8336d432,0x8336d433,0x8336d434,0x8336d435,0x8336d436,0x8336d437,0x8336d438, +0x8336d439,0x8336d530,0x8336d531,0x8336d532,0x8336d533,0x8336d534,0x8336d535, +0x8336d536,0x8336d537,0x8336d538,0x8336d539,0x8336d630,0x8336d631,0x8336d632, +0x8336d633,0x8336d634,0x8336d635,0x8336d636,0x8336d637,0x8336d638,0x8336d639, +0x8336d730,0x8336d731,0x8336d732,0x8336d733,0x8336d734,0x8336d735,0x8336d736, +0x8336d737,0x8336d738,0x8336d739,0x8336d830,0x8336d831,0x8336d832,0x8336d833, +0x8336d834,0x8336d835,0x8336d836,0x8336d837,0x8336d838,0x8336d839,0x8336d930, +0x8336d931,0x8336d932,0x8336d933,0x8336d934,0x8336d935,0x8336d936,0x8336d937, +0x8336d938,0x8336d939,0x8336da30,0x8336da31,0x8336da32,0x8336da33,0x8336da34, +0x8336da35,0x8336da36,0x8336da37,0x8336da38,0x8336da39,0x8336db30,0x8336db31, +0x8336db32,0x8336db33,0x8336db34,0x8336db35,0x8336db36,0x8336db37,0x8336db38, +0x8336db39,0x8336dc30,0x8336dc31,0x8336dc32,0x8336dc33,0x8336dc34,0x8336dc35, +0x8336dc36,0x8336dc37,0x8336dc38,0x8336dc39,0x8336dd30,0x8336dd31,0x8336dd32, +0x8336dd33,0x8336dd34,0x8336dd35,0x8336dd36,0x8336dd37,0x8336dd38,0x8336dd39, +0x8336de30,0x8336de31,0x8336de32,0x8336de33,0x8336de34,0x8336de35,0x8336de36, +0x8336de37,0x8336de38,0x8336de39,0x8336df30,0x8336df31,0x8336df32,0x8336df33, +0x8336df34,0x8336df35,0x8336df36,0x8336df37,0x8336df38,0x8336df39,0x8336e030, +0x8336e031,0x8336e032,0x8336e033,0x8336e034,0x8336e035,0x8336e036,0x8336e037, +0x8336e038,0x8336e039,0x8336e130,0x8336e131,0x8336e132,0x8336e133,0x8336e134, +0x8336e135,0x8336e136,0x8336e137,0x8336e138,0x8336e139,0x8336e230,0x8336e231, +0x8336e232,0x8336e233,0x8336e234,0x8336e235,0x8336e236,0x8336e237,0x8336e238, +0x8336e239,0x8336e330,0x8336e331,0x8336e332,0x8336e333,0x8336e334,0x8336e335, +0x8336e336,0x8336e337,0x8336e338,0x8336e339,0x8336e430,0x8336e431,0x8336e432, +0x8336e433,0x8336e434,0x8336e435,0x8336e436,0x8336e437,0x8336e438,0x8336e439, +0x8336e530,0x8336e531,0x8336e532,0x8336e533,0x8336e534,0x8336e535,0x8336e536, +0x8336e537,0x8336e538,0x8336e539,0x8336e630,0x8336e631,0x8336e632,0x8336e633, +0x8336e634,0x8336e635,0x8336e636,0x8336e637,0x8336e638,0x8336e639,0x8336e730, +0x8336e731,0x8336e732,0x8336e733,0x8336e734,0x8336e735,0x8336e736,0x8336e737, +0x8336e738,0x8336e739,0x8336e830,0x8336e831,0x8336e832,0x8336e833,0x8336e834, +0x8336e835,0x8336e836,0x8336e837,0x8336e838,0x8336e839,0x8336e930,0x8336e931, +0x8336e932,0x8336e933,0x8336e934,0x8336e935,0x8336e936,0x8336e937,0x8336e938, +0x8336e939,0x8336ea30,0x8336ea31,0x8336ea32,0x8336ea33,0x8336ea34,0x8336ea35, +0x8336ea36,0x8336ea37,0x8336ea38,0x8336ea39,0x8336eb30,0x8336eb31,0x8336eb32, +0x8336eb33,0x8336eb34,0x8336eb35,0x8336eb36,0x8336eb37,0x8336eb38,0x8336eb39, +0x8336ec30,0x8336ec31,0x8336ec32,0x8336ec33,0x8336ec34,0x8336ec35,0x8336ec36, +0x8336ec37,0x8336ec38,0x8336ec39,0x8336ed30,0x8336ed31,0x8336ed32,0x8336ed33, +0x8336ed34,0x8336ed35,0x8336ed36,0x8336ed37,0x8336ed38,0x8336ed39,0x8336ee30, +0x8336ee31,0x8336ee32,0x8336ee33,0x8336ee34,0x8336ee35,0x8336ee36,0x8336ee37, +0x8336ee38,0x8336ee39,0x8336ef30,0x8336ef31,0x8336ef32,0x8336ef33,0x8336ef34, +0x8336ef35,0x8336ef36,0x8336ef37,0x8336ef38,0x8336ef39,0x8336f030,0x8336f031, +0x8336f032,0x8336f033,0x8336f034,0x8336f035,0x8336f036,0x8336f037,0x8336f038, +0x8336f039,0x8336f130,0x8336f131,0x8336f132,0x8336f133,0x8336f134,0x8336f135, +0x8336f136,0x8336f137,0x8336f138,0x8336f139,0x8336f230,0x8336f231,0x8336f232, +0x8336f233,0x8336f234,0x8336f235,0x8336f236,0x8336f237,0x8336f238,0x8336f239, +0x8336f330,0x8336f331,0x8336f332,0x8336f333,0x8336f334,0x8336f335,0x8336f336, +0x8336f337,0x8336f338,0x8336f339,0x8336f430,0x8336f431,0x8336f432,0x8336f433, +0x8336f434,0x8336f435,0x8336f436,0x8336f437,0x8336f438,0x8336f439,0x8336f530, +0x8336f531,0x8336f532,0x8336f533,0x8336f534,0x8336f535,0x8336f536,0x8336f537, +0x8336f538,0x8336f539,0x8336f630,0x8336f631,0x8336f632,0x8336f633,0x8336f634, +0x8336f635,0x8336f636,0x8336f637,0x8336f638,0x8336f639,0x8336f730,0x8336f731, +0x8336f732,0x8336f733,0x8336f734,0x8336f735,0x8336f736,0x8336f737,0x8336f738, +0x8336f739,0x8336f830,0x8336f831,0x8336f832,0x8336f833,0x8336f834,0x8336f835, +0x8336f836,0x8336f837,0x8336f838,0x8336f839,0x8336f930,0x8336f931,0x8336f932, +0x8336f933,0x8336f934,0x8336f935,0x8336f936,0x8336f937,0x8336f938,0x8336f939, +0x8336fa30,0x8336fa31,0x8336fa32,0x8336fa33,0x8336fa34,0x8336fa35,0x8336fa36, +0x8336fa37,0x8336fa38,0x8336fa39,0x8336fb30,0x8336fb31,0x8336fb32,0x8336fb33, +0x8336fb34,0x8336fb35,0x8336fb36,0x8336fb37,0x8336fb38,0x8336fb39,0x8336fc30, +0x8336fc31,0x8336fc32,0x8336fc33,0x8336fc34,0x8336fc35,0x8336fc36,0x8336fc37, +0x8336fc38,0x8336fc39,0x8336fd30,0x8336fd31,0x8336fd32,0x8336fd33,0x8336fd34, +0x8336fd35,0x8336fd36,0x8336fd37,0x8336fd38,0x8336fd39,0x8336fe30,0x8336fe31, +0x8336fe32,0x8336fe33,0x8336fe34,0x8336fe35,0x8336fe36,0x8336fe37,0x8336fe38, +0x8336fe39,0x83378130,0x83378131,0x83378132,0x83378133,0x83378134,0x83378135, +0x83378136,0x83378137,0x83378138,0x83378139,0x83378230,0x83378231,0x83378232, +0x83378233,0x83378234,0x83378235,0x83378236,0x83378237,0x83378238,0x83378239, +0x83378330,0x83378331,0x83378332,0x83378333,0x83378334,0x83378335,0x83378336, +0x83378337,0x83378338,0x83378339,0x83378430,0x83378431,0x83378432,0x83378433, +0x83378434,0x83378435,0x83378436,0x83378437,0x83378438,0x83378439,0x83378530, +0x83378531,0x83378532,0x83378533,0x83378534,0x83378535,0x83378536,0x83378537, +0x83378538,0x83378539,0x83378630,0x83378631,0x83378632,0x83378633,0x83378634, +0x83378635,0x83378636,0x83378637,0x83378638,0x83378639,0x83378730,0x83378731, +0x83378732,0x83378733,0x83378734,0x83378735,0x83378736,0x83378737,0x83378738, +0x83378739,0x83378830,0x83378831,0x83378832,0x83378833,0x83378834,0x83378835, +0x83378836,0x83378837,0x83378838,0x83378839,0x83378930,0x83378931,0x83378932, +0x83378933,0x83378934,0x83378935,0x83378936,0x83378937,0x83378938,0x83378939, +0x83378a30,0x83378a31,0x83378a32,0x83378a33,0x83378a34,0x83378a35,0x83378a36, +0x83378a37,0x83378a38,0x83378a39,0x83378b30,0x83378b31,0x83378b32,0x83378b33, +0x83378b34,0x83378b35,0x83378b36,0x83378b37,0x83378b38,0x83378b39,0x83378c30, +0x83378c31,0x83378c32,0x83378c33,0x83378c34,0x83378c35,0x83378c36,0x83378c37, +0x83378c38,0x83378c39,0x83378d30,0x83378d31,0x83378d32,0x83378d33,0x83378d34, +0x83378d35,0x83378d36,0x83378d37,0x83378d38,0x83378d39,0x83378e30,0x83378e31, +0x83378e32,0x83378e33,0x83378e34,0x83378e35,0x83378e36,0x83378e37,0x83378e38, +0x83378e39,0x83378f30,0x83378f31,0x83378f32,0x83378f33,0x83378f34,0x83378f35, +0x83378f36,0x83378f37,0x83378f38,0x83378f39,0x83379030,0x83379031,0x83379032, +0x83379033,0x83379034,0x83379035,0x83379036,0x83379037,0x83379038,0x83379039, +0x83379130,0x83379131,0x83379132,0x83379133,0x83379134,0x83379135,0x83379136, +0x83379137,0x83379138,0x83379139,0x83379230,0x83379231,0x83379232,0x83379233, +0x83379234,0x83379235,0x83379236,0x83379237,0x83379238,0x83379239,0x83379330, +0x83379331,0x83379332,0x83379333,0x83379334,0x83379335,0x83379336,0x83379337, +0x83379338,0x83379339,0x83379430,0x83379431,0x83379432,0x83379433,0x83379434, +0x83379435,0x83379436,0x83379437,0x83379438,0x83379439,0x83379530,0x83379531, +0x83379532,0x83379533,0x83379534,0x83379535,0x83379536,0x83379537,0x83379538, +0x83379539,0x83379630,0x83379631,0x83379632,0x83379633,0x83379634,0x83379635, +0x83379636,0x83379637,0x83379638,0x83379639,0x83379730,0x83379731,0x83379732, +0x83379733,0x83379734,0x83379735,0x83379736,0x83379737,0x83379738,0x83379739, +0x83379830,0x83379831,0x83379832,0x83379833,0x83379834,0x83379835,0x83379836, +0x83379837,0x83379838,0x83379839,0x83379930,0x83379931,0x83379932,0x83379933, +0x83379934,0x83379935,0x83379936,0x83379937,0x83379938,0x83379939,0x83379a30, +0x83379a31,0x83379a32,0x83379a33,0x83379a34,0x83379a35,0x83379a36,0x83379a37, +0x83379a38,0x83379a39,0x83379b30,0x83379b31,0x83379b32,0x83379b33,0x83379b34, +0x83379b35,0x83379b36,0x83379b37,0x83379b38,0x83379b39,0x83379c30,0x83379c31, +0x83379c32,0x83379c33,0x83379c34,0x83379c35,0x83379c36,0x83379c37,0x83379c38, +0x83379c39,0x83379d30,0x83379d31,0x83379d32,0x83379d33,0x83379d34,0x83379d35, +0x83379d36,0x83379d37,0x83379d38,0x83379d39,0x83379e30,0x83379e31,0x83379e32, +0x83379e33,0x83379e34,0x83379e35,0x83379e36,0x83379e37,0x83379e38,0x83379e39, +0x83379f30,0x83379f31,0x83379f32,0x83379f33,0x83379f34,0x83379f35,0x83379f36, +0x83379f37,0x83379f38,0x83379f39,0x8337a030,0x8337a031,0x8337a032,0x8337a033, +0x8337a034,0x8337a035,0x8337a036,0x8337a037,0x8337a038,0x8337a039,0x8337a130, +0x8337a131,0x8337a132,0x8337a133,0x8337a134,0x8337a135,0x8337a136,0x8337a137, +0x8337a138,0x8337a139,0x8337a230,0x8337a231,0x8337a232,0x8337a233,0x8337a234, +0x8337a235,0x8337a236,0x8337a237,0x8337a238,0x8337a239,0x8337a330,0x8337a331, +0x8337a332,0x8337a333,0x8337a334,0x8337a335,0x8337a336,0x8337a337,0x8337a338, +0x8337a339,0x8337a430,0x8337a431,0x8337a432,0x8337a433,0x8337a434,0x8337a435, +0x8337a436,0x8337a437,0x8337a438,0x8337a439,0x8337a530,0x8337a531,0x8337a532, +0x8337a533,0x8337a534,0x8337a535,0x8337a536,0x8337a537,0x8337a538,0x8337a539, +0x8337a630,0x8337a631,0x8337a632,0x8337a633,0x8337a634,0x8337a635,0x8337a636, +0x8337a637,0x8337a638,0x8337a639,0x8337a730,0x8337a731,0x8337a732,0x8337a733, +0x8337a734,0x8337a735,0x8337a736,0x8337a737,0x8337a738,0x8337a739,0x8337a830, +0x8337a831,0x8337a832,0x8337a833,0x8337a834,0x8337a835,0x8337a836,0x8337a837, +0x8337a838,0x8337a839,0x8337a930,0x8337a931,0x8337a932,0x8337a933,0x8337a934, +0x8337a935,0x8337a936,0x8337a937,0x8337a938,0x8337a939,0x8337aa30,0x8337aa31, +0x8337aa32,0x8337aa33,0x8337aa34,0x8337aa35,0x8337aa36,0x8337aa37,0x8337aa38, +0x8337aa39,0x8337ab30,0x8337ab31,0x8337ab32,0x8337ab33,0x8337ab34,0x8337ab35, +0x8337ab36,0x8337ab37,0x8337ab38,0x8337ab39,0x8337ac30,0x8337ac31,0x8337ac32, +0x8337ac33,0x8337ac34,0x8337ac35,0x8337ac36,0x8337ac37,0x8337ac38,0x8337ac39, +0x8337ad30,0x8337ad31,0x8337ad32,0x8337ad33,0x8337ad34,0x8337ad35,0x8337ad36, +0x8337ad37,0x8337ad38,0x8337ad39,0x8337ae30,0x8337ae31,0x8337ae32,0x8337ae33, +0x8337ae34,0x8337ae35,0x8337ae36,0x8337ae37,0x8337ae38,0x8337ae39,0x8337af30, +0x8337af31,0x8337af32,0x8337af33,0x8337af34,0x8337af35,0x8337af36,0x8337af37, +0x8337af38,0x8337af39,0x8337b030,0x8337b031,0x8337b032,0x8337b033,0x8337b034, +0x8337b035,0x8337b036,0x8337b037,0x8337b038,0x8337b039,0x8337b130,0x8337b131, +0x8337b132,0x8337b133,0x8337b134,0x8337b135,0x8337b136,0x8337b137,0x8337b138, +0x8337b139,0x8337b230,0x8337b231,0x8337b232,0x8337b233,0x8337b234,0x8337b235, +0x8337b236,0x8337b237,0x8337b238,0x8337b239,0x8337b330,0x8337b331,0x8337b332, +0x8337b333,0x8337b334,0x8337b335,0x8337b336,0x8337b337,0x8337b338,0x8337b339, +0x8337b430,0x8337b431,0x8337b432,0x8337b433,0x8337b434,0x8337b435,0x8337b436, +0x8337b437,0x8337b438,0x8337b439,0x8337b530,0x8337b531,0x8337b532,0x8337b533, +0x8337b534,0x8337b535,0x8337b536,0x8337b537,0x8337b538,0x8337b539,0x8337b630, +0x8337b631,0x8337b632,0x8337b633,0x8337b634,0x8337b635,0x8337b636,0x8337b637, +0x8337b638,0x8337b639,0x8337b730,0x8337b731,0x8337b732,0x8337b733,0x8337b734, +0x8337b735,0x8337b736,0x8337b737,0x8337b738,0x8337b739,0x8337b830,0x8337b831, +0x8337b832,0x8337b833,0x8337b834,0x8337b835,0x8337b836,0x8337b837,0x8337b838, +0x8337b839,0x8337b930,0x8337b931,0x8337b932,0x8337b933,0x8337b934,0x8337b935, +0x8337b936,0x8337b937,0x8337b938,0x8337b939,0x8337ba30,0x8337ba31,0x8337ba32, +0x8337ba33,0x8337ba34,0x8337ba35,0x8337ba36,0x8337ba37,0x8337ba38,0x8337ba39, +0x8337bb30,0x8337bb31,0x8337bb32,0x8337bb33,0x8337bb34,0x8337bb35,0x8337bb36, +0x8337bb37,0x8337bb38,0x8337bb39,0x8337bc30,0x8337bc31,0x8337bc32,0x8337bc33, +0x8337bc34,0x8337bc35,0x8337bc36,0x8337bc37,0x8337bc38,0x8337bc39,0x8337bd30, +0x8337bd31,0x8337bd32,0x8337bd33,0x8337bd34,0x8337bd35,0x8337bd36,0x8337bd37, +0x8337bd38,0x8337bd39,0x8337be30,0x8337be31,0x8337be32,0x8337be33,0x8337be34, +0x8337be35,0x8337be36,0x8337be37,0x8337be38,0x8337be39,0x8337bf30,0x8337bf31, +0x8337bf32,0x8337bf33,0x8337bf34,0x8337bf35,0x8337bf36,0x8337bf37,0x8337bf38, +0x8337bf39,0x8337c030,0x8337c031,0x8337c032,0x8337c033,0x8337c034,0x8337c035, +0x8337c036,0x8337c037,0x8337c038,0x8337c039,0x8337c130,0x8337c131,0x8337c132, +0x8337c133,0x8337c134,0x8337c135,0x8337c136,0x8337c137,0x8337c138,0x8337c139, +0x8337c230,0x8337c231,0x8337c232,0x8337c233,0x8337c234,0x8337c235,0x8337c236, +0x8337c237,0x8337c238,0x8337c239,0x8337c330,0x8337c331,0x8337c332,0x8337c333, +0x8337c334,0x8337c335,0x8337c336,0x8337c337,0x8337c338,0x8337c339,0x8337c430, +0x8337c431,0x8337c432,0x8337c433,0x8337c434,0x8337c435,0x8337c436,0x8337c437, +0x8337c438,0x8337c439,0x8337c530,0x8337c531,0x8337c532,0x8337c533,0x8337c534, +0x8337c535,0x8337c536,0x8337c537,0x8337c538,0x8337c539,0x8337c630,0x8337c631, +0x8337c632,0x8337c633,0x8337c634,0x8337c635,0x8337c636,0x8337c637,0x8337c638, +0x8337c639,0x8337c730,0x8337c731,0x8337c732,0x8337c733,0x8337c734,0x8337c735, +0x8337c736,0x8337c737,0x8337c738,0x8337c739,0x8337c830,0x8337c831,0x8337c832, +0x8337c833,0x8337c834,0x8337c835,0x8337c836,0x8337c837,0x8337c838,0x8337c839, +0x8337c930,0x8337c931,0x8337c932,0x8337c933,0x8337c934,0x8337c935,0x8337c936, +0x8337c937,0x8337c938,0x8337c939,0x8337ca30,0x8337ca31,0x8337ca32,0x8337ca33, +0x8337ca34,0x8337ca35,0x8337ca36,0x8337ca37,0x8337ca38,0x8337ca39,0x8337cb30, +0x8337cb31,0x8337cb32,0x8337cb33,0x8337cb34,0x8337cb35,0x8337cb36,0x8337cb37, +0x8337cb38,0x8337cb39,0x8337cc30,0x8337cc31,0x8337cc32,0x8337cc33,0x8337cc34, +0x8337cc35,0x8337cc36,0x8337cc37,0x8337cc38,0x8337cc39,0x8337cd30,0x8337cd31, +0x8337cd32,0x8337cd33,0x8337cd34,0x8337cd35,0x8337cd36,0x8337cd37,0x8337cd38, +0x8337cd39,0x8337ce30,0x8337ce31,0x8337ce32,0x8337ce33,0x8337ce34,0x8337ce35, +0x8337ce36,0x8337ce37,0x8337ce38,0x8337ce39,0x8337cf30,0x8337cf31,0x8337cf32, +0x8337cf33,0x8337cf34,0x8337cf35,0x8337cf36,0x8337cf37,0x8337cf38,0x8337cf39, +0x8337d030,0x8337d031,0x8337d032,0x8337d033,0x8337d034,0x8337d035,0x8337d036, +0x8337d037,0x8337d038,0x8337d039,0x8337d130,0x8337d131,0x8337d132,0x8337d133, +0x8337d134,0x8337d135,0x8337d136,0x8337d137,0x8337d138,0x8337d139,0x8337d230, +0x8337d231,0x8337d232,0x8337d233,0x8337d234,0x8337d235,0x8337d236,0x8337d237, +0x8337d238,0x8337d239,0x8337d330,0x8337d331,0x8337d332,0x8337d333,0x8337d334, +0x8337d335,0x8337d336,0x8337d337,0x8337d338,0x8337d339,0x8337d430,0x8337d431, +0x8337d432,0x8337d433,0x8337d434,0x8337d435,0x8337d436,0x8337d437,0x8337d438, +0x8337d439,0x8337d530,0x8337d531,0x8337d532,0x8337d533,0x8337d534,0x8337d535, +0x8337d536,0x8337d537,0x8337d538,0x8337d539,0x8337d630,0x8337d631,0x8337d632, +0x8337d633,0x8337d634,0x8337d635,0x8337d636,0x8337d637,0x8337d638,0x8337d639, +0x8337d730,0x8337d731,0x8337d732,0x8337d733,0x8337d734,0x8337d735,0x8337d736, +0x8337d737,0x8337d738,0x8337d739,0x8337d830,0x8337d831,0x8337d832,0x8337d833, +0x8337d834,0x8337d835,0x8337d836,0x8337d837,0x8337d838,0x8337d839,0x8337d930, +0x8337d931,0x8337d932,0x8337d933,0x8337d934,0x8337d935,0x8337d936,0x8337d937, +0x8337d938,0x8337d939,0x8337da30,0x8337da31,0x8337da32,0x8337da33,0x8337da34, +0x8337da35,0x8337da36,0x8337da37,0x8337da38,0x8337da39,0x8337db30,0x8337db31, +0x8337db32,0x8337db33,0x8337db34,0x8337db35,0x8337db36,0x8337db37,0x8337db38, +0x8337db39,0x8337dc30,0x8337dc31,0x8337dc32,0x8337dc33,0x8337dc34,0x8337dc35, +0x8337dc36,0x8337dc37,0x8337dc38,0x8337dc39,0x8337dd30,0x8337dd31,0x8337dd32, +0x8337dd33,0x8337dd34,0x8337dd35,0x8337dd36,0x8337dd37,0x8337dd38,0x8337dd39, +0x8337de30,0x8337de31,0x8337de32,0x8337de33,0x8337de34,0x8337de35,0x8337de36, +0x8337de37,0x8337de38,0x8337de39,0x8337df30,0x8337df31,0x8337df32,0x8337df33, +0x8337df34,0x8337df35,0x8337df36,0x8337df37,0x8337df38,0x8337df39,0x8337e030, +0x8337e031,0x8337e032,0x8337e033,0x8337e034,0x8337e035,0x8337e036,0x8337e037, +0x8337e038,0x8337e039,0x8337e130,0x8337e131,0x8337e132,0x8337e133,0x8337e134, +0x8337e135,0x8337e136,0x8337e137,0x8337e138,0x8337e139,0x8337e230,0x8337e231, +0x8337e232,0x8337e233,0x8337e234,0x8337e235,0x8337e236,0x8337e237,0x8337e238, +0x8337e239,0x8337e330,0x8337e331,0x8337e332,0x8337e333,0x8337e334,0x8337e335, +0x8337e336,0x8337e337,0x8337e338,0x8337e339,0x8337e430,0x8337e431,0x8337e432, +0x8337e433,0x8337e434,0x8337e435,0x8337e436,0x8337e437,0x8337e438,0x8337e439, +0x8337e530,0x8337e531,0x8337e532,0x8337e533,0x8337e534,0x8337e535,0x8337e536, +0x8337e537,0x8337e538,0x8337e539,0x8337e630,0x8337e631,0x8337e632,0x8337e633, +0x8337e634,0x8337e635,0x8337e636,0x8337e637,0x8337e638,0x8337e639,0x8337e730, +0x8337e731,0x8337e732,0x8337e733,0x8337e734,0x8337e735,0x8337e736,0x8337e737, +0x8337e738,0x8337e739,0x8337e830,0x8337e831,0x8337e832,0x8337e833,0x8337e834, +0x8337e835,0x8337e836,0x8337e837,0x8337e838,0x8337e839,0x8337e930,0x8337e931, +0x8337e932,0x8337e933,0x8337e934,0x8337e935,0x8337e936,0x8337e937,0x8337e938, +0x8337e939,0x8337ea30,0x8337ea31,0x8337ea32,0x8337ea33,0x8337ea34,0x8337ea35, +0x8337ea36,0x8337ea37,0x8337ea38,0x8337ea39,0x8337eb30,0x8337eb31,0x8337eb32, +0x8337eb33,0x8337eb34,0x8337eb35,0x8337eb36,0x8337eb37,0x8337eb38,0x8337eb39, +0x8337ec30,0x8337ec31,0x8337ec32,0x8337ec33,0x8337ec34,0x8337ec35,0x8337ec36, +0x8337ec37,0x8337ec38,0x8337ec39,0x8337ed30,0x8337ed31,0x8337ed32,0x8337ed33, +0x8337ed34,0x8337ed35,0x8337ed36,0x8337ed37,0x8337ed38,0x8337ed39,0x8337ee30, +0x8337ee31,0x8337ee32,0x8337ee33,0x8337ee34,0x8337ee35,0x8337ee36,0x8337ee37, +0x8337ee38,0x8337ee39,0x8337ef30,0x8337ef31,0x8337ef32,0x8337ef33,0x8337ef34, +0x8337ef35,0x8337ef36,0x8337ef37,0x8337ef38,0x8337ef39,0x8337f030,0x8337f031, +0x8337f032,0x8337f033,0x8337f034,0x8337f035,0x8337f036,0x8337f037,0x8337f038, +0x8337f039,0x8337f130,0x8337f131,0x8337f132,0x8337f133,0x8337f134,0x8337f135, +0x8337f136,0x8337f137,0x8337f138,0x8337f139,0x8337f230,0x8337f231,0x8337f232, +0x8337f233,0x8337f234,0x8337f235,0x8337f236,0x8337f237,0x8337f238,0x8337f239, +0x8337f330,0x8337f331,0x8337f332,0x8337f333,0x8337f334,0x8337f335,0x8337f336, +0x8337f337,0x8337f338,0x8337f339,0x8337f430,0x8337f431,0x8337f432,0x8337f433, +0x8337f434,0x8337f435,0x8337f436,0x8337f437,0x8337f438,0x8337f439,0x8337f530, +0x8337f531,0x8337f532,0x8337f533,0x8337f534,0x8337f535,0x8337f536,0x8337f537, +0x8337f538,0x8337f539,0x8337f630,0x8337f631,0x8337f632,0x8337f633,0x8337f634, +0x8337f635,0x8337f636,0x8337f637,0x8337f638,0x8337f639,0x8337f730,0x8337f731, +0x8337f732,0x8337f733,0x8337f734,0x8337f735,0x8337f736,0x8337f737,0x8337f738, +0x8337f739,0x8337f830,0x8337f831,0x8337f832,0x8337f833,0x8337f834,0x8337f835, +0x8337f836,0x8337f837,0x8337f838,0x8337f839,0x8337f930,0x8337f931,0x8337f932, +0x8337f933,0x8337f934,0x8337f935,0x8337f936,0x8337f937,0x8337f938,0x8337f939, +0x8337fa30,0x8337fa31,0x8337fa32,0x8337fa33,0x8337fa34,0x8337fa35,0x8337fa36, +0x8337fa37,0x8337fa38,0x8337fa39,0x8337fb30,0x8337fb31,0x8337fb32,0x8337fb33, +0x8337fb34,0x8337fb35,0x8337fb36,0x8337fb37,0x8337fb38,0x8337fb39,0x8337fc30, +0x8337fc31,0x8337fc32,0x8337fc33,0x8337fc34,0x8337fc35,0x8337fc36,0x8337fc37, +0x8337fc38,0x8337fc39,0x8337fd30,0x8337fd31,0x8337fd32,0x8337fd33,0x8337fd34, +0x8337fd35,0x8337fd36,0x8337fd37,0x8337fd38,0x8337fd39,0x8337fe30,0x8337fe31, +0x8337fe32,0x8337fe33,0x8337fe34,0x8337fe35,0x8337fe36,0x8337fe37,0x8337fe38, +0x8337fe39,0x83388130,0x83388131,0x83388132,0x83388133,0x83388134,0x83388135, +0x83388136,0x83388137,0x83388138,0x83388139,0x83388230,0x83388231,0x83388232, +0x83388233,0x83388234,0x83388235,0x83388236,0x83388237,0x83388238,0x83388239, +0x83388330,0x83388331,0x83388332,0x83388333,0x83388334,0x83388335,0x83388336, +0x83388337,0x83388338,0x83388339,0x83388430,0x83388431,0x83388432,0x83388433, +0x83388434,0x83388435,0x83388436,0x83388437,0x83388438,0x83388439,0x83388530, +0x83388531,0x83388532,0x83388533,0x83388534,0x83388535,0x83388536,0x83388537, +0x83388538,0x83388539,0x83388630,0x83388631,0x83388632,0x83388633,0x83388634, +0x83388635,0x83388636,0x83388637,0x83388638,0x83388639,0x83388730,0x83388731, +0x83388732,0x83388733,0x83388734,0x83388735,0x83388736,0x83388737,0x83388738, +0x83388739,0x83388830,0x83388831,0x83388832,0x83388833,0x83388834,0x83388835, +0x83388836,0x83388837,0x83388838,0x83388839,0x83388930,0x83388931,0x83388932, +0x83388933,0x83388934,0x83388935,0x83388936,0x83388937,0x83388938,0x83388939, +0x83388a30,0x83388a31,0x83388a32,0x83388a33,0x83388a34,0x83388a35,0x83388a36, +0x83388a37,0x83388a38,0x83388a39,0x83388b30,0x83388b31,0x83388b32,0x83388b33, +0x83388b34,0x83388b35,0x83388b36,0x83388b37,0x83388b38,0x83388b39,0x83388c30, +0x83388c31,0x83388c32,0x83388c33,0x83388c34,0x83388c35,0x83388c36,0x83388c37, +0x83388c38,0x83388c39,0x83388d30,0x83388d31,0x83388d32,0x83388d33,0x83388d34, +0x83388d35,0x83388d36,0x83388d37,0x83388d38,0x83388d39,0x83388e30,0x83388e31, +0x83388e32,0x83388e33,0x83388e34,0x83388e35,0x83388e36,0x83388e37,0x83388e38, +0x83388e39,0x83388f30,0x83388f31,0x83388f32,0x83388f33,0x83388f34,0x83388f35, +0x83388f36,0x83388f37,0x83388f38,0x83388f39,0x83389030,0x83389031,0x83389032, +0x83389033,0x83389034,0x83389035,0x83389036,0x83389037,0x83389038,0x83389039, +0x83389130,0x83389131,0x83389132,0x83389133,0x83389134,0x83389135,0x83389136, +0x83389137,0x83389138,0x83389139,0x83389230,0x83389231,0x83389232,0x83389233, +0x83389234,0x83389235,0x83389236,0x83389237,0x83389238,0x83389239,0x83389330, +0x83389331,0x83389332,0x83389333,0x83389334,0x83389335,0x83389336,0x83389337, +0x83389338,0x83389339,0x83389430,0x83389431,0x83389432,0x83389433,0x83389434, +0x83389435,0x83389436,0x83389437,0x83389438,0x83389439,0x83389530,0x83389531, +0x83389532,0x83389533,0x83389534,0x83389535,0x83389536,0x83389537,0x83389538, +0x83389539,0x83389630,0x83389631,0x83389632,0x83389633,0x83389634,0x83389635, +0x83389636,0x83389637,0x83389638,0x83389639,0x83389730,0x83389731,0x83389732, +0x83389733,0x83389734,0x83389735,0x83389736,0x83389737,0x83389738,0x83389739, +0x83389830,0x83389831,0x83389832,0x83389833,0x83389834,0x83389835,0x83389836, +0x83389837,0x83389838,0x83389839,0x83389930,0x83389931,0x83389932,0x83389933, +0x83389934,0x83389935,0x83389936,0x83389937,0x83389938,0x83389939,0x83389a30, +0x83389a31,0x83389a32,0x83389a33,0x83389a34,0x83389a35,0x83389a36,0x83389a37, +0x83389a38,0x83389a39,0x83389b30,0x83389b31,0x83389b32,0x83389b33,0x83389b34, +0x83389b35,0x83389b36,0x83389b37,0x83389b38,0x83389b39,0x83389c30,0x83389c31, +0x83389c32,0x83389c33,0x83389c34,0x83389c35,0x83389c36,0x83389c37,0x83389c38, +0x83389c39,0x83389d30,0x83389d31,0x83389d32,0x83389d33,0x83389d34,0x83389d35, +0x83389d36,0x83389d37,0x83389d38,0x83389d39,0x83389e30,0x83389e31,0x83389e32, +0x83389e33,0x83389e34,0x83389e35,0x83389e36,0x83389e37,0x83389e38,0x83389e39, +0x83389f30,0x83389f31,0x83389f32,0x83389f33,0x83389f34,0x83389f35,0x83389f36, +0x83389f37,0x83389f38,0x83389f39,0x8338a030,0x8338a031,0x8338a032,0x8338a033, +0x8338a034,0x8338a035,0x8338a036,0x8338a037,0x8338a038,0x8338a039,0x8338a130, +0x8338a131,0x8338a132,0x8338a133,0x8338a134,0x8338a135,0x8338a136,0x8338a137, +0x8338a138,0x8338a139,0x8338a230,0x8338a231,0x8338a232,0x8338a233,0x8338a234, +0x8338a235,0x8338a236,0x8338a237,0x8338a238,0x8338a239,0x8338a330,0x8338a331, +0x8338a332,0x8338a333,0x8338a334,0x8338a335,0x8338a336,0x8338a337,0x8338a338, +0x8338a339,0x8338a430,0x8338a431,0x8338a432,0x8338a433,0x8338a434,0x8338a435, +0x8338a436,0x8338a437,0x8338a438,0x8338a439,0x8338a530,0x8338a531,0x8338a532, +0x8338a533,0x8338a534,0x8338a535,0x8338a536,0x8338a537,0x8338a538,0x8338a539, +0x8338a630,0x8338a631,0x8338a632,0x8338a633,0x8338a634,0x8338a635,0x8338a636, +0x8338a637,0x8338a638,0x8338a639,0x8338a730,0x8338a731,0x8338a732,0x8338a733, +0x8338a734,0x8338a735,0x8338a736,0x8338a737,0x8338a738,0x8338a739,0x8338a830, +0x8338a831,0x8338a832,0x8338a833,0x8338a834,0x8338a835,0x8338a836,0x8338a837, +0x8338a838,0x8338a839,0x8338a930,0x8338a931,0x8338a932,0x8338a933,0x8338a934, +0x8338a935,0x8338a936,0x8338a937,0x8338a938,0x8338a939,0x8338aa30,0x8338aa31, +0x8338aa32,0x8338aa33,0x8338aa34,0x8338aa35,0x8338aa36,0x8338aa37,0x8338aa38, +0x8338aa39,0x8338ab30,0x8338ab31,0x8338ab32,0x8338ab33,0x8338ab34,0x8338ab35, +0x8338ab36,0x8338ab37,0x8338ab38,0x8338ab39,0x8338ac30,0x8338ac31,0x8338ac32, +0x8338ac33,0x8338ac34,0x8338ac35,0x8338ac36,0x8338ac37,0x8338ac38,0x8338ac39, +0x8338ad30,0x8338ad31,0x8338ad32,0x8338ad33,0x8338ad34,0x8338ad35,0x8338ad36, +0x8338ad37,0x8338ad38,0x8338ad39,0x8338ae30,0x8338ae31,0x8338ae32,0x8338ae33, +0x8338ae34,0x8338ae35,0x8338ae36,0x8338ae37,0x8338ae38,0x8338ae39,0x8338af30, +0x8338af31,0x8338af32,0x8338af33,0x8338af34,0x8338af35,0x8338af36,0x8338af37, +0x8338af38,0x8338af39,0x8338b030,0x8338b031,0x8338b032,0x8338b033,0x8338b034, +0x8338b035,0x8338b036,0x8338b037,0x8338b038,0x8338b039,0x8338b130,0x8338b131, +0x8338b132,0x8338b133,0x8338b134,0x8338b135,0x8338b136,0x8338b137,0x8338b138, +0x8338b139,0x8338b230,0x8338b231,0x8338b232,0x8338b233,0x8338b234,0x8338b235, +0x8338b236,0x8338b237,0x8338b238,0x8338b239,0x8338b330,0x8338b331,0x8338b332, +0x8338b333,0x8338b334,0x8338b335,0x8338b336,0x8338b337,0x8338b338,0x8338b339, +0x8338b430,0x8338b431,0x8338b432,0x8338b433,0x8338b434,0x8338b435,0x8338b436, +0x8338b437,0x8338b438,0x8338b439,0x8338b530,0x8338b531,0x8338b532,0x8338b533, +0x8338b534,0x8338b535,0x8338b536,0x8338b537,0x8338b538,0x8338b539,0x8338b630, +0x8338b631,0x8338b632,0x8338b633,0x8338b634,0x8338b635,0x8338b636,0x8338b637, +0x8338b638,0x8338b639,0x8338b730,0x8338b731,0x8338b732,0x8338b733,0x8338b734, +0x8338b735,0x8338b736,0x8338b737,0x8338b738,0x8338b739,0x8338b830,0x8338b831, +0x8338b832,0x8338b833,0x8338b834,0x8338b835,0x8338b836,0x8338b837,0x8338b838, +0x8338b839,0x8338b930,0x8338b931,0x8338b932,0x8338b933,0x8338b934,0x8338b935, +0x8338b936,0x8338b937,0x8338b938,0x8338b939,0x8338ba30,0x8338ba31,0x8338ba32, +0x8338ba33,0x8338ba34,0x8338ba35,0x8338ba36,0x8338ba37,0x8338ba38,0x8338ba39, +0x8338bb30,0x8338bb31,0x8338bb32,0x8338bb33,0x8338bb34,0x8338bb35,0x8338bb36, +0x8338bb37,0x8338bb38,0x8338bb39,0x8338bc30,0x8338bc31,0x8338bc32,0x8338bc33, +0x8338bc34,0x8338bc35,0x8338bc36,0x8338bc37,0x8338bc38,0x8338bc39,0x8338bd30, +0x8338bd31,0x8338bd32,0x8338bd33,0x8338bd34,0x8338bd35,0x8338bd36,0x8338bd37, +0x8338bd38,0x8338bd39,0x8338be30,0x8338be31,0x8338be32,0x8338be33,0x8338be34, +0x8338be35,0x8338be36,0x8338be37,0x8338be38,0x8338be39,0x8338bf30,0x8338bf31, +0x8338bf32,0x8338bf33,0x8338bf34,0x8338bf35,0x8338bf36,0x8338bf37,0x8338bf38, +0x8338bf39,0x8338c030,0x8338c031,0x8338c032,0x8338c033,0x8338c034,0x8338c035, +0x8338c036,0x8338c037,0x8338c038,0x8338c039,0x8338c130,0x8338c131,0x8338c132, +0x8338c133,0x8338c134,0x8338c135,0x8338c136,0x8338c137,0x8338c138,0x8338c139, +0x8338c230,0x8338c231,0x8338c232,0x8338c233,0x8338c234,0x8338c235,0x8338c236, +0x8338c237,0x8338c238,0x8338c239,0x8338c330,0x8338c331,0x8338c332,0x8338c333, +0x8338c334,0x8338c335,0x8338c336,0x8338c337,0x8338c338,0x8338c339,0x8338c430, +0x8338c431,0x8338c432,0x8338c433,0x8338c434,0x8338c435,0x8338c436,0x8338c437, +0x8338c438,0x8338c439,0x8338c530,0x8338c531,0x8338c532,0x8338c533,0x8338c534, +0x8338c535,0x8338c536,0x8338c537,0x8338c538,0x8338c539,0x8338c630,0x8338c631, +0x8338c632,0x8338c633,0x8338c634,0x8338c635,0x8338c636,0x8338c637,0x8338c638, +0x8338c639,0x8338c730,0x8338c731,0x8338c732,0x8338c733,0x8338c734,0x8338c735, +0x8338c736,0x8338c737,0x8338c738,0x8338c739,0x8338c830,0x8338c831,0x8338c832, +0x8338c833,0x8338c834,0x8338c835,0x8338c836,0x8338c837,0x8338c838,0x8338c839, +0x8338c930,0x8338c931,0x8338c932,0x8338c933,0x8338c934,0x8338c935,0x8338c936, +0x8338c937,0x8338c938,0x8338c939,0x8338ca30,0x8338ca31,0x8338ca32,0x8338ca33, +0x8338ca34,0x8338ca35,0x8338ca36,0x8338ca37,0x8338ca38,0x8338ca39,0x8338cb30, +0x8338cb31,0x8338cb32,0x8338cb33,0x8338cb34,0x8338cb35,0x8338cb36,0x8338cb37, +0x8338cb38,0x8338cb39,0x8338cc30,0x8338cc31,0x8338cc32,0x8338cc33,0x8338cc34, +0x8338cc35,0x8338cc36,0x8338cc37,0x8338cc38,0x8338cc39,0x8338cd30,0x8338cd31, +0x8338cd32,0x8338cd33,0x8338cd34,0x8338cd35,0x8338cd36,0x8338cd37,0x8338cd38, +0x8338cd39,0x8338ce30,0x8338ce31,0x8338ce32,0x8338ce33,0x8338ce34,0x8338ce35, +0x8338ce36,0x8338ce37,0x8338ce38,0x8338ce39,0x8338cf30,0x8338cf31,0x8338cf32, +0x8338cf33,0x8338cf34,0x8338cf35,0x8338cf36,0x8338cf37,0x8338cf38,0x8338cf39, +0x8338d030,0x8338d031,0x8338d032,0x8338d033,0x8338d034,0x8338d035,0x8338d036, +0x8338d037,0x8338d038,0x8338d039,0x8338d130,0x8338d131,0x8338d132,0x8338d133, +0x8338d134,0x8338d135,0x8338d136,0x8338d137,0x8338d138,0x8338d139,0x8338d230, +0x8338d231,0x8338d232,0x8338d233,0x8338d234,0x8338d235,0x8338d236,0x8338d237, +0x8338d238,0x8338d239,0x8338d330,0x8338d331,0x8338d332,0x8338d333,0x8338d334, +0x8338d335,0x8338d336,0x8338d337,0x8338d338,0x8338d339,0x8338d430,0x8338d431, +0x8338d432,0x8338d433,0x8338d434,0x8338d435,0x8338d436,0x8338d437,0x8338d438, +0x8338d439,0x8338d530,0x8338d531,0x8338d532,0x8338d533,0x8338d534,0x8338d535, +0x8338d536,0x8338d537,0x8338d538,0x8338d539,0x8338d630,0x8338d631,0x8338d632, +0x8338d633,0x8338d634,0x8338d635,0x8338d636,0x8338d637,0x8338d638,0x8338d639, +0x8338d730,0x8338d731,0x8338d732,0x8338d733,0x8338d734,0x8338d735,0x8338d736, +0x8338d737,0x8338d738,0x8338d739,0x8338d830,0x8338d831,0x8338d832,0x8338d833, +0x8338d834,0x8338d835,0x8338d836,0x8338d837,0x8338d838,0x8338d839,0x8338d930, +0x8338d931,0x8338d932,0x8338d933,0x8338d934,0x8338d935,0x8338d936,0x8338d937, +0x8338d938,0x8338d939,0x8338da30,0x8338da31,0x8338da32,0x8338da33,0x8338da34, +0x8338da35,0x8338da36,0x8338da37,0x8338da38,0x8338da39,0x8338db30,0x8338db31, +0x8338db32,0x8338db33,0x8338db34,0x8338db35,0x8338db36,0x8338db37,0x8338db38, +0x8338db39,0x8338dc30,0x8338dc31,0x8338dc32,0x8338dc33,0x8338dc34,0x8338dc35, +0x8338dc36,0x8338dc37,0x8338dc38,0x8338dc39,0x8338dd30,0x8338dd31,0x8338dd32, +0x8338dd33,0x8338dd34,0x8338dd35,0x8338dd36,0x8338dd37,0x8338dd38,0x8338dd39, +0x8338de30,0x8338de31,0x8338de32,0x8338de33,0x8338de34,0x8338de35,0x8338de36, +0x8338de37,0x8338de38,0x8338de39,0x8338df30,0x8338df31,0x8338df32,0x8338df33, +0x8338df34,0x8338df35,0x8338df36,0x8338df37,0x8338df38,0x8338df39,0x8338e030, +0x8338e031,0x8338e032,0x8338e033,0x8338e034,0x8338e035,0x8338e036,0x8338e037, +0x8338e038,0x8338e039,0x8338e130,0x8338e131,0x8338e132,0x8338e133,0x8338e134, +0x8338e135,0x8338e136,0x8338e137,0x8338e138,0x8338e139,0x8338e230,0x8338e231, +0x8338e232,0x8338e233,0x8338e234,0x8338e235,0x8338e236,0x8338e237,0x8338e238, +0x8338e239,0x8338e330,0x8338e331,0x8338e332,0x8338e333,0x8338e334,0x8338e335, +0x8338e336,0x8338e337,0x8338e338,0x8338e339,0x8338e430,0x8338e431,0x8338e432, +0x8338e433,0x8338e434,0x8338e435,0x8338e436,0x8338e437,0x8338e438,0x8338e439, +0x8338e530,0x8338e531,0x8338e532,0x8338e533,0x8338e534,0x8338e535,0x8338e536, +0x8338e537,0x8338e538,0x8338e539,0x8338e630,0x8338e631,0x8338e632,0x8338e633, +0x8338e634,0x8338e635,0x8338e636,0x8338e637,0x8338e638,0x8338e639,0x8338e730, +0x8338e731,0x8338e732,0x8338e733,0x8338e734,0x8338e735,0x8338e736,0x8338e737, +0x8338e738,0x8338e739,0x8338e830,0x8338e831,0x8338e832,0x8338e833,0x8338e834, +0x8338e835,0x8338e836,0x8338e837,0x8338e838,0x8338e839,0x8338e930,0x8338e931, +0x8338e932,0x8338e933,0x8338e934,0x8338e935,0x8338e936,0x8338e937,0x8338e938, +0x8338e939,0x8338ea30,0x8338ea31,0x8338ea32,0x8338ea33,0x8338ea34,0x8338ea35, +0x8338ea36,0x8338ea37,0x8338ea38,0x8338ea39,0x8338eb30,0x8338eb31,0x8338eb32, +0x8338eb33,0x8338eb34,0x8338eb35,0x8338eb36,0x8338eb37,0x8338eb38,0x8338eb39, +0x8338ec30,0x8338ec31,0x8338ec32,0x8338ec33,0x8338ec34,0x8338ec35,0x8338ec36, +0x8338ec37,0x8338ec38,0x8338ec39,0x8338ed30,0x8338ed31,0x8338ed32,0x8338ed33, +0x8338ed34,0x8338ed35,0x8338ed36,0x8338ed37,0x8338ed38,0x8338ed39,0x8338ee30, +0x8338ee31,0x8338ee32,0x8338ee33,0x8338ee34,0x8338ee35,0x8338ee36,0x8338ee37, +0x8338ee38,0x8338ee39,0x8338ef30,0x8338ef31,0x8338ef32,0x8338ef33,0x8338ef34, +0x8338ef35,0x8338ef36,0x8338ef37,0x8338ef38,0x8338ef39,0x8338f030,0x8338f031, +0x8338f032,0x8338f033,0x8338f034,0x8338f035,0x8338f036,0x8338f037,0x8338f038, +0x8338f039,0x8338f130,0x8338f131,0x8338f132,0x8338f133,0x8338f134,0x8338f135, +0x8338f136,0x8338f137,0x8338f138,0x8338f139,0x8338f230,0x8338f231,0x8338f232, +0x8338f233,0x8338f234,0x8338f235,0x8338f236,0x8338f237,0x8338f238,0x8338f239, +0x8338f330,0x8338f331,0x8338f332,0x8338f333,0x8338f334,0x8338f335,0x8338f336, +0x8338f337,0x8338f338,0x8338f339,0x8338f430,0x8338f431,0x8338f432,0x8338f433, +0x8338f434,0x8338f435,0x8338f436,0x8338f437,0x8338f438,0x8338f439,0x8338f530, +0x8338f531,0x8338f532,0x8338f533,0x8338f534,0x8338f535,0x8338f536,0x8338f537, +0x8338f538,0x8338f539,0x8338f630,0x8338f631,0x8338f632,0x8338f633,0x8338f634, +0x8338f635,0x8338f636,0x8338f637,0x8338f638,0x8338f639,0x8338f730,0x8338f731, +0x8338f732,0x8338f733,0x8338f734,0x8338f735,0x8338f736,0x8338f737,0x8338f738, +0x8338f739,0x8338f830,0x8338f831,0x8338f832,0x8338f833,0x8338f834,0x8338f835, +0x8338f836,0x8338f837,0x8338f838,0x8338f839,0x8338f930,0x8338f931,0x8338f932, +0x8338f933,0x8338f934,0x8338f935,0x8338f936,0x8338f937,0x8338f938,0x8338f939, +0x8338fa30,0x8338fa31,0x8338fa32,0x8338fa33,0x8338fa34,0x8338fa35,0x8338fa36, +0x8338fa37,0x8338fa38,0x8338fa39,0x8338fb30,0x8338fb31,0x8338fb32,0x8338fb33, +0x8338fb34,0x8338fb35,0x8338fb36,0x8338fb37,0x8338fb38,0x8338fb39,0x8338fc30, +0x8338fc31,0x8338fc32,0x8338fc33,0x8338fc34,0x8338fc35,0x8338fc36,0x8338fc37, +0x8338fc38,0x8338fc39,0x8338fd30,0x8338fd31,0x8338fd32,0x8338fd33,0x8338fd34, +0x8338fd35,0x8338fd36,0x8338fd37,0x8338fd38,0x8338fd39,0x8338fe30,0x8338fe31, +0x8338fe32,0x8338fe33,0x8338fe34,0x8338fe35,0x8338fe36,0x8338fe37,0x8338fe38, +0x8338fe39,0x83398130,0x83398131,0x83398132,0x83398133,0x83398134,0x83398135, +0x83398136,0x83398137,0x83398138,0x83398139,0x83398230,0x83398231,0x83398232, +0x83398233,0x83398234,0x83398235,0x83398236,0x83398237,0x83398238,0x83398239, +0x83398330,0x83398331,0x83398332,0x83398333,0x83398334,0x83398335,0x83398336, +0x83398337,0x83398338,0x83398339,0x83398430,0x83398431,0x83398432,0x83398433, +0x83398434,0x83398435,0x83398436,0x83398437,0x83398438,0x83398439,0x83398530, +0x83398531,0x83398532,0x83398533,0x83398534,0x83398535,0x83398536,0x83398537, +0x83398538,0x83398539,0x83398630,0x83398631,0x83398632,0x83398633,0x83398634, +0x83398635,0x83398636,0x83398637,0x83398638,0x83398639,0x83398730,0x83398731, +0x83398732,0x83398733,0x83398734,0x83398735,0x83398736,0x83398737,0x83398738, +0x83398739,0x83398830,0x83398831,0x83398832,0x83398833,0x83398834,0x83398835, +0x83398836,0x83398837,0x83398838,0x83398839,0x83398930,0x83398931,0x83398932, +0x83398933,0x83398934,0x83398935,0x83398936,0x83398937,0x83398938,0x83398939, +0x83398a30,0x83398a31,0x83398a32,0x83398a33,0x83398a34,0x83398a35,0x83398a36, +0x83398a37,0x83398a38,0x83398a39,0x83398b30,0x83398b31,0x83398b32,0x83398b33, +0x83398b34,0x83398b35,0x83398b36,0x83398b37,0x83398b38,0x83398b39,0x83398c30, +0x83398c31,0x83398c32,0x83398c33,0x83398c34,0x83398c35,0x83398c36,0x83398c37, +0x83398c38,0x83398c39,0x83398d30,0x83398d31,0x83398d32,0x83398d33,0x83398d34, +0x83398d35,0x83398d36,0x83398d37,0x83398d38,0x83398d39,0x83398e30,0x83398e31, +0x83398e32,0x83398e33,0x83398e34,0x83398e35,0x83398e36,0x83398e37,0x83398e38, +0x83398e39,0x83398f30,0x83398f31,0x83398f32,0x83398f33,0x83398f34,0x83398f35, +0x83398f36,0x83398f37,0x83398f38,0x83398f39,0x83399030,0x83399031,0x83399032, +0x83399033,0x83399034,0x83399035,0x83399036,0x83399037,0x83399038,0x83399039, +0x83399130,0x83399131,0x83399132,0x83399133,0x83399134,0x83399135,0x83399136, +0x83399137,0x83399138,0x83399139,0x83399230,0x83399231,0x83399232,0x83399233, +0x83399234,0x83399235,0x83399236,0x83399237,0x83399238,0x83399239,0x83399330, +0x83399331,0x83399332,0x83399333,0x83399334,0x83399335,0x83399336,0x83399337, +0x83399338,0x83399339,0x83399430,0x83399431,0x83399432,0x83399433,0x83399434, +0x83399435,0x83399436,0x83399437,0x83399438,0x83399439,0x83399530,0x83399531, +0x83399532,0x83399533,0x83399534,0x83399535,0x83399536,0x83399537,0x83399538, +0x83399539,0x83399630,0x83399631,0x83399632,0x83399633,0x83399634,0x83399635, +0x83399636,0x83399637,0x83399638,0x83399639,0x83399730,0x83399731,0x83399732, +0x83399733,0x83399734,0x83399735,0x83399736,0x83399737,0x83399738,0x83399739, +0x83399830,0x83399831,0x83399832,0x83399833,0x83399834,0x83399835,0x83399836, +0x83399837,0x83399838,0x83399839,0x83399930,0x83399931,0x83399932,0x83399933, +0x83399934,0x83399935,0x83399936,0x83399937,0x83399938,0x83399939,0x83399a30, +0x83399a31,0x83399a32,0x83399a33,0x83399a34,0x83399a35,0x83399a36,0x83399a37, +0x83399a38,0x83399a39,0x83399b30,0x83399b31,0x83399b32,0x83399b33,0x83399b34, +0x83399b35,0x83399b36,0x83399b37,0x83399b38,0x83399b39,0x83399c30,0x83399c31, +0x83399c32,0x83399c33,0x83399c34,0x83399c35,0x83399c36,0x83399c37,0x83399c38, +0x83399c39,0x83399d30,0x83399d31,0x83399d32,0x83399d33,0x83399d34,0x83399d35, +0x83399d36,0x83399d37,0x83399d38,0x83399d39,0x83399e30,0x83399e31,0x83399e32, +0x83399e33,0x83399e34,0x83399e35,0x83399e36,0x83399e37,0x83399e38,0x83399e39, +0x83399f30,0x83399f31,0x83399f32,0x83399f33,0x83399f34,0x83399f35,0x83399f36, +0x83399f37,0x83399f38,0x83399f39,0x8339a030,0x8339a031,0x8339a032,0x8339a033, +0x8339a034,0x8339a035,0x8339a036,0x8339a037,0x8339a038,0x8339a039,0x8339a130, +0x8339a131,0x8339a132,0x8339a133,0x8339a134,0x8339a135,0x8339a136,0x8339a137, +0x8339a138,0x8339a139,0x8339a230,0x8339a231,0x8339a232,0x8339a233,0x8339a234, +0x8339a235,0x8339a236,0x8339a237,0x8339a238,0x8339a239,0x8339a330,0x8339a331, +0x8339a332,0x8339a333,0x8339a334,0x8339a335,0x8339a336,0x8339a337,0x8339a338, +0x8339a339,0x8339a430,0x8339a431,0x8339a432,0x8339a433,0x8339a434,0x8339a435, +0x8339a436,0x8339a437,0x8339a438,0x8339a439,0x8339a530,0x8339a531,0x8339a532, +0x8339a533,0x8339a534,0x8339a535,0x8339a536,0x8339a537,0x8339a538,0x8339a539, +0x8339a630,0x8339a631,0x8339a632,0x8339a633,0x8339a634,0x8339a635,0x8339a636, +0x8339a637,0x8339a638,0x8339a639,0x8339a730,0x8339a731,0x8339a732,0x8339a733, +0x8339a734,0x8339a735,0x8339a736,0x8339a737,0x8339a738,0x8339a739,0x8339a830, +0x8339a831,0x8339a832,0x8339a833,0x8339a834,0x8339a835,0x8339a836,0x8339a837, +0x8339a838,0x8339a839,0x8339a930,0x8339a931,0x8339a932,0x8339a933,0x8339a934, +0x8339a935,0x8339a936,0x8339a937,0x8339a938,0x8339a939,0x8339aa30,0x8339aa31, +0x8339aa32,0x8339aa33,0x8339aa34,0x8339aa35,0x8339aa36,0x8339aa37,0x8339aa38, +0x8339aa39,0x8339ab30,0x8339ab31,0x8339ab32,0x8339ab33,0x8339ab34,0x8339ab35, +0x8339ab36,0x8339ab37,0x8339ab38,0x8339ab39,0x8339ac30,0x8339ac31,0x8339ac32, +0x8339ac33,0x8339ac34,0x8339ac35,0x8339ac36,0x8339ac37,0x8339ac38,0x8339ac39, +0x8339ad30,0x8339ad31,0x8339ad32,0x8339ad33,0x8339ad34,0x8339ad35,0x8339ad36, +0x8339ad37,0x8339ad38,0x8339ad39,0x8339ae30,0x8339ae31,0x8339ae32,0x8339ae33, +0x8339ae34,0x8339ae35,0x8339ae36,0x8339ae37,0x8339ae38,0x8339ae39,0x8339af30, +0x8339af31,0x8339af32,0x8339af33,0x8339af34,0x8339af35,0x8339af36,0x8339af37, +0x8339af38,0x8339af39,0x8339b030,0x8339b031,0x8339b032,0x8339b033,0x8339b034, +0x8339b035,0x8339b036,0x8339b037,0x8339b038,0x8339b039,0x8339b130,0x8339b131, +0x8339b132,0x8339b133,0x8339b134,0x8339b135,0x8339b136,0x8339b137,0x8339b138, +0x8339b139,0x8339b230,0x8339b231,0x8339b232,0x8339b233,0x8339b234,0x8339b235, +0x8339b236,0x8339b237,0x8339b238,0x8339b239,0x8339b330,0x8339b331,0x8339b332, +0x8339b333,0x8339b334,0x8339b335,0x8339b336,0x8339b337,0x8339b338,0x8339b339, +0x8339b430,0x8339b431,0x8339b432,0x8339b433,0x8339b434,0x8339b435,0x8339b436, +0x8339b437,0x8339b438,0x8339b439,0x8339b530,0x8339b531,0x8339b532,0x8339b533, +0x8339b534,0x8339b535,0x8339b536,0x8339b537,0x8339b538,0x8339b539,0x8339b630, +0x8339b631,0x8339b632,0x8339b633,0x8339b634,0x8339b635,0x8339b636,0x8339b637, +0x8339b638,0x8339b639,0x8339b730,0x8339b731,0x8339b732,0x8339b733,0x8339b734, +0x8339b735,0x8339b736,0x8339b737,0x8339b738,0x8339b739,0x8339b830,0x8339b831, +0x8339b832,0x8339b833,0x8339b834,0x8339b835,0x8339b836,0x8339b837,0x8339b838, +0x8339b839,0x8339b930,0x8339b931,0x8339b932,0x8339b933,0x8339b934,0x8339b935, +0x8339b936,0x8339b937,0x8339b938,0x8339b939,0x8339ba30,0x8339ba31,0x8339ba32, +0x8339ba33,0x8339ba34,0x8339ba35,0x8339ba36,0x8339ba37,0x8339ba38,0x8339ba39, +0x8339bb30,0x8339bb31,0x8339bb32,0x8339bb33,0x8339bb34,0x8339bb35,0x8339bb36, +0x8339bb37,0x8339bb38,0x8339bb39,0x8339bc30,0x8339bc31,0x8339bc32,0x8339bc33, +0x8339bc34,0x8339bc35,0x8339bc36,0x8339bc37,0x8339bc38,0x8339bc39,0x8339bd30, +0x8339bd31,0x8339bd32,0x8339bd33,0x8339bd34,0x8339bd35,0x8339bd36,0x8339bd37, +0x8339bd38,0x8339bd39,0x8339be30,0x8339be31,0x8339be32,0x8339be33,0x8339be34, +0x8339be35,0x8339be36,0x8339be37,0x8339be38,0x8339be39,0x8339bf30,0x8339bf31, +0x8339bf32,0x8339bf33,0x8339bf34,0x8339bf35,0x8339bf36,0x8339bf37,0x8339bf38, +0x8339bf39,0x8339c030,0x8339c031,0x8339c032,0x8339c033,0x8339c034,0x8339c035, +0x8339c036,0x8339c037,0x8339c038,0x8339c039,0x8339c130,0x8339c131,0x8339c132, +0x8339c133,0x8339c134,0x8339c135,0x8339c136,0x8339c137,0x8339c138,0x8339c139, +0x8339c230,0x8339c231,0x8339c232,0x8339c233,0x8339c234,0x8339c235,0x8339c236, +0x8339c237,0x8339c238,0x8339c239,0x8339c330,0x8339c331,0x8339c332,0x8339c333, +0x8339c334,0x8339c335,0x8339c336,0x8339c337,0x8339c338,0x8339c339,0x8339c430, +0x8339c431,0x8339c432,0x8339c433,0x8339c434,0x8339c435,0x8339c436,0x8339c437, +0x8339c438,0x8339c439,0x8339c530,0x8339c531,0x8339c532,0x8339c533,0x8339c534, +0x8339c535,0x8339c536,0x8339c537,0x8339c538,0x8339c539,0x8339c630,0x8339c631, +0x8339c632,0x8339c633,0x8339c634,0x8339c635,0x8339c636,0x8339c637,0x8339c638, +0x8339c639,0x8339c730,0x8339c731,0x8339c732,0x8339c733,0x8339c734,0x8339c735, +0x8339c736,0x8339c737,0x8339c738,0x8339c739,0x8339c830,0x8339c831,0x8339c832, +0x8339c833,0x8339c834,0x8339c835,0x8339c836,0x8339c837,0x8339c838,0x8339c839, +0x8339c930,0x8339c931,0x8339c932,0x8339c933,0x8339c934,0x8339c935,0x8339c936, +0x8339c937,0x8339c938,0x8339c939,0x8339ca30,0x8339ca31,0x8339ca32,0x8339ca33, +0x8339ca34,0x8339ca35,0x8339ca36,0x8339ca37,0x8339ca38,0x8339ca39,0x8339cb30, +0x8339cb31,0x8339cb32,0x8339cb33,0x8339cb34,0x8339cb35,0x8339cb36,0x8339cb37, +0x8339cb38,0x8339cb39,0x8339cc30,0x8339cc31,0x8339cc32,0x8339cc33,0x8339cc34, +0x8339cc35,0x8339cc36,0x8339cc37,0x8339cc38,0x8339cc39,0x8339cd30,0x8339cd31, +0x8339cd32,0x8339cd33,0x8339cd34,0x8339cd35,0x8339cd36,0x8339cd37,0x8339cd38, +0x8339cd39,0x8339ce30,0x8339ce31,0x8339ce32,0x8339ce33,0x8339ce34,0x8339ce35, +0x8339ce36,0x8339ce37,0x8339ce38,0x8339ce39,0x8339cf30,0x8339cf31,0x8339cf32, +0x8339cf33,0x8339cf34,0x8339cf35,0x8339cf36,0x8339cf37,0x8339cf38,0x8339cf39, +0x8339d030,0x8339d031,0x8339d032,0x8339d033,0x8339d034,0x8339d035,0x8339d036, +0x8339d037,0x8339d038,0x8339d039,0x8339d130,0x8339d131,0x8339d132,0x8339d133, +0x8339d134,0x8339d135,0x8339d136,0x8339d137,0x8339d138,0x8339d139,0x8339d230, +0x8339d231,0x8339d232,0x8339d233,0x8339d234,0x8339d235,0x8339d236,0x8339d237, +0x8339d238,0x8339d239,0x8339d330,0x8339d331,0x8339d332,0x8339d333,0x8339d334, +0x8339d335,0x8339d336,0x8339d337,0x8339d338,0x8339d339,0x8339d430,0x8339d431, +0x8339d432,0x8339d433,0x8339d434,0x8339d435,0x8339d436,0x8339d437,0x8339d438, +0x8339d439,0x8339d530,0x8339d531,0x8339d532,0x8339d533,0x8339d534,0x8339d535, +0x8339d536,0x8339d537,0x8339d538,0x8339d539,0x8339d630,0x8339d631,0x8339d632, +0x8339d633,0x8339d634,0x8339d635,0x8339d636,0x8339d637,0x8339d638,0x8339d639, +0x8339d730,0x8339d731,0x8339d732,0x8339d733,0x8339d734,0x8339d735,0x8339d736, +0x8339d737,0x8339d738,0x8339d739,0x8339d830,0x8339d831,0x8339d832,0x8339d833, +0x8339d834,0x8339d835,0x8339d836,0x8339d837,0x8339d838,0x8339d839,0x8339d930, +0x8339d931,0x8339d932,0x8339d933,0x8339d934,0x8339d935,0x8339d936,0x8339d937, +0x8339d938,0x8339d939,0x8339da30,0x8339da31,0x8339da32,0x8339da33,0x8339da34, +0x8339da35,0x8339da36,0x8339da37,0x8339da38,0x8339da39,0x8339db30,0x8339db31, +0x8339db32,0x8339db33,0x8339db34,0x8339db35,0x8339db36,0x8339db37,0x8339db38, +0x8339db39,0x8339dc30,0x8339dc31,0x8339dc32,0x8339dc33,0x8339dc34,0x8339dc35, +0x8339dc36,0x8339dc37,0x8339dc38,0x8339dc39,0x8339dd30,0x8339dd31,0x8339dd32, +0x8339dd33,0x8339dd34,0x8339dd35,0x8339dd36,0x8339dd37,0x8339dd38,0x8339dd39, +0x8339de30,0x8339de31,0x8339de32,0x8339de33,0x8339de34,0x8339de35,0x8339de36, +0x8339de37,0x8339de38,0x8339de39,0x8339df30,0x8339df31,0x8339df32,0x8339df33, +0x8339df34,0x8339df35,0x8339df36,0x8339df37,0x8339df38,0x8339df39,0x8339e030, +0x8339e031,0x8339e032,0x8339e033,0x8339e034,0x8339e035,0x8339e036,0x8339e037, +0x8339e038,0x8339e039,0x8339e130,0x8339e131,0x8339e132,0x8339e133,0x8339e134, +0x8339e135,0x8339e136,0x8339e137,0x8339e138,0x8339e139,0x8339e230,0x8339e231, +0x8339e232,0x8339e233,0x8339e234,0x8339e235,0x8339e236,0x8339e237,0x8339e238, +0x8339e239,0x8339e330,0x8339e331,0x8339e332,0x8339e333,0x8339e334,0x8339e335, +0x8339e336,0x8339e337,0x8339e338,0x8339e339,0x8339e430,0x8339e431,0x8339e432, +0x8339e433,0x8339e434,0x8339e435,0x8339e436,0x8339e437,0x8339e438,0x8339e439, +0x8339e530,0x8339e531,0x8339e532,0x8339e533,0x8339e534,0x8339e535,0x8339e536, +0x8339e537,0x8339e538,0x8339e539,0x8339e630,0x8339e631,0x8339e632,0x8339e633, +0x8339e634,0x8339e635,0x8339e636,0x8339e637,0x8339e638,0x8339e639,0x8339e730, +0x8339e731,0x8339e732,0x8339e733,0x8339e734,0x8339e735,0x8339e736,0x8339e737, +0x8339e738,0x8339e739,0x8339e830,0x8339e831,0x8339e832,0x8339e833,0x8339e834, +0x8339e835,0x8339e836,0x8339e837,0x8339e838,0x8339e839,0x8339e930,0x8339e931, +0x8339e932,0x8339e933,0x8339e934,0x8339e935,0x8339e936,0x8339e937,0x8339e938, +0x8339e939,0x8339ea30,0x8339ea31,0x8339ea32,0x8339ea33,0x8339ea34,0x8339ea35, +0x8339ea36,0x8339ea37,0x8339ea38,0x8339ea39,0x8339eb30,0x8339eb31,0x8339eb32, +0x8339eb33,0x8339eb34,0x8339eb35,0x8339eb36,0x8339eb37,0x8339eb38,0x8339eb39, +0x8339ec30,0x8339ec31,0x8339ec32,0x8339ec33,0x8339ec34,0x8339ec35,0x8339ec36, +0x8339ec37,0x8339ec38,0x8339ec39,0x8339ed30,0x8339ed31,0x8339ed32,0x8339ed33, +0x8339ed34,0x8339ed35,0x8339ed36,0x8339ed37,0x8339ed38,0x8339ed39,0x8339ee30, +0x8339ee31,0x8339ee32,0x8339ee33,0x8339ee34,0x8339ee35,0x8339ee36,0x8339ee37, +0x8339ee38,0x8339ee39,0x8339ef30,0x8339ef31,0x8339ef32,0x8339ef33,0x8339ef34, +0x8339ef35,0x8339ef36,0x8339ef37,0x8339ef38,0x8339ef39,0x8339f030,0x8339f031, +0x8339f032,0x8339f033,0x8339f034,0x8339f035,0x8339f036,0x8339f037,0x8339f038, +0x8339f039,0x8339f130,0x8339f131,0x8339f132,0x8339f133,0x8339f134,0x8339f135, +0x8339f136,0x8339f137,0x8339f138,0x8339f139,0x8339f230,0x8339f231,0x8339f232, +0x8339f233,0x8339f234,0x8339f235,0x8339f236,0x8339f237,0x8339f238,0x8339f239, +0x8339f330,0x8339f331,0x8339f332,0x8339f333,0x8339f334,0x8339f335,0x8339f336, +0x8339f337,0x8339f338,0x8339f339,0x8339f430,0x8339f431,0x8339f432,0x8339f433, +0x8339f434,0x8339f435,0x8339f436,0x8339f437,0x8339f438,0x8339f439,0x8339f530, +0x8339f531,0x8339f532,0x8339f533,0x8339f534,0x8339f535,0x8339f536,0x8339f537, +0x8339f538,0x8339f539,0x8339f630,0x8339f631,0x8339f632,0x8339f633,0x8339f634, +0x8339f635,0x8339f636,0x8339f637,0x8339f638,0x8339f639,0x8339f730,0x8339f731, +0x8339f732,0x8339f733,0x8339f734,0x8339f735,0x8339f736,0x8339f737,0x8339f738, +0x8339f739,0x8339f830,0x8339f831,0x8339f832,0x8339f833,0x8339f834,0x8339f835, +0x8339f836,0x8339f837,0x8339f838,0x8339f839,0x8339f930,0x8339f931,0x8339f932, +0x8339f933,0x8339f934,0x8339f935,0x8339f936,0x8339f937,0x8339f938,0x8339f939, +0x8339fa30,0x8339fa31,0x8339fa32,0x8339fa33,0x8339fa34,0x8339fa35,0x8339fa36, +0x8339fa37,0x8339fa38,0x8339fa39,0x8339fb30,0x8339fb31,0x8339fb32,0x8339fb33, +0x8339fb34,0x8339fb35,0x8339fb36,0x8339fb37,0x8339fb38,0x8339fb39,0x8339fc30, +0x8339fc31,0x8339fc32,0x8339fc33,0x8339fc34,0x8339fc35,0x8339fc36,0x8339fc37, +0x8339fc38,0x8339fc39,0x8339fd30,0x8339fd31,0x8339fd32,0x8339fd33,0x8339fd34, +0x8339fd35,0x8339fd36,0x8339fd37,0x8339fd38,0x8339fd39,0x8339fe30,0x8339fe31, +0x8339fe32,0x8339fe33,0x8339fe34,0x8339fe35,0x8339fe36,0x8339fe37,0x8339fe38, +0x8339fe39,0x84308130,0x84308131,0x84308132,0x84308133,0x84308134,0x84308135, +0x84308136,0x84308137,0x84308138,0x84308139,0x84308230,0x84308231,0x84308232, +0x84308233,0x84308234,0x84308235,0x84308236,0x84308237,0x84308238,0x84308239, +0x84308330,0x84308331,0x84308332,0x84308333,0x84308334,0x84308335,0x84308336, +0x84308337,0x84308338,0x84308339,0x84308430,0x84308431,0x84308432,0x84308433, +0x84308434,0x84308435,0x84308436,0x84308437,0x84308438,0x84308439,0x84308530, +0x84308531,0x84308532,0x84308533,0x84308534,0xfd9c,0x84308535,0x84308536, +0x84308537,0x84308538,0x84308539,0x84308630,0x84308631,0x84308632,0x84308633, +0x84308634,0x84308635,0x84308636,0x84308637,0x84308638,0x84308639,0x84308730, +0x84308731,0x84308732,0x84308733,0x84308734,0x84308735,0x84308736,0x84308737, +0x84308738,0x84308739,0x84308830,0x84308831,0x84308832,0x84308833,0x84308834, +0x84308835,0x84308836,0x84308837,0x84308838,0x84308839,0x84308930,0x84308931, +0x84308932,0x84308933,0x84308934,0x84308935,0x84308936,0x84308937,0x84308938, +0x84308939,0x84308a30,0x84308a31,0x84308a32,0x84308a33,0x84308a34,0x84308a35, +0x84308a36,0x84308a37,0x84308a38,0x84308a39,0x84308b30,0x84308b31,0x84308b32, +0x84308b33,0x84308b34,0x84308b35,0x84308b36,0x84308b37,0x84308b38,0x84308b39, +0x84308c30,0x84308c31,0x84308c32,0x84308c33,0x84308c34,0x84308c35,0x84308c36, +0x84308c37,0x84308c38,0x84308c39,0x84308d30,0xfd9d,0x84308d31,0x84308d32, +0x84308d33,0x84308d34,0x84308d35,0x84308d36,0x84308d37,0x84308d38,0x84308d39, +0x84308e30,0x84308e31,0x84308e32,0x84308e33,0x84308e34,0x84308e35,0x84308e36, +0x84308e37,0x84308e38,0x84308e39,0x84308f30,0x84308f31,0x84308f32,0x84308f33, +0x84308f34,0x84308f35,0x84308f36,0x84308f37,0xfd9e,0x84308f38,0x84308f39, +0x84309030,0x84309031,0x84309032,0x84309033,0x84309034,0x84309035,0x84309036, +0x84309037,0x84309038,0x84309039,0x84309130,0x84309131,0x84309132,0x84309133, +0x84309134,0x84309135,0x84309136,0x84309137,0x84309138,0x84309139,0x84309230, +0x84309231,0x84309232,0x84309233,0x84309234,0x84309235,0x84309236,0x84309237, +0x84309238,0x84309239,0x84309330,0x84309331,0x84309332,0x84309333,0x84309334, +0x84309335,0x84309336,0x84309337,0x84309338,0x84309339,0x84309430,0x84309431, +0x84309432,0x84309433,0x84309434,0x84309435,0x84309436,0x84309437,0x84309438, +0x84309439,0x84309530,0x84309531,0x84309532,0x84309533,0x84309534,0x84309535, +0x84309536,0x84309537,0x84309538,0x84309539,0x84309630,0x84309631,0x84309632, +0x84309633,0x84309634,0x84309635,0x84309636,0x84309637,0x84309638,0x84309639, +0x84309730,0x84309731,0x84309732,0x84309733,0x84309734,0x84309735,0x84309736, +0x84309737,0x84309738,0xfd9f,0x84309739,0x84309830,0x84309831,0x84309832, +0x84309833,0x84309834,0x84309835,0x84309836,0x84309837,0xfda0,0x84309838, +0x84309839,0x84309930,0x84309931,0x84309932,0x84309933,0x84309934,0x84309935, +0x84309936,0x84309937,0x84309938,0x84309939,0x84309a30,0x84309a31,0x84309a32, +0x84309a33,0x84309a34,0x84309a35,0x84309a36,0x84309a37,0x84309a38,0x84309a39, +0x84309b30,0x84309b31,0x84309b32,0x84309b33,0xfe40,0xfe41,0xfe42,0xfe43, +0x84309b34,0xfe44,0x84309b35,0xfe45,0xfe46,0x84309b36,0x84309b37,0x84309b38, +0xfe47,0x84309b39,0x84309c30,0x84309c31,0x84309c32,0x84309c33,0x84309c34, +0xfe48,0xfe49,0xfe4a,0x84309c35,0xfe4b,0xfe4c,0x84309c36,0x84309c37,0xfe4d, +0xfe4e,0xfe4f,0x84309c38,0x84309c39,0x84309d30,0x84309d31,0x84309d32,0x84309d33, +0x84309d34,0x84309d35,0x84309d36,0x84309d37,0x84309d38,0x84309d39,0x84309e30, +0x84309e31,0x84309e32,0x84309e33,0x84309e34,0x84309e35,0x84309e36,0x84309e37, +0x84309e38,0x84309e39,0x84309f30,0x84309f31,0x84309f32,0x84309f33,0x84309f34, +0x84309f35,0x84309f36,0x84309f37,0x84309f38,0x84309f39,0x8430a030,0x8430a031, +0x8430a032,0x8430a033,0x8430a034,0x8430a035,0x8430a036,0x8430a037,0x8430a038, +0x8430a039,0x8430a130,0x8430a131,0x8430a132,0x8430a133,0x8430a134,0x8430a135, +0x8430a136,0x8430a137,0x8430a138,0x8430a139,0x8430a230,0x8430a231,0x8430a232, +0x8430a233,0x8430a234,0x8430a235,0x8430a236,0x8430a237,0x8430a238,0x8430a239, +0x8430a330,0x8430a331,0x8430a332,0x8430a333,0x8430a334,0x8430a335,0x8430a336, +0x8430a337,0x8430a338,0x8430a339,0x8430a430,0x8430a431,0x8430a432,0x8430a433, +0x8430a434,0x8430a435,0x8430a436,0x8430a437,0x8430a438,0x8430a439,0x8430a530, +0x8430a531,0x8430a532,0x8430a533,0x8430a534,0x8430a535,0x8430a536,0x8430a537, +0x8430a538,0x8430a539,0x8430a630,0x8430a631,0x8430a632,0x8430a633,0x8430a634, +0x8430a635,0x8430a636,0x8430a637,0x8430a638,0x8430a639,0x8430a730,0x8430a731, +0x8430a732,0x8430a733,0x8430a734,0x8430a735,0x8430a736,0x8430a737,0x8430a738, +0x8430a739,0x8430a830,0x8430a831,0x8430a832,0x8430a833,0x8430a834,0x8430a835, +0x8430a836,0x8430a837,0x8430a838,0x8430a839,0x8430a930,0x8430a931,0x8430a932, +0x8430a933,0x8430a934,0x8430a935,0x8430a936,0x8430a937,0x8430a938,0x8430a939, +0x8430aa30,0x8430aa31,0x8430aa32,0x8430aa33,0x8430aa34,0x8430aa35,0x8430aa36, +0x8430aa37,0x8430aa38,0x8430aa39,0x8430ab30,0x8430ab31,0x8430ab32,0x8430ab33, +0x8430ab34,0x8430ab35,0x8430ab36,0x8430ab37,0x8430ab38,0x8430ab39,0x8430ac30, +0x8430ac31,0x8430ac32,0x8430ac33,0x8430ac34,0x8430ac35,0x8430ac36,0x8430ac37, +0x8430ac38,0x8430ac39,0x8430ad30,0x8430ad31,0x8430ad32,0x8430ad33,0x8430ad34, +0x8430ad35,0x8430ad36,0x8430ad37,0x8430ad38,0x8430ad39,0x8430ae30,0x8430ae31, +0x8430ae32,0x8430ae33,0x8430ae34,0x8430ae35,0x8430ae36,0x8430ae37,0x8430ae38, +0x8430ae39,0x8430af30,0x8430af31,0x8430af32,0x8430af33,0x8430af34,0x8430af35, +0x8430af36,0x8430af37,0x8430af38,0x8430af39,0x8430b030,0x8430b031,0x8430b032, +0x8430b033,0x8430b034,0x8430b035,0x8430b036,0x8430b037,0x8430b038,0x8430b039, +0x8430b130,0x8430b131,0x8430b132,0x8430b133,0x8430b134,0x8430b135,0x8430b136, +0x8430b137,0x8430b138,0x8430b139,0x8430b230,0x8430b231,0x8430b232,0x8430b233, +0x8430b234,0x8430b235,0x8430b236,0x8430b237,0x8430b238,0x8430b239,0x8430b330, +0x8430b331,0x8430b332,0x8430b333,0x8430b334,0x8430b335,0x8430b336,0x8430b337, +0x8430b338,0x8430b339,0x8430b430,0x8430b431,0x8430b432,0x8430b433,0x8430b434, +0x8430b435,0x8430b436,0x8430b437,0x8430b438,0x8430b439,0x8430b530,0x8430b531, +0x8430b532,0x8430b533,0x8430b534,0x8430b535,0x8430b536,0x8430b537,0x8430b538, +0x8430b539,0x8430b630,0x8430b631,0x8430b632,0x8430b633,0x8430b634,0x8430b635, +0x8430b636,0x8430b637,0x8430b638,0x8430b639,0x8430b730,0x8430b731,0x8430b732, +0x8430b733,0x8430b734,0x8430b735,0x8430b736,0x8430b737,0x8430b738,0x8430b739, +0x8430b830,0x8430b831,0x8430b832,0x8430b833,0x8430b834,0x8430b835,0x8430b836, +0x8430b837,0x8430b838,0x8430b839,0x8430b930,0x8430b931,0x8430b932,0x8430b933, +0x8430b934,0x8430b935,0x8430b936,0x8430b937,0x8430b938,0x8430b939,0x8430ba30, +0x8430ba31,0x8430ba32,0x8430ba33,0x8430ba34,0x8430ba35,0x8430ba36,0x8430ba37, +0x8430ba38,0x8430ba39,0x8430bb30,0x8430bb31,0x8430bb32,0x8430bb33,0x8430bb34, +0x8430bb35,0x8430bb36,0x8430bb37,0x8430bb38,0x8430bb39,0x8430bc30,0x8430bc31, +0x8430bc32,0x8430bc33,0x8430bc34,0x8430bc35,0x8430bc36,0x8430bc37,0x8430bc38, +0x8430bc39,0x8430bd30,0x8430bd31,0x8430bd32,0x8430bd33,0x8430bd34,0x8430bd35, +0x8430bd36,0x8430bd37,0x8430bd38,0x8430bd39,0x8430be30,0x8430be31,0x8430be32, +0x8430be33,0x8430be34,0x8430be35,0x8430be36,0x8430be37,0x8430be38,0x8430be39, +0x8430bf30,0x8430bf31,0x8430bf32,0x8430bf33,0x8430bf34,0x8430bf35,0x8430bf36, +0x8430bf37,0x8430bf38,0x8430bf39,0x8430c030,0x8430c031,0x8430c032,0x8430c033, +0x8430c034,0x8430c035,0x8430c036,0x8430c037,0x8430c038,0x8430c039,0x8430c130, +0x8430c131,0x8430c132,0x8430c133,0x8430c134,0x8430c135,0x8430c136,0x8430c137, +0x8430c138,0x8430c139,0x8430c230,0x8430c231,0x8430c232,0x8430c233,0x8430c234, +0x8430c235,0x8430c236,0x8430c237,0x8430c238,0x8430c239,0x8430c330,0x8430c331, +0x8430c332,0x8430c333,0x8430c334,0x8430c335,0x8430c336,0x8430c337,0x8430c338, +0x8430c339,0x8430c430,0x8430c431,0x8430c432,0x8430c433,0x8430c434,0x8430c435, +0x8430c436,0x8430c437,0x8430c438,0x8430c439,0x8430c530,0x8430c531,0x8430c532, +0x8430c533,0x8430c534,0x8430c535,0x8430c536,0x8430c537,0x8430c538,0x8430c539, +0x8430c630,0x8430c631,0x8430c632,0x8430c633,0x8430c634,0x8430c635,0x8430c636, +0x8430c637,0x8430c638,0x8430c639,0x8430c730,0x8430c731,0x8430c732,0x8430c733, +0x8430c734,0x8430c735,0x8430c736,0x8430c737,0x8430c738,0x8430c739,0x8430c830, +0x8430c831,0x8430c832,0x8430c833,0x8430c834,0x8430c835,0x8430c836,0x8430c837, +0x8430c838,0x8430c839,0x8430c930,0x8430c931,0x8430c932,0x8430c933,0x8430c934, +0x8430c935,0x8430c936,0x8430c937,0x8430c938,0x8430c939,0x8430ca30,0x8430ca31, +0x8430ca32,0x8430ca33,0x8430ca34,0x8430ca35,0x8430ca36,0x8430ca37,0x8430ca38, +0x8430ca39,0x8430cb30,0x8430cb31,0x8430cb32,0x8430cb33,0x8430cb34,0x8430cb35, +0x8430cb36,0x8430cb37,0x8430cb38,0x8430cb39,0x8430cc30,0x8430cc31,0x8430cc32, +0x8430cc33,0x8430cc34,0x8430cc35,0x8430cc36,0x8430cc37,0x8430cc38,0x8430cc39, +0x8430cd30,0x8430cd31,0x8430cd32,0x8430cd33,0x8430cd34,0x8430cd35,0x8430cd36, +0x8430cd37,0x8430cd38,0x8430cd39,0x8430ce30,0x8430ce31,0x8430ce32,0x8430ce33, +0x8430ce34,0x8430ce35,0x8430ce36,0x8430ce37,0x8430ce38,0x8430ce39,0x8430cf30, +0x8430cf31,0x8430cf32,0x8430cf33,0x8430cf34,0x8430cf35,0x8430cf36,0x8430cf37, +0x8430cf38,0x8430cf39,0x8430d030,0x8430d031,0x8430d032,0x8430d033,0x8430d034, +0x8430d035,0x8430d036,0x8430d037,0x8430d038,0x8430d039,0x8430d130,0x8430d131, +0x8430d132,0x8430d133,0x8430d134,0x8430d135,0x8430d136,0x8430d137,0x8430d138, +0x8430d139,0x8430d230,0x8430d231,0x8430d232,0x8430d233,0x8430d234,0x8430d235, +0x8430d236,0x8430d237,0x8430d238,0x8430d239,0x8430d330,0x8430d331,0x8430d332, +0x8430d333,0x8430d334,0x8430d335,0x8430d336,0x8430d337,0x8430d338,0x8430d339, +0x8430d430,0x8430d431,0x8430d432,0x8430d433,0x8430d434,0x8430d435,0x8430d436, +0x8430d437,0x8430d438,0x8430d439,0x8430d530,0x8430d531,0x8430d532,0x8430d533, +0x8430d534,0x8430d535,0x8430d536,0x8430d537,0x8430d538,0x8430d539,0x8430d630, +0x8430d631,0x8430d632,0x8430d633,0x8430d634,0x8430d635,0x8430d636,0x8430d637, +0x8430d638,0x8430d639,0x8430d730,0x8430d731,0x8430d732,0x8430d733,0x8430d734, +0x8430d735,0x8430d736,0x8430d737,0x8430d738,0x8430d739,0x8430d830,0x8430d831, +0x8430d832,0x8430d833,0x8430d834,0x8430d835,0x8430d836,0x8430d837,0x8430d838, +0x8430d839,0x8430d930,0x8430d931,0x8430d932,0x8430d933,0x8430d934,0x8430d935, +0x8430d936,0x8430d937,0x8430d938,0x8430d939,0x8430da30,0x8430da31,0x8430da32, +0x8430da33,0x8430da34,0x8430da35,0x8430da36,0x8430da37,0x8430da38,0x8430da39, +0x8430db30,0x8430db31,0x8430db32,0x8430db33,0x8430db34,0x8430db35,0x8430db36, +0x8430db37,0x8430db38,0x8430db39,0x8430dc30,0x8430dc31,0x8430dc32,0x8430dc33, +0x8430dc34,0x8430dc35,0x8430dc36,0x8430dc37,0x8430dc38,0x8430dc39,0x8430dd30, +0x8430dd31,0x8430dd32,0x8430dd33,0x8430dd34,0x8430dd35,0x8430dd36,0x8430dd37, +0x8430dd38,0x8430dd39,0x8430de30,0x8430de31,0x8430de32,0x8430de33,0x8430de34, +0x8430de35,0x8430de36,0x8430de37,0x8430de38,0x8430de39,0x8430df30,0x8430df31, +0x8430df32,0x8430df33,0x8430df34,0x8430df35,0x8430df36,0x8430df37,0x8430df38, +0x8430df39,0x8430e030,0x8430e031,0x8430e032,0x8430e033,0x8430e034,0x8430e035, +0x8430e036,0x8430e037,0x8430e038,0x8430e039,0x8430e130,0x8430e131,0x8430e132, +0x8430e133,0x8430e134,0x8430e135,0x8430e136,0x8430e137,0x8430e138,0x8430e139, +0x8430e230,0x8430e231,0x8430e232,0x8430e233,0x8430e234,0x8430e235,0x8430e236, +0x8430e237,0x8430e238,0x8430e239,0x8430e330,0x8430e331,0x8430e332,0x8430e333, +0x8430e334,0x8430e335,0x8430e336,0x8430e337,0x8430e338,0x8430e339,0x8430e430, +0x8430e431,0x8430e432,0x8430e433,0x8430e434,0x8430e435,0x8430e436,0x8430e437, +0x8430e438,0x8430e439,0x8430e530,0x8430e531,0x8430e532,0x8430e533,0x8430e534, +0x8430e535,0x8430e536,0x8430e537,0x8430e538,0x8430e539,0x8430e630,0x8430e631, +0x8430e632,0x8430e633,0x8430e634,0x8430e635,0x8430e636,0x8430e637,0x8430e638, +0x8430e639,0x8430e730,0x8430e731,0x8430e732,0x8430e733,0x8430e734,0x8430e735, +0x8430e736,0x8430e737,0x8430e738,0x8430e739,0x8430e830,0x8430e831,0x8430e832, +0x8430e833,0x8430e834,0x8430e835,0x8430e836,0x8430e837,0x8430e838,0x8430e839, +0x8430e930,0x8430e931,0x8430e932,0x8430e933,0x8430e934,0x8430e935,0x8430e936, +0x8430e937,0x8430e938,0x8430e939,0x8430ea30,0x8430ea31,0x8430ea32,0x8430ea33, +0x8430ea34,0x8430ea35,0x8430ea36,0x8430ea37,0x8430ea38,0x8430ea39,0x8430eb30, +0x8430eb31,0x8430eb32,0x8430eb33,0x8430eb34,0x8430eb35,0x8430eb36,0x8430eb37, +0x8430eb38,0x8430eb39,0x8430ec30,0x8430ec31,0x8430ec32,0x8430ec33,0x8430ec34, +0x8430ec35,0x8430ec36,0x8430ec37,0x8430ec38,0x8430ec39,0x8430ed30,0x8430ed31, +0x8430ed32,0x8430ed33,0x8430ed34,0x8430ed35,0x8430ed36,0x8430ed37,0x8430ed38, +0x8430ed39,0x8430ee30,0x8430ee31,0x8430ee32,0x8430ee33,0x8430ee34,0x8430ee35, +0x8430ee36,0x8430ee37,0x8430ee38,0x8430ee39,0x8430ef30,0x8430ef31,0x8430ef32, +0x8430ef33,0x8430ef34,0x8430ef35,0x8430ef36,0x8430ef37,0x8430ef38,0x8430ef39, +0x8430f030,0x8430f031,0x8430f032,0x8430f033,0x8430f034,0x8430f035,0x8430f036, +0x8430f037,0x8430f038,0x8430f039,0x8430f130,0x8430f131,0x8430f132,0x8430f133, +0x8430f134,0x8430f135,0x8430f136,0x8430f137,0x8430f138,0x8430f139,0x8430f230, +0x8430f231,0x8430f232,0x8430f233,0x8430f234,0x8430f235,0x8430f236,0x8430f237, +0x8430f238,0x8430f239,0x8430f330,0x8430f331,0x8430f332,0x8430f333,0x8430f334, +0x8430f335,0x8430f336,0x8430f337,0x8430f338,0x8430f339,0x8430f430,0x8430f431, +0x8430f432,0x8430f433,0x8430f434,0x8430f435,0x8430f436,0x8430f437,0x8430f438, +0x8430f439,0x8430f530,0x8430f531,0x8430f532,0x8430f533,0x8430f534,0x8430f535, +0x8430f536,0x8430f537,0x8430f538,0x8430f539,0x8430f630,0x8430f631,0x8430f632, +0x8430f633,0x8430f634,0x8430f635,0x8430f636,0x8430f637,0x8430f638,0x8430f639, +0x8430f730,0x8430f731,0x8430f732,0x8430f733,0x8430f734,0x8430f735,0x8430f736, +0x8430f737,0x8430f738,0x8430f739,0x8430f830,0x8430f831,0x8430f832,0x8430f833, +0x8430f834,0x8430f835,0x8430f836,0x8430f837,0x8430f838,0x8430f839,0x8430f930, +0x8430f931,0x8430f932,0x8430f933,0x8430f934,0x8430f935,0x8430f936,0x8430f937, +0x8430f938,0x8430f939,0x8430fa30,0x8430fa31,0x8430fa32,0x8430fa33,0x8430fa34, +0x8430fa35,0x8430fa36,0x8430fa37,0x8430fa38,0x8430fa39,0x8430fb30,0x8430fb31, +0x8430fb32,0x8430fb33,0x8430fb34,0x8430fb35,0x8430fb36,0x8430fb37,0x8430fb38, +0x8430fb39,0x8430fc30,0x8430fc31,0x8430fc32,0x8430fc33,0x8430fc34,0x8430fc35, +0x8430fc36,0x8430fc37,0x8430fc38,0x8430fc39,0x8430fd30,0x8430fd31,0x8430fd32, +0x8430fd33,0x8430fd34,0x8430fd35,0x8430fd36,0x8430fd37,0x8430fd38,0x8430fd39, +0x8430fe30,0x8430fe31,0x8430fe32,0x8430fe33,0x8430fe34,0x8430fe35,0x8430fe36, +0x8430fe37,0x8430fe38,0x8430fe39,0x84318130,0x84318131,0x84318132,0x84318133, +0x84318134,0x84318135,0x84318136,0x84318137,0x84318138,0x84318139,0x84318230, +0x84318231,0x84318232,0x84318233,0x84318234,0x84318235,0x84318236,0x84318237, +0x84318238,0x84318239,0x84318330,0x84318331,0x84318332,0x84318333,0x84318334, +0x84318335,0x84318336,0x84318337,0x84318338,0x84318339,0x84318430,0x84318431, +0x84318432,0x84318433,0x84318434,0x84318435,0x84318436,0x84318437,0x84318438, +0x84318439,0x84318530,0x84318531,0x84318532,0x84318533,0x84318534,0x84318535, +0x84318536,0x84318537,0xa955,0xa6f2,0x84318538,0xa6f4,0xa6f5,0xa6e0,0xa6e1, +0xa6f0,0xa6f1,0xa6e2,0xa6e3,0xa6ee,0xa6ef,0xa6e6,0xa6e7,0xa6e4,0xa6e5, +0xa6e8,0xa6e9,0xa6ea,0xa6eb,0x84318539,0x84318630,0x84318631,0x84318632, +0xa968,0xa969,0xa96a,0xa96b,0xa96c,0xa96d,0xa96e,0xa96f,0xa970,0xa971, +0x84318633,0xa972,0xa973,0xa974,0xa975,0x84318634,0xa976,0xa977,0xa978, +0xa979,0xa97a,0xa97b,0xa97c,0xa97d,0xa97e,0xa980,0xa981,0xa982,0xa983, +0xa984,0x84318635,0xa985,0xa986,0xa987,0xa988,0x84318636,0x84318637,0x84318638, +0x84318639,0x84318730,0x84318731,0x84318732,0x84318733,0x84318734,0x84318735, +0x84318736,0x84318737,0x84318738,0x84318739,0x84318830,0x84318831,0x84318832, +0x84318833,0x84318834,0x84318835,0x84318836,0x84318837,0x84318838,0x84318839, +0x84318930,0x84318931,0x84318932,0x84318933,0x84318934,0x84318935,0x84318936, +0x84318937,0x84318938,0x84318939,0x84318a30,0x84318a31,0x84318a32,0x84318a33, +0x84318a34,0x84318a35,0x84318a36,0x84318a37,0x84318a38,0x84318a39,0x84318b30, +0x84318b31,0x84318b32,0x84318b33,0x84318b34,0x84318b35,0x84318b36,0x84318b37, +0x84318b38,0x84318b39,0x84318c30,0x84318c31,0x84318c32,0x84318c33,0x84318c34, +0x84318c35,0x84318c36,0x84318c37,0x84318c38,0x84318c39,0x84318d30,0x84318d31, +0x84318d32,0x84318d33,0x84318d34,0x84318d35,0x84318d36,0x84318d37,0x84318d38, +0x84318d39,0x84318e30,0x84318e31,0x84318e32,0x84318e33,0x84318e34,0x84318e35, +0x84318e36,0x84318e37,0x84318e38,0x84318e39,0x84318f30,0x84318f31,0x84318f32, +0x84318f33,0x84318f34,0x84318f35,0x84318f36,0x84318f37,0x84318f38,0x84318f39, +0x84319030,0x84319031,0x84319032,0x84319033,0x84319034,0x84319035,0x84319036, +0x84319037,0x84319038,0x84319039,0x84319130,0x84319131,0x84319132,0x84319133, +0x84319134,0x84319135,0x84319136,0x84319137,0x84319138,0x84319139,0x84319230, +0x84319231,0x84319232,0x84319233,0x84319234,0x84319235,0x84319236,0x84319237, +0x84319238,0x84319239,0x84319330,0x84319331,0x84319332,0x84319333,0x84319334, +0x84319335,0x84319336,0x84319337,0x84319338,0x84319339,0x84319430,0x84319431, +0x84319432,0x84319433,0x84319434,0x84319435,0x84319436,0x84319437,0x84319438, +0x84319439,0x84319530,0x84319531,0x84319532,0x84319533,0x84319534,0xa3a1, +0xa3a2,0xa3a3,0xa1e7,0xa3a5,0xa3a6,0xa3a7,0xa3a8,0xa3a9,0xa3aa,0xa3ab, +0xa3ac,0xa3ad,0xa3ae,0xa3af,0xa3b0,0xa3b1,0xa3b2,0xa3b3,0xa3b4,0xa3b5, +0xa3b6,0xa3b7,0xa3b8,0xa3b9,0xa3ba,0xa3bb,0xa3bc,0xa3bd,0xa3be,0xa3bf, +0xa3c0,0xa3c1,0xa3c2,0xa3c3,0xa3c4,0xa3c5,0xa3c6,0xa3c7,0xa3c8,0xa3c9, +0xa3ca,0xa3cb,0xa3cc,0xa3cd,0xa3ce,0xa3cf,0xa3d0,0xa3d1,0xa3d2,0xa3d3, +0xa3d4,0xa3d5,0xa3d6,0xa3d7,0xa3d8,0xa3d9,0xa3da,0xa3db,0xa3dc,0xa3dd, +0xa3de,0xa3df,0xa3e0,0xa3e1,0xa3e2,0xa3e3,0xa3e4,0xa3e5,0xa3e6,0xa3e7, +0xa3e8,0xa3e9,0xa3ea,0xa3eb,0xa3ec,0xa3ed,0xa3ee,0xa3ef,0xa3f0,0xa3f1, +0xa3f2,0xa3f3,0xa3f4,0xa3f5,0xa3f6,0xa3f7,0xa3f8,0xa3f9,0xa3fa,0xa3fb, +0xa3fc,0xa3fd,0xa1ab,0x84319535,0x84319536,0x84319537,0x84319538,0x84319539, +0x84319630,0x84319631,0x84319632,0x84319633,0x84319634,0x84319635,0x84319636, +0x84319637,0x84319638,0x84319639,0x84319730,0x84319731,0x84319732,0x84319733, +0x84319734,0x84319735,0x84319736,0x84319737,0x84319738,0x84319739,0x84319830, +0x84319831,0x84319832,0x84319833,0x84319834,0x84319835,0x84319836,0x84319837, +0x84319838,0x84319839,0x84319930,0x84319931,0x84319932,0x84319933,0x84319934, +0x84319935,0x84319936,0x84319937,0x84319938,0x84319939,0x84319a30,0x84319a31, +0x84319a32,0x84319a33,0x84319a34,0x84319a35,0x84319a36,0x84319a37,0x84319a38, +0x84319a39,0x84319b30,0x84319b31,0x84319b32,0x84319b33,0x84319b34,0x84319b35, +0x84319b36,0x84319b37,0x84319b38,0x84319b39,0x84319c30,0x84319c31,0x84319c32, +0x84319c33,0x84319c34,0x84319c35,0x84319c36,0x84319c37,0x84319c38,0x84319c39, +0x84319d30,0x84319d31,0x84319d32,0x84319d33,0x84319d34,0x84319d35,0x84319d36, +0x84319d37,0x84319d38,0x84319d39,0x84319e30,0x84319e31,0x84319e32,0x84319e33, +0x84319e34,0x84319e35,0x84319e36,0x84319e37,0x84319e38,0x84319e39,0x84319f30, +0x84319f31,0x84319f32,0x84319f33,0x84319f34,0x84319f35,0x84319f36,0x84319f37, +0x84319f38,0x84319f39,0x8431a030,0x8431a031,0x8431a032,0x8431a033,0x8431a034, +0x8431a035,0x8431a036,0x8431a037,0x8431a038,0x8431a039,0x8431a130,0x8431a131, +0x8431a132,0x8431a133,0x8431a134,0x8431a135,0x8431a136,0x8431a137,0x8431a138, +0x8431a139,0x8431a230,0x8431a231,0x8431a232,0x8431a233,0xa1e9,0xa1ea,0xa956, +0xa3fe,0xa957,0xa3a4,0x8431a234,0x8431a235,0x8431a236,0x8431a237,0x8431a238, +0x8431a239,0x8431a330,0x8431a331,0x8431a332,0x8431a333,0x8431a334,0x8431a335, +0x8431a336,0x8431a337,0x8431a338,0x8431a339,0x8431a430,0x8431a431,0x8431a432, +0x8431a433,0x8431a434,0x8431a435,0x8431a436,0x8431a437,0x8431a438,0x8431a439}; \ No newline at end of file diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312.java new file mode 100644 index 000000000..c6c32d22a --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312.java @@ -0,0 +1,88 @@ +package com.jpexs.helpers.utf8.charset; + +import com.jpexs.decompiler.flash.action.parser.ActionParseException; +import com.jpexs.decompiler.flash.action.parser.script.ActionScriptLexer; +import com.jpexs.decompiler.flash.action.parser.script.ParsedSymbol; +import com.jpexs.decompiler.flash.action.parser.script.SymbolType; +import com.jpexs.helpers.utf8.Utf8Helper; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.logging.Level; +import java.util.logging.Logger; + +/** + * + * GB2312 to unicode and back conversion. + * Based on https://github.com/MoarVM/MoarVM/blob/master/src/strings/gb2312_codeindex.h + */ +public class Gb2312 extends AbstractCharsetConverter { + static final int GB2312_NULL = -1; + +/* Conversion tables are generated according to mapping from + * unicode.org-mappings/EASTASIA/GB/GB2312.TXT + * at https://haible.de/bruno/charsets/conversion-tables/GB2312.html + * The following tables use EUC form for GB2312 characters. + + * Unicode indexes 1106 - 8212, 9795 - 12287, 12842 - 19967, + * and 40865 - 65280 don't correspond to gb2312 codepoint. + * To reduce code length and save memory, these intervals are omitted + * in the conversion table and indexes are shifted in the function. */ + + private static int[][] gb2312_index_to_cp_record = new int[87][94]; + + private static int[] gb2312_cp_to_index_record = new int [24380]; + + static { + //Since data is too long to save it directly into Java source, load it from bin + InputStream is = Gb2312.class.getResourceAsStream("/com/jpexs/helpers/utf8/charset/Gb2312data.bin"); + if (is == null) { + System.exit(0); + } + ActionScriptLexer lexer = new ActionScriptLexer(new InputStreamReader(is, Utf8Helper.charset)); + try { + ParsedSymbol s; + readTwoDimensionalInt(gb2312_index_to_cp_record, lexer); + readOneDimensionalInt(gb2312_cp_to_index_record, lexer); + } catch (IOException | ActionParseException ex) { + Logger.getLogger(Gb2312.class.getName()).log(Level.SEVERE, null, ex); + } + } + + @Override + public int toUnicode(int codePoint) { + if (codePoint < 128) { + return codePoint; + } + + int zone = codePoint / 256 - 161; + int point = codePoint % 256 - 161; + if (0 <= zone && zone < 87 && 0 <= point && point < 94) { + return gb2312_index_to_cp_record[zone][point]; + } else { + return GB2312_NULL; + } + } + + @Override + public int fromUnicode(int codePoint) { + + int result = 0; + if (0 <= codePoint && codePoint <= 1105) { + result = gb2312_cp_to_index_record[codePoint]; + } + else if (8213 <= codePoint && codePoint <= 9794) { + result = gb2312_cp_to_index_record[codePoint - 7107]; + } + else if (12288 <= codePoint && codePoint <= 12841) { + result = gb2312_cp_to_index_record[codePoint - 9600]; + } + else if (19968 <= codePoint && codePoint <= 40864) { + result = gb2312_cp_to_index_record[codePoint - 16726]; + } + else if (65281 <= codePoint && codePoint <= 65510) { + result = gb2312_cp_to_index_record[codePoint - 41142]; + } + return result == 0 ? GB2312_NULL : result; + } +} diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312data.bin b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312data.bin new file mode 100644 index 000000000..b08145410 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/Gb2312data.bin @@ -0,0 +1,1766 @@ +gb2312_index_to_cp_record = {{0x3000,0x3001,0x3002,0x30fb,0x2c9,0x2c7,0xa8,0x3003,0x3005,0x2015,0xff5e + ,0x2016,0x2026,0x2018,0x2019,0x201c,0x201d,0x3014,0x3015,0x3008,0x3009,0x300a + ,0x300b,0x300c,0x300d,0x300e,0x300f,0x3016,0x3017,0x3010,0x3011,0xb1,0xd7 + ,0xf7,0x2236,0x2227,0x2228,0x2211,0x220f,0x222a,0x2229,0x2208,0x2237,0x221a + ,0x22a5,0x2225,0x2220,0x2312,0x2299,0x222b,0x222e,0x2261,0x224c,0x2248,0x223d + ,0x221d,0x2260,0x226e,0x226f,0x2264,0x2265,0x221e,0x2235,0x2234,0x2642,0x2640 + ,0xb0,0x2032,0x2033,0x2103,0xff04,0xa4,0xffe0,0xffe1,0x2030,0xa7,0x2116 + ,0x2606,0x2605,0x25cb,0x25cf,0x25ce,0x25c7,0x25c6,0x25a1,0x25a0,0x25b3,0x25b2 + ,0x203b,0x2192,0x2190,0x2191,0x2193,0x3013}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0x2488,0x2489,0x248a,0x248b + ,0x248c,0x248d,0x248e,0x248f,0x2490,0x2491,0x2492,0x2493,0x2494,0x2495,0x2496 + ,0x2497,0x2498,0x2499,0x249a,0x249b,0x2474,0x2475,0x2476,0x2477,0x2478,0x2479 + ,0x247a,0x247b,0x247c,0x247d,0x247e,0x247f,0x2480,0x2481,0x2482,0x2483,0x2484 + ,0x2485,0x2486,0x2487,0x2460,0x2461,0x2462,0x2463,0x2464,0x2465,0x2466,0x2467 + ,0x2468,0x2469,-1,-1,0x3220,0x3221,0x3222,0x3223,0x3224,0x3225,0x3226,0x3227 + ,0x3228,0x3229,-1,-1,0x2160,0x2161,0x2162,0x2163,0x2164,0x2165,0x2166,0x2167 + ,0x2168,0x2169,0x216a,0x216b,-1,-1}, + {0xff01,0xff02,0xff03,0xffe5,0xff05,0xff06,0xff07,0xff08,0xff09,0xff0a,0xff0b + ,0xff0c,0xff0d,0xff0e,0xff0f,0xff10,0xff11,0xff12,0xff13,0xff14,0xff15,0xff16 + ,0xff17,0xff18,0xff19,0xff1a,0xff1b,0xff1c,0xff1d,0xff1e,0xff1f,0xff20,0xff21 + ,0xff22,0xff23,0xff24,0xff25,0xff26,0xff27,0xff28,0xff29,0xff2a,0xff2b,0xff2c + ,0xff2d,0xff2e,0xff2f,0xff30,0xff31,0xff32,0xff33,0xff34,0xff35,0xff36,0xff37 + ,0xff38,0xff39,0xff3a,0xff3b,0xff3c,0xff3d,0xff3e,0xff3f,0xff40,0xff41,0xff42 + ,0xff43,0xff44,0xff45,0xff46,0xff47,0xff48,0xff49,0xff4a,0xff4b,0xff4c,0xff4d + ,0xff4e,0xff4f,0xff50,0xff51,0xff52,0xff53,0xff54,0xff55,0xff56,0xff57,0xff58 + ,0xff59,0xff5a,0xff5b,0xff5c,0xff5d,0xffe3}, + {0x3041,0x3042,0x3043,0x3044,0x3045,0x3046,0x3047,0x3048,0x3049,0x304a,0x304b + ,0x304c,0x304d,0x304e,0x304f,0x3050,0x3051,0x3052,0x3053,0x3054,0x3055,0x3056 + ,0x3057,0x3058,0x3059,0x305a,0x305b,0x305c,0x305d,0x305e,0x305f,0x3060,0x3061 + ,0x3062,0x3063,0x3064,0x3065,0x3066,0x3067,0x3068,0x3069,0x306a,0x306b,0x306c + ,0x306d,0x306e,0x306f,0x3070,0x3071,0x3072,0x3073,0x3074,0x3075,0x3076,0x3077 + ,0x3078,0x3079,0x307a,0x307b,0x307c,0x307d,0x307e,0x307f,0x3080,0x3081,0x3082 + ,0x3083,0x3084,0x3085,0x3086,0x3087,0x3088,0x3089,0x308a,0x308b,0x308c,0x308d + ,0x308e,0x308f,0x3090,0x3091,0x3092,0x3093,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + }, + {0x30a1,0x30a2,0x30a3,0x30a4,0x30a5,0x30a6,0x30a7,0x30a8,0x30a9,0x30aa,0x30ab + ,0x30ac,0x30ad,0x30ae,0x30af,0x30b0,0x30b1,0x30b2,0x30b3,0x30b4,0x30b5,0x30b6 + ,0x30b7,0x30b8,0x30b9,0x30ba,0x30bb,0x30bc,0x30bd,0x30be,0x30bf,0x30c0,0x30c1 + ,0x30c2,0x30c3,0x30c4,0x30c5,0x30c6,0x30c7,0x30c8,0x30c9,0x30ca,0x30cb,0x30cc + ,0x30cd,0x30ce,0x30cf,0x30d0,0x30d1,0x30d2,0x30d3,0x30d4,0x30d5,0x30d6,0x30d7 + ,0x30d8,0x30d9,0x30da,0x30db,0x30dc,0x30dd,0x30de,0x30df,0x30e0,0x30e1,0x30e2 + ,0x30e3,0x30e4,0x30e5,0x30e6,0x30e7,0x30e8,0x30e9,0x30ea,0x30eb,0x30ec,0x30ed + ,0x30ee,0x30ef,0x30f0,0x30f1,0x30f2,0x30f3,0x30f4,0x30f5,0x30f6,-1,-1,-1,-1 + ,-1,-1,-1,-1}, + {0x391,0x392,0x393,0x394,0x395,0x396,0x397,0x398,0x399,0x39a,0x39b + ,0x39c,0x39d,0x39e,0x39f,0x3a0,0x3a1,0x3a3,0x3a4,0x3a5,0x3a6,0x3a7 + ,0x3a8,0x3a9,-1,-1,-1,-1,-1,-1,-1,-1,0x3b1,0x3b2,0x3b3,0x3b4,0x3b5,0x3b6 + ,0x3b7,0x3b8,0x3b9,0x3ba,0x3bb,0x3bc,0x3bd,0x3be,0x3bf,0x3c0,0x3c1 + ,0x3c3,0x3c4,0x3c5,0x3c6,0x3c7,0x3c8,0x3c9,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1}, + {0x410,0x411,0x412,0x413,0x414,0x415,0x401,0x416,0x417,0x418,0x419 + ,0x41a,0x41b,0x41c,0x41d,0x41e,0x41f,0x420,0x421,0x422,0x423,0x424 + ,0x425,0x426,0x427,0x428,0x429,0x42a,0x42b,0x42c,0x42d,0x42e,0x42f + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0x430,0x431,0x432,0x433,0x434 + ,0x435,0x451,0x436,0x437,0x438,0x439,0x43a,0x43b,0x43c,0x43d,0x43e + ,0x43f,0x440,0x441,0x442,0x443,0x444,0x445,0x446,0x447,0x448,0x449 + ,0x44a,0x44b,0x44c,0x44d,0x44e,0x44f,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1}, + {0x101,0xe1,0x1ce,0xe0,0x113,0xe9,0x11b,0xe8,0x12b,0xed,0x1d0 + ,0xec,0x14d,0xf3,0x1d2,0xf2,0x16b,0xfa,0x1d4,0xf9,0x1d6,0x1d8 + ,0x1da,0x1dc,0xfc,0xea,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0x3105,0x3106,0x3107 + ,0x3108,0x3109,0x310a,0x310b,0x310c,0x310d,0x310e,0x310f,0x3110,0x3111,0x3112 + ,0x3113,0x3114,0x3115,0x3116,0x3117,0x3118,0x3119,0x311a,0x311b,0x311c,0x311d + ,0x311e,0x311f,0x3120,0x3121,0x3122,0x3123,0x3124,0x3125,0x3126,0x3127,0x3128 + ,0x3129,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,0x2500,0x2501,0x2502,0x2503,0x2504,0x2505,0x2506,0x2507,0x2508,0x2509 + ,0x250a,0x250b,0x250c,0x250d,0x250e,0x250f,0x2510,0x2511,0x2512,0x2513,0x2514 + ,0x2515,0x2516,0x2517,0x2518,0x2519,0x251a,0x251b,0x251c,0x251d,0x251e,0x251f + ,0x2520,0x2521,0x2522,0x2523,0x2524,0x2525,0x2526,0x2527,0x2528,0x2529,0x252a + ,0x252b,0x252c,0x252d,0x252e,0x252f,0x2530,0x2531,0x2532,0x2533,0x2534,0x2535 + ,0x2536,0x2537,0x2538,0x2539,0x253a,0x253b,0x253c,0x253d,0x253e,0x253f,0x2540 + ,0x2541,0x2542,0x2543,0x2544,0x2545,0x2546,0x2547,0x2548,0x2549,0x254a,0x254b + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 + ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}, + {0x554a,0x963f,0x57c3,0x6328,0x54ce,0x5509,0x54c0,0x7691,0x764c,0x853c,0x77ee + ,0x827e,0x788d,0x7231,0x9698,0x978d,0x6c28,0x5b89,0x4ffa,0x6309,0x6697,0x5cb8 + ,0x80fa,0x6848,0x80ae,0x6602,0x76ce,0x51f9,0x6556,0x71ac,0x7ff1,0x8884,0x50b2 + ,0x5965,0x61ca,0x6fb3,0x82ad,0x634c,0x6252,0x53ed,0x5427,0x7b06,0x516b,0x75a4 + ,0x5df4,0x62d4,0x8dcb,0x9776,0x628a,0x8019,0x575d,0x9738,0x7f62,0x7238,0x767d + ,0x67cf,0x767e,0x6446,0x4f70,0x8d25,0x62dc,0x7a17,0x6591,0x73ed,0x642c,0x6273 + ,0x822c,0x9881,0x677f,0x7248,0x626e,0x62cc,0x4f34,0x74e3,0x534a,0x529e,0x7eca + ,0x90a6,0x5e2e,0x6886,0x699c,0x8180,0x7ed1,0x68d2,0x78c5,0x868c,0x9551,0x508d + ,0x8c24,0x82de,0x80de,0x5305,0x8912,0x5265}, + {0x8584,0x96f9,0x4fdd,0x5821,0x9971,0x5b9d,0x62b1,0x62a5,0x66b4,0x8c79,0x9c8d + ,0x7206,0x676f,0x7891,0x60b2,0x5351,0x5317,0x8f88,0x80cc,0x8d1d,0x94a1,0x500d + ,0x72c8,0x5907,0x60eb,0x7119,0x88ab,0x5954,0x82ef,0x672c,0x7b28,0x5d29,0x7ef7 + ,0x752d,0x6cf5,0x8e66,0x8ff8,0x903c,0x9f3b,0x6bd4,0x9119,0x7b14,0x5f7c,0x78a7 + ,0x84d6,0x853d,0x6bd5,0x6bd9,0x6bd6,0x5e01,0x5e87,0x75f9,0x95ed,0x655d,0x5f0a + ,0x5fc5,0x8f9f,0x58c1,0x81c2,0x907f,0x965b,0x97ad,0x8fb9,0x7f16,0x8d2c,0x6241 + ,0x4fbf,0x53d8,0x535e,0x8fa8,0x8fa9,0x8fab,0x904d,0x6807,0x5f6a,0x8198,0x8868 + ,0x9cd6,0x618b,0x522b,0x762a,0x5f6c,0x658c,0x6fd2,0x6ee8,0x5bbe,0x6448,0x5175 + ,0x51b0,0x67c4,0x4e19,0x79c9,0x997c,0x70b3}, + {0x75c5,0x5e76,0x73bb,0x83e0,0x64ad,0x62e8,0x94b5,0x6ce2,0x535a,0x52c3,0x640f + ,0x94c2,0x7b94,0x4f2f,0x5e1b,0x8236,0x8116,0x818a,0x6e24,0x6cca,0x9a73,0x6355 + ,0x535c,0x54fa,0x8865,0x57e0,0x4e0d,0x5e03,0x6b65,0x7c3f,0x90e8,0x6016,0x64e6 + ,0x731c,0x88c1,0x6750,0x624d,0x8d22,0x776c,0x8e29,0x91c7,0x5f69,0x83dc,0x8521 + ,0x9910,0x53c2,0x8695,0x6b8b,0x60ed,0x60e8,0x707f,0x82cd,0x8231,0x4ed3,0x6ca7 + ,0x85cf,0x64cd,0x7cd9,0x69fd,0x66f9,0x8349,0x5395,0x7b56,0x4fa7,0x518c,0x6d4b + ,0x5c42,0x8e6d,0x63d2,0x53c9,0x832c,0x8336,0x67e5,0x78b4,0x643d,0x5bdf,0x5c94 + ,0x5dee,0x8be7,0x62c6,0x67f4,0x8c7a,0x6400,0x63ba,0x8749,0x998b,0x8c17,0x7f20 + ,0x94f2,0x4ea7,0x9610,0x98a4,0x660c,0x7316}, + {0x573a,0x5c1d,0x5e38,0x957f,0x507f,0x80a0,0x5382,0x655e,0x7545,0x5531,0x5021 + ,0x8d85,0x6284,0x949e,0x671d,0x5632,0x6f6e,0x5de2,0x5435,0x7092,0x8f66,0x626f + ,0x64a4,0x63a3,0x5f7b,0x6f88,0x90f4,0x81e3,0x8fb0,0x5c18,0x6668,0x5ff1,0x6c89 + ,0x9648,0x8d81,0x886c,0x6491,0x79f0,0x57ce,0x6a59,0x6210,0x5448,0x4e58,0x7a0b + ,0x60e9,0x6f84,0x8bda,0x627f,0x901e,0x9a8b,0x79e4,0x5403,0x75f4,0x6301,0x5319 + ,0x6c60,0x8fdf,0x5f1b,0x9a70,0x803b,0x9f7f,0x4f88,0x5c3a,0x8d64,0x7fc5,0x65a5 + ,0x70bd,0x5145,0x51b2,0x866b,0x5d07,0x5ba0,0x62bd,0x916c,0x7574,0x8e0c,0x7a20 + ,0x6101,0x7b79,0x4ec7,0x7ef8,0x7785,0x4e11,0x81ed,0x521d,0x51fa,0x6a71,0x53a8 + ,0x8e87,0x9504,0x96cf,0x6ec1,0x9664,0x695a}, + {0x7840,0x50a8,0x77d7,0x6410,0x89e6,0x5904,0x63e3,0x5ddd,0x7a7f,0x693d,0x4f20 + ,0x8239,0x5598,0x4e32,0x75ae,0x7a97,0x5e62,0x5e8a,0x95ef,0x521b,0x5439,0x708a + ,0x6376,0x9524,0x5782,0x6625,0x693f,0x9187,0x5507,0x6df3,0x7eaf,0x8822,0x6233 + ,0x7ef0,0x75b5,0x8328,0x78c1,0x96cc,0x8f9e,0x6148,0x74f7,0x8bcd,0x6b64,0x523a + ,0x8d50,0x6b21,0x806a,0x8471,0x56f1,0x5306,0x4ece,0x4e1b,0x51d1,0x7c97,0x918b + ,0x7c07,0x4fc3,0x8e7f,0x7be1,0x7a9c,0x6467,0x5d14,0x50ac,0x8106,0x7601,0x7cb9 + ,0x6dec,0x7fe0,0x6751,0x5b58,0x5bf8,0x78cb,0x64ae,0x6413,0x63aa,0x632b,0x9519 + ,0x642d,0x8fbe,0x7b54,0x7629,0x6253,0x5927,0x5446,0x6b79,0x50a3,0x6234,0x5e26 + ,0x6b86,0x4ee3,0x8d37,0x888b,0x5f85,0x902e}, + {0x6020,0x803d,0x62c5,0x4e39,0x5355,0x90f8,0x63b8,0x80c6,0x65e6,0x6c2e,0x4f46 + ,0x60ee,0x6de1,0x8bde,0x5f39,0x86cb,0x5f53,0x6321,0x515a,0x8361,0x6863,0x5200 + ,0x6363,0x8e48,0x5012,0x5c9b,0x7977,0x5bfc,0x5230,0x7a3b,0x60bc,0x9053,0x76d7 + ,0x5fb7,0x5f97,0x7684,0x8e6c,0x706f,0x767b,0x7b49,0x77aa,0x51f3,0x9093,0x5824 + ,0x4f4e,0x6ef4,0x8fea,0x654c,0x7b1b,0x72c4,0x6da4,0x7fdf,0x5ae1,0x62b5,0x5e95 + ,0x5730,0x8482,0x7b2c,0x5e1d,0x5f1f,0x9012,0x7f14,0x98a0,0x6382,0x6ec7,0x7898 + ,0x70b9,0x5178,0x975b,0x57ab,0x7535,0x4f43,0x7538,0x5e97,0x60e6,0x5960,0x6dc0 + ,0x6bbf,0x7889,0x53fc,0x96d5,0x51cb,0x5201,0x6389,0x540a,0x9493,0x8c03,0x8dcc + ,0x7239,0x789f,0x8776,0x8fed,0x8c0d,0x53e0}, + {0x4e01,0x76ef,0x53ee,0x9489,0x9876,0x9f0e,0x952d,0x5b9a,0x8ba2,0x4e22,0x4e1c + ,0x51ac,0x8463,0x61c2,0x52a8,0x680b,0x4f97,0x606b,0x51bb,0x6d1e,0x515c,0x6296 + ,0x6597,0x9661,0x8c46,0x9017,0x75d8,0x90fd,0x7763,0x6bd2,0x728a,0x72ec,0x8bfb + ,0x5835,0x7779,0x8d4c,0x675c,0x9540,0x809a,0x5ea6,0x6e21,0x5992,0x7aef,0x77ed + ,0x953b,0x6bb5,0x65ad,0x7f0e,0x5806,0x5151,0x961f,0x5bf9,0x58a9,0x5428,0x8e72 + ,0x6566,0x987f,0x56e4,0x949d,0x76fe,0x9041,0x6387,0x54c6,0x591a,0x593a,0x579b + ,0x8eb2,0x6735,0x8dfa,0x8235,0x5241,0x60f0,0x5815,0x86fe,0x5ce8,0x9e45,0x4fc4 + ,0x989d,0x8bb9,0x5a25,0x6076,0x5384,0x627c,0x904f,0x9102,0x997f,0x6069,0x800c + ,0x513f,0x8033,0x5c14,0x9975,0x6d31,0x4e8c}, + {0x8d30,0x53d1,0x7f5a,0x7b4f,0x4f10,0x4e4f,0x9600,0x6cd5,0x73d0,0x85e9,0x5e06 + ,0x756a,0x7ffb,0x6a0a,0x77fe,0x9492,0x7e41,0x51e1,0x70e6,0x53cd,0x8fd4,0x8303 + ,0x8d29,0x72af,0x996d,0x6cdb,0x574a,0x82b3,0x65b9,0x80aa,0x623f,0x9632,0x59a8 + ,0x4eff,0x8bbf,0x7eba,0x653e,0x83f2,0x975e,0x5561,0x98de,0x80a5,0x532a,0x8bfd + ,0x5420,0x80ba,0x5e9f,0x6cb8,0x8d39,0x82ac,0x915a,0x5429,0x6c1b,0x5206,0x7eb7 + ,0x575f,0x711a,0x6c7e,0x7c89,0x594b,0x4efd,0x5fff,0x6124,0x7caa,0x4e30,0x5c01 + ,0x67ab,0x8702,0x5cf0,0x950b,0x98ce,0x75af,0x70fd,0x9022,0x51af,0x7f1d,0x8bbd + ,0x5949,0x51e4,0x4f5b,0x5426,0x592b,0x6577,0x80a4,0x5b75,0x6276,0x62c2,0x8f90 + ,0x5e45,0x6c1f,0x7b26,0x4f0f,0x4fd8,0x670d}, + {0x6d6e,0x6daa,0x798f,0x88b1,0x5f17,0x752b,0x629a,0x8f85,0x4fef,0x91dc,0x65a7 + ,0x812f,0x8151,0x5e9c,0x8150,0x8d74,0x526f,0x8986,0x8d4b,0x590d,0x5085,0x4ed8 + ,0x961c,0x7236,0x8179,0x8d1f,0x5bcc,0x8ba3,0x9644,0x5987,0x7f1a,0x5490,0x5676 + ,0x560e,0x8be5,0x6539,0x6982,0x9499,0x76d6,0x6e89,0x5e72,0x7518,0x6746,0x67d1 + ,0x7aff,0x809d,0x8d76,0x611f,0x79c6,0x6562,0x8d63,0x5188,0x521a,0x94a2,0x7f38 + ,0x809b,0x7eb2,0x5c97,0x6e2f,0x6760,0x7bd9,0x768b,0x9ad8,0x818f,0x7f94,0x7cd5 + ,0x641e,0x9550,0x7a3f,0x544a,0x54e5,0x6b4c,0x6401,0x6208,0x9e3d,0x80f3,0x7599 + ,0x5272,0x9769,0x845b,0x683c,0x86e4,0x9601,0x9694,0x94ec,0x4e2a,0x5404,0x7ed9 + ,0x6839,0x8ddf,0x8015,0x66f4,0x5e9a,0x7fb9}, + {0x57c2,0x803f,0x6897,0x5de5,0x653b,0x529f,0x606d,0x9f9a,0x4f9b,0x8eac,0x516c + ,0x5bab,0x5f13,0x5de9,0x6c5e,0x62f1,0x8d21,0x5171,0x94a9,0x52fe,0x6c9f,0x82df + ,0x72d7,0x57a2,0x6784,0x8d2d,0x591f,0x8f9c,0x83c7,0x5495,0x7b8d,0x4f30,0x6cbd + ,0x5b64,0x59d1,0x9f13,0x53e4,0x86ca,0x9aa8,0x8c37,0x80a1,0x6545,0x987e,0x56fa + ,0x96c7,0x522e,0x74dc,0x5250,0x5be1,0x6302,0x8902,0x4e56,0x62d0,0x602a,0x68fa + ,0x5173,0x5b98,0x51a0,0x89c2,0x7ba1,0x9986,0x7f50,0x60ef,0x704c,0x8d2f,0x5149 + ,0x5e7f,0x901b,0x7470,0x89c4,0x572d,0x7845,0x5f52,0x9f9f,0x95fa,0x8f68,0x9b3c + ,0x8be1,0x7678,0x6842,0x67dc,0x8dea,0x8d35,0x523d,0x8f8a,0x6eda,0x68cd,0x9505 + ,0x90ed,0x56fd,0x679c,0x88f9,0x8fc7,0x54c8}, + {0x9ab8,0x5b69,0x6d77,0x6c26,0x4ea5,0x5bb3,0x9a87,0x9163,0x61a8,0x90af,0x97e9 + ,0x542b,0x6db5,0x5bd2,0x51fd,0x558a,0x7f55,0x7ff0,0x64bc,0x634d,0x65f1,0x61be + ,0x608d,0x710a,0x6c57,0x6c49,0x592f,0x676d,0x822a,0x58d5,0x568e,0x8c6a,0x6beb + ,0x90dd,0x597d,0x8017,0x53f7,0x6d69,0x5475,0x559d,0x8377,0x83cf,0x6838,0x79be + ,0x548c,0x4f55,0x5408,0x76d2,0x8c89,0x9602,0x6cb3,0x6db8,0x8d6b,0x8910,0x9e64 + ,0x8d3a,0x563f,0x9ed1,0x75d5,0x5f88,0x72e0,0x6068,0x54fc,0x4ea8,0x6a2a,0x8861 + ,0x6052,0x8f70,0x54c4,0x70d8,0x8679,0x9e3f,0x6d2a,0x5b8f,0x5f18,0x7ea2,0x5589 + ,0x4faf,0x7334,0x543c,0x539a,0x5019,0x540e,0x547c,0x4e4e,0x5ffd,0x745a,0x58f6 + ,0x846b,0x80e1,0x8774,0x72d0,0x7cca,0x6e56}, + {0x5f27,0x864e,0x552c,0x62a4,0x4e92,0x6caa,0x6237,0x82b1,0x54d7,0x534e,0x733e + ,0x6ed1,0x753b,0x5212,0x5316,0x8bdd,0x69d0,0x5f8a,0x6000,0x6dee,0x574f,0x6b22 + ,0x73af,0x6853,0x8fd8,0x7f13,0x6362,0x60a3,0x5524,0x75ea,0x8c62,0x7115,0x6da3 + ,0x5ba6,0x5e7b,0x8352,0x614c,0x9ec4,0x78fa,0x8757,0x7c27,0x7687,0x51f0,0x60f6 + ,0x714c,0x6643,0x5e4c,0x604d,0x8c0e,0x7070,0x6325,0x8f89,0x5fbd,0x6062,0x86d4 + ,0x56de,0x6bc1,0x6094,0x6167,0x5349,0x60e0,0x6666,0x8d3f,0x79fd,0x4f1a,0x70e9 + ,0x6c47,0x8bb3,0x8bf2,0x7ed8,0x8364,0x660f,0x5a5a,0x9b42,0x6d51,0x6df7,0x8c41 + ,0x6d3b,0x4f19,0x706b,0x83b7,0x6216,0x60d1,0x970d,0x8d27,0x7978,0x51fb,0x573e + ,0x57fa,0x673a,0x7578,0x7a3d,0x79ef,0x7b95}, + {0x808c,0x9965,0x8ff9,0x6fc0,0x8ba5,0x9e21,0x59ec,0x7ee9,0x7f09,0x5409,0x6781 + ,0x68d8,0x8f91,0x7c4d,0x96c6,0x53ca,0x6025,0x75be,0x6c72,0x5373,0x5ac9,0x7ea7 + ,0x6324,0x51e0,0x810a,0x5df1,0x84df,0x6280,0x5180,0x5b63,0x4f0e,0x796d,0x5242 + ,0x60b8,0x6d4e,0x5bc4,0x5bc2,0x8ba1,0x8bb0,0x65e2,0x5fcc,0x9645,0x5993,0x7ee7 + ,0x7eaa,0x5609,0x67b7,0x5939,0x4f73,0x5bb6,0x52a0,0x835a,0x988a,0x8d3e,0x7532 + ,0x94be,0x5047,0x7a3c,0x4ef7,0x67b6,0x9a7e,0x5ac1,0x6b7c,0x76d1,0x575a,0x5c16 + ,0x7b3a,0x95f4,0x714e,0x517c,0x80a9,0x8270,0x5978,0x7f04,0x8327,0x68c0,0x67ec + ,0x78b1,0x7877,0x62e3,0x6361,0x7b80,0x4fed,0x526a,0x51cf,0x8350,0x69db,0x9274 + ,0x8df5,0x8d31,0x89c1,0x952e,0x7bad,0x4ef6}, + {0x5065,0x8230,0x5251,0x996f,0x6e10,0x6e85,0x6da7,0x5efa,0x50f5,0x59dc,0x5c06 + ,0x6d46,0x6c5f,0x7586,0x848b,0x6868,0x5956,0x8bb2,0x5320,0x9171,0x964d,0x8549 + ,0x6912,0x7901,0x7126,0x80f6,0x4ea4,0x90ca,0x6d47,0x9a84,0x5a07,0x56bc,0x6405 + ,0x94f0,0x77eb,0x4fa5,0x811a,0x72e1,0x89d2,0x997a,0x7f34,0x7ede,0x527f,0x6559 + ,0x9175,0x8f7f,0x8f83,0x53eb,0x7a96,0x63ed,0x63a5,0x7686,0x79f8,0x8857,0x9636 + ,0x622a,0x52ab,0x8282,0x6854,0x6770,0x6377,0x776b,0x7aed,0x6d01,0x7ed3,0x89e3 + ,0x59d0,0x6212,0x85c9,0x82a5,0x754c,0x501f,0x4ecb,0x75a5,0x8beb,0x5c4a,0x5dfe + ,0x7b4b,0x65a4,0x91d1,0x4eca,0x6d25,0x895f,0x7d27,0x9526,0x4ec5,0x8c28,0x8fdb + ,0x9773,0x664b,0x7981,0x8fd1,0x70ec,0x6d78}, + {0x5c3d,0x52b2,0x8346,0x5162,0x830e,0x775b,0x6676,0x9cb8,0x4eac,0x60ca,0x7cbe + ,0x7cb3,0x7ecf,0x4e95,0x8b66,0x666f,0x9888,0x9759,0x5883,0x656c,0x955c,0x5f84 + ,0x75c9,0x9756,0x7adf,0x7ade,0x51c0,0x70af,0x7a98,0x63ea,0x7a76,0x7ea0,0x7396 + ,0x97ed,0x4e45,0x7078,0x4e5d,0x9152,0x53a9,0x6551,0x65e7,0x81fc,0x8205,0x548e + ,0x5c31,0x759a,0x97a0,0x62d8,0x72d9,0x75bd,0x5c45,0x9a79,0x83ca,0x5c40,0x5480 + ,0x77e9,0x4e3e,0x6cae,0x805a,0x62d2,0x636e,0x5de8,0x5177,0x8ddd,0x8e1e,0x952f + ,0x4ff1,0x53e5,0x60e7,0x70ac,0x5267,0x6350,0x9e43,0x5a1f,0x5026,0x7737,0x5377 + ,0x7ee2,0x6485,0x652b,0x6289,0x6398,0x5014,0x7235,0x89c9,0x51b3,0x8bc0,0x7edd + ,0x5747,0x83cc,0x94a7,0x519b,0x541b,0x5cfb}, + {0x4fca,0x7ae3,0x6d5a,0x90e1,0x9a8f,0x5580,0x5496,0x5361,0x54af,0x5f00,0x63e9 + ,0x6977,0x51ef,0x6168,0x520a,0x582a,0x52d8,0x574e,0x780d,0x770b,0x5eb7,0x6177 + ,0x7ce0,0x625b,0x6297,0x4ea2,0x7095,0x8003,0x62f7,0x70e4,0x9760,0x5777,0x82db + ,0x67ef,0x68f5,0x78d5,0x9897,0x79d1,0x58f3,0x54b3,0x53ef,0x6e34,0x514b,0x523b + ,0x5ba2,0x8bfe,0x80af,0x5543,0x57a6,0x6073,0x5751,0x542d,0x7a7a,0x6050,0x5b54 + ,0x63a7,0x62a0,0x53e3,0x6263,0x5bc7,0x67af,0x54ed,0x7a9f,0x82e6,0x9177,0x5e93 + ,0x88e4,0x5938,0x57ae,0x630e,0x8de8,0x80ef,0x5757,0x7b77,0x4fa9,0x5feb,0x5bbd + ,0x6b3e,0x5321,0x7b50,0x72c2,0x6846,0x77ff,0x7736,0x65f7,0x51b5,0x4e8f,0x76d4 + ,0x5cbf,0x7aa5,0x8475,0x594e,0x9b41,0x5080}, + {0x9988,0x6127,0x6e83,0x5764,0x6606,0x6346,0x56f0,0x62ec,0x6269,0x5ed3,0x9614 + ,0x5783,0x62c9,0x5587,0x8721,0x814a,0x8fa3,0x5566,0x83b1,0x6765,0x8d56,0x84dd + ,0x5a6a,0x680f,0x62e6,0x7bee,0x9611,0x5170,0x6f9c,0x8c30,0x63fd,0x89c8,0x61d2 + ,0x7f06,0x70c2,0x6ee5,0x7405,0x6994,0x72fc,0x5eca,0x90ce,0x6717,0x6d6a,0x635e + ,0x52b3,0x7262,0x8001,0x4f6c,0x59e5,0x916a,0x70d9,0x6d9d,0x52d2,0x4e50,0x96f7 + ,0x956d,0x857e,0x78ca,0x7d2f,0x5121,0x5792,0x64c2,0x808b,0x7c7b,0x6cea,0x68f1 + ,0x695e,0x51b7,0x5398,0x68a8,0x7281,0x9ece,0x7bf1,0x72f8,0x79bb,0x6f13,0x7406 + ,0x674e,0x91cc,0x9ca4,0x793c,0x8389,0x8354,0x540f,0x6817,0x4e3d,0x5389,0x52b1 + ,0x783e,0x5386,0x5229,0x5088,0x4f8b,0x4fd0}, + {0x75e2,0x7acb,0x7c92,0x6ca5,0x96b6,0x529b,0x7483,0x54e9,0x4fe9,0x8054,0x83b2 + ,0x8fde,0x9570,0x5ec9,0x601c,0x6d9f,0x5e18,0x655b,0x8138,0x94fe,0x604b,0x70bc + ,0x7ec3,0x7cae,0x51c9,0x6881,0x7cb1,0x826f,0x4e24,0x8f86,0x91cf,0x667e,0x4eae + ,0x8c05,0x64a9,0x804a,0x50da,0x7597,0x71ce,0x5be5,0x8fbd,0x6f66,0x4e86,0x6482 + ,0x9563,0x5ed6,0x6599,0x5217,0x88c2,0x70c8,0x52a3,0x730e,0x7433,0x6797,0x78f7 + ,0x9716,0x4e34,0x90bb,0x9cde,0x6dcb,0x51db,0x8d41,0x541d,0x62ce,0x73b2,0x83f1 + ,0x96f6,0x9f84,0x94c3,0x4f36,0x7f9a,0x51cc,0x7075,0x9675,0x5cad,0x9886,0x53e6 + ,0x4ee4,0x6e9c,0x7409,0x69b4,0x786b,0x998f,0x7559,0x5218,0x7624,0x6d41,0x67f3 + ,0x516d,0x9f99,0x804b,0x5499,0x7b3c,0x7abf}, + {0x9686,0x5784,0x62e2,0x9647,0x697c,0x5a04,0x6402,0x7bd3,0x6f0f,0x964b,0x82a6 + ,0x5362,0x9885,0x5e90,0x7089,0x63b3,0x5364,0x864f,0x9c81,0x9e93,0x788c,0x9732 + ,0x8def,0x8d42,0x9e7f,0x6f5e,0x7984,0x5f55,0x9646,0x622e,0x9a74,0x5415,0x94dd + ,0x4fa3,0x65c5,0x5c65,0x5c61,0x7f15,0x8651,0x6c2f,0x5f8b,0x7387,0x6ee4,0x7eff + ,0x5ce6,0x631b,0x5b6a,0x6ee6,0x5375,0x4e71,0x63a0,0x7565,0x62a1,0x8f6e,0x4f26 + ,0x4ed1,0x6ca6,0x7eb6,0x8bba,0x841d,0x87ba,0x7f57,0x903b,0x9523,0x7ba9,0x9aa1 + ,0x88f8,0x843d,0x6d1b,0x9a86,0x7edc,0x5988,0x9ebb,0x739b,0x7801,0x8682,0x9a6c + ,0x9a82,0x561b,0x5417,0x57cb,0x4e70,0x9ea6,0x5356,0x8fc8,0x8109,0x7792,0x9992 + ,0x86ee,0x6ee1,0x8513,0x66fc,0x6162,0x6f2b}, + {0x8c29,0x8292,0x832b,0x76f2,0x6c13,0x5fd9,0x83bd,0x732b,0x8305,0x951a,0x6bdb + ,0x77db,0x94c6,0x536f,0x8302,0x5192,0x5e3d,0x8c8c,0x8d38,0x4e48,0x73ab,0x679a + ,0x6885,0x9176,0x9709,0x7164,0x6ca1,0x7709,0x5a92,0x9541,0x6bcf,0x7f8e,0x6627 + ,0x5bd0,0x59b9,0x5a9a,0x95e8,0x95f7,0x4eec,0x840c,0x8499,0x6aac,0x76df,0x9530 + ,0x731b,0x68a6,0x5b5f,0x772f,0x919a,0x9761,0x7cdc,0x8ff7,0x8c1c,0x5f25,0x7c73 + ,0x79d8,0x89c5,0x6ccc,0x871c,0x5bc6,0x5e42,0x68c9,0x7720,0x7ef5,0x5195,0x514d + ,0x52c9,0x5a29,0x7f05,0x9762,0x82d7,0x63cf,0x7784,0x85d0,0x79d2,0x6e3a,0x5e99 + ,0x5999,0x8511,0x706d,0x6c11,0x62bf,0x76bf,0x654f,0x60af,0x95fd,0x660e,0x879f + ,0x9e23,0x94ed,0x540d,0x547d,0x8c2c,0x6478}, + {0x6479,0x8611,0x6a21,0x819c,0x78e8,0x6469,0x9b54,0x62b9,0x672b,0x83ab,0x58a8 + ,0x9ed8,0x6cab,0x6f20,0x5bde,0x964c,0x8c0b,0x725f,0x67d0,0x62c7,0x7261,0x4ea9 + ,0x59c6,0x6bcd,0x5893,0x66ae,0x5e55,0x52df,0x6155,0x6728,0x76ee,0x7766,0x7267 + ,0x7a46,0x62ff,0x54ea,0x5450,0x94a0,0x90a3,0x5a1c,0x7eb3,0x6c16,0x4e43,0x5976 + ,0x8010,0x5948,0x5357,0x7537,0x96be,0x56ca,0x6320,0x8111,0x607c,0x95f9,0x6dd6 + ,0x5462,0x9981,0x5185,0x5ae9,0x80fd,0x59ae,0x9713,0x502a,0x6ce5,0x5c3c,0x62df + ,0x4f60,0x533f,0x817b,0x9006,0x6eba,0x852b,0x62c8,0x5e74,0x78be,0x64b5,0x637b + ,0x5ff5,0x5a18,0x917f,0x9e1f,0x5c3f,0x634f,0x8042,0x5b7d,0x556e,0x954a,0x954d + ,0x6d85,0x60a8,0x67e0,0x72de,0x51dd,0x5b81}, + {0x62e7,0x6cde,0x725b,0x626d,0x94ae,0x7ebd,0x8113,0x6d53,0x519c,0x5f04,0x5974 + ,0x52aa,0x6012,0x5973,0x6696,0x8650,0x759f,0x632a,0x61e6,0x7cef,0x8bfa,0x54e6 + ,0x6b27,0x9e25,0x6bb4,0x85d5,0x5455,0x5076,0x6ca4,0x556a,0x8db4,0x722c,0x5e15 + ,0x6015,0x7436,0x62cd,0x6392,0x724c,0x5f98,0x6e43,0x6d3e,0x6500,0x6f58,0x76d8 + ,0x78d0,0x76fc,0x7554,0x5224,0x53db,0x4e53,0x5e9e,0x65c1,0x802a,0x80d6,0x629b + ,0x5486,0x5228,0x70ae,0x888d,0x8dd1,0x6ce1,0x5478,0x80da,0x57f9,0x88f4,0x8d54 + ,0x966a,0x914d,0x4f69,0x6c9b,0x55b7,0x76c6,0x7830,0x62a8,0x70f9,0x6f8e,0x5f6d + ,0x84ec,0x68da,0x787c,0x7bf7,0x81a8,0x670b,0x9e4f,0x6367,0x78b0,0x576f,0x7812 + ,0x9739,0x6279,0x62ab,0x5288,0x7435,0x6bd7}, + {0x5564,0x813e,0x75b2,0x76ae,0x5339,0x75de,0x50fb,0x5c41,0x8b6c,0x7bc7,0x504f + ,0x7247,0x9a97,0x98d8,0x6f02,0x74e2,0x7968,0x6487,0x77a5,0x62fc,0x9891,0x8d2b + ,0x54c1,0x8058,0x4e52,0x576a,0x82f9,0x840d,0x5e73,0x51ed,0x74f6,0x8bc4,0x5c4f + ,0x5761,0x6cfc,0x9887,0x5a46,0x7834,0x9b44,0x8feb,0x7c95,0x5256,0x6251,0x94fa + ,0x4ec6,0x8386,0x8461,0x83e9,0x84b2,0x57d4,0x6734,0x5703,0x666e,0x6d66,0x8c31 + ,0x66dd,0x7011,0x671f,0x6b3a,0x6816,0x621a,0x59bb,0x4e03,0x51c4,0x6f06,0x67d2 + ,0x6c8f,0x5176,0x68cb,0x5947,0x6b67,0x7566,0x5d0e,0x8110,0x9f50,0x65d7,0x7948 + ,0x7941,0x9a91,0x8d77,0x5c82,0x4e5e,0x4f01,0x542f,0x5951,0x780c,0x5668,0x6c14 + ,0x8fc4,0x5f03,0x6c7d,0x6ce3,0x8bab,0x6390}, + {0x6070,0x6d3d,0x7275,0x6266,0x948e,0x94c5,0x5343,0x8fc1,0x7b7e,0x4edf,0x8c26 + ,0x4e7e,0x9ed4,0x94b1,0x94b3,0x524d,0x6f5c,0x9063,0x6d45,0x8c34,0x5811,0x5d4c + ,0x6b20,0x6b49,0x67aa,0x545b,0x8154,0x7f8c,0x5899,0x8537,0x5f3a,0x62a2,0x6a47 + ,0x9539,0x6572,0x6084,0x6865,0x77a7,0x4e54,0x4fa8,0x5de7,0x9798,0x64ac,0x7fd8 + ,0x5ced,0x4fcf,0x7a8d,0x5207,0x8304,0x4e14,0x602f,0x7a83,0x94a6,0x4fb5,0x4eb2 + ,0x79e6,0x7434,0x52e4,0x82b9,0x64d2,0x79bd,0x5bdd,0x6c81,0x9752,0x8f7b,0x6c22 + ,0x503e,0x537f,0x6e05,0x64ce,0x6674,0x6c30,0x60c5,0x9877,0x8bf7,0x5e86,0x743c + ,0x7a77,0x79cb,0x4e18,0x90b1,0x7403,0x6c42,0x56da,0x914b,0x6cc5,0x8d8b,0x533a + ,0x86c6,0x66f2,0x8eaf,0x5c48,0x9a71,0x6e20}, + {0x53d6,0x5a36,0x9f8b,0x8da3,0x53bb,0x5708,0x98a7,0x6743,0x919b,0x6cc9,0x5168 + ,0x75ca,0x62f3,0x72ac,0x5238,0x529d,0x7f3a,0x7094,0x7638,0x5374,0x9e4a,0x69b7 + ,0x786e,0x96c0,0x88d9,0x7fa4,0x7136,0x71c3,0x5189,0x67d3,0x74e4,0x58e4,0x6518 + ,0x56b7,0x8ba9,0x9976,0x6270,0x7ed5,0x60f9,0x70ed,0x58ec,0x4ec1,0x4eba,0x5fcd + ,0x97e7,0x4efb,0x8ba4,0x5203,0x598a,0x7eab,0x6254,0x4ecd,0x65e5,0x620e,0x8338 + ,0x84c9,0x8363,0x878d,0x7194,0x6eb6,0x5bb9,0x7ed2,0x5197,0x63c9,0x67d4,0x8089 + ,0x8339,0x8815,0x5112,0x5b7a,0x5982,0x8fb1,0x4e73,0x6c5d,0x5165,0x8925,0x8f6f + ,0x962e,0x854a,0x745e,0x9510,0x95f0,0x6da6,0x82e5,0x5f31,0x6492,0x6d12,0x8428 + ,0x816e,0x9cc3,0x585e,0x8d5b,0x4e09,0x53c1}, + {0x4f1e,0x6563,0x6851,0x55d3,0x4e27,0x6414,0x9a9a,0x626b,0x5ac2,0x745f,0x8272 + ,0x6da9,0x68ee,0x50e7,0x838e,0x7802,0x6740,0x5239,0x6c99,0x7eb1,0x50bb,0x5565 + ,0x715e,0x7b5b,0x6652,0x73ca,0x82eb,0x6749,0x5c71,0x5220,0x717d,0x886b,0x95ea + ,0x9655,0x64c5,0x8d61,0x81b3,0x5584,0x6c55,0x6247,0x7f2e,0x5892,0x4f24,0x5546 + ,0x8d4f,0x664c,0x4e0a,0x5c1a,0x88f3,0x68a2,0x634e,0x7a0d,0x70e7,0x828d,0x52fa + ,0x97f6,0x5c11,0x54e8,0x90b5,0x7ecd,0x5962,0x8d4a,0x86c7,0x820c,0x820d,0x8d66 + ,0x6444,0x5c04,0x6151,0x6d89,0x793e,0x8bbe,0x7837,0x7533,0x547b,0x4f38,0x8eab + ,0x6df1,0x5a20,0x7ec5,0x795e,0x6c88,0x5ba1,0x5a76,0x751a,0x80be,0x614e,0x6e17 + ,0x58f0,0x751f,0x7525,0x7272,0x5347,0x7ef3}, + {0x7701,0x76db,0x5269,0x80dc,0x5723,0x5e08,0x5931,0x72ee,0x65bd,0x6e7f,0x8bd7 + ,0x5c38,0x8671,0x5341,0x77f3,0x62fe,0x65f6,0x4ec0,0x98df,0x8680,0x5b9e,0x8bc6 + ,0x53f2,0x77e2,0x4f7f,0x5c4e,0x9a76,0x59cb,0x5f0f,0x793a,0x58eb,0x4e16,0x67ff + ,0x4e8b,0x62ed,0x8a93,0x901d,0x52bf,0x662f,0x55dc,0x566c,0x9002,0x4ed5,0x4f8d + ,0x91ca,0x9970,0x6c0f,0x5e02,0x6043,0x5ba4,0x89c6,0x8bd5,0x6536,0x624b,0x9996 + ,0x5b88,0x5bff,0x6388,0x552e,0x53d7,0x7626,0x517d,0x852c,0x67a2,0x68b3,0x6b8a + ,0x6292,0x8f93,0x53d4,0x8212,0x6dd1,0x758f,0x4e66,0x8d4e,0x5b70,0x719f,0x85af + ,0x6691,0x66d9,0x7f72,0x8700,0x9ecd,0x9f20,0x5c5e,0x672f,0x8ff0,0x6811,0x675f + ,0x620d,0x7ad6,0x5885,0x5eb6,0x6570,0x6f31}, + {0x6055,0x5237,0x800d,0x6454,0x8870,0x7529,0x5e05,0x6813,0x62f4,0x971c,0x53cc + ,0x723d,0x8c01,0x6c34,0x7761,0x7a0e,0x542e,0x77ac,0x987a,0x821c,0x8bf4,0x7855 + ,0x6714,0x70c1,0x65af,0x6495,0x5636,0x601d,0x79c1,0x53f8,0x4e1d,0x6b7b,0x8086 + ,0x5bfa,0x55e3,0x56db,0x4f3a,0x4f3c,0x9972,0x5df3,0x677e,0x8038,0x6002,0x9882 + ,0x9001,0x5b8b,0x8bbc,0x8bf5,0x641c,0x8258,0x64de,0x55fd,0x82cf,0x9165,0x4fd7 + ,0x7d20,0x901f,0x7c9f,0x50f3,0x5851,0x6eaf,0x5bbf,0x8bc9,0x8083,0x9178,0x849c + ,0x7b97,0x867d,0x968b,0x968f,0x7ee5,0x9ad3,0x788e,0x5c81,0x7a57,0x9042,0x96a7 + ,0x795f,0x5b59,0x635f,0x7b0b,0x84d1,0x68ad,0x5506,0x7f29,0x7410,0x7d22,0x9501 + ,0x6240,0x584c,0x4ed6,0x5b83,0x5979,0x5854}, + {0x736d,0x631e,0x8e4b,0x8e0f,0x80ce,0x82d4,0x62ac,0x53f0,0x6cf0,0x915e,0x592a + ,0x6001,0x6c70,0x574d,0x644a,0x8d2a,0x762b,0x6ee9,0x575b,0x6a80,0x75f0,0x6f6d + ,0x8c2d,0x8c08,0x5766,0x6bef,0x8892,0x78b3,0x63a2,0x53f9,0x70ad,0x6c64,0x5858 + ,0x642a,0x5802,0x68e0,0x819b,0x5510,0x7cd6,0x5018,0x8eba,0x6dcc,0x8d9f,0x70eb + ,0x638f,0x6d9b,0x6ed4,0x7ee6,0x8404,0x6843,0x9003,0x6dd8,0x9676,0x8ba8,0x5957 + ,0x7279,0x85e4,0x817e,0x75bc,0x8a8a,0x68af,0x5254,0x8e22,0x9511,0x63d0,0x9898 + ,0x8e44,0x557c,0x4f53,0x66ff,0x568f,0x60d5,0x6d95,0x5243,0x5c49,0x5929,0x6dfb + ,0x586b,0x7530,0x751c,0x606c,0x8214,0x8146,0x6311,0x6761,0x8fe2,0x773a,0x8df3 + ,0x8d34,0x94c1,0x5e16,0x5385,0x542c,0x70c3}, + {0x6c40,0x5ef7,0x505c,0x4ead,0x5ead,0x633a,0x8247,0x901a,0x6850,0x916e,0x77b3 + ,0x540c,0x94dc,0x5f64,0x7ae5,0x6876,0x6345,0x7b52,0x7edf,0x75db,0x5077,0x6295 + ,0x5934,0x900f,0x51f8,0x79c3,0x7a81,0x56fe,0x5f92,0x9014,0x6d82,0x5c60,0x571f + ,0x5410,0x5154,0x6e4d,0x56e2,0x63a8,0x9893,0x817f,0x8715,0x892a,0x9000,0x541e + ,0x5c6f,0x81c0,0x62d6,0x6258,0x8131,0x9e35,0x9640,0x9a6e,0x9a7c,0x692d,0x59a5 + ,0x62d3,0x553e,0x6316,0x54c7,0x86d9,0x6d3c,0x5a03,0x74e6,0x889c,0x6b6a,0x5916 + ,0x8c4c,0x5f2f,0x6e7e,0x73a9,0x987d,0x4e38,0x70f7,0x5b8c,0x7897,0x633d,0x665a + ,0x7696,0x60cb,0x5b9b,0x5a49,0x4e07,0x8155,0x6c6a,0x738b,0x4ea1,0x6789,0x7f51 + ,0x5f80,0x65fa,0x671b,0x5fd8,0x5984,0x5a01}, + {0x5dcd,0x5fae,0x5371,0x97e6,0x8fdd,0x6845,0x56f4,0x552f,0x60df,0x4e3a,0x6f4d + ,0x7ef4,0x82c7,0x840e,0x59d4,0x4f1f,0x4f2a,0x5c3e,0x7eac,0x672a,0x851a,0x5473 + ,0x754f,0x80c3,0x5582,0x9b4f,0x4f4d,0x6e2d,0x8c13,0x5c09,0x6170,0x536b,0x761f + ,0x6e29,0x868a,0x6587,0x95fb,0x7eb9,0x543b,0x7a33,0x7d0a,0x95ee,0x55e1,0x7fc1 + ,0x74ee,0x631d,0x8717,0x6da1,0x7a9d,0x6211,0x65a1,0x5367,0x63e1,0x6c83,0x5deb + ,0x545c,0x94a8,0x4e4c,0x6c61,0x8bec,0x5c4b,0x65e0,0x829c,0x68a7,0x543e,0x5434 + ,0x6bcb,0x6b66,0x4e94,0x6342,0x5348,0x821e,0x4f0d,0x4fae,0x575e,0x620a,0x96fe + ,0x6664,0x7269,0x52ff,0x52a1,0x609f,0x8bef,0x6614,0x7199,0x6790,0x897f,0x7852 + ,0x77fd,0x6670,0x563b,0x5438,0x9521,0x727a}, + {0x7a00,0x606f,0x5e0c,0x6089,0x819d,0x5915,0x60dc,0x7184,0x70ef,0x6eaa,0x6c50 + ,0x7280,0x6a84,0x88ad,0x5e2d,0x4e60,0x5ab3,0x559c,0x94e3,0x6d17,0x7cfb,0x9699 + ,0x620f,0x7ec6,0x778e,0x867e,0x5323,0x971e,0x8f96,0x6687,0x5ce1,0x4fa0,0x72ed + ,0x4e0b,0x53a6,0x590f,0x5413,0x6380,0x9528,0x5148,0x4ed9,0x9c9c,0x7ea4,0x54b8 + ,0x8d24,0x8854,0x8237,0x95f2,0x6d8e,0x5f26,0x5acc,0x663e,0x9669,0x73b0,0x732e + ,0x53bf,0x817a,0x9985,0x7fa1,0x5baa,0x9677,0x9650,0x7ebf,0x76f8,0x53a2,0x9576 + ,0x9999,0x7bb1,0x8944,0x6e58,0x4e61,0x7fd4,0x7965,0x8be6,0x60f3,0x54cd,0x4eab + ,0x9879,0x5df7,0x6a61,0x50cf,0x5411,0x8c61,0x8427,0x785d,0x9704,0x524a,0x54ee + ,0x56a3,0x9500,0x6d88,0x5bb5,0x6dc6,0x6653}, + {0x5c0f,0x5b5d,0x6821,0x8096,0x5578,0x7b11,0x6548,0x6954,0x4e9b,0x6b47,0x874e + ,0x978b,0x534f,0x631f,0x643a,0x90aa,0x659c,0x80c1,0x8c10,0x5199,0x68b0,0x5378 + ,0x87f9,0x61c8,0x6cc4,0x6cfb,0x8c22,0x5c51,0x85aa,0x82af,0x950c,0x6b23,0x8f9b + ,0x65b0,0x5ffb,0x5fc3,0x4fe1,0x8845,0x661f,0x8165,0x7329,0x60fa,0x5174,0x5211 + ,0x578b,0x5f62,0x90a2,0x884c,0x9192,0x5e78,0x674f,0x6027,0x59d3,0x5144,0x51f6 + ,0x80f8,0x5308,0x6c79,0x96c4,0x718a,0x4f11,0x4fee,0x7f9e,0x673d,0x55c5,0x9508 + ,0x79c0,0x8896,0x7ee3,0x589f,0x620c,0x9700,0x865a,0x5618,0x987b,0x5f90,0x8bb8 + ,0x84c4,0x9157,0x53d9,0x65ed,0x5e8f,0x755c,0x6064,0x7d6e,0x5a7f,0x7eea,0x7eed + ,0x8f69,0x55a7,0x5ba3,0x60ac,0x65cb,0x7384}, + {0x9009,0x7663,0x7729,0x7eda,0x9774,0x859b,0x5b66,0x7a74,0x96ea,0x8840,0x52cb + ,0x718f,0x5faa,0x65ec,0x8be2,0x5bfb,0x9a6f,0x5de1,0x6b89,0x6c5b,0x8bad,0x8baf + ,0x900a,0x8fc5,0x538b,0x62bc,0x9e26,0x9e2d,0x5440,0x4e2b,0x82bd,0x7259,0x869c + ,0x5d16,0x8859,0x6daf,0x96c5,0x54d1,0x4e9a,0x8bb6,0x7109,0x54bd,0x9609,0x70df + ,0x6df9,0x76d0,0x4e25,0x7814,0x8712,0x5ca9,0x5ef6,0x8a00,0x989c,0x960e,0x708e + ,0x6cbf,0x5944,0x63a9,0x773c,0x884d,0x6f14,0x8273,0x5830,0x71d5,0x538c,0x781a + ,0x96c1,0x5501,0x5f66,0x7130,0x5bb4,0x8c1a,0x9a8c,0x6b83,0x592e,0x9e2f,0x79e7 + ,0x6768,0x626c,0x4f6f,0x75a1,0x7f8a,0x6d0b,0x9633,0x6c27,0x4ef0,0x75d2,0x517b + ,0x6837,0x6f3e,0x9080,0x8170,0x5996,0x7476}, + {0x6447,0x5c27,0x9065,0x7a91,0x8c23,0x59da,0x54ac,0x8200,0x836f,0x8981,0x8000 + ,0x6930,0x564e,0x8036,0x7237,0x91ce,0x51b6,0x4e5f,0x9875,0x6396,0x4e1a,0x53f6 + ,0x66f3,0x814b,0x591c,0x6db2,0x4e00,0x58f9,0x533b,0x63d6,0x94f1,0x4f9d,0x4f0a + ,0x8863,0x9890,0x5937,0x9057,0x79fb,0x4eea,0x80f0,0x7591,0x6c82,0x5b9c,0x59e8 + ,0x5f5d,0x6905,0x8681,0x501a,0x5df2,0x4e59,0x77e3,0x4ee5,0x827a,0x6291,0x6613 + ,0x9091,0x5c79,0x4ebf,0x5f79,0x81c6,0x9038,0x8084,0x75ab,0x4ea6,0x88d4,0x610f + ,0x6bc5,0x5fc6,0x4e49,0x76ca,0x6ea2,0x8be3,0x8bae,0x8c0a,0x8bd1,0x5f02,0x7ffc + ,0x7fcc,0x7ece,0x8335,0x836b,0x56e0,0x6bb7,0x97f3,0x9634,0x59fb,0x541f,0x94f6 + ,0x6deb,0x5bc5,0x996e,0x5c39,0x5f15,0x9690}, + {0x5370,0x82f1,0x6a31,0x5a74,0x9e70,0x5e94,0x7f28,0x83b9,0x8424,0x8425,0x8367 + ,0x8747,0x8fce,0x8d62,0x76c8,0x5f71,0x9896,0x786c,0x6620,0x54df,0x62e5,0x4f63 + ,0x81c3,0x75c8,0x5eb8,0x96cd,0x8e0a,0x86f9,0x548f,0x6cf3,0x6d8c,0x6c38,0x607f + ,0x52c7,0x7528,0x5e7d,0x4f18,0x60a0,0x5fe7,0x5c24,0x7531,0x90ae,0x94c0,0x72b9 + ,0x6cb9,0x6e38,0x9149,0x6709,0x53cb,0x53f3,0x4f51,0x91c9,0x8bf1,0x53c8,0x5e7c + ,0x8fc2,0x6de4,0x4e8e,0x76c2,0x6986,0x865e,0x611a,0x8206,0x4f59,0x4fde,0x903e + ,0x9c7c,0x6109,0x6e1d,0x6e14,0x9685,0x4e88,0x5a31,0x96e8,0x4e0e,0x5c7f,0x79b9 + ,0x5b87,0x8bed,0x7fbd,0x7389,0x57df,0x828b,0x90c1,0x5401,0x9047,0x55bb,0x5cea + ,0x5fa1,0x6108,0x6b32,0x72f1,0x80b2,0x8a89}, + {0x6d74,0x5bd3,0x88d5,0x9884,0x8c6b,0x9a6d,0x9e33,0x6e0a,0x51a4,0x5143,0x57a3 + ,0x8881,0x539f,0x63f4,0x8f95,0x56ed,0x5458,0x5706,0x733f,0x6e90,0x7f18,0x8fdc + ,0x82d1,0x613f,0x6028,0x9662,0x66f0,0x7ea6,0x8d8a,0x8dc3,0x94a5,0x5cb3,0x7ca4 + ,0x6708,0x60a6,0x9605,0x8018,0x4e91,0x90e7,0x5300,0x9668,0x5141,0x8fd0,0x8574 + ,0x915d,0x6655,0x97f5,0x5b55,0x531d,0x7838,0x6742,0x683d,0x54c9,0x707e,0x5bb0 + ,0x8f7d,0x518d,0x5728,0x54b1,0x6512,0x6682,0x8d5e,0x8d43,0x810f,0x846c,0x906d + ,0x7cdf,0x51ff,0x85fb,0x67a3,0x65e9,0x6fa1,0x86a4,0x8e81,0x566a,0x9020,0x7682 + ,0x7076,0x71e5,0x8d23,0x62e9,0x5219,0x6cfd,0x8d3c,0x600e,0x589e,0x618e,0x66fe + ,0x8d60,0x624e,0x55b3,0x6e23,0x672d,0x8f67}, + {0x94e1,0x95f8,0x7728,0x6805,0x69a8,0x548b,0x4e4d,0x70b8,0x8bc8,0x6458,0x658b + ,0x5b85,0x7a84,0x503a,0x5be8,0x77bb,0x6be1,0x8a79,0x7c98,0x6cbe,0x76cf,0x65a9 + ,0x8f97,0x5d2d,0x5c55,0x8638,0x6808,0x5360,0x6218,0x7ad9,0x6e5b,0x7efd,0x6a1f + ,0x7ae0,0x5f70,0x6f33,0x5f20,0x638c,0x6da8,0x6756,0x4e08,0x5e10,0x8d26,0x4ed7 + ,0x80c0,0x7634,0x969c,0x62db,0x662d,0x627e,0x6cbc,0x8d75,0x7167,0x7f69,0x5146 + ,0x8087,0x53ec,0x906e,0x6298,0x54f2,0x86f0,0x8f99,0x8005,0x9517,0x8517,0x8fd9 + ,0x6d59,0x73cd,0x659f,0x771f,0x7504,0x7827,0x81fb,0x8d1e,0x9488,0x4fa6,0x6795 + ,0x75b9,0x8bca,0x9707,0x632f,0x9547,0x9635,0x84b8,0x6323,0x7741,0x5f81,0x72f0 + ,0x4e89,0x6014,0x6574,0x62ef,0x6b63,0x653f}, + {0x5e27,0x75c7,0x90d1,0x8bc1,0x829d,0x679d,0x652f,0x5431,0x8718,0x77e5,0x80a2 + ,0x8102,0x6c41,0x4e4b,0x7ec7,0x804c,0x76f4,0x690d,0x6b96,0x6267,0x503c,0x4f84 + ,0x5740,0x6307,0x6b62,0x8dbe,0x53ea,0x65e8,0x7eb8,0x5fd7,0x631a,0x63b7,0x81f3 + ,0x81f4,0x7f6e,0x5e1c,0x5cd9,0x5236,0x667a,0x79e9,0x7a1a,0x8d28,0x7099,0x75d4 + ,0x6ede,0x6cbb,0x7a92,0x4e2d,0x76c5,0x5fe0,0x949f,0x8877,0x7ec8,0x79cd,0x80bf + ,0x91cd,0x4ef2,0x4f17,0x821f,0x5468,0x5dde,0x6d32,0x8bcc,0x7ca5,0x8f74,0x8098 + ,0x5e1a,0x5492,0x76b1,0x5b99,0x663c,0x9aa4,0x73e0,0x682a,0x86db,0x6731,0x732a + ,0x8bf8,0x8bdb,0x9010,0x7af9,0x70db,0x716e,0x62c4,0x77a9,0x5631,0x4e3b,0x8457 + ,0x67f1,0x52a9,0x86c0,0x8d2e,0x94f8,0x7b51}, + {0x4f4f,0x6ce8,0x795d,0x9a7b,0x6293,0x722a,0x62fd,0x4e13,0x7816,0x8f6c,0x64b0 + ,0x8d5a,0x7bc6,0x6869,0x5e84,0x88c5,0x5986,0x649e,0x58ee,0x72b6,0x690e,0x9525 + ,0x8ffd,0x8d58,0x5760,0x7f00,0x8c06,0x51c6,0x6349,0x62d9,0x5353,0x684c,0x7422 + ,0x8301,0x914c,0x5544,0x7740,0x707c,0x6d4a,0x5179,0x54a8,0x8d44,0x59ff,0x6ecb + ,0x6dc4,0x5b5c,0x7d2b,0x4ed4,0x7c7d,0x6ed3,0x5b50,0x81ea,0x6e0d,0x5b57,0x9b03 + ,0x68d5,0x8e2a,0x5b97,0x7efc,0x603b,0x7eb5,0x90b9,0x8d70,0x594f,0x63cd,0x79df + ,0x8db3,0x5352,0x65cf,0x7956,0x8bc5,0x963b,0x7ec4,0x94bb,0x7e82,0x5634,0x9189 + ,0x6700,0x7f6a,0x5c0a,0x9075,0x6628,0x5de6,0x4f50,0x67de,0x505a,0x4f5c,0x5750 + ,0x5ea7,-1,-1,-1,-1,-1}, + {0x4e8d,0x4e0c,0x5140,0x4e10,0x5eff,0x5345,0x4e15,0x4e98,0x4e1e,0x9b32,0x5b6c + ,0x5669,0x4e28,0x79ba,0x4e3f,0x5315,0x4e47,0x592d,0x723b,0x536e,0x6c10,0x56df + ,0x80e4,0x9997,0x6bd3,0x777e,0x9f17,0x4e36,0x4e9f,0x9f10,0x4e5c,0x4e69,0x4e93 + ,0x8288,0x5b5b,0x556c,0x560f,0x4ec4,0x538d,0x539d,0x53a3,0x53a5,0x53ae,0x9765 + ,0x8d5d,0x531a,0x53f5,0x5326,0x532e,0x533e,0x8d5c,0x5366,0x5363,0x5202,0x5208 + ,0x520e,0x522d,0x5233,0x523f,0x5240,0x524c,0x525e,0x5261,0x525c,0x84af,0x527d + ,0x5282,0x5281,0x5290,0x5293,0x5182,0x7f54,0x4ebb,0x4ec3,0x4ec9,0x4ec2,0x4ee8 + ,0x4ee1,0x4eeb,0x4ede,0x4f1b,0x4ef3,0x4f22,0x4f64,0x4ef5,0x4f25,0x4f27,0x4f09 + ,0x4f2b,0x4f5e,0x4f67,0x6538,0x4f5a,0x4f5d}, + {0x4f5f,0x4f57,0x4f32,0x4f3d,0x4f76,0x4f74,0x4f91,0x4f89,0x4f83,0x4f8f,0x4f7e + ,0x4f7b,0x4faa,0x4f7c,0x4fac,0x4f94,0x4fe6,0x4fe8,0x4fea,0x4fc5,0x4fda,0x4fe3 + ,0x4fdc,0x4fd1,0x4fdf,0x4ff8,0x5029,0x504c,0x4ff3,0x502c,0x500f,0x502e,0x502d + ,0x4ffe,0x501c,0x500c,0x5025,0x5028,0x507e,0x5043,0x5055,0x5048,0x504e,0x506c + ,0x507b,0x50a5,0x50a7,0x50a9,0x50ba,0x50d6,0x5106,0x50ed,0x50ec,0x50e6,0x50ee + ,0x5107,0x510b,0x4edd,0x6c3d,0x4f58,0x4f65,0x4fce,0x9fa0,0x6c46,0x7c74,0x516e + ,0x5dfd,0x9ec9,0x9998,0x5181,0x5914,0x52f9,0x530d,0x8a07,0x5310,0x51eb,0x5919 + ,0x5155,0x4ea0,0x5156,0x4eb3,0x886e,0x88a4,0x4eb5,0x8114,0x88d2,0x7980,0x5b34 + ,0x8803,0x7fb8,0x51ab,0x51b1,0x51bd,0x51bc}, + {0x51c7,0x5196,0x51a2,0x51a5,0x8ba0,0x8ba6,0x8ba7,0x8baa,0x8bb4,0x8bb5,0x8bb7 + ,0x8bc2,0x8bc3,0x8bcb,0x8bcf,0x8bce,0x8bd2,0x8bd3,0x8bd4,0x8bd6,0x8bd8,0x8bd9 + ,0x8bdc,0x8bdf,0x8be0,0x8be4,0x8be8,0x8be9,0x8bee,0x8bf0,0x8bf3,0x8bf6,0x8bf9 + ,0x8bfc,0x8bff,0x8c00,0x8c02,0x8c04,0x8c07,0x8c0c,0x8c0f,0x8c11,0x8c12,0x8c14 + ,0x8c15,0x8c16,0x8c19,0x8c1b,0x8c18,0x8c1d,0x8c1f,0x8c20,0x8c21,0x8c25,0x8c27 + ,0x8c2a,0x8c2b,0x8c2e,0x8c2f,0x8c32,0x8c33,0x8c35,0x8c36,0x5369,0x537a,0x961d + ,0x9622,0x9621,0x9631,0x962a,0x963d,0x963c,0x9642,0x9649,0x9654,0x965f,0x9667 + ,0x966c,0x9672,0x9674,0x9688,0x968d,0x9697,0x96b0,0x9097,0x909b,0x909d,0x9099 + ,0x90ac,0x90a1,0x90b4,0x90b3,0x90b6,0x90ba}, + {0x90b8,0x90b0,0x90cf,0x90c5,0x90be,0x90d0,0x90c4,0x90c7,0x90d3,0x90e6,0x90e2 + ,0x90dc,0x90d7,0x90db,0x90eb,0x90ef,0x90fe,0x9104,0x9122,0x911e,0x9123,0x9131 + ,0x912f,0x9139,0x9143,0x9146,0x520d,0x5942,0x52a2,0x52ac,0x52ad,0x52be,0x54ff + ,0x52d0,0x52d6,0x52f0,0x53df,0x71ee,0x77cd,0x5ef4,0x51f5,0x51fc,0x9b2f,0x53b6 + ,0x5f01,0x755a,0x5def,0x574c,0x57a9,0x57a1,0x587e,0x58bc,0x58c5,0x58d1,0x5729 + ,0x572c,0x572a,0x5733,0x5739,0x572e,0x572f,0x575c,0x573b,0x5742,0x5769,0x5785 + ,0x576b,0x5786,0x577c,0x577b,0x5768,0x576d,0x5776,0x5773,0x57ad,0x57a4,0x578c + ,0x57b2,0x57cf,0x57a7,0x57b4,0x5793,0x57a0,0x57d5,0x57d8,0x57da,0x57d9,0x57d2 + ,0x57b8,0x57f4,0x57ef,0x57f8,0x57e4,0x57dd}, + {0x580b,0x580d,0x57fd,0x57ed,0x5800,0x581e,0x5819,0x5844,0x5820,0x5865,0x586c + ,0x5881,0x5889,0x589a,0x5880,0x99a8,0x9f19,0x61ff,0x8279,0x827d,0x827f,0x828f + ,0x828a,0x82a8,0x8284,0x828e,0x8291,0x8297,0x8299,0x82ab,0x82b8,0x82be,0x82b0 + ,0x82c8,0x82ca,0x82e3,0x8298,0x82b7,0x82ae,0x82cb,0x82cc,0x82c1,0x82a9,0x82b4 + ,0x82a1,0x82aa,0x829f,0x82c4,0x82ce,0x82a4,0x82e1,0x8309,0x82f7,0x82e4,0x830f + ,0x8307,0x82dc,0x82f4,0x82d2,0x82d8,0x830c,0x82fb,0x82d3,0x8311,0x831a,0x8306 + ,0x8314,0x8315,0x82e0,0x82d5,0x831c,0x8351,0x835b,0x835c,0x8308,0x8392,0x833c + ,0x8334,0x8331,0x839b,0x835e,0x832f,0x834f,0x8347,0x8343,0x835f,0x8340,0x8317 + ,0x8360,0x832d,0x833a,0x8333,0x8366,0x8365}, + {0x8368,0x831b,0x8369,0x836c,0x836a,0x836d,0x836e,0x83b0,0x8378,0x83b3,0x83b4 + ,0x83a0,0x83aa,0x8393,0x839c,0x8385,0x837c,0x83b6,0x83a9,0x837d,0x83b8,0x837b + ,0x8398,0x839e,0x83a8,0x83ba,0x83bc,0x83c1,0x8401,0x83e5,0x83d8,0x5807,0x8418 + ,0x840b,0x83dd,0x83fd,0x83d6,0x841c,0x8438,0x8411,0x8406,0x83d4,0x83df,0x840f + ,0x8403,0x83f8,0x83f9,0x83ea,0x83c5,0x83c0,0x8426,0x83f0,0x83e1,0x845c,0x8451 + ,0x845a,0x8459,0x8473,0x8487,0x8488,0x847a,0x8489,0x8478,0x843c,0x8446,0x8469 + ,0x8476,0x848c,0x848e,0x8431,0x846d,0x84c1,0x84cd,0x84d0,0x84e6,0x84bd,0x84d3 + ,0x84ca,0x84bf,0x84ba,0x84e0,0x84a1,0x84b9,0x84b4,0x8497,0x84e5,0x84e3,0x850c + ,0x750d,0x8538,0x84f0,0x8539,0x851f,0x853a}, + {0x8556,0x853b,0x84ff,0x84fc,0x8559,0x8548,0x8568,0x8564,0x855e,0x857a,0x77a2 + ,0x8543,0x8572,0x857b,0x85a4,0x85a8,0x8587,0x858f,0x8579,0x85ae,0x859c,0x8585 + ,0x85b9,0x85b7,0x85b0,0x85d3,0x85c1,0x85dc,0x85ff,0x8627,0x8605,0x8629,0x8616 + ,0x863c,0x5efe,0x5f08,0x593c,0x5941,0x8037,0x5955,0x595a,0x5958,0x530f,0x5c22 + ,0x5c25,0x5c2c,0x5c34,0x624c,0x626a,0x629f,0x62bb,0x62ca,0x62da,0x62d7,0x62ee + ,0x6322,0x62f6,0x6339,0x634b,0x6343,0x63ad,0x63f6,0x6371,0x637a,0x638e,0x63b4 + ,0x636d,0x63ac,0x638a,0x6369,0x63ae,0x63bc,0x63f2,0x63f8,0x63e0,0x63ff,0x63c4 + ,0x63de,0x63ce,0x6452,0x63c6,0x63be,0x6445,0x6441,0x640b,0x641b,0x6420,0x640c + ,0x6426,0x6421,0x645e,0x6484,0x646d,0x6496}, + {0x647a,0x64b7,0x64b8,0x6499,0x64ba,0x64c0,0x64d0,0x64d7,0x64e4,0x64e2,0x6509 + ,0x6525,0x652e,0x5f0b,0x5fd2,0x7519,0x5f11,0x535f,0x53f1,0x53fd,0x53e9,0x53e8 + ,0x53fb,0x5412,0x5416,0x5406,0x544b,0x5452,0x5453,0x5454,0x5456,0x5443,0x5421 + ,0x5457,0x5459,0x5423,0x5432,0x5482,0x5494,0x5477,0x5471,0x5464,0x549a,0x549b + ,0x5484,0x5476,0x5466,0x549d,0x54d0,0x54ad,0x54c2,0x54b4,0x54d2,0x54a7,0x54a6 + ,0x54d3,0x54d4,0x5472,0x54a3,0x54d5,0x54bb,0x54bf,0x54cc,0x54d9,0x54da,0x54dc + ,0x54a9,0x54aa,0x54a4,0x54dd,0x54cf,0x54de,0x551b,0x54e7,0x5520,0x54fd,0x5514 + ,0x54f3,0x5522,0x5523,0x550f,0x5511,0x5527,0x552a,0x5567,0x558f,0x55b5,0x5549 + ,0x556d,0x5541,0x5555,0x553f,0x5550,0x553c}, + {0x5537,0x5556,0x5575,0x5576,0x5577,0x5533,0x5530,0x555c,0x558b,0x55d2,0x5583 + ,0x55b1,0x55b9,0x5588,0x5581,0x559f,0x557e,0x55d6,0x5591,0x557b,0x55df,0x55bd + ,0x55be,0x5594,0x5599,0x55ea,0x55f7,0x55c9,0x561f,0x55d1,0x55eb,0x55ec,0x55d4 + ,0x55e6,0x55dd,0x55c4,0x55ef,0x55e5,0x55f2,0x55f3,0x55cc,0x55cd,0x55e8,0x55f5 + ,0x55e4,0x8f94,0x561e,0x5608,0x560c,0x5601,0x5624,0x5623,0x55fe,0x5600,0x5627 + ,0x562d,0x5658,0x5639,0x5657,0x562c,0x564d,0x5662,0x5659,0x565c,0x564c,0x5654 + ,0x5686,0x5664,0x5671,0x566b,0x567b,0x567c,0x5685,0x5693,0x56af,0x56d4,0x56d7 + ,0x56dd,0x56e1,0x56f5,0x56eb,0x56f9,0x56ff,0x5704,0x570a,0x5709,0x571c,0x5e0f + ,0x5e19,0x5e14,0x5e11,0x5e31,0x5e3b,0x5e3c}, + {0x5e37,0x5e44,0x5e54,0x5e5b,0x5e5e,0x5e61,0x5c8c,0x5c7a,0x5c8d,0x5c90,0x5c96 + ,0x5c88,0x5c98,0x5c99,0x5c91,0x5c9a,0x5c9c,0x5cb5,0x5ca2,0x5cbd,0x5cac,0x5cab + ,0x5cb1,0x5ca3,0x5cc1,0x5cb7,0x5cc4,0x5cd2,0x5ce4,0x5ccb,0x5ce5,0x5d02,0x5d03 + ,0x5d27,0x5d26,0x5d2e,0x5d24,0x5d1e,0x5d06,0x5d1b,0x5d58,0x5d3e,0x5d34,0x5d3d + ,0x5d6c,0x5d5b,0x5d6f,0x5d5d,0x5d6b,0x5d4b,0x5d4a,0x5d69,0x5d74,0x5d82,0x5d99 + ,0x5d9d,0x8c73,0x5db7,0x5dc5,0x5f73,0x5f77,0x5f82,0x5f87,0x5f89,0x5f8c,0x5f95 + ,0x5f99,0x5f9c,0x5fa8,0x5fad,0x5fb5,0x5fbc,0x8862,0x5f61,0x72ad,0x72b0,0x72b4 + ,0x72b7,0x72b8,0x72c3,0x72c1,0x72ce,0x72cd,0x72d2,0x72e8,0x72ef,0x72e9,0x72f2 + ,0x72f4,0x72f7,0x7301,0x72f3,0x7303,0x72fa}, + {0x72fb,0x7317,0x7313,0x7321,0x730a,0x731e,0x731d,0x7315,0x7322,0x7339,0x7325 + ,0x732c,0x7338,0x7331,0x7350,0x734d,0x7357,0x7360,0x736c,0x736f,0x737e,0x821b + ,0x5925,0x98e7,0x5924,0x5902,0x9963,0x9967,0x9968,0x9969,0x996a,0x996b,0x996c + ,0x9974,0x9977,0x997d,0x9980,0x9984,0x9987,0x998a,0x998d,0x9990,0x9991,0x9993 + ,0x9994,0x9995,0x5e80,0x5e91,0x5e8b,0x5e96,0x5ea5,0x5ea0,0x5eb9,0x5eb5,0x5ebe + ,0x5eb3,0x8d53,0x5ed2,0x5ed1,0x5edb,0x5ee8,0x5eea,0x81ba,0x5fc4,0x5fc9,0x5fd6 + ,0x5fcf,0x6003,0x5fee,0x6004,0x5fe1,0x5fe4,0x5ffe,0x6005,0x6006,0x5fea,0x5fed + ,0x5ff8,0x6019,0x6035,0x6026,0x601b,0x600f,0x600d,0x6029,0x602b,0x600a,0x603f + ,0x6021,0x6078,0x6079,0x607b,0x607a,0x6042}, + {0x606a,0x607d,0x6096,0x609a,0x60ad,0x609d,0x6083,0x6092,0x608c,0x609b,0x60ec + ,0x60bb,0x60b1,0x60dd,0x60d8,0x60c6,0x60da,0x60b4,0x6120,0x6126,0x6115,0x6123 + ,0x60f4,0x6100,0x610e,0x612b,0x614a,0x6175,0x61ac,0x6194,0x61a7,0x61b7,0x61d4 + ,0x61f5,0x5fdd,0x96b3,0x95e9,0x95eb,0x95f1,0x95f3,0x95f5,0x95f6,0x95fc,0x95fe + ,0x9603,0x9604,0x9606,0x9608,0x960a,0x960b,0x960c,0x960d,0x960f,0x9612,0x9615 + ,0x9616,0x9617,0x9619,0x961a,0x4e2c,0x723f,0x6215,0x6c35,0x6c54,0x6c5c,0x6c4a + ,0x6ca3,0x6c85,0x6c90,0x6c94,0x6c8c,0x6c68,0x6c69,0x6c74,0x6c76,0x6c86,0x6ca9 + ,0x6cd0,0x6cd4,0x6cad,0x6cf7,0x6cf8,0x6cf1,0x6cd7,0x6cb2,0x6ce0,0x6cd6,0x6cfa + ,0x6ceb,0x6cee,0x6cb1,0x6cd3,0x6cef,0x6cfe}, + {0x6d39,0x6d27,0x6d0c,0x6d43,0x6d48,0x6d07,0x6d04,0x6d19,0x6d0e,0x6d2b,0x6d4d + ,0x6d2e,0x6d35,0x6d1a,0x6d4f,0x6d52,0x6d54,0x6d33,0x6d91,0x6d6f,0x6d9e,0x6da0 + ,0x6d5e,0x6d93,0x6d94,0x6d5c,0x6d60,0x6d7c,0x6d63,0x6e1a,0x6dc7,0x6dc5,0x6dde + ,0x6e0e,0x6dbf,0x6de0,0x6e11,0x6de6,0x6ddd,0x6dd9,0x6e16,0x6dab,0x6e0c,0x6dae + ,0x6e2b,0x6e6e,0x6e4e,0x6e6b,0x6eb2,0x6e5f,0x6e86,0x6e53,0x6e54,0x6e32,0x6e25 + ,0x6e44,0x6edf,0x6eb1,0x6e98,0x6ee0,0x6f2d,0x6ee2,0x6ea5,0x6ea7,0x6ebd,0x6ebb + ,0x6eb7,0x6ed7,0x6eb4,0x6ecf,0x6e8f,0x6ec2,0x6e9f,0x6f62,0x6f46,0x6f47,0x6f24 + ,0x6f15,0x6ef9,0x6f2f,0x6f36,0x6f4b,0x6f74,0x6f2a,0x6f09,0x6f29,0x6f89,0x6f8d + ,0x6f8c,0x6f78,0x6f72,0x6f7c,0x6f7a,0x6fd1}, + {0x6fc9,0x6fa7,0x6fb9,0x6fb6,0x6fc2,0x6fe1,0x6fee,0x6fde,0x6fe0,0x6fef,0x701a + ,0x7023,0x701b,0x7039,0x7035,0x704f,0x705e,0x5b80,0x5b84,0x5b95,0x5b93,0x5ba5 + ,0x5bb8,0x752f,0x9a9e,0x6434,0x5be4,0x5bee,0x8930,0x5bf0,0x8e47,0x8b07,0x8fb6 + ,0x8fd3,0x8fd5,0x8fe5,0x8fee,0x8fe4,0x8fe9,0x8fe6,0x8ff3,0x8fe8,0x9005,0x9004 + ,0x900b,0x9026,0x9011,0x900d,0x9016,0x9021,0x9035,0x9036,0x902d,0x902f,0x9044 + ,0x9051,0x9052,0x9050,0x9068,0x9058,0x9062,0x905b,0x66b9,0x9074,0x907d,0x9082 + ,0x9088,0x9083,0x908b,0x5f50,0x5f57,0x5f56,0x5f58,0x5c3b,0x54ab,0x5c50,0x5c59 + ,0x5b71,0x5c63,0x5c66,0x7fbc,0x5f2a,0x5f29,0x5f2d,0x8274,0x5f3c,0x9b3b,0x5c6e + ,0x5981,0x5983,0x598d,0x59a9,0x59aa,0x59a3}, + {0x5997,0x59ca,0x59ab,0x599e,0x59a4,0x59d2,0x59b2,0x59af,0x59d7,0x59be,0x5a05 + ,0x5a06,0x59dd,0x5a08,0x59e3,0x59d8,0x59f9,0x5a0c,0x5a09,0x5a32,0x5a34,0x5a11 + ,0x5a23,0x5a13,0x5a40,0x5a67,0x5a4a,0x5a55,0x5a3c,0x5a62,0x5a75,0x80ec,0x5aaa + ,0x5a9b,0x5a77,0x5a7a,0x5abe,0x5aeb,0x5ab2,0x5ad2,0x5ad4,0x5ab8,0x5ae0,0x5ae3 + ,0x5af1,0x5ad6,0x5ae6,0x5ad8,0x5adc,0x5b09,0x5b17,0x5b16,0x5b32,0x5b37,0x5b40 + ,0x5c15,0x5c1c,0x5b5a,0x5b65,0x5b73,0x5b51,0x5b53,0x5b62,0x9a75,0x9a77,0x9a78 + ,0x9a7a,0x9a7f,0x9a7d,0x9a80,0x9a81,0x9a85,0x9a88,0x9a8a,0x9a90,0x9a92,0x9a93 + ,0x9a96,0x9a98,0x9a9b,0x9a9c,0x9a9d,0x9a9f,0x9aa0,0x9aa2,0x9aa3,0x9aa5,0x9aa7 + ,0x7e9f,0x7ea1,0x7ea3,0x7ea5,0x7ea8,0x7ea9}, + {0x7ead,0x7eb0,0x7ebe,0x7ec0,0x7ec1,0x7ec2,0x7ec9,0x7ecb,0x7ecc,0x7ed0,0x7ed4 + ,0x7ed7,0x7edb,0x7ee0,0x7ee1,0x7ee8,0x7eeb,0x7eee,0x7eef,0x7ef1,0x7ef2,0x7f0d + ,0x7ef6,0x7efa,0x7efb,0x7efe,0x7f01,0x7f02,0x7f03,0x7f07,0x7f08,0x7f0b,0x7f0c + ,0x7f0f,0x7f11,0x7f12,0x7f17,0x7f19,0x7f1c,0x7f1b,0x7f1f,0x7f21,0x7f22,0x7f23 + ,0x7f24,0x7f25,0x7f26,0x7f27,0x7f2a,0x7f2b,0x7f2c,0x7f2d,0x7f2f,0x7f30,0x7f31 + ,0x7f32,0x7f33,0x7f35,0x5e7a,0x757f,0x5ddb,0x753e,0x9095,0x738e,0x7391,0x73ae + ,0x73a2,0x739f,0x73cf,0x73c2,0x73d1,0x73b7,0x73b3,0x73c0,0x73c9,0x73c8,0x73e5 + ,0x73d9,0x987c,0x740a,0x73e9,0x73e7,0x73de,0x73ba,0x73f2,0x740f,0x742a,0x745b + ,0x7426,0x7425,0x7428,0x7430,0x742e,0x742c}, + {0x741b,0x741a,0x7441,0x745c,0x7457,0x7455,0x7459,0x7477,0x746d,0x747e,0x749c + ,0x748e,0x7480,0x7481,0x7487,0x748b,0x749e,0x74a8,0x74a9,0x7490,0x74a7,0x74d2 + ,0x74ba,0x97ea,0x97eb,0x97ec,0x674c,0x6753,0x675e,0x6748,0x6769,0x67a5,0x6787 + ,0x676a,0x6773,0x6798,0x67a7,0x6775,0x67a8,0x679e,0x67ad,0x678b,0x6777,0x677c + ,0x67f0,0x6809,0x67d8,0x680a,0x67e9,0x67b0,0x680c,0x67d9,0x67b5,0x67da,0x67b3 + ,0x67dd,0x6800,0x67c3,0x67b8,0x67e2,0x680e,0x67c1,0x67fd,0x6832,0x6833,0x6860 + ,0x6861,0x684e,0x6862,0x6844,0x6864,0x6883,0x681d,0x6855,0x6866,0x6841,0x6867 + ,0x6840,0x683e,0x684a,0x6849,0x6829,0x68b5,0x688f,0x6874,0x6877,0x6893,0x686b + ,0x68c2,0x696e,0x68fc,0x691f,0x6920,0x68f9}, + {0x6924,0x68f0,0x690b,0x6901,0x6957,0x68e3,0x6910,0x6971,0x6939,0x6960,0x6942 + ,0x695d,0x6984,0x696b,0x6980,0x6998,0x6978,0x6934,0x69cc,0x6987,0x6988,0x69ce + ,0x6989,0x6966,0x6963,0x6979,0x699b,0x69a7,0x69bb,0x69ab,0x69ad,0x69d4,0x69b1 + ,0x69c1,0x69ca,0x69df,0x6995,0x69e0,0x698d,0x69ff,0x6a2f,0x69ed,0x6a17,0x6a18 + ,0x6a65,0x69f2,0x6a44,0x6a3e,0x6aa0,0x6a50,0x6a5b,0x6a35,0x6a8e,0x6a79,0x6a3d + ,0x6a28,0x6a58,0x6a7c,0x6a91,0x6a90,0x6aa9,0x6a97,0x6aab,0x7337,0x7352,0x6b81 + ,0x6b82,0x6b87,0x6b84,0x6b92,0x6b93,0x6b8d,0x6b9a,0x6b9b,0x6ba1,0x6baa,0x8f6b + ,0x8f6d,0x8f71,0x8f72,0x8f73,0x8f75,0x8f76,0x8f78,0x8f77,0x8f79,0x8f7a,0x8f7c + ,0x8f7e,0x8f81,0x8f82,0x8f84,0x8f87,0x8f8b}, + {0x8f8d,0x8f8e,0x8f8f,0x8f98,0x8f9a,0x8ece,0x620b,0x6217,0x621b,0x621f,0x6222 + ,0x6221,0x6225,0x6224,0x622c,0x81e7,0x74ef,0x74f4,0x74ff,0x750f,0x7511,0x7513 + ,0x6534,0x65ee,0x65ef,0x65f0,0x660a,0x6619,0x6772,0x6603,0x6615,0x6600,0x7085 + ,0x66f7,0x661d,0x6634,0x6631,0x6636,0x6635,0x8006,0x665f,0x6654,0x6641,0x664f + ,0x6656,0x6661,0x6657,0x6677,0x6684,0x668c,0x66a7,0x669d,0x66be,0x66db,0x66dc + ,0x66e6,0x66e9,0x8d32,0x8d33,0x8d36,0x8d3b,0x8d3d,0x8d40,0x8d45,0x8d46,0x8d48 + ,0x8d49,0x8d47,0x8d4d,0x8d55,0x8d59,0x89c7,0x89ca,0x89cb,0x89cc,0x89ce,0x89cf + ,0x89d0,0x89d1,0x726e,0x729f,0x725d,0x7266,0x726f,0x727e,0x727f,0x7284,0x728b + ,0x728d,0x728f,0x7292,0x6308,0x6332,0x63b0}, + {0x643f,0x64d8,0x8004,0x6bea,0x6bf3,0x6bfd,0x6bf5,0x6bf9,0x6c05,0x6c07,0x6c06 + ,0x6c0d,0x6c15,0x6c18,0x6c19,0x6c1a,0x6c21,0x6c29,0x6c24,0x6c2a,0x6c32,0x6535 + ,0x6555,0x656b,0x724d,0x7252,0x7256,0x7230,0x8662,0x5216,0x809f,0x809c,0x8093 + ,0x80bc,0x670a,0x80bd,0x80b1,0x80ab,0x80ad,0x80b4,0x80b7,0x80e7,0x80e8,0x80e9 + ,0x80ea,0x80db,0x80c2,0x80c4,0x80d9,0x80cd,0x80d7,0x6710,0x80dd,0x80eb,0x80f1 + ,0x80f4,0x80ed,0x810d,0x810e,0x80f2,0x80fc,0x6715,0x8112,0x8c5a,0x8136,0x811e + ,0x812c,0x8118,0x8132,0x8148,0x814c,0x8153,0x8174,0x8159,0x815a,0x8171,0x8160 + ,0x8169,0x817c,0x817d,0x816d,0x8167,0x584d,0x5ab5,0x8188,0x8182,0x8191,0x6ed5 + ,0x81a3,0x81aa,0x81cc,0x6726,0x81ca,0x81bb}, + {0x81c1,0x81a6,0x6b24,0x6b37,0x6b39,0x6b43,0x6b46,0x6b59,0x98d1,0x98d2,0x98d3 + ,0x98d5,0x98d9,0x98da,0x6bb3,0x5f40,0x6bc2,0x89f3,0x6590,0x9f51,0x6593,0x65bc + ,0x65c6,0x65c4,0x65c3,0x65cc,0x65ce,0x65d2,0x65d6,0x7080,0x709c,0x7096,0x709d + ,0x70bb,0x70c0,0x70b7,0x70ab,0x70b1,0x70e8,0x70ca,0x7110,0x7113,0x7116,0x712f + ,0x7131,0x7173,0x715c,0x7168,0x7145,0x7172,0x714a,0x7178,0x717a,0x7198,0x71b3 + ,0x71b5,0x71a8,0x71a0,0x71e0,0x71d4,0x71e7,0x71f9,0x721d,0x7228,0x706c,0x7118 + ,0x7166,0x71b9,0x623e,0x623d,0x6243,0x6248,0x6249,0x793b,0x7940,0x7946,0x7949 + ,0x795b,0x795c,0x7953,0x795a,0x7962,0x7957,0x7960,0x796f,0x7967,0x797a,0x7985 + ,0x798a,0x799a,0x79a7,0x79b3,0x5fd1,0x5fd0}, + {0x603c,0x605d,0x605a,0x6067,0x6041,0x6059,0x6063,0x60ab,0x6106,0x610d,0x615d + ,0x61a9,0x619d,0x61cb,0x61d1,0x6206,0x8080,0x807f,0x6c93,0x6cf6,0x6dfc,0x77f6 + ,0x77f8,0x7800,0x7809,0x7817,0x7818,0x7811,0x65ab,0x782d,0x781c,0x781d,0x7839 + ,0x783a,0x783b,0x781f,0x783c,0x7825,0x782c,0x7823,0x7829,0x784e,0x786d,0x7856 + ,0x7857,0x7826,0x7850,0x7847,0x784c,0x786a,0x789b,0x7893,0x789a,0x7887,0x789c + ,0x78a1,0x78a3,0x78b2,0x78b9,0x78a5,0x78d4,0x78d9,0x78c9,0x78ec,0x78f2,0x7905 + ,0x78f4,0x7913,0x7924,0x791e,0x7934,0x9f9b,0x9ef9,0x9efb,0x9efc,0x76f1,0x7704 + ,0x770d,0x76f9,0x7707,0x7708,0x771a,0x7722,0x7719,0x772d,0x7726,0x7735,0x7738 + ,0x7750,0x7751,0x7747,0x7743,0x775a,0x7768}, + {0x7762,0x7765,0x777f,0x778d,0x777d,0x7780,0x778c,0x7791,0x779f,0x77a0,0x77b0 + ,0x77b5,0x77bd,0x753a,0x7540,0x754e,0x754b,0x7548,0x755b,0x7572,0x7579,0x7583 + ,0x7f58,0x7f61,0x7f5f,0x8a48,0x7f68,0x7f74,0x7f71,0x7f79,0x7f81,0x7f7e,0x76cd + ,0x76e5,0x8832,0x9485,0x9486,0x9487,0x948b,0x948a,0x948c,0x948d,0x948f,0x9490 + ,0x9494,0x9497,0x9495,0x949a,0x949b,0x949c,0x94a3,0x94a4,0x94ab,0x94aa,0x94ad + ,0x94ac,0x94af,0x94b0,0x94b2,0x94b4,0x94b6,0x94b7,0x94b8,0x94b9,0x94ba,0x94bc + ,0x94bd,0x94bf,0x94c4,0x94c8,0x94c9,0x94ca,0x94cb,0x94cc,0x94cd,0x94ce,0x94d0 + ,0x94d1,0x94d2,0x94d5,0x94d6,0x94d7,0x94d9,0x94d8,0x94db,0x94de,0x94df,0x94e0 + ,0x94e2,0x94e4,0x94e5,0x94e7,0x94e8,0x94ea}, + {0x94e9,0x94eb,0x94ee,0x94ef,0x94f3,0x94f4,0x94f5,0x94f7,0x94f9,0x94fc,0x94fd + ,0x94ff,0x9503,0x9502,0x9506,0x9507,0x9509,0x950a,0x950d,0x950e,0x950f,0x9512 + ,0x9513,0x9514,0x9515,0x9516,0x9518,0x951b,0x951d,0x951e,0x951f,0x9522,0x952a + ,0x952b,0x9529,0x952c,0x9531,0x9532,0x9534,0x9536,0x9537,0x9538,0x953c,0x953e + ,0x953f,0x9542,0x9535,0x9544,0x9545,0x9546,0x9549,0x954c,0x954e,0x954f,0x9552 + ,0x9553,0x9554,0x9556,0x9557,0x9558,0x9559,0x955b,0x955e,0x955f,0x955d,0x9561 + ,0x9562,0x9564,0x9565,0x9566,0x9567,0x9568,0x9569,0x956a,0x956b,0x956c,0x956f + ,0x9571,0x9572,0x9573,0x953a,0x77e7,0x77ec,0x96c9,0x79d5,0x79ed,0x79e3,0x79eb + ,0x7a06,0x5d47,0x7a03,0x7a02,0x7a1e,0x7a14}, + {0x7a39,0x7a37,0x7a51,0x9ecf,0x99a5,0x7a70,0x7688,0x768e,0x7693,0x7699,0x76a4 + ,0x74de,0x74e0,0x752c,0x9e20,0x9e22,0x9e28,0x9e29,0x9e2a,0x9e2b,0x9e2c,0x9e32 + ,0x9e31,0x9e36,0x9e38,0x9e37,0x9e39,0x9e3a,0x9e3e,0x9e41,0x9e42,0x9e44,0x9e46 + ,0x9e47,0x9e48,0x9e49,0x9e4b,0x9e4c,0x9e4e,0x9e51,0x9e55,0x9e57,0x9e5a,0x9e5b + ,0x9e5c,0x9e5e,0x9e63,0x9e66,0x9e67,0x9e68,0x9e69,0x9e6a,0x9e6b,0x9e6c,0x9e71 + ,0x9e6d,0x9e73,0x7592,0x7594,0x7596,0x75a0,0x759d,0x75ac,0x75a3,0x75b3,0x75b4 + ,0x75b8,0x75c4,0x75b1,0x75b0,0x75c3,0x75c2,0x75d6,0x75cd,0x75e3,0x75e8,0x75e6 + ,0x75e4,0x75eb,0x75e7,0x7603,0x75f1,0x75fc,0x75ff,0x7610,0x7600,0x7605,0x760c + ,0x7617,0x760a,0x7625,0x7618,0x7615,0x7619}, + {0x761b,0x763c,0x7622,0x7620,0x7640,0x762d,0x7630,0x763f,0x7635,0x7643,0x763e + ,0x7633,0x764d,0x765e,0x7654,0x765c,0x7656,0x766b,0x766f,0x7fca,0x7ae6,0x7a78 + ,0x7a79,0x7a80,0x7a86,0x7a88,0x7a95,0x7aa6,0x7aa0,0x7aac,0x7aa8,0x7aad,0x7ab3 + ,0x8864,0x8869,0x8872,0x887d,0x887f,0x8882,0x88a2,0x88c6,0x88b7,0x88bc,0x88c9 + ,0x88e2,0x88ce,0x88e3,0x88e5,0x88f1,0x891a,0x88fc,0x88e8,0x88fe,0x88f0,0x8921 + ,0x8919,0x8913,0x891b,0x890a,0x8934,0x892b,0x8936,0x8941,0x8966,0x897b,0x758b + ,0x80e5,0x76b2,0x76b4,0x77dc,0x8012,0x8014,0x8016,0x801c,0x8020,0x8022,0x8025 + ,0x8026,0x8027,0x8029,0x8028,0x8031,0x800b,0x8035,0x8043,0x8046,0x804d,0x8052 + ,0x8069,0x8071,0x8983,0x9878,0x9880,0x9883}, + {0x9889,0x988c,0x988d,0x988f,0x9894,0x989a,0x989b,0x989e,0x989f,0x98a1,0x98a2 + ,0x98a5,0x98a6,0x864d,0x8654,0x866c,0x866e,0x867f,0x867a,0x867c,0x867b,0x86a8 + ,0x868d,0x868b,0x86ac,0x869d,0x86a7,0x86a3,0x86aa,0x8693,0x86a9,0x86b6,0x86c4 + ,0x86b5,0x86ce,0x86b0,0x86ba,0x86b1,0x86af,0x86c9,0x86cf,0x86b4,0x86e9,0x86f1 + ,0x86f2,0x86ed,0x86f3,0x86d0,0x8713,0x86de,0x86f4,0x86df,0x86d8,0x86d1,0x8703 + ,0x8707,0x86f8,0x8708,0x870a,0x870d,0x8709,0x8723,0x873b,0x871e,0x8725,0x872e + ,0x871a,0x873e,0x8748,0x8734,0x8731,0x8729,0x8737,0x873f,0x8782,0x8722,0x877d + ,0x877e,0x877b,0x8760,0x8770,0x874c,0x876e,0x878b,0x8753,0x8763,0x877c,0x8764 + ,0x8759,0x8765,0x8793,0x87af,0x87a8,0x87d2}, + {0x87c6,0x8788,0x8785,0x87ad,0x8797,0x8783,0x87ab,0x87e5,0x87ac,0x87b5,0x87b3 + ,0x87cb,0x87d3,0x87bd,0x87d1,0x87c0,0x87ca,0x87db,0x87ea,0x87e0,0x87ee,0x8816 + ,0x8813,0x87fe,0x880a,0x881b,0x8821,0x8839,0x883c,0x7f36,0x7f42,0x7f44,0x7f45 + ,0x8210,0x7afa,0x7afd,0x7b08,0x7b03,0x7b04,0x7b15,0x7b0a,0x7b2b,0x7b0f,0x7b47 + ,0x7b38,0x7b2a,0x7b19,0x7b2e,0x7b31,0x7b20,0x7b25,0x7b24,0x7b33,0x7b3e,0x7b1e + ,0x7b58,0x7b5a,0x7b45,0x7b75,0x7b4c,0x7b5d,0x7b60,0x7b6e,0x7b7b,0x7b62,0x7b72 + ,0x7b71,0x7b90,0x7ba6,0x7ba7,0x7bb8,0x7bac,0x7b9d,0x7ba8,0x7b85,0x7baa,0x7b9c + ,0x7ba2,0x7bab,0x7bb4,0x7bd1,0x7bc1,0x7bcc,0x7bdd,0x7bda,0x7be5,0x7be6,0x7bea + ,0x7c0c,0x7bfe,0x7bfc,0x7c0f,0x7c16,0x7c0b}, + {0x7c1f,0x7c2a,0x7c26,0x7c38,0x7c41,0x7c40,0x81fe,0x8201,0x8202,0x8204,0x81ec + ,0x8844,0x8221,0x8222,0x8223,0x822d,0x822f,0x8228,0x822b,0x8238,0x823b,0x8233 + ,0x8234,0x823e,0x8244,0x8249,0x824b,0x824f,0x825a,0x825f,0x8268,0x887e,0x8885 + ,0x8888,0x88d8,0x88df,0x895e,0x7f9d,0x7f9f,0x7fa7,0x7faf,0x7fb0,0x7fb2,0x7c7c + ,0x6549,0x7c91,0x7c9d,0x7c9c,0x7c9e,0x7ca2,0x7cb2,0x7cbc,0x7cbd,0x7cc1,0x7cc7 + ,0x7ccc,0x7ccd,0x7cc8,0x7cc5,0x7cd7,0x7ce8,0x826e,0x66a8,0x7fbf,0x7fce,0x7fd5 + ,0x7fe5,0x7fe1,0x7fe6,0x7fe9,0x7fee,0x7ff3,0x7cf8,0x7d77,0x7da6,0x7dae,0x7e47 + ,0x7e9b,0x9eb8,0x9eb4,0x8d73,0x8d84,0x8d94,0x8d91,0x8db1,0x8d67,0x8d6d,0x8c47 + ,0x8c49,0x914a,0x9150,0x914e,0x914f,0x9164}, + {0x9162,0x9161,0x9170,0x9169,0x916f,0x917d,0x917e,0x9172,0x9174,0x9179,0x918c + ,0x9185,0x9190,0x918d,0x9191,0x91a2,0x91a3,0x91aa,0x91ad,0x91ae,0x91af,0x91b5 + ,0x91b4,0x91ba,0x8c55,0x9e7e,0x8db8,0x8deb,0x8e05,0x8e59,0x8e69,0x8db5,0x8dbf + ,0x8dbc,0x8dba,0x8dc4,0x8dd6,0x8dd7,0x8dda,0x8dde,0x8dce,0x8dcf,0x8ddb,0x8dc6 + ,0x8dec,0x8df7,0x8df8,0x8de3,0x8df9,0x8dfb,0x8de4,0x8e09,0x8dfd,0x8e14,0x8e1d + ,0x8e1f,0x8e2c,0x8e2e,0x8e23,0x8e2f,0x8e3a,0x8e40,0x8e39,0x8e35,0x8e3d,0x8e31 + ,0x8e49,0x8e41,0x8e42,0x8e51,0x8e52,0x8e4a,0x8e70,0x8e76,0x8e7c,0x8e6f,0x8e74 + ,0x8e85,0x8e8f,0x8e94,0x8e90,0x8e9c,0x8e9e,0x8c78,0x8c82,0x8c8a,0x8c85,0x8c98 + ,0x8c94,0x659b,0x89d6,0x89de,0x89da,0x89dc}, + {0x89e5,0x89eb,0x89ef,0x8a3e,0x8b26,0x9753,0x96e9,0x96f3,0x96ef,0x9706,0x9701 + ,0x9708,0x970f,0x970e,0x972a,0x972d,0x9730,0x973e,0x9f80,0x9f83,0x9f85,0x9f86 + ,0x9f87,0x9f88,0x9f89,0x9f8a,0x9f8c,0x9efe,0x9f0b,0x9f0d,0x96b9,0x96bc,0x96bd + ,0x96ce,0x96d2,0x77bf,0x96e0,0x928e,0x92ae,0x92c8,0x933e,0x936a,0x93ca,0x938f + ,0x943e,0x946b,0x9c7f,0x9c82,0x9c85,0x9c86,0x9c87,0x9c88,0x7a23,0x9c8b,0x9c8e + ,0x9c90,0x9c91,0x9c92,0x9c94,0x9c95,0x9c9a,0x9c9b,0x9c9e,0x9c9f,0x9ca0,0x9ca1 + ,0x9ca2,0x9ca3,0x9ca5,0x9ca6,0x9ca7,0x9ca8,0x9ca9,0x9cab,0x9cad,0x9cae,0x9cb0 + ,0x9cb1,0x9cb2,0x9cb3,0x9cb4,0x9cb5,0x9cb6,0x9cb7,0x9cba,0x9cbb,0x9cbc,0x9cbd + ,0x9cc4,0x9cc5,0x9cc6,0x9cc7,0x9cca,0x9ccb}, + {0x9ccc,0x9ccd,0x9cce,0x9ccf,0x9cd0,0x9cd3,0x9cd4,0x9cd5,0x9cd7,0x9cd8,0x9cd9 + ,0x9cdc,0x9cdd,0x9cdf,0x9ce2,0x977c,0x9785,0x9791,0x9792,0x9794,0x97af,0x97ab + ,0x97a3,0x97b2,0x97b4,0x9ab1,0x9ab0,0x9ab7,0x9e58,0x9ab6,0x9aba,0x9abc,0x9ac1 + ,0x9ac0,0x9ac5,0x9ac2,0x9acb,0x9acc,0x9ad1,0x9b45,0x9b43,0x9b47,0x9b49,0x9b48 + ,0x9b4d,0x9b51,0x98e8,0x990d,0x992e,0x9955,0x9954,0x9adf,0x9ae1,0x9ae6,0x9aef + ,0x9aeb,0x9afb,0x9aed,0x9af9,0x9b08,0x9b0f,0x9b13,0x9b1f,0x9b23,0x9ebd,0x9ebe + ,0x7e3b,0x9e82,0x9e87,0x9e88,0x9e8b,0x9e92,0x93d6,0x9e9d,0x9e9f,0x9edb,0x9edc + ,0x9edd,0x9ee0,0x9edf,0x9ee2,0x9ee9,0x9ee7,0x9ee5,0x9eea,0x9eef,0x9f22,0x9f2c + ,0x9f2f,0x9f39,0x9f37,0x9f3d,0x9f3e,0x9f44}}; + +gb2312_cp_to_index_record = + {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,41448,0,0,41452,41383,0,0,0,0,0,0,0,41443,41408,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41409, + 0,0,0,0,0,0,0,0,43172,43170,0,0,0,0,0,0,43176,43174,43194,0,43180,43178,0,0, + 0,0,43184,43182,0,0,0,41410,0,43188,43186,0,43193,0,0,0,0,43169,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,43173,0,0,0,0,0,0,0,43175,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,43177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43181, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43185,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43171,0,43179,0,43183,0,43187,0,43189,0,43190, + 0,43191,0,43192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,41382,0,41381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42657,42658,42659, + 42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672, + 42673,0,42674,42675,42676,42677,42678,42679,42680,0,0,0,0,0,0,0,42689,42690, + 42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703, + 42704,42705,0,42706,42707,42708,42709,42710,42711,42712,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,42919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42913,42914,42915,42916,42917, + 42918,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931, + 42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944, + 42945,42961,42962,42963,42964,42965,42966,42968,42969,42970,42971,42972,42973, + 42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986, + 42987,42988,42989,42990,42991,42992,42993,0,42967,41386,41388,0,41390,41391, + 0,0,41392,41393,0,0,0,0,0,0,0,0,41389,0,0,0,0,0,0,0,0,0,41451,0,41444,41445, + 0,0,0,0,0,0,0,41465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,41453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41467, + 41468,41466,41469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,41418,0,0,0,0,0,0,41415,0,41414,0,0,0,0,0,0,0,0,41420, + 0,0,41432,41438,0,41423,0,0,0,0,41422,0,41412,41413,41417,41416,41426,0,0,41427, + 0,0,0,0,0,41440,41439,41411,41419,0,0,0,0,0,41431,0,0,0,0,0,0,0,0,0,0,41430, + 0,0,0,41429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41433,41428,0,0,41436,41437, + 0,0,0,0,0,0,0,0,41434,41435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41425,0,0,0,0,0,0,0,0,0,0,0,41421,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41424,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41689,41690,41691,41692,41693,41694, + 41695,41696,41697,41698,0,0,0,0,0,0,0,0,0,0,41669,41670,41671,41672,41673,41674, + 41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687, + 41688,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660, + 41661,41662,41663,41664,41665,41666,41667,41668,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437, + 43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450, + 43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463, + 43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476, + 43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489, + 43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502, + 43503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,41462,41461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41464,41463, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41460,41459,0,0,0,41456,0,0,41458,41457, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41455,41454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,41442,0,41441,41377,41378,41379,41384,0,41385,0,0,41396,41397,41398,41399, + 41400,41401,41402,41403,41406,41407,0,41470,41394,41395,41404,41405,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42145, + 42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158, + 42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171, + 42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184, + 42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197, + 42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210, + 42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223, + 42224,42225,42226,42227,0,0,0,0,0,0,0,0,0,0,0,0,0,42401,42402,42403,42404,42405, + 42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418, + 42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431, + 42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444, + 42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457, + 42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470, + 42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483, + 42484,42485,42486,0,0,0,0,41380,0,0,0,0,0,0,0,0,0,43205,43206,43207,43208,43209, + 43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222, + 43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235, + 43236,43237,43238,43239,43240,43241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41701, + 41702,41703,41704,41705,41706,41707,41708,41709,41710,53947,46753,0,50911,0, + 0,0,52722,54729,51453,51663,53186,55458,45755,54251,0,55460,46067,0,55208,51154, + 55463,51904,0,51184,45563,53941,46292,46763,52159,55465,0,0,0,46762,0,49597, + 53711,0,51621,55469,0,47350,53694,58332,54992,0,0,47073,0,46254,0,49625,0,55484, + 0,52712,46500,52906,55031,0,49398,48857,55471,0,0,0,50379,0,48835,0,55473,50100, + 53989,0,54958,52954,54695,47861,47014,49366,0,50873,50642,51143,0,47572,0,46027, + 53970,0,0,55487,48837,50930,53938,53168,53223,0,0,0,0,51945,0,0,55488,0,0,0, + 0,0,0,49906,49874,0,51433,0,0,0,0,0,0,0,0,0,0,51116,0,0,0,0,0,0,0,49611,0,54248, + 54777,0,51906,46846,55457,54234,49143,0,54470,48037,55489,52965,48814,0,0,55464, + 0,53703,53417,0,0,0,55485,55791,52726,49082,0,48571,47781,53984,45818,47840, + 50358,0,53229,48809,52644,49601,0,0,0,51159,55793,0,55796,0,0,0,0,51403,55529, + 0,0,0,53978,51890,51402,55532,55530,55494,48630,50893,46064,0,55531,48625,48617, + 0,51412,46291,0,0,49880,0,45782,55248,51915,52219,54732,47286,53193,0,0,0,55770, + 55536,51114,0,55534,0,46330,49646,53972,0,0,55533,0,53959,55535,50119,0,0,0, + 53750,0,55001,55538,0,55541,48382,48347,0,0,0,51406,0,47069,0,47042,0,50931, + 0,0,0,0,0,0,0,55544,53953,0,0,52969,48319,47100,47013,53469,0,0,0,0,0,55002, + 54213,48111,48097,55537,0,0,51617,52912,46251,0,55539,0,51659,55542,49879,55543, + 0,0,52913,55545,0,0,0,45742,47552,0,55715,0,45289,0,49638,0,51692,0,52165,0, + 52166,55716,0,0,0,0,0,46568,0,0,46507,0,0,0,0,0,0,52923,46541,55201,55284,54227, + 0,52453,0,47822,0,55714,55772,54240,55549,47088,55287,55550,55546,55713,50403, + 0,0,54198,55540,55773,0,55547,0,50661,0,0,49360,0,0,53744,45275,0,0,48337,55718, + 0,55717,0,0,0,0,55724,55726,0,55723,51897,0,0,0,55721,54966,0,0,0,46046,55720, + 0,49405,0,51916,0,55722,0,55719,0,0,55728,0,0,46769,0,0,0,47529,0,53952,0,0, + 53184,0,0,49858,0,48580,54764,45792,51144,49131,55725,0,55727,0,52970,47854, + 0,0,0,0,0,51158,0,0,0,0,0,0,0,0,0,45539,0,0,0,46297,46829,55732,0,0,0,0,49057, + 0,0,0,55774,51150,49406,55736,0,0,0,0,0,52183,47101,0,55733,0,55735,45475,54241, + 55737,0,53445,0,55734,0,0,55729,0,55730,49577,55731,0,0,48371,53470,47273,0, + 48867,0,55741,0,0,0,0,55738,0,45235,0,0,0,55746,0,0,0,0,0,0,0,0,0,0,0,0,0,55748, + 45494,0,55743,0,0,46521,0,48883,0,0,0,52424,47858,53968,0,55747,0,0,48616,0, + 45995,0,0,0,55749,48875,0,55750,55739,50399,0,55742,55745,55744,0,0,0,0,0,0, + 0,0,0,0,0,54702,0,54965,0,51171,0,0,0,0,55752,0,0,0,48345,55754,0,0,0,55740, + 0,55755,50859,0,0,0,0,0,55753,0,0,0,0,55286,0,52643,0,0,0,0,0,0,0,0,48545,0, + 0,0,0,0,0,55756,0,0,0,0,0,0,0,0,0,50620,52661,0,0,0,55757,0,0,55751,45989,49150, + 0,0,0,0,47285,0,0,49404,0,0,0,0,45304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,46326,0,55758,0,55759,46242,55760,0,0,46303,0,0,0,0,0,45249,0,0,0,0,0,0, + 0,55761,51637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53233,0,0,0,0,0,0,55762, + 0,0,0,49605,0,0,0,0,0,0,0,0,0,0,0,55766,51630,0,0,0,0,55765,55764,55767,0,0, + 0,0,52187,0,48553,0,0,0,0,0,50855,0,0,0,0,0,0,0,0,0,0,55763,55768,0,0,0,55769, + 0,0,0,0,0,0,51429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49372,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46841,55459,54474,0,54442,53462,46052,54743, + 0,53192,47586,0,49099,0,50146,0,0,0,46802,0,0,52675,55790,55792,0,0,0,46515, + 0,46773,0,0,0,0,0,48804,0,0,51435,0,0,51371,0,0,45259,47531,49657,55778,0,49340, + 47538,0,47576,53451,45560,50916,48863,46564,55240,0,53752,48358,51934,0,0,48317, + 55782,55527,0,0,50394,0,0,47316,51389,0,0,45793,54489,0,0,0,0,50096,0,0,50145, + 55970,51423,0,53428,0,48892,50601,0,0,0,47578,0,55971,0,54441,55972,0,0,0,0, + 0,55803,46764,0,0,47083,45561,55804,46053,48886,0,49142,53937,49380,0,0,0,46771, + 55806,55805,0,0,48827,0,0,0,50912,0,55228,55969,0,49593,0,46578,49640,0,0,48373, + 0,46293,0,0,0,0,0,0,0,0,0,49629,0,50429,0,0,48312,47026,0,0,47087,0,0,0,0,0, + 0,55788,0,50878,0,49069,48075,0,0,46538,0,56265,53463,0,52665,45244,46070,48119, + 56266,47791,0,54500,46518,46579,55510,51408,0,0,47062,51152,55511,0,49071,0, + 0,56251,55512,0,0,53452,48046,0,0,0,60350,49616,49653,54514,47317,46260,0,46069, + 0,0,51646,0,0,0,50640,0,0,0,50649,49403,0,45552,0,55513,47566,0,46525,0,0,55514, + 0,0,54982,52130,51375,51634,46284,49100,0,47604,0,55515,55516,46823,48321,52458, + 0,0,0,0,0,0,53239,0,55517,51120,0,0,47568,48547,0,0,52446,0,50890,0,0,0,0,0, + 55520,0,55518,0,0,55519,0,0,0,45310,0,48871,0,51875,48372,0,0,0,0,47281,0,0, + 47342,0,0,0,0,0,0,0,0,0,0,55522,0,48587,0,55524,55523,0,0,0,0,0,50684,0,0,0, + 0,0,0,0,55525,0,0,55526,0,0,0,0,0,0,0,49574,0,51376,45292,47526,48339,52977, + 56253,49619,0,0,0,0,46767,55034,50604,48601,56254,56255,0,0,0,49400,48802,49357, + 0,0,0,0,0,0,0,0,0,0,56256,51910,0,0,0,45738,0,0,0,54210,0,50147,0,53675,0,0, + 0,0,56258,0,49365,0,0,0,56259,0,49073,0,0,0,0,0,0,50364,0,0,0,0,51162,0,0,0, + 0,0,0,0,0,0,0,0,56260,0,0,0,0,0,0,0,0,55784,51671,0,0,0,47540,52976,54472,0, + 0,0,0,45308,46290,0,53465,0,0,0,0,55785,0,57035,55787,0,0,0,0,55472,48047,45489, + 0,46039,55502,0,0,54481,0,0,48563,49135,0,53179,0,0,55504,0,0,0,47051,0,0,0, + 55505,0,0,0,0,0,0,0,0,0,0,50853,51192,53949,0,0,55506,50404,0,51886,0,51111, + 0,55462,0,51709,52967,48092,45291,0,0,0,48042,53421,0,45488,55268,55231,0,46501, + 49908,50383,0,0,45737,0,45751,0,45541,57266,54716,49064,49836,55509,49841,0, + 55508,52948,0,56032,0,52928,0,0,55476,50094,54177,52899,0,48308,51380,49873, + 0,48877,53430,0,56033,0,0,0,0,51172,0,0,45991,0,46834,52476,49402,0,0,49399, + 0,53689,53729,55495,0,0,0,0,0,0,0,45790,0,0,49381,0,47857,0,0,55496,0,54445, + 0,0,53217,55497,0,55498,53187,0,46072,48839,0,0,0,0,55499,0,0,0,0,0,0,0,56268, + 0,0,0,0,51365,0,0,0,53208,0,51454,45774,0,0,0,0,0,54230,45798,48304,54225,52139, + 47028,0,0,0,47010,0,0,51941,0,51361,51932,45540,53488,0,50641,0,0,0,56261,46590, + 0,0,49114,47557,48868,49645,0,57270,57269,54971,48592,54745,45256,46755,49097, + 52392,57267,51895,54226,0,55503,53942,47813,52158,52414,0,57271,46576,57268, + 0,0,0,54261,0,46036,47351,0,57274,0,47823,48298,46581,0,52652,50171,47859,49396, + 52674,53234,57272,53189,0,49856,57273,49904,0,0,0,48893,0,49631,52684,54007, + 47053,57281,0,57284,0,0,47089,45257,46806,47060,0,47788,52477,49108,52145,50932, + 0,54952,57285,0,52962,46003,0,0,52988,46261,0,52935,47856,0,52961,0,53693,0, + 0,57280,0,0,46324,0,46026,0,47334,57275,0,0,0,0,50373,0,57276,57277,57278,50619, + 57279,57282,54449,57283,0,51130,52952,0,0,0,0,0,50392,0,57290,0,57295,0,55004, + 0,0,0,0,0,0,0,0,57289,57306,52918,0,47815,57294,57288,50654,0,0,51691,47860, + 50172,0,0,48855,0,57286,0,57293,0,50648,0,0,0,0,54694,47821,0,48844,54205,47296, + 0,55012,0,57287,47550,49063,0,0,49660,57291,57292,0,57296,0,0,0,0,0,57307,57317, + 0,57303,57302,55241,57315,57316,58859,53927,57298,0,49065,0,54491,0,49096,57300, + 0,0,0,53196,0,0,57309,0,53706,0,57310,45223,50871,57299,0,47845,0,46815,52699, + 47614,54485,0,0,57311,53228,45221,57319,57297,53702,57301,57304,57305,57308, + 0,48041,0,57312,57313,0,57314,57318,57320,54196,0,0,0,0,0,47335,50614,57322, + 51674,49576,50372,0,0,49118,53240,0,0,0,54748,57326,0,0,0,0,0,0,45752,0,47839, + 57324,0,56257,0,53732,0,0,0,0,52212,46269,0,45222,0,0,0,0,0,57329,52422,57330, + 0,0,57325,0,0,0,0,0,0,57321,0,0,0,0,57323,0,57327,57328,48061,0,0,57331,0,0, + 57332,0,48035,0,51931,52904,57511,45994,0,57510,0,0,0,57505,0,0,0,0,57342,0, + 52697,57340,0,57338,0,49104,55236,0,51660,0,0,57336,45217,0,0,0,0,0,57341,0, + 0,0,0,57339,57506,0,0,0,0,0,57512,0,0,0,0,47048,0,0,50849,51638,49330,57333, + 0,0,50622,0,55492,57337,50422,0,0,0,0,0,0,57507,57508,57509,53413,0,0,57524, + 52452,0,57521,0,49062,57519,52921,57515,51654,0,0,49326,57518,47853,47792,57513, + 0,0,0,57334,0,57523,0,0,57528,0,0,0,46253,57529,0,0,53170,47816,0,57520,0,0, + 0,0,0,0,0,53498,0,0,0,0,0,0,0,0,0,57516,0,54523,0,57335,0,50663,0,57517,0,54263, + 0,57526,57527,0,0,0,0,0,57540,53473,0,0,0,57532,0,0,57545,57546,0,0,0,57534, + 57514,51620,57537,0,57522,0,0,0,0,0,51912,57539,0,57525,0,52939,0,52163,57549, + 57542,57538,0,57547,0,57530,57535,57536,0,0,57541,0,0,57543,57544,0,57548,0, + 57531,0,0,0,0,0,52180,57557,0,57558,57554,0,0,0,0,0,0,57552,48334,0,0,57553, + 0,47298,55493,0,0,0,0,0,0,0,0,53482,0,0,49903,0,0,57551,57533,0,0,0,57556,57555, + 0,0,57559,0,0,0,0,57564,57560,0,0,0,55030,46000,0,55276,0,52155,0,0,57562,0, + 52987,0,0,0,47833,0,0,0,0,0,0,0,0,0,0,0,0,57569,57565,53933,0,0,0,0,0,57570, + 0,0,57563,57561,57567,0,0,57568,0,0,0,0,0,57566,0,57572,0,0,0,50935,55468,54507, + 57574,51913,0,0,0,0,57573,0,0,0,0,47297,0,0,0,0,57575,57576,0,0,0,0,0,0,0,0, + 57577,57571,0,0,0,0,0,0,0,47807,52455,0,0,0,57578,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,53241,0,0,0,0,0,0,0,0,0,0,0,57579,0,0,0,0,0,0,0,51394,0,0,0,0,48576,0,0, + 0,0,0,0,0,0,0,0,0,0,0,50386,0,0,0,0,0,0,0,0,0,57580,0,0,57581,0,0,51188,52164, + 0,57582,48088,55478,54002,57583,52677,0,46810,0,0,0,0,0,0,57585,0,54448,0,0, + 49319,46289,0,0,52903,57584,0,0,0,57586,47564,0,0,47610,52668,57587,0,0,0,50900, + 57588,0,54450,0,51366,57590,57589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57591,0, + 0,52673,0,0,0,51877,0,0,0,0,54490,56279,56281,0,56280,47591,56284,56285,46552, + 0,0,56282,0,0,0,0,0,56283,45985,56287,0,0,48120,0,54967,0,56288,0,0,0,0,48889, + 0,0,47035,0,56272,52398,49074,48053,55288,49107,0,0,0,0,0,49129,0,0,48353,52403, + 56286,45267,52971,47064,55225,50882,0,0,49316,0,52409,0,56295,56289,50874,56291, + 0,56296,0,50679,0,0,0,56298,0,0,56297,49088,0,0,0,56294,56293,0,0,0,0,0,46265, + 49324,49826,56290,56292,0,0,0,0,53453,56301,0,0,0,0,0,49373,56306,0,0,0,0,0, + 0,0,46818,0,0,0,0,56307,56274,47544,54443,56300,0,49105,56304,0,56273,0,46566, + 0,56299,49125,0,0,0,56302,0,56305,0,0,0,56313,0,0,0,0,0,0,0,0,0,47521,45219, + 0,0,0,0,0,0,0,49905,0,0,46023,56303,0,0,56312,0,50898,56308,0,0,56309,56311, + 56310,0,0,56318,0,54258,45754,0,0,0,56317,0,0,0,0,0,0,0,0,56484,0,56315,0,0, + 0,0,56314,0,0,0,56316,50656,48121,0,0,56483,0,0,56485,0,52419,0,0,0,46801,56768, + 0,0,0,56481,0,56482,0,0,0,51125,0,0,0,46825,0,0,0,56487,0,0,0,0,56486,0,56489, + 45476,0,0,46540,0,0,0,0,0,49072,0,0,0,0,0,53727,0,0,0,0,46786,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,56488,0,0,0,0,0,0,0,52218,60403,0,0,0,52188,0,0,52222,0,0,0,52417, + 0,0,0,0,0,51451,0,0,0,0,0,0,56490,0,0,0,0,0,52462,56491,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,56275,0,56495,56492,0,48819,0,51963,0,0,0,56493,0,0,0,0,0,0,0, + 0,51658,50361,0,0,0,0,0,51133,56494,0,0,0,54518,53478,0,0,0,0,0,0,0,0,50347, + 46805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56276,0,0,0,0,45530,0,0,0,56277,0, + 0,0,0,0,0,0,0,0,0,0,56278,0,0,0,47806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51392,0,0, + 0,0,0,0,51903,51401,0,55219,0,51705,0,0,49095,0,0,47864,0,0,53948,0,0,0,0,0, + 0,0,0,58042,0,46246,0,0,45496,0,0,0,0,0,47284,0,53188,0,0,0,0,55783,53158,52706, + 0,0,55789,46816,0,53945,0,0,47547,0,0,0,0,58041,58039,0,46323,0,52460,52395, + 47090,0,55474,53739,47803,0,51879,0,0,52663,0,0,53956,49124,48336,46817,0,57029, + 0,0,0,0,57030,56252,0,53721,0,0,50918,50382,47086,0,47068,0,0,49148,55264,0, + 50933,0,0,45500,57032,48561,52439,57034,0,57033,0,0,0,0,0,46572,0,51677,0,0, + 45250,0,0,0,0,0,0,0,0,0,0,0,0,0,50606,50603,0,50380,0,48361,52221,0,0,0,47811, + 0,0,0,58873,51431,58874,52733,0,55217,47294,49896,0,51409,0,0,58875,0,0,0,0, + 46794,48331,0,0,53757,59041,0,50158,0,0,0,0,59044,0,0,0,0,58878,59045,52695, + 0,0,47041,58876,58877,59043,0,0,50397,59048,0,0,59047,0,0,0,0,0,0,50115,0,50910, + 0,0,59050,0,0,0,0,0,0,0,50359,0,0,0,59042,51900,0,0,0,0,48611,47555,59046,53461, + 52911,0,0,59049,59056,0,53926,0,48554,59053,0,0,0,0,0,59055,0,49361,0,0,53964, + 0,0,0,48295,0,0,0,0,0,0,0,0,0,0,0,0,59057,0,54006,0,0,0,55243,0,52734,0,52702, + 49830,59051,59052,48575,59054,59059,0,0,59058,0,0,0,0,59062,0,59064,0,0,0,0, + 50415,0,0,0,50376,0,0,48874,51695,0,0,59063,0,46832,0,0,0,50148,0,0,0,0,0,0, + 0,54249,59060,0,59061,0,51362,0,0,0,0,0,59069,0,0,0,59065,0,0,0,0,0,50885,0, + 0,52721,59067,0,0,0,0,0,0,0,0,0,0,59068,0,0,0,0,48105,0,0,0,0,0,0,0,59070,0, + 0,0,0,59066,0,0,49335,0,0,0,0,0,0,0,0,0,54180,59071,51700,59075,0,0,59076,0, + 0,0,0,53494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50109,0,0,0,0,0,0,0,50116,59074, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,59073,0,0,0,0,0,0,0,59079,53169,0,60404,0,0,59082, + 0,0,0,0,0,59077,0,0,48350,51625,0,0,0,0,0,0,48309,0,0,53203,0,0,0,0,0,59080, + 0,59081,0,59086,0,59088,0,0,0,59089,0,0,0,59083,46549,0,59084,0,0,59087,0,0, + 50395,0,59078,0,0,0,0,0,59085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 59090,0,0,0,0,0,0,0,0,0,0,0,0,59092,59091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,59093,0,55800,0,0,59094,0,0,0,0,0,0,0,0,59095,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,55251,59101,0,59102,49111,54480,0,55254,46310,52207,59098, + 55491,55246,53410,0,50127,0,0,59103,48318,47554,59099,53671,0,0,47778,49871, + 0,55467,0,0,0,51947,58862,0,59100,0,47093,0,0,0,0,51430,0,0,50421,0,0,58802, + 50430,0,52220,58803,54700,0,54254,51928,45234,0,52174,52714,0,0,47850,0,0,0, + 58805,0,58804,0,55258,47577,55014,46760,52720,53963,45478,51893,0,46056,51699, + 49101,53499,51922,58806,48066,0,0,0,53212,47532,0,0,0,0,54487,0,0,47782,53735, + 53244,48338,0,58807,51421,0,0,0,49133,45558,52190,0,0,48325,0,48324,54010,50140, + 49116,0,0,0,0,47291,0,0,0,50114,0,47790,54434,0,0,0,0,0,0,0,0,0,51166,50351, + 45804,0,47569,0,0,58811,49608,0,0,54703,0,0,0,0,0,58812,0,58814,0,0,0,0,0,0, + 0,46311,46804,52162,53680,46524,0,0,51929,0,47074,0,0,51684,0,48555,0,0,52926, + 55280,0,0,0,0,53409,0,51673,0,0,46843,59096,48354,0,46014,0,51664,0,59097,45986, + 0,0,0,0,57036,0,54216,57037,0,53922,0,0,0,0,57038,0,0,0,0,48845,0,0,57039,0, + 0,0,51884,54012,46047,58858,50401,48801,52914,50418,48854,50856,45795,0,0,48851, + 0,0,51196,52459,48620,52957,0,0,51898,50881,58860,53436,0,0,0,54713,0,0,0,58861, + 0,0,0,0,51956,0,52672,49861,0,58863,0,49860,58864,0,0,0,0,0,0,0,58872,52685, + 0,51645,0,0,0,0,0,0,0,53977,57768,0,0,0,0,54252,0,52202,50929,0,0,0,0,0,57772, + 0,0,0,57767,57769,0,0,57770,57775,0,0,45805,0,57771,47322,57773,57774,57776, + 46522,57777,0,0,0,0,0,57779,57784,0,0,0,0,0,53714,0,57782,57781,49643,0,0,0, + 57783,0,54464,0,57778,0,57786,45238,0,0,0,0,57780,0,49145,0,57785,0,0,57787, + 0,0,0,0,0,0,57790,0,0,0,0,0,0,57788,0,0,0,0,0,0,54981,0,0,0,0,0,0,0,53183,0, + 0,57789,57791,49869,0,46827,0,54264,0,0,51149,0,0,47077,0,0,0,0,0,0,0,0,0,0, + 48894,0,0,0,0,0,0,57792,57793,0,0,57799,46055,0,0,0,0,0,0,50921,0,0,0,0,0,46302, + 0,53698,0,0,0,0,57800,0,0,57798,0,0,0,0,0,57797,0,57795,57794,0,45504,0,0,0, + 54712,57796,0,0,0,0,0,57803,0,0,0,0,0,0,0,0,57804,57802,0,0,0,0,0,0,0,0,61434, + 0,0,57811,57810,51126,0,0,0,0,0,0,0,0,0,0,0,57801,0,0,57806,0,57808,0,0,0,0, + 0,0,0,0,0,0,0,57812,0,57809,57805,0,0,57807,0,0,0,0,57813,0,0,0,0,0,0,0,0,0, + 0,0,0,0,57814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57815,0,0,0,57816, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57818,0,0,0,0,0,0,0,0,0,0, + 0,0,0,57819,0,0,0,0,0,0,0,52897,0,0,0,0,0,0,0,0,0,0,0,0,0,59357,0,46248,55005, + 0,0,53682,46002,0,0,47524,55283,51145,48862,47534,0,52951,0,0,45806,56271,0, + 48314,53969,52168,45261,0,0,53231,0,0,0,0,0,55779,48621,0,0,45522,51920,45756, + 0,52135,47019,0,51878,0,0,0,53155,0,0,57592,54730,57595,0,0,57594,50625,52475, + 0,49585,57593,55011,45743,54980,46555,0,0,0,0,0,0,0,0,46328,54945,0,0,0,0,0, + 53167,45295,0,0,57596,0,0,0,0,0,57761,45987,0,0,57597,57598,50097,0,0,0,0,50141, + 0,57762,47097,0,0,0,0,0,0,48079,0,0,0,0,0,0,0,57763,50363,0,0,0,0,0,57764,0, + 0,57765,0,0,57766,46257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47305,50877,50410,0,45730, + 0,53458,0,59355,48067,54231,54212,0,47587,58063,0,0,0,55215,0,51180,45523,0, + 0,46258,58065,0,0,0,53490,49838,58064,0,49122,54182,46551,58066,46570,0,50157, + 47357,0,47278,0,50643,47055,58068,0,0,0,0,58067,46792,55289,0,0,0,0,0,52645, + 0,0,0,0,0,58072,0,58070,51964,49077,54201,58069,0,0,0,0,58071,0,0,0,0,0,0,0, + 0,0,0,49582,49352,0,0,0,0,0,0,58075,58074,49322,0,0,49614,0,0,0,0,58076,0,0, + 0,0,0,0,0,0,0,0,0,0,58077,0,58078,0,0,0,0,0,0,0,0,0,56264,0,53715,52642,0,0, + 48552,0,0,0,57027,55461,49066,56269,53996,50938,50602,0,0,0,57028,0,45527,57262, + 0,0,0,51901,0,57265,0,47533,0,54013,0,47269,47851,0,0,46042,0,0,0,46556,54725, + 0,0,0,0,50134,53202,48033,0,58867,58866,0,0,58868,0,52708,0,51445,0,0,0,0,0, + 0,0,46511,51135,0,58870,0,0,0,60592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58854,0,47593, + 46513,0,49852,58856,58855,58857,0,0,0,0,53965,0,0,0,57834,53454,0,52654,0,53733, + 0,0,45770,45547,0,45554,50669,0,0,54723,54192,0,57820,0,0,0,57821,0,53979,0, + 46009,45515,0,0,0,52729,54775,57822,0,48822,46333,0,57823,47836,57824,48050, + 49865,57825,0,0,0,53484,0,52669,0,0,57826,0,46531,50631,57827,0,0,57828,0,0, + 0,0,54265,0,0,0,0,0,0,57829,0,53677,0,0,57830,52898,0,0,0,0,0,0,57831,0,46530, + 0,0,0,0,57832,48085,0,0,0,0,0,53444,58080,45528,53988,0,0,58081,0,0,48329,51404, + 0,58083,60670,60669,57263,0,0,0,58082,54974,52732,50086,0,0,0,58307,0,0,54994, + 58087,0,0,58088,0,0,54215,0,0,58092,49132,0,58093,58085,0,0,46016,0,0,0,50414, + 0,0,58094,0,0,53443,0,47862,58089,47070,48051,52396,52171,58084,58086,58090, + 58091,0,0,0,58103,0,0,58100,54517,58099,0,0,50605,0,54778,50626,45760,0,0,58095, + 0,58098,49583,52156,0,0,46497,58105,0,0,0,48305,58097,53460,54457,58101,47574, + 58102,0,0,0,51155,0,0,0,0,0,58096,0,0,0,0,0,55260,60833,0,0,58104,0,60837,58110, + 51921,0,0,0,0,0,0,0,49589,0,48080,0,0,49110,0,47843,0,0,52129,0,0,0,60838,60835, + 0,0,60834,0,0,0,0,48086,60839,53492,0,0,60836,47838,46839,58273,46770,52465, + 47527,0,53154,51105,0,0,49106,0,0,46833,0,58106,58107,58109,58108,50389,58274, + 0,54209,0,0,0,58279,51140,0,0,0,0,53156,0,0,58281,47799,0,0,0,0,58280,0,48090, + 0,58275,0,0,0,58276,58282,0,58278,0,52978,54214,0,0,48060,0,0,54467,0,50426, + 0,0,60840,53500,58277,0,50165,0,58285,45487,0,58290,0,0,0,48322,0,0,58284,46527, + 0,0,0,0,0,0,0,0,51177,58288,0,0,0,48810,52719,0,0,0,0,0,48115,0,0,0,52456,0, + 0,58287,0,58289,0,53159,58286,0,52905,48093,0,0,0,0,0,46571,48869,45778,46029, + 0,45497,58283,45777,46508,47583,46824,0,0,53227,58295,0,48076,0,0,51399,53450, + 0,0,0,0,0,58296,46062,0,0,0,0,60841,0,54266,54244,0,0,0,60842,58297,53986,0, + 0,0,0,0,58293,0,0,0,0,54238,0,0,0,0,47312,58291,0,0,58294,47071,0,58292,49314, + 0,0,0,58298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54456,0,0,0,0,0,0,0,0,46280, + 0,58299,0,48069,0,51703,0,0,51685,0,0,0,50365,0,0,0,0,0,0,0,60843,0,0,0,0,49917, + 0,0,0,0,48091,49070,0,0,0,0,0,0,0,52927,0,0,0,0,58300,0,49078,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,45551,0,0,54519,0,0,0,0,0,58302,0,0,0,0,0,0,0,0,60845, + 0,0,0,0,0,0,0,0,0,58303,47785,60844,0,0,58301,0,0,0,0,0,0,0,0,0,0,58304,0,0, + 0,0,0,0,47798,0,0,0,46766,0,0,0,0,0,53432,0,45251,60846,0,0,0,0,0,60847,49345, + 0,58305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50611,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 58306,0,0,0,0,0,0,0,0,0,56498,0,0,0,0,0,0,60848,0,47338,0,52972,60071,53479, + 51961,51414,53175,46025,52946,48612,0,0,58334,48114,60072,54717,0,50909,60073, + 0,0,0,60074,0,60076,60075,0,60078,60077,0,0,0,0,48600,0,60079,0,49854,0,0,0, + 0,46273,46327,0,0,48039,0,0,0,0,0,60646,60645,47039,52217,45538,0,60647,0,0, + 0,51656,60648,60649,0,51926,57040,45765,54522,0,0,50891,45255,46322,51411,0, + 0,0,52688,0,0,49080,0,0,0,0,0,0,0,49115,0,0,51108,54964,0,49321,57041,51624, + 53743,50596,45287,46006,51397,0,0,45282,0,0,47094,0,0,50682,0,0,46835,0,54738, + 46032,48316,0,0,0,45997,0,0,0,0,48881,45265,0,0,0,0,0,0,53974,51939,55205,0, + 52662,46774,49081,54747,0,47271,50647,0,0,0,57042,49113,49877,51136,0,48036, + 45480,0,0,50666,0,0,50683,52391,0,0,0,0,45479,0,0,0,46550,0,0,0,50344,0,57043, + 53690,46057,0,50162,0,0,47095,0,55028,46499,45808,50356,50409,49325,57044,0, + 45288,50628,49632,0,47573,0,48860,52696,45262,0,52687,57046,48848,55230,57045, + 54736,45277,0,0,50402,0,0,49827,48368,0,54197,49337,50593,45734,54513,0,0,49320, + 51907,57047,54780,0,47536,0,51373,52137,0,57049,49085,0,0,0,0,50868,55207,51888, + 50371,0,46038,47570,0,0,0,0,54968,60156,45236,0,0,0,0,49126,0,0,52468,0,0,0, + 0,52698,0,0,0,54975,49870,0,52942,52386,53422,50387,46514,57048,54773,48311, + 48083,0,0,45220,0,50610,46316,0,0,0,54769,0,0,60157,0,0,0,0,0,0,57050,52646, + 0,0,52716,0,0,0,0,52966,57052,0,52657,49318,0,0,55229,0,57051,45254,47796,51667, + 50419,48872,0,0,0,0,45750,0,0,0,0,0,0,0,0,49356,52208,0,48369,48059,46519,0, + 0,0,50677,0,57062,0,0,0,57059,48861,0,0,57055,0,0,0,0,46263,48605,0,0,57056, + 50413,0,0,0,0,53190,0,46560,0,0,0,0,46814,51930,46580,57061,0,54726,0,57057, + 52429,50942,0,50629,0,0,0,53940,0,48882,0,0,0,0,0,0,0,49875,0,52413,46008,0, + 48595,0,49112,52678,53722,46315,0,57060,57053,57063,0,60158,0,0,49840,57058, + 0,0,54976,46503,0,45812,0,57064,0,57074,0,0,0,0,0,57069,0,57073,0,0,51424,0, + 0,0,55265,57071,50152,52449,0,45797,0,0,0,53950,0,0,0,0,0,0,0,57070,0,57067, + 52949,0,46247,0,0,0,0,0,49067,48830,0,0,48594,0,0,0,0,57065,0,54446,0,57054, + 0,57066,0,0,0,0,49343,0,57068,45811,47337,49831,0,0,48577,0,0,0,0,0,57077,57080, + 0,0,45739,46244,0,0,46314,51622,0,0,0,0,0,0,57078,52177,0,47331,0,57079,57082, + 0,0,0,0,57081,0,0,0,52418,0,45281,46318,0,0,0,0,0,0,58810,0,0,0,0,0,53423,0, + 0,45803,0,60321,0,57076,0,0,51683,57075,45274,53921,45559,0,52399,0,0,0,0,0, + 0,0,57072,0,52132,0,0,0,54698,0,0,0,0,0,57083,0,0,0,0,0,0,0,0,46301,0,50342, + 0,0,0,57085,0,0,0,0,0,0,0,0,0,0,50174,50337,57249,0,0,0,0,0,0,0,49612,0,57084, + 48879,0,50866,0,0,0,0,0,0,0,0,0,46021,51446,0,0,52154,57086,0,0,57252,0,0,0, + 0,55218,0,0,0,0,0,46007,0,0,0,0,49603,0,0,51147,45733,46313,0,55211,0,0,0,0, + 50412,0,57250,57251,0,57253,0,47795,0,0,0,57254,0,49374,0,0,51651,0,0,0,0,0, + 0,0,45785,51174,0,57255,0,51164,0,0,0,0,57256,60322,0,0,0,0,0,52179,0,0,0,57258, + 0,57257,0,45761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50634,0,0, + 0,0,0,0,0,0,57259,0,0,0,0,0,0,0,0,54492,0,0,0,0,0,51393,0,0,0,0,0,0,0,0,0,0, + 0,0,57260,0,0,0,0,0,48880,0,0,57261,54951,0,0,0,0,60087,60342,51925,0,55548, + 47300,0,47525,0,0,47045,54782,0,0,0,0,0,47562,0,0,53415,62669,0,0,46544,0,0, + 50164,0,48840,0,0,0,60343,45245,0,0,48588,0,49586,0,45526,45992,0,0,0,47314, + 51618,0,0,46808,0,0,0,0,60344,48820,0,0,0,51965,0,51139,0,54779,0,0,47091,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,52932,0,0,0,54699,45555,0,0,0,60595,45279,0,60597, + 0,0,0,46775,0,49615,0,62970,53425,0,0,54757,0,52947,0,0,48623,46050,0,47275, + 0,54710,0,60861,0,46799,0,52153,53442,0,0,0,0,0,0,0,0,47037,0,0,60598,51881, + 0,0,0,50644,0,60601,60600,49859,60599,0,0,0,0,53501,60602,0,60603,55269,0,0, + 60604,0,0,0,60605,50924,0,0,0,0,0,0,0,0,52958,0,48328,0,0,51413,46505,48841, + 54972,54503,0,0,53678,53489,60088,60089,60090,47797,0,0,0,0,51889,49141,0,0, + 52730,0,0,0,0,0,60096,0,45242,60094,0,0,49317,0,0,0,60091,0,45821,0,50167,48104, + 0,0,0,53975,52980,60095,0,0,0,60092,0,0,0,60099,0,53447,54195,0,0,0,0,46266, + 0,50113,55282,0,0,0,0,54737,0,51911,0,60101,0,0,60100,60103,60102,0,0,0,0,0, + 55015,0,53204,0,0,60107,0,48078,0,0,0,0,0,0,0,48634,51662,0,0,60108,0,0,51641, + 53246,60106,54478,60109,60111,0,0,52717,0,0,0,0,60105,0,60110,0,0,52974,0,48094, + 0,46015,0,0,0,0,0,50901,48816,52986,0,0,0,51175,0,48807,60112,0,0,54983,0,0, + 0,49600,0,0,0,54493,0,60113,0,0,53182,0,0,0,0,60114,0,0,0,0,51950,0,0,0,0,50607, + 45237,0,0,0,0,0,60116,0,0,0,0,0,0,0,0,0,60115,62687,0,0,0,0,0,50362,0,0,0,0, + 0,45481,0,0,0,0,58847,0,0,0,0,60117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,51951,0,60118,60119,50904,0,0,0,0,0,0,0,0,60120,0,0,60121,0,0,0, + 0,0,0,54459,0,51194,53943,47356,0,0,60098,0,45788,0,0,49916,0,54520,52454,55278, + 0,0,0,0,0,0,0,54466,54224,60355,50675,0,47102,0,0,60372,0,0,0,52151,60382,0, + 49354,0,0,0,52731,0,45999,0,50906,0,0,0,0,0,0,60412,0,50366,0,52916,50345,45502, + 54525,0,51957,0,55020,0,0,50899,46820,0,0,0,0,48122,0,0,53472,0,0,51633,0,54483, + 51368,0,0,47307,0,59582,51644,0,0,59579,0,49390,53459,45764,46309,0,59580,0, + 0,54728,0,0,0,0,0,46789,0,59581,51960,47324,52469,0,0,0,49332,0,0,53742,59583, + 59586,0,0,47804,0,45485,48604,0,60093,59587,0,59590,0,59595,0,0,0,0,59596,0, + 52169,45285,0,48299,0,0,47545,0,0,59585,0,52727,0,59594,0,0,0,0,52982,0,0,0, + 0,54765,0,49622,59588,0,50102,0,47611,54950,59592,0,0,0,51936,54502,0,59584, + 0,59589,59591,0,51129,47075,0,59593,0,49117,59602,0,0,59607,0,59605,48348,48335, + 59611,0,0,0,0,0,0,0,0,59614,0,59610,45562,0,0,0,0,0,0,0,0,0,0,45272,50355,47308, + 50914,51390,51425,0,0,0,59599,59604,59606,0,47601,59608,55285,0,50427,0,59612, + 0,0,45801,0,0,0,59601,0,0,48365,0,0,49090,59597,55033,0,49656,45809,0,0,0,0, + 0,0,0,0,59615,0,51905,59609,0,0,0,0,54692,0,45546,54715,59598,59600,46768,59603, + 0,59613,49336,0,51959,0,52136,0,0,50908,49397,0,0,0,0,0,59625,0,0,0,53411,0, + 0,0,0,0,0,0,59634,55018,0,0,0,0,0,0,0,59616,59617,0,0,0,53753,47819,47353,0, + 0,47345,54484,59631,0,59630,59628,47600,52434,59622,52902,49138,0,45240,59633, + 59632,0,55232,0,59620,0,52649,51619,0,48056,48603,59626,0,0,0,0,0,0,0,0,0,0, + 59618,59619,59621,46517,59623,51141,59627,59629,48560,55214,0,59640,0,0,0,0, + 0,0,0,0,59637,0,52656,59638,0,0,0,0,0,0,0,0,0,49594,0,59624,0,50103,45296,0, + 0,0,0,0,0,0,0,59636,0,0,0,59639,0,0,0,47523,0,0,0,0,0,0,0,0,0,0,51666,0,0,0, + 50126,52960,49382,0,0,0,0,52211,0,52445,53429,0,0,51937,0,59635,0,0,0,0,0,0, + 0,0,0,0,48364,0,59641,0,0,0,0,0,0,50142,0,50917,0,47607,0,0,0,0,45300,0,0,55256, + 0,0,48300,0,50671,0,0,0,0,0,52420,0,0,59814,0,0,0,0,0,0,0,0,0,0,51629,0,59810, + 49378,0,0,0,49091,0,0,0,59646,47575,0,59643,0,0,0,0,59812,0,0,0,53966,0,0,0, + 0,0,59811,0,54962,55221,0,59815,0,48567,0,0,0,0,0,0,0,0,0,0,0,0,59644,59645, + 0,0,0,59809,0,0,0,0,0,0,0,0,52694,0,0,53932,0,0,0,59826,0,0,0,0,59817,0,0,0, + 46250,0,46267,0,0,59819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53416,0,0,59813,0, + 0,46078,0,0,59820,49379,0,59818,0,0,59833,0,0,59832,0,0,0,0,59822,0,0,59642, + 0,0,59816,0,0,0,0,0,49068,59825,59834,0,0,49829,0,0,0,59823,0,47301,0,59821, + 0,54236,59828,59829,59831,0,0,0,59847,0,0,0,0,0,0,49350,59845,0,0,59824,0,0, + 59835,45297,0,0,0,0,0,0,0,0,0,0,59836,54693,0,0,59838,0,59839,0,0,0,59841,0, + 0,49649,0,0,51382,0,0,0,59837,0,0,0,0,0,59842,0,0,0,0,0,0,0,0,59843,0,59827, + 0,59830,0,48049,0,0,0,59840,0,0,0,0,0,0,48375,0,0,0,59844,59846,0,0,0,0,0,0, + 0,0,0,0,0,0,59850,0,0,0,0,59854,0,0,0,0,0,0,0,0,0,0,45787,0,59848,0,0,0,0,0, + 0,0,0,0,0,47022,0,0,0,0,0,0,0,0,0,0,0,0,59851,59852,0,0,0,0,0,0,54721,0,50339, + 0,0,0,0,0,0,59864,0,47841,0,0,0,0,59849,0,54179,0,0,0,59860,0,0,0,0,0,0,0,59863, + 59856,0,0,0,0,0,59855,0,0,51137,0,0,0,0,0,0,0,0,59858,0,0,0,0,0,0,0,59865,46024, + 0,59859,0,0,0,0,0,53232,0,0,0,59853,0,0,0,0,0,0,0,0,0,0,0,46071,0,0,0,0,0,0, + 0,59862,0,0,59866,0,0,0,52404,0,0,0,53165,0,0,0,0,0,0,0,0,0,59861,0,59868,59867, + 0,0,0,0,0,59870,0,0,0,0,0,0,0,0,59857,0,0,0,0,0,0,0,0,59869,0,59871,50122,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 51127,46286,48054,53440,60579,0,0,50615,0,0,0,0,0,0,0,0,0,0,54267,0,0,0,0,60580, + 0,60581,50907,0,0,0,49134,0,0,0,0,60582,0,0,60583,53418,0,51128,0,0,47336,0, + 0,0,0,0,0,0,0,0,0,0,0,60584,0,0,0,0,0,0,0,0,54969,54781,46283,45757,52964,50919, + 0,0,52705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46325,0,52160,48351,0,0,0,0,59874,59875, + 53738,59877,0,46329,59876,0,53683,51938,45776,0,59880,0,0,0,0,59878,59879,0, + 0,54963,0,0,0,59881,59882,0,0,0,0,0,59883,0,0,0,0,0,0,0,0,59884,0,0,0,0,0,0, + 0,0,60591,50617,46798,0,54003,0,0,0,0,0,0,0,46574,0,48089,60593,0,0,53987,0, + 0,0,0,0,52963,0,50360,0,50111,0,0,46782,55481,45512,45519,45521,50686,0,45520, + 0,50091,0,0,0,0,0,54705,0,0,0,0,0,0,0,0,60324,47809,0,0,0,52410,0,0,0,60325, + 0,60327,0,0,0,60328,0,0,0,60326,0,0,0,0,0,0,0,60329,60331,60330,0,0,0,0,0,60332, + 0,51919,55477,50161,0,50085,50936,60333,50378,0,60334,60335,60336,47061,0,0, + 0,47098,0,60337,51170,0,60339,0,47780,53749,45233,60338,60340,0,0,0,46506,49864, + 51176,0,60341,0,52142,58335,0,0,54208,0,0,0,0,55771,0,0,52641,54957,51187,0, + 0,0,55776,48099,0,47802,58338,0,0,0,0,0,53163,0,0,0,58336,51655,0,47801,0,0, + 0,53684,58337,51434,47535,48557,46040,52955,0,0,52416,0,0,0,58344,58345,52724, + 0,0,0,0,0,52397,0,48307,0,58346,0,58347,0,0,53466,0,0,0,50939,47066,0,0,51167, + 53962,52950,0,58340,58348,0,51698,46017,0,0,58343,0,0,50915,58341,0,0,60851, + 58342,0,0,0,0,51635,0,50662,0,0,0,47541,0,50107,0,58339,50621,49572,49881,45783, + 0,58349,48038,50349,0,58352,48858,0,0,58363,58357,47827,0,0,0,0,47056,54221, + 0,54990,54739,47553,54708,53720,0,0,0,0,53433,51190,0,0,0,51370,45748,0,50138, + 0,0,0,58350,0,0,58364,58351,47016,58359,58356,0,0,0,47034,0,0,50594,0,58358, + 50653,45736,50940,0,50400,0,0,55202,0,49377,58361,0,0,58362,58365,52393,58355, + 0,54206,0,45507,60852,58353,58354,0,58360,53434,50883,54515,58366,0,0,48608, + 0,0,58535,0,0,58534,0,0,0,53747,58531,0,58537,0,0,0,51447,0,0,0,0,53172,0,58536, + 58542,49893,0,0,46772,0,0,0,0,0,0,48626,0,58530,0,0,47849,58538,0,0,58540,0, + 0,46845,55006,58546,0,58541,0,0,0,58529,0,48110,52701,51106,50633,0,0,49655, + 0,58532,0,51123,48556,48573,58533,0,55239,45794,0,58539,48323,58543,0,48107, + 58544,50600,58545,0,0,0,0,54755,49059,0,58554,0,58551,0,58555,0,0,58557,0,0, + 50902,0,0,47814,49355,0,0,0,47265,58548,0,0,0,0,54433,0,0,47779,48638,0,0,0, + 58556,0,0,0,0,0,52671,0,0,50425,0,0,53243,51686,0,0,54207,0,53201,0,0,58547, + 0,58552,58553,52457,0,0,0,0,0,52430,0,49364,58549,49584,58550,52944,0,48065, + 46547,0,51443,48551,54727,51628,47266,58570,0,0,58572,53700,0,0,53946,0,0,47789, + 0,0,47828,0,0,0,0,0,0,58563,46573,0,0,0,55245,58560,53245,58559,0,0,0,49628, + 52426,0,0,0,0,51943,0,0,0,0,50391,0,52436,58568,0,0,0,58567,58561,0,58564,46509, + 0,0,54233,0,58566,0,0,0,0,54009,46307,0,48052,0,0,51694,0,46270,0,0,0,48108, + 0,53709,0,52461,60853,0,0,0,0,0,0,0,0,51173,0,0,0,0,54440,0,58571,55253,58562, + 0,48549,58565,0,0,54246,0,58569,51704,0,0,58558,0,0,54245,0,0,51198,46793,0, + 54524,45747,58583,0,0,0,52930,0,58573,0,52924,0,47323,0,0,58582,0,49098,0,0, + 0,54222,0,50156,0,0,0,0,0,0,0,0,50632,58584,0,0,0,0,0,0,0,0,52676,58575,0,0, + 0,0,58580,58581,0,47870,0,53222,0,0,54719,0,0,0,58578,0,0,0,0,0,0,0,0,0,0,0, + 58576,0,0,58574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52709,51882,0,0,0,49315,0,48550, + 58579,0,0,47304,0,0,0,0,0,58599,54452,0,0,0,0,0,0,0,58587,0,0,0,49647,0,0,58601, + 0,0,53991,0,0,58591,0,58592,0,0,53162,0,0,0,0,52189,0,58586,58577,0,58597,0, + 51420,58595,0,0,50407,58594,0,58593,0,0,0,46076,58600,0,0,0,0,46561,0,0,0,55244, + 0,0,0,58598,0,48044,0,55250,52431,60408,0,58596,0,0,47606,0,0,0,54989,58585, + 58588,49914,58590,0,49867,49348,49872,0,45557,52402,0,0,0,0,0,0,0,0,0,0,46542, + 0,0,0,0,58607,0,0,0,0,0,0,0,0,50863,0,0,0,50913,0,0,58613,0,0,0,0,0,49833,0, + 0,0,49388,53725,58606,0,0,0,0,0,0,0,0,0,0,50350,0,0,0,58605,0,0,0,0,58614,58612, + 49918,0,58589,0,58608,0,51966,0,54724,0,0,58609,0,0,0,0,0,0,0,53754,0,0,0,0, + 0,0,0,58603,58604,0,0,0,58610,0,52907,0,0,0,0,0,0,0,0,0,0,50635,0,0,0,51121, + 0,49850,0,0,0,58602,0,0,0,49610,0,0,0,0,0,0,52406,46001,0,0,0,58619,0,58611, + 0,0,0,58618,0,58621,0,58620,0,0,0,0,0,0,0,46030,0,0,0,46010,58615,0,0,58617, + 58616,50668,0,0,0,0,0,0,0,0,0,0,0,0,0,49341,0,0,0,0,54504,0,0,0,0,0,58786,0, + 0,0,0,0,0,0,0,0,0,0,45252,0,0,58788,0,0,58787,0,0,0,0,0,0,48292,0,58789,0,0, + 0,0,0,0,58785,0,0,0,0,0,0,0,58622,45556,0,0,0,0,0,0,0,0,0,0,0,58792,0,58793, + 58790,0,0,0,0,0,0,0,0,0,0,0,0,58791,58794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50905,0,0,0,0,0,0,0,0,58795,58797,0,0,0,0,0, + 0,0,58796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58799,0,0,0,58798,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,47584,0,0,58800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58801,0,0, + 0,0,0,0,0,0,0,0,0,0,48112,60641,50160,0,46534,48082,0,0,0,0,49641,54510,0,48836, + 0,0,0,55238,0,54486,45779,60606,0,0,0,0,60097,0,0,0,49839,46262,0,0,0,53719, + 0,0,0,46004,0,51378,49083,60608,0,0,54987,0,0,60607,60609,0,0,0,0,0,0,0,0,0, + 0,0,0,0,60613,48870,52415,50650,48828,0,60614,0,45566,0,0,0,60612,54696,46563, + 0,60610,49590,46051,0,0,60611,52152,49347,52478,0,0,0,0,49618,0,60616,0,0,0, + 0,0,0,0,0,0,0,0,0,0,47846,49363,0,55026,0,0,0,53708,0,0,0,0,49086,0,47027,51669, + 60615,48098,0,52428,48637,51400,0,53161,0,0,0,0,0,0,0,52713,0,50667,0,0,0,47081, + 0,0,0,0,0,0,0,0,0,0,0,53705,47800,0,0,0,0,0,60617,0,0,60618,0,48064,60619,0, + 60642,45498,47065,0,0,0,0,0,0,0,0,0,0,0,48569,0,0,0,0,0,0,0,0,60620,53734,60621, + 0,0,0,0,51387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60625,0,0,0,0,60627,0,48077,0,48357, + 0,0,0,0,0,0,0,0,0,0,0,0,0,60623,0,51639,0,0,0,0,0,50106,0,60643,54741,60624, + 0,0,0,0,0,55027,0,0,0,60626,60622,0,0,0,0,60628,0,60629,0,0,51647,0,0,0,0,0, + 0,53160,0,0,0,0,0,53468,0,0,0,0,53676,0,0,0,0,51419,0,0,0,60630,52981,0,0,0, + 0,0,51948,60634,0,0,0,0,0,0,0,60633,0,0,0,45246,0,0,0,0,0,0,60631,0,60632,0, + 0,0,60644,0,0,0,0,0,0,0,0,0,51388,0,0,0,0,0,0,0,0,0,0,49607,0,0,0,0,0,60636, + 53728,0,0,0,0,0,0,0,0,0,0,60635,0,0,0,0,54511,0,60637,0,0,0,0,0,0,56262,0,0, + 0,0,0,0,0,0,0,0,60638,0,0,0,0,0,0,0,0,0,0,0,0,45484,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,60639,0,0,0,0,0,0,0,0,0,0,60640,0,55206,0,50624,0,0,0,60348, + 45230,0,0,0,48884,47288,53935,45270,46585,0,55475,0,52140,0,58333,0,0,0,0,0, + 0,0,50860,45286,0,0,0,50630,60345,0,0,0,0,60346,0,0,0,60347,0,0,53696,0,50595, + 0,60146,0,50354,0,50357,49358,0,0,0,60147,50369,0,52975,0,0,0,0,60144,60148, + 0,0,51708,0,0,51107,0,0,0,52440,52990,0,0,0,60149,60150,53164,49383,0,0,60151, + 0,0,0,0,0,46783,60152,0,60153,0,60154,0,0,60155,0,0,0,0,0,0,0,0,0,0,0,0,60145, + 0,0,0,0,0,0,0,0,0,0,0,0,51374,57835,0,47032,57836,0,0,0,57837,0,55220,57838, + 57839,54220,0,0,0,0,0,0,0,57841,49137,57840,46546,0,0,0,45495,0,0,0,0,57843, + 57842,0,47868,0,57844,0,0,0,0,47543,0,48849,0,0,0,0,50428,0,47837,48582,0,0, + 0,0,0,0,57845,57847,0,0,46784,53185,51880,57846,54776,54268,57848,57852,57849, + 0,0,57850,49386,0,57854,58017,49351,0,0,0,0,57851,0,57853,0,0,0,0,0,0,58021, + 0,0,0,49620,0,0,0,0,58019,0,58024,45822,58018,0,0,0,50125,45762,58023,58022, + 0,0,58020,58025,0,0,58027,0,0,0,53449,55021,50088,58028,0,53207,0,0,58030,0, + 0,47855,0,0,59872,58029,58026,0,0,0,0,48043,54451,0,0,0,0,0,0,0,0,0,0,0,0,0, + 58032,0,0,58031,0,59873,0,0,0,0,58033,0,0,0,0,0,0,0,0,58034,0,0,0,0,0,0,0,0, + 0,0,0,58035,52385,0,58036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58037,0,0,0,0,0,53502, + 0,0,49866,0,54257,0,52725,0,0,59360,0,0,59361,0,0,0,0,48833,0,0,0,0,49898,0, + 0,0,59364,0,0,59363,0,0,0,0,0,0,52710,0,50101,0,0,59362,48055,53206,0,49633, + 59369,0,0,0,59368,0,0,59380,45731,0,0,0,0,59370,0,59366,0,0,0,0,0,59372,59371, + 51642,0,0,54756,0,59365,47017,59367,0,0,0,0,0,0,0,59374,0,0,0,0,59379,0,55017, + 0,0,0,0,59373,0,59378,0,59377,0,0,0,45280,0,0,0,0,59381,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,51186,0,49349,49389,0,0,49648,59376,0,0,0,0,59382,52214,0,0,0,0, + 0,0,0,0,0,59554,59553,0,0,0,0,0,0,55233,0,0,59386,59385,0,59387,0,59383,0,59390, + 0,59389,0,59388,0,0,49621,51161,50685,50627,0,0,0,0,0,51181,0,0,0,0,59555,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59558,0,59557,0,59559,47863,59384,59556, + 0,51440,51626,0,0,0,0,0,0,0,0,0,0,0,0,0,59561,0,0,47589,0,0,0,0,0,53758,59560, + 0,0,0,0,0,0,59562,0,59565,59566,0,49575,0,0,0,59567,0,0,0,59568,0,0,59564,0, + 59572,0,0,0,0,0,0,0,0,0,0,0,59563,0,59569,0,0,0,0,0,0,0,0,59573,59570,59571, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,59574,0,0,0,0,0,0,0,0,0,47567,0,61612,0,61613,0,50864,45290,51391,0, + 52703,0,0,0,0,0,0,0,52941,60081,0,0,0,0,60082,0,50879,46281,0,0,0,0,0,0,0,60083, + 0,0,0,0,54759,0,0,0,0,0,0,0,0,56825,0,60084,0,60085,0,60086,0,0,0,0,47306,57264, + 51701,0,52464,0,0,51706,0,0,0,0,0,51707,0,0,54211,52134,0,47270,61614,45506, + 0,58808,52463,54217,48343,51690,0,46567,0,50384,46569,0,61102,48045,0,0,59358, + 0,61103,0,0,0,0,45993,0,0,61106,0,0,61105,48615,0,61104,52919,0,0,0,0,50639, + 0,0,0,0,49652,56270,61107,53491,0,0,0,0,0,0,0,0,49876,50920,0,0,0,47020,0,0, + 0,0,0,0,0,61108,0,46059,0,0,0,48123,61109,0,0,0,0,0,59356,0,0,0,61110,0,0,48558, + 0,0,0,0,61922,0,0,0,51944,0,53961,61658,0,61659,0,61660,49606,0,47341,48846, + 0,0,61662,0,50609,61661,53745,0,61664,45260,48618,0,0,0,0,0,53983,61663,0,46255, + 47080,61670,61669,50851,61665,61666,46275,0,0,61667,54766,0,0,52443,48850,48306, + 0,0,0,61672,61671,61668,45729,0,54946,54200,48823,51372,0,0,61674,0,0,0,0,53751, + 0,54988,47835,61673,0,46779,0,0,52660,0,0,50854,0,0,0,49569,61675,61678,0,61677, + 61680,61676,0,48062,61679,0,0,0,0,52405,61682,0,0,46037,0,0,0,0,45524,0,0,61683, + 0,0,61684,61686,46305,0,61681,0,61687,0,0,0,0,61690,0,61688,0,0,0,61685,0,0, + 0,0,61693,0,61689,61692,61694,0,61857,0,0,0,52929,61860,0,61859,0,49654,61691, + 51933,0,0,46321,45553,52401,0,61862,0,0,61863,0,0,61868,54734,61865,0,0,51379, + 0,0,0,61858,0,61867,61864,61861,0,0,61866,0,0,0,0,0,0,0,0,45225,61869,0,0,0, + 0,0,0,61871,0,61873,0,0,0,0,0,61872,0,61870,0,0,0,0,53666,0,0,0,0,0,0,0,61874, + 0,0,0,61875,0,0,0,0,0,0,0,0,47599,0,0,46535,0,45271,45273,0,0,0,54509,0,46532, + 0,48596,48074,61607,0,0,47326,0,0,61608,0,0,45224,0,61609,0,0,52718,0,0,61610, + 0,0,0,0,0,0,0,0,0,0,61611,0,0,0,0,0,0,0,0,0,50852,0,0,55013,61924,0,61925,0, + 0,0,0,0,0,0,0,0,0,50163,0,0,54235,0,0,54993,50664,0,54191,0,53990,0,0,61121, + 45243,54709,53710,48352,47824,0,49144,0,47303,46529,50636,0,0,51874,0,0,0,50123, + 0,0,0,0,0,61122,0,0,0,0,0,0,0,0,50367,46754,0,60908,50084,0,54961,0,0,0,53216, + 60911,0,0,50638,0,46812,0,0,51873,0,0,60909,0,0,60912,60913,50108,0,49076,0, + 60910,0,0,0,0,0,0,0,0,0,0,0,60916,60914,0,0,0,0,54758,50143,0,60915,0,0,0,60918, + 0,54691,53667,0,0,0,60917,0,50128,0,0,0,0,0,60919,49140,48876,60920,0,52471, + 0,53723,0,0,0,55237,54774,0,60924,0,0,0,60923,0,0,0,0,0,0,0,0,60921,60922,0, + 0,0,0,0,0,0,0,60925,48806,0,0,0,0,0,52143,61089,46781,0,61090,50368,0,60926, + 0,0,48606,45767,0,0,0,0,0,0,0,0,0,0,0,0,46787,0,0,0,61093,55482,61091,61094, + 0,0,0,50153,46066,0,0,0,0,0,0,61095,61092,53177,0,0,61096,49911,0,0,0,0,0,0, + 0,0,0,0,0,0,61097,61098,0,57003,0,0,50867,0,51142,0,55029,46537,0,52146,0,0, + 0,61099,0,0,52651,0,61100,0,0,0,0,0,54704,0,61101,0,63172,0,0,0,0,0,0,0,0,0, + 0,0,0,0,56263,0,0,0,0,0,0,0,0,0,46243,0,0,0,50092,61926,0,0,0,0,0,51896,53971, + 0,54954,0,61426,0,48856,0,48579,61427,46796,45227,0,0,0,0,51887,0,0,60854,0, + 60855,0,0,0,0,52985,47023,49139,60856,49899,51632,0,0,0,0,0,0,60857,0,0,50934, + 49075,0,0,0,60860,50680,0,53712,0,55209,60858,60859,0,53730,0,60863,60864,0, + 60868,0,0,0,60872,0,60870,60878,54760,0,60873,0,0,60871,60862,0,0,50665,0,0, + 0,50886,0,0,51689,54482,60865,60866,60867,60869,0,49401,0,46241,0,0,0,0,47592, + 0,60880,0,0,0,0,60881,0,60874,0,60879,0,52984,0,0,52150,60876,60877,0,0,0,0, + 0,53237,0,0,0,0,0,0,0,0,0,0,0,0,60882,49650,54194,60875,51383,0,0,0,0,0,0,0, + 0,48367,0,0,0,0,50672,0,0,0,0,0,0,0,0,0,0,60886,0,46575,0,0,49845,45229,52201, + 0,0,45486,0,60884,0,0,0,52715,46562,0,60885,60883,60887,0,0,46586,0,60888,0, + 60889,0,60892,0,45516,0,0,0,0,0,0,0,0,50678,48366,60890,52412,45802,0,0,0,0, + 60891,0,0,0,0,50411,0,0,46277,0,0,0,45301,0,0,0,60895,49370,46312,0,0,0,0,50637, + 0,0,0,60893,49092,0,0,0,60894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50341,0,0,0,60896, + 0,0,0,0,0,60897,0,60899,0,0,49623,0,0,48071,0,0,0,0,0,0,48568,0,0,0,60898,0, + 0,0,0,0,0,0,0,0,0,0,0,0,60900,0,0,0,0,0,0,0,0,0,0,60902,0,0,0,0,0,60901,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,60903,0,0,0,0,0,51902,60650,49393,0,51687,0,60651, + 50926,0,0,0,0,60652,0,50925,60653,0,0,0,0,0,0,0,0,0,60656,0,0,55270,60659,0, + 0,60657,60654,60655,55203,51697,52206,60660,0,60658,0,0,53225,0,60662,50865, + 0,0,0,0,48320,0,60661,0,0,0,0,0,0,0,46523,48118,0,60663,0,0,0,0,0,55799,48635, + 0,0,49851,60664,0,0,0,0,60665,0,0,0,0,47267,0,0,0,0,0,0,0,0,0,0,60666,0,0,0, + 0,0,0,0,0,0,0,0,0,60667,0,0,0,0,0,0,0,0,0,0,0,60668,0,0,0,0,0,54253,55470,49387, + 0,51165,47820,0,53475,52157,0,52666,0,0,47313,0,0,45564,0,51183,0,54998,0,0, + 0,49094,50155,0,0,61429,0,0,50136,0,0,0,0,0,0,55266,0,0,0,61431,46035,0,51160, + 53741,0,54984,0,61432,0,61430,0,48125,46022,0,0,0,0,0,0,0,48597,0,0,53958,0, + 48096,0,0,53153,0,61436,61435,0,0,61433,0,0,0,0,46028,0,51668,52144,0,0,0,0, + 0,61438,0,0,45278,0,0,54985,0,0,0,61437,0,46061,0,0,63189,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,52936,0,0,0,61602,0,61601,0,46526,48346,48124,0,47333,0,0,0,0,0, + 0,50370,0,0,0,0,0,0,0,0,0,0,61603,0,0,0,0,0,52203,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,61606,0,0,0,53672,0,48831,51182,61878,61879,49109,0,0, + 0,0,46249,61880,52667,0,51156,54701,0,61881,0,61882,0,0,0,0,51151,0,0,0,53924, + 54991,0,0,61883,48593,46256,48829,0,0,0,46300,52945,0,49119,61885,0,0,0,0,49146, + 61884,0,61887,0,0,0,61886,61888,0,0,0,0,0,61889,0,0,0,0,0,0,0,0,0,0,0,49662, + 0,0,0,0,0,0,0,0,0,0,0,49570,0,0,0,0,0,0,0,0,0,0,51962,0,0,54718,0,0,0,0,48826, + 48825,54722,0,0,49058,0,52655,61877,0,0,0,0,0,0,48607,0,46795,0,0,0,0,0,0,0, + 0,0,55025,62403,0,0,62404,0,47309,0,0,0,62406,62407,0,45258,0,62405,0,62409, + 52209,0,0,0,62411,0,53414,0,0,45514,62408,0,0,0,62415,0,46545,0,0,62423,0,62418, + 0,0,0,62420,62419,47099,0,45503,0,62414,62410,46554,0,62416,0,0,62417,0,62421, + 0,0,0,0,62413,0,48355,0,49661,0,62422,0,0,0,0,0,0,62426,0,62412,0,46536,0,48622, + 62428,0,0,47012,49136,55038,52658,0,46320,0,45791,0,62424,0,62425,51640,0,62429, + 0,0,62430,0,62433,0,0,0,0,0,0,0,0,0,0,0,62431,0,0,62435,62434,0,0,62427,0,49130, + 0,46063,0,62432,0,0,51113,0,48370,0,0,0,0,62443,0,0,0,0,0,0,0,47551,0,0,62436, + 0,0,0,45741,48126,0,52195,0,0,0,0,62445,62441,0,0,0,47580,62446,0,0,0,62437, + 62438,62442,49889,62444,62447,62440,48381,0,0,0,53220,0,0,62448,0,0,0,62439, + 0,0,0,0,0,0,0,0,62450,0,0,0,0,55213,50858,0,0,0,0,62451,0,0,0,0,62449,0,49832, + 0,0,0,0,0,47325,62453,0,0,62452,0,0,0,46299,0,0,0,62454,62455,0,0,0,62456,0, + 0,0,49338,0,0,49385,0,0,0,0,0,50673,0,0,0,0,62459,0,62458,0,0,0,0,0,0,0,0,46296, + 0,0,0,62462,62457,0,0,62460,0,0,0,0,0,0,62461,0,0,0,0,0,0,0,0,62625,0,0,0,0, + 0,0,62627,48073,0,0,62626,0,0,0,0,0,0,0,0,0,0,0,0,0,62628,0,0,0,0,0,0,45758, + 62630,62629,0,0,0,0,0,0,0,0,0,0,0,48302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50135,55777,0,0,0,0,0,0,49376,62668,55249, + 0,0,0,0,0,0,0,0,0,0,0,47067,0,0,0,0,0,0,0,62670,49571,0,0,50889,0,46294,54707, + 0,0,0,62672,62671,62673,52186,0,0,62674,0,54465,55008,0,0,0,0,47072,0,0,0,49592, + 0,0,49595,62675,48812,0,0,0,0,0,46306,0,0,62676,62677,48811,0,0,62678,0,0,0, + 62683,0,62679,62682,0,47869,0,62680,62681,0,0,0,0,0,0,0,47330,52423,62684,0, + 45786,0,0,50131,0,0,54499,49079,0,0,0,0,0,0,0,62685,0,0,0,0,0,0,50612,0,0,0, + 0,0,0,0,0,62697,0,0,53173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52937,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,52184,0,52215,0,0,0,0,48628,0,0,0,55247,0,0,0,49371, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53493,0,0,0,0,0,0,0,0,62698, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,62699,0,0,0,0,0,0,0,62700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,63459,0,0,0,0,0,47025,0,0,0,0,0,62701,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,55275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62702, + 0,0,0,59129,48832,59130,47852,59131,53195,59132,54460,48310,59133,59134,48333, + 51410,52915,59297,0,46271,59298,51636,47321,50377,0,55261,49882,47063,54973, + 52934,47044,0,0,50598,59299,53215,59300,59301,59302,49591,55273,51696,53176, + 54959,54997,59303,45293,59304,59305,51676,53999,48813,59306,45299,51422,48609, + 59307,51398,0,59308,48102,47352,53668,59309,49895,48888,48586,52659,59310,59311, + 48878,53477,0,52199,52432,48332,59312,48296,53495,59313,0,53496,59314,59315, + 46274,59316,59317,51710,52908,50144,59319,45505,46065,0,59320,59321,55259,54720, + 59322,49868,55226,59323,59324,59325,48362,50149,49346,59326,59327,48297,0,59328, + 59329,59318,46800,59330,0,59331,59332,48058,46558,49862,45536,59333,54453,59334, + 47295,59336,59335,47084,0,59337,45816,59338,59339,59340,59341,59342,59343,59344, + 54183,52213,59345,59346,59347,59348,51657,59349,59350,59351,59352,59353,48585, + 59354,62398,0,47319,0,51377,0,0,0,0,0,0,0,62399,0,62400,62401,0,0,0,0,0,0,0, + 0,0,0,47582,52728,0,0,55528,47793,0,49886,61111,0,47011,0,0,0,0,61113,0,61112, + 45269,0,0,0,0,0,61115,54742,55279,0,0,0,54979,0,0,61117,51952,0,61116,0,0,0, + 0,61118,0,0,0,0,61120,0,0,61119,0,0,0,0,0,0,0,0,53746,0,51132,0,50112,0,0,0, + 0,0,47329,0,0,0,0,0,49639,0,0,62662,53471,62663,0,53211,0,0,51386,0,0,62664, + 0,0,0,0,0,0,0,62665,62666,0,62667,0,0,0,0,0,55802,47358,0,0,58865,54256,0,62688, + 0,52940,0,0,0,46049,0,0,0,0,61876,0,53998,0,62689,0,0,0,0,0,53224,62690,0,0, + 51148,0,0,0,0,0,0,46548,46308,62692,0,0,0,62691,62693,0,0,62694,0,0,0,0,62695, + 0,47794,45247,0,62696,0,0,0,0,0,0,0,47021,53997,0,0,0,53931,49359,0,49084,60323, + 54751,60104,0,0,0,0,61939,46840,52131,0,0,50381,0,61927,0,61928,47355,61929, + 47812,54469,45266,0,0,61930,0,0,0,61931,0,61932,0,0,61933,61934,61935,61937, + 61936,50645,0,0,0,0,0,0,61938,0,46842,0,61940,53934,57031,52170,0,0,46044,0, + 46498,0,47522,0,0,50420,61941,0,0,61942,0,0,0,49604,49659,54960,61943,0,0,0, + 0,61944,0,49578,0,0,0,50872,0,48859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61945,46287, + 0,0,0,0,0,0,61946,0,0,0,0,0,0,0,0,0,0,0,0,0,60850,60849,0,0,52192,53982,0,52161, + 54744,0,51426,0,49375,48289,0,0,0,0,0,0,60353,0,0,53412,0,55010,0,46791,47320, + 60352,47310,0,60351,45990,47561,54955,0,47092,47050,0,0,0,48359,47038,60358, + 0,60359,45241,49103,0,60357,54269,0,60360,0,0,60361,0,0,47054,0,60354,60356, + 51702,54999,54733,53426,60367,52920,60368,0,46504,0,0,0,0,0,45491,60370,52389, + 0,0,0,0,0,0,0,50646,60371,0,60369,50655,60366,51876,60373,45307,0,0,47866,0, + 0,55479,61923,0,60362,60363,60364,60365,60374,59072,60377,0,49128,53960,60375, + 60380,47340,60376,0,48570,0,53464,0,45239,0,60381,50396,0,0,0,0,54956,0,0,0, + 46304,0,0,49910,48313,0,0,60378,60379,54496,50922,50388,60383,50599,55797,0, + 45745,0,60388,0,48581,0,0,0,60386,0,0,0,0,0,0,0,0,0,0,0,0,0,60387,0,0,47276, + 0,52689,60389,0,0,0,60385,0,49587,0,0,0,0,0,50850,0,0,0,0,0,0,0,52467,0,60390, + 0,49328,53944,60391,0,0,0,47279,47277,0,60392,51131,52723,0,0,0,60394,60395, + 0,0,0,0,0,60397,0,0,0,0,53448,0,60402,0,60398,0,0,0,60401,51449,0,53756,60396, + 0,0,60393,0,0,0,0,47289,53209,50405,60399,60400,52442,52680,45298,0,60406,0, + 0,0,0,0,60405,0,45746,0,0,0,0,47328,0,60407,0,0,0,0,0,0,45548,0,0,52421,50340, + 53157,0,0,0,0,0,60409,0,0,60578,0,50674,0,60410,0,0,0,0,0,0,0,0,51653,0,0,0, + 0,0,0,58079,60414,0,0,0,0,52686,60577,45531,54199,0,0,53980,0,0,0,60413,0,60411, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46012,0,0,0,60080,0,0,55252,0,62635, + 46068,0,0,0,0,0,54977,54978,0,0,0,0,0,0,54761,48842,0,62631,0,53928,62632,62633, + 0,62634,48843,54239,0,0,0,0,0,51680,51681,0,0,62402,0,51942,0,52466,0,0,0,0, + 0,0,58038,52148,0,52968,55003,0,62637,62638,62639,0,0,0,0,62642,0,47805,62643, + 45283,62640,0,62641,48546,45781,0,62646,62647,46822,45744,53199,62644,46252, + 0,62645,0,0,62648,0,0,0,0,0,62649,0,0,52647,0,62650,0,62651,0,0,0,62652,0,0, + 0,0,0,0,0,0,52178,0,62653,0,0,0,0,62654,0,0,0,0,0,0,0,0,62655,0,0,0,0,0,62686, + 49596,48360,0,51627,53726,58869,0,0,0,0,56499,53973,0,0,56500,45228,56501,0, + 0,48602,0,56505,0,0,0,55490,0,56503,54259,0,51670,56506,56502,0,56507,50082, + 0,0,0,0,56508,56517,56509,0,0,52959,54949,0,56527,0,56525,0,0,56530,48614,49835, + 0,56504,56523,56526,56510,47058,45253,56519,53438,56513,48040,0,47036,56524, + 0,0,56518,56511,51163,0,0,0,53695,56512,0,0,56522,0,0,56528,0,0,52909,56514, + 0,56515,56520,56521,45780,56529,52181,0,54455,56539,56543,52390,56550,0,50151, + 56540,0,0,49089,56537,0,45306,47542,56549,56531,0,56516,56534,51444,49120,0, + 0,0,0,51643,0,0,0,45501,0,54178,0,0,56538,0,0,56533,0,50875,0,56542,0,0,0,0, + 0,55234,50095,47030,51153,50089,56546,56536,56555,56532,0,0,56541,0,48805,56535, + 0,56544,0,0,56547,56548,0,56568,0,0,56545,56738,56551,0,0,0,0,0,0,0,0,0,0,48363, + 46276,0,0,50083,45799,56570,0,56562,0,56559,0,56572,56558,54000,45800,0,51415, + 51427,56571,0,56557,0,0,0,56567,0,0,56565,0,0,48803,56564,0,45789,0,0,0,0,0, + 56563,48374,56552,48068,0,49395,0,0,0,0,0,48340,56553,56554,0,56561,56566,56569, + 46516,0,51417,48103,56574,56573,54187,56737,56739,56741,54001,56740,56742,56743, + 53929,0,0,0,0,0,0,0,47817,56745,0,0,56758,56753,56756,0,0,0,0,0,0,0,56752,50894, + 0,0,49394,0,0,0,0,51631,0,0,0,56556,56750,0,0,0,0,56759,0,0,56560,56751,0,56760, + 0,56748,0,0,0,0,0,0,0,56761,56755,56749,50346,0,0,0,0,56744,49331,49579,56746, + 56747,0,56754,48113,56757,54184,56762,0,56763,50087,0,0,56786,56764,0,0,0,56785, + 0,47549,0,0,48853,0,48890,0,0,47818,0,0,0,0,56778,0,56773,0,56767,0,0,0,45771, + 56771,0,56779,45732,56789,0,0,0,56766,0,0,0,50896,56784,0,0,0,0,0,56788,49634, + 47046,0,0,0,0,0,56782,56783,0,0,0,56772,0,0,0,56765,0,56781,52433,0,56777,0, + 0,0,0,56770,50120,50876,52910,56780,0,56776,0,0,0,0,0,0,56769,0,0,0,56774,49884, + 0,0,0,0,0,0,54185,54186,56787,53236,51448,0,0,0,0,0,0,0,0,56806,0,0,0,0,0,0, + 56775,0,0,0,56800,49892,0,0,0,0,0,0,0,0,56801,0,0,0,0,0,0,0,0,0,0,56791,0,0, + 0,0,0,55032,0,56793,56792,47344,56790,0,0,0,0,50895,0,46765,0,0,0,0,0,56802, + 0,47865,54497,56807,0,0,0,46288,0,56794,0,49147,56803,0,56799,0,56797,0,0,0, + 0,0,0,0,46553,0,0,0,0,56795,56796,56798,0,48559,56804,0,56805,0,0,0,0,0,0,0, + 0,56821,0,50121,0,0,52194,0,0,0,0,56818,0,0,0,0,0,0,0,0,0,0,0,0,0,55521,0,0, + 50897,0,56820,0,0,0,54772,56819,56816,0,0,56812,0,56815,0,56808,0,0,53486,0, + 0,0,0,51416,56814,0,0,56809,0,0,56810,52210,0,56813,0,0,45517,0,0,0,0,0,0,49334, + 0,48315,56817,0,0,56823,0,56822,56811,0,0,0,0,0,50670,0,0,0,56827,0,0,0,0,0, + 0,0,0,0,0,0,56996,0,0,56995,0,0,0,0,0,0,0,0,0,0,0,0,56824,0,0,0,0,50159,0,49915, + 0,0,0,54753,0,0,52917,0,0,0,0,56829,0,45772,0,0,0,0,0,0,0,0,0,50408,51935,0, + 0,0,0,0,0,0,0,0,0,51134,56826,56828,56830,56994,45226,45518,0,0,0,0,0,57004, + 0,0,0,0,56998,48566,51439,0,0,0,0,0,0,0,0,0,0,0,56993,0,0,56997,0,0,0,0,57001, + 0,0,0,0,0,57000,0,0,0,56999,0,0,0,0,0,0,0,0,0,57005,0,54476,0,0,0,0,57011,57002, + 57006,0,0,49369,0,0,0,0,0,45473,57014,0,57009,0,0,0,0,0,0,0,57010,0,0,0,0,0, + 0,0,0,0,0,0,53670,57013,0,0,0,0,0,0,0,57007,0,0,0,57008,0,53437,0,0,0,57012, + 51949,57017,0,0,0,0,0,0,57016,0,57015,0,0,0,0,0,0,0,57019,0,0,0,0,0,0,0,48613, + 0,0,0,0,0,45784,50154,0,0,57018,0,50618,0,0,0,0,0,0,57020,0,0,0,0,0,0,0,52441, + 0,0,0,0,47018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54501,0,0,0,57021,0,0,0,0,0, + 57023,0,0,0,0,0,0,0,0,0,0,0,50338,0,0,0,0,57025,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,57022,0,57024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54714,0,0,0,57026,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,62126,48034,49842,50608,49863,0,0,62127,0,0,0,0,0,53481, + 0,0,0,54237,0,0,0,60349,0,0,0,0,0,0,0,0,46054,62128,0,62129,0,0,51885,0,0,0, + 0,0,0,0,47847,62131,62133,62132,52196,53178,62130,51892,53967,49900,0,0,0,0, + 0,0,0,52931,62136,45302,62135,0,0,0,0,0,62142,0,45775,0,0,0,0,0,0,53697,62138, + 0,0,0,0,0,62140,54505,0,0,62139,62134,62143,62141,0,62137,0,0,62151,62148,62150, + 0,0,62154,62146,62144,0,0,0,62149,0,0,0,0,0,55035,0,0,0,62145,0,51193,51679, + 0,62152,47558,46512,0,0,62147,62153,62160,62166,0,0,48087,0,0,0,62165,52700, + 0,55019,0,0,62162,62164,0,0,0,0,47346,0,0,0,0,62155,0,0,0,62158,49913,0,54749, + 62156,62157,62159,62163,0,0,0,62169,54204,0,0,0,0,46826,0,51953,0,47076,62167, + 0,0,0,62168,62170,62173,62171,0,0,62172,0,0,0,0,53713,62161,0,52681,0,52943, + 54953,0,62179,0,50139,0,62176,0,0,49327,62188,62174,0,62177,0,0,0,62184,0,0, + 0,0,62178,0,0,62183,0,0,62182,0,0,62185,0,0,0,62175,0,0,62180,62186,0,0,0,0, + 0,0,0,54188,62181,45813,0,0,62194,0,53419,0,0,0,0,62197,0,0,0,48072,0,62201, + 0,0,0,0,0,0,62192,0,0,62198,62200,62202,0,0,0,0,0,0,0,0,62195,0,62193,0,0,0, + 47867,0,46587,0,0,0,0,62191,62199,62189,62190,0,0,0,62187,62374,0,62371,0,0, + 62370,0,0,62196,0,51418,0,0,0,0,0,62203,0,0,0,62373,0,0,0,0,0,0,0,50168,0,0, + 0,0,0,0,0,0,62205,0,0,62375,62377,62372,0,62204,0,0,0,62379,0,62378,0,0,0,0, + 49885,0,0,62382,0,0,62384,0,0,0,0,0,62369,0,0,0,62385,62380,0,0,0,0,0,62383, + 62206,62381,0,0,0,0,0,0,0,62386,0,0,0,0,62388,0,0,0,0,62376,0,0,0,0,62387,0, + 0,0,62389,0,0,0,0,0,0,0,0,0,0,53431,0,0,0,0,62392,0,0,0,0,55801,0,0,0,0,0,0, + 62393,0,0,0,0,0,0,0,0,62391,0,51428,62390,0,0,0,0,62394,0,0,0,0,0,62395,46272, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61123,0,0,0,0,0,0,62396,0,0,62397,0,0,0,53674, + 0,0,0,62636,53446,0,0,0,0,0,0,53456,53724,0,0,0,0,0,0,53198,0,0,48598,0,53699, + 0,0,0,0,0,0,0,47842,57833,53954,61890,45753,0,0,45549,61891,0,51648,46020,0, + 55794,0,52133,0,61892,0,0,0,0,54996,0,0,0,0,0,61893,62656,61894,0,54444,61895, + 0,45248,62657,0,0,62658,0,0,46332,0,50651,0,0,0,0,52411,0,0,0,53476,0,0,0,0, + 0,52704,0,0,0,0,0,61896,0,55795,0,0,0,0,0,0,45499,0,53166,0,0,0,47268,0,0,0, + 0,0,61898,0,0,0,0,61899,0,0,0,0,45763,49617,0,0,55216,61897,0,0,61900,0,0,0, + 0,61902,0,0,0,55798,0,53985,54435,0,0,62659,51385,0,0,0,0,0,62660,0,0,61901, + 61903,49123,61904,0,0,61908,0,0,0,0,0,0,0,61910,61905,0,51665,50657,0,0,0,49891, + 47612,0,0,61907,0,61909,0,0,0,47571,0,0,0,0,0,0,0,61915,0,0,0,0,0,47830,0,45309, + 61913,0,0,0,0,0,61912,61906,61914,0,0,0,0,0,61911,0,0,0,51436,0,0,0,0,52682, + 61917,0,0,0,0,58813,0,0,0,61916,0,61918,0,0,0,0,0,0,0,0,0,0,61919,0,0,53221, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62661,48627,0,0,0,0,0,0,61920, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61921,0,0,0,52983,0,53930,0,61947,0, + 0,47282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48379,47579,0,47590,50137,51923, + 60136,49344,48885,60137,60138,60139,0,60140,60141,60142,60143,48583,0,0,0,62971, + 0,0,0,62973,0,62974,0,62972,0,0,0,0,48610,0,63137,46245,0,0,0,0,63138,0,0,0, + 63139,0,0,0,60594,0,0,0,0,0,0,0,0,0,0,0,0,53716,0,0,0,0,0,0,55786,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,63140,0,0,0,0,0,0,0,0,0,61114,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54706, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54270,52444,0,0,0,0,0,0,0,0,51908,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58816,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63141,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48815,0,0,0,0,0,50857,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,55973,48326,46761,47292,51407,48293,55974,55975,52438,51395,55976,50941, + 0,53685,53993,53686,48327,0,48562,48100,55977,55978,53704,55979,53485,46831, + 49883,0,52175,47085,51688,47043,48887,54948,55980,55981,50880,55271,51894,0, + 54697,52191,54767,55982,55007,46282,55984,55983,0,53995,55985,55986,55987,51924, + 55988,51883,55989,55990,46031,55023,55991,48048,46510,55992,55993,47598,53679, + 53992,55994,47299,53226,45807,55995,55996,0,48619,52956,54255,55997,52979,55998, + 54229,48101,55999,52149,52176,56000,51179,55022,56001,50613,46785,56002,47052, + 49102,56003,56004,52141,56005,46583,56006,49602,55227,56007,52408,0,53994,50353, + 56008,46589,48081,56009,53427,56010,56011,52925,56012,56013,56014,45815,56017, + 56015,53736,56016,50133,56018,0,56019,56020,56021,53435,53925,45305,56022,51115, + 56023,48631,50081,56024,56025,50173,52407,56026,56027,49342,50903,56028,56029, + 51124,56030,56031,47560,0,0,0,0,0,0,0,0,0,48109,0,0,0,0,46777,62712,0,62713, + 0,0,52707,0,0,0,0,0,0,0,0,62905,0,0,0,0,60384,0,0,0,0,0,0,53235,48063,0,0,0, + 0,0,0,0,47808,54437,0,0,0,0,0,0,0,57817,0,0,0,0,62964,45482,45810,0,0,0,0,0, + 0,0,62965,0,0,62967,0,0,0,47825,62966,0,50098,0,0,0,0,0,0,0,62969,0,0,0,62968, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45492,54762,47290,0,47537,45766,54512,53197, + 45276,54731,48117,54986,47031,52400,50870,45537,47546,55036,47585,47009,48378, + 60122,60123,52473,47603,60124,46331,50099,47057,47832,60125,54516,60126,48342, + 48095,60127,49630,49848,54495,55242,60128,60129,60132,60130,60131,51678,47283, + 46788,60133,51946,51661,46285,0,0,58073,50658,60134,49333,0,55224,60135,55212, + 51452,55507,55501,54494,0,54521,51652,54190,47315,46048,0,51682,62710,0,0,0, + 47829,0,62711,0,0,55263,0,0,62705,47280,54740,47311,50928,0,0,0,0,0,0,0,0,0, + 46019,0,0,62706,45996,0,0,0,0,54461,51191,0,0,0,0,0,62708,0,0,62707,0,0,0,0, + 0,0,0,0,0,0,52427,0,0,0,51364,0,0,0,0,0,0,0,0,0,0,0,0,0,62709,0,55267,50623, + 62912,0,0,62907,0,62915,0,62914,0,54970,62913,0,0,0,54462,62916,0,62924,0,0, + 0,0,45263,46584,0,62921,62922,0,50652,0,0,0,0,62917,62918,0,0,62919,62923,0, + 48864,62920,47354,0,0,0,62928,62931,0,0,0,49127,0,47602,62908,62925,0,0,49847, + 0,0,0,52472,0,48377,0,62926,62927,62929,46821,62930,0,62933,0,0,0,0,0,0,0,62909, + 0,0,0,62932,54203,0,46060,0,0,52388,0,0,0,0,62934,0,0,0,0,0,0,0,0,62935,48865, + 62936,0,0,52447,62939,0,0,0,0,0,45768,55257,0,62937,0,62938,62940,0,62946,0, + 0,0,62944,0,0,0,62943,62941,0,0,62945,0,0,62942,62948,62949,0,52451,0,0,58815, + 46520,62947,62952,52387,0,0,0,0,0,62950,62951,0,0,0,0,0,0,62910,0,0,0,0,0,0, + 0,0,0,0,0,0,45508,0,0,62911,0,0,46533,45796,0,62956,62953,0,46807,0,62957,0, + 62954,0,0,0,0,0,62955,0,0,46298,0,54506,0,0,0,62958,0,46073,0,0,0,0,0,0,0,62959, + 62961,0,0,0,62960,0,0,0,0,0,0,0,62962,0,62963,0,0,0,0,0,0,0,0,0,0,0,0,51693, + 47530,0,0,51195,0,0,46819,0,0,0,0,0,0,0,52425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,60070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,46005,54526,47596,53497,0,59885,55210,59886,49878,51437,47844,59887, + 59888,59889,55009,59890,59891,59893,59892,59894,59895,51169,59896,54488,59897, + 48590,0,59898,59899,48591,59900,47272,49598,59901,45490,48084,47605,59902,0, + 60065,60066,60067,47096,48301,0,51940,57550,54447,53181,54711,60068,54750,60069, + 53441,47548,0,46279,45529,0,0,0,49329,0,0,0,0,45542,45543,0,45544,0,0,0,0,46013, + 51432,0,0,0,0,58817,0,0,45535,0,0,0,49609,46319,0,0,51112,54232,0,50937,53688, + 0,47613,49909,0,0,0,0,0,54189,0,54475,48636,0,58818,47029,58819,0,0,48057,54754, + 0,48632,54454,52901,49580,46041,0,0,52470,0,58822,58820,58824,0,58826,58823, + 46543,50888,0,46588,58821,0,51958,0,0,58825,0,0,0,50132,45509,48291,0,0,0,55223, + 0,0,52683,52173,51914,52435,58828,58827,50406,0,0,53665,53687,58829,0,58832, + 0,52664,55024,58831,46557,0,52670,0,58833,46778,0,0,52648,47588,0,51909,46033, + 52185,54508,58834,47082,0,0,0,58830,0,0,0,0,0,0,58837,46334,58838,0,0,0,0,0, + 58835,58836,0,53981,0,0,49887,45510,0,54242,0,0,46813,52204,0,58839,0,0,54262, + 0,0,0,0,0,45545,0,46836,58842,58840,58841,46528,0,0,0,53957,58844,0,0,58846, + 0,0,0,0,0,0,58845,51122,0,53923,0,0,58843,0,0,0,0,54498,54746,0,0,0,0,0,58848, + 55281,0,0,0,0,0,0,0,58849,0,45532,53755,0,58850,58852,0,0,0,0,58851,0,0,58853, + 0,0,0,0,0,53976,0,46539,0,59359,0,56053,0,56056,0,56054,0,56055,0,0,0,56058, + 53455,50375,0,0,45294,0,0,0,53424,0,56057,0,54218,47786,56226,51185,0,56060, + 56059,51675,56061,0,56225,55262,56062,49626,0,0,56229,0,0,54260,0,0,56231,56228, + 0,56232,0,0,48572,0,0,0,49353,56227,56230,54947,0,56233,0,0,0,56237,0,0,0,56238, + 56236,47810,0,0,0,49060,56235,0,0,0,56234,54471,45759,0,0,56239,0,47609,0,56240, + 0,0,0,0,46011,0,0,0,46502,0,0,0,0,46780,56241,0,0,0,46837,0,56242,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45513,0,0,0,0,56244,0,0,0,56243,56245,0,0,0,0, + 0,0,0,0,0,0,0,56247,0,56246,0,0,0,0,0,0,0,56248,0,0,0,0,0,0,0,0,0,56249,0,0, + 56250,0,0,54223,62714,51189,55235,50660,62716,62717,62715,0,48838,0,0,0,0,53487, + 0,0,47059,0,0,54477,52394,0,0,62882,62881,47784,62718,52182,0,0,0,62884,49362, + 0,46058,0,52650,62885,62883,48564,62888,0,62889,48589,50104,49121,52193,62890, + 0,0,0,62886,62887,50416,0,0,0,0,0,62892,0,46268,0,55277,0,46295,62891,62894, + 0,0,62893,62895,53457,0,0,0,0,0,0,0,50129,51369,0,0,0,0,0,0,62896,62897,0,0, + 0,0,0,0,62898,0,0,62899,62900,62901,0,0,0,0,62903,62902,0,0,0,0,62904,0,0,0, + 0,0,0,0,0,0,0,0,0,45769,0,54228,51917,0,49391,55000,53936,49599,0,48624,0,0, + 0,0,0,0,0,0,0,0,47274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,48376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 63174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63175,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63176,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63177,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 63178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,63180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63179,0,0,0,0,0,0,0,0,0,0,0, + 63465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63181,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,63182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61124,61125,61126, + 54763,46756,61128,61127,61129,61130,51109,61131,61132,0,47024,46582,61133,61135, + 0,61134,0,47302,61136,61137,61138,46811,45998,54995,50374,45493,47318,61139, + 61140,54463,51157,48891,52953,47539,61142,61141,61144,61143,50597,61145,61146, + 51118,61147,51119,61148,45735,61149,61150,61151,61152,61153,55274,61154,61155, + 48344,61156,54219,52474,45740,49637,61157,51110,50093,0,61158,61159,61160,61161, + 61162,61163,61164,0,61165,61166,61167,0,0,61168,61169,61170,61172,61171,0,61173, + 52653,49857,61174,61175,61176,54689,61177,53171,61178,61179,0,61180,61181,61345, + 61182,61346,47349,50170,61347,61348,48578,53951,45817,61349,61350,61351,54008, + 61352,55037,61353,50892,0,61354,61355,49588,61356,53242,52216,61358,61357,46074, + 47608,61359,61360,53474,61361,61362,47078,53439,61363,61364,61365,51441,52448, + 61366,61367,61368,61369,61370,54752,61371,46317,50090,61372,0,61373,61374,61375, + 0,52989,61376,49888,46264,55222,48629,0,53191,61379,61377,61378,61380,46759, + 48380,48866,50124,61381,61382,0,61383,61391,61384,61385,61386,51138,61425,46797, + 61387,0,61388,61389,46790,50110,61390,0,61392,61393,61394,54770,0,61395,50423, + 0,61396,50424,61397,61398,47332,45303,61399,61400,61401,0,61402,61403,61404, + 61405,0,61406,48821,61409,61407,61408,0,61410,61411,49613,61412,61413,61414, + 61415,61416,61417,61418,61419,61420,49368,0,61421,49581,61422,61423,61424,0, + 0,53218,0,0,0,0,0,0,0,0,45988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,50117,58309,51649,58310,0,45525,52938,46259,51442,58311,53200,58312, + 48356,58313,58314,50118,54690,50390,47595,52933,58315,50166,58316,0,47015,47347, + 47826,58317,58318,54468,58319,0,58320,53707,58321,58322,58323,58324,53718,58325, + 45819,49339,58326,0,49323,58327,58328,58329,0,58330,58331,0,47287,56034,0,46803, + 0,56036,56035,0,0,0,0,0,0,0,56038,0,0,0,51438,0,0,56037,47040,53748,54005,54771, + 48599,0,0,0,0,55272,56040,56039,0,45218,52691,0,56041,0,47293,48330,49853,49828, + 46018,56042,0,49834,50352,48565,0,0,53214,0,0,0,56043,51650,0,0,0,0,0,45533, + 0,0,0,56044,0,46776,54458,0,46077,0,0,56045,54473,53205,50659,0,56046,0,0,0, + 0,0,56047,0,56048,49642,52437,53213,0,0,0,0,0,0,0,0,0,0,0,0,0,54247,49825,0, + 56049,0,0,52197,0,56050,0,52198,54014,0,0,0,47348,0,0,56051,45231,53174,0,0, + 54735,0,0,0,0,0,0,0,0,0,0,52205,0,0,0,0,0,0,0,0,56052,0,0,58308,0,0,49573,0, + 0,63167,0,0,63168,63169,50385,0,51384,53731,0,0,53467,53701,48303,47565,0,61428, + 0,0,46278,54202,63170,46075,0,0,63171,0,0,46577,0,0,0,0,0,0,0,0,0,0,63173,0, + 0,0,0,0,0,0,54250,63143,53673,0,0,0,0,63145,0,0,0,63144,0,0,49635,49367,0,45474, + 0,0,0,0,52973,0,53480,63147,0,0,53238,0,63146,54768,63148,50105,0,0,0,48116, + 63150,63149,0,0,0,50398,0,0,49624,0,0,0,0,0,52138,0,53180,0,0,0,0,0,0,0,0,0, + 0,0,63151,0,0,63152,0,0,63153,0,49846,0,0,0,0,0,45268,50681,0,0,0,0,63154,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51168,63142,0,0,48824,0,0,48818,0,46565, + 0,0,47047,0,49087,50130,50150,0,0,55500,0,0,0,47343,0,0,0,0,0,0,0,0,0,48633, + 53669,0,45264,0,0,0,0,0,63408,0,0,0,0,0,0,0,0,63409,0,0,0,0,0,53420,0,45232, + 0,0,0,63410,63411,0,63412,0,0,0,51146,0,0,0,0,0,0,0,48847,0,0,63415,0,0,0,0, + 0,0,0,63414,0,45534,0,63413,0,0,63416,0,63417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52900,51405, + 0,47787,59576,59577,59578,48834,0,0,0,0,0,54004,0,54479,51672,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,53939,46757,51178,61948,53230,52147,53483,59375,52711,47563,46809, + 61949,45284,52172,61950,54436,49837,49644,50884,48817,62113,48341,0,62114,62115, + 0,62116,53955,50869,0,52679,62117,0,54193,49093,52450,0,62118,62119,53717,46830, + 62120,62121,46559,62122,62123,0,45820,62124,62125,51367,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47079,0,0,60585,60586, + 60587,0,60588,0,0,50862,60589,60590,0,0,0,47049,51891,0,0,0,0,0,0,0,58040,63439, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63440, + 0,0,45773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63441,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63443, + 63442,0,0,0,0,0,0,0,0,0,0,0,0,0,58043,0,48290,0,58044,58045,58046,58047,58048, + 58049,47033,54011,48548,51918,45477,52167,0,58050,46844,51396,58051,0,0,48584, + 0,45565,58052,0,46838,58053,50393,0,0,58054,53210,47581,58055,49313,0,58056, + 45814,0,58057,0,49651,58058,58059,49912,58060,58061,58062,51927,55480,55781, + 53219,0,0,0,0,0,0,0,0,0,0,0,61605,0,0,56496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49901,54438,52692,53681, + 46043,51197,0,45749,49855,59104,51899,59105,59106,48852,59107,55204,52693,59109, + 48349,59108,59110,59111,49902,0,48574,59112,49894,47783,59113,0,59114,46034, + 53737,0,0,49061,59115,50927,59116,59117,0,0,59118,50861,59119,0,51623,59120, + 59121,59122,58809,59123,59124,49890,59125,59126,55016,59127,0,59128,47559,0, + 0,0,0,0,0,0,63419,63418,0,0,0,0,63422,63420,47777,0,63423,0,63424,0,0,0,63426, + 63425,63428,0,0,63427,0,0,0,0,0,63429,63430,0,0,0,0,63431,0,52200,0,0,0,0,47327, + 0,0,0,0,0,0,63444,0,63445,0,0,0,0,63446,0,0,0,0,63448,0,63450,0,63447,0,0,0, + 0,0,0,0,0,0,63451,0,63449,0,0,0,0,0,0,0,55255,0,0,0,0,63452,0,0,0,0,0,0,63453, + 0,0,0,63454,0,0,0,0,0,0,0,0,0,0,0,63455,0,0,0,63456,0,0,0,0,0,0,0,0,0,0,0,56267, + 0,0,55466,0,0,0,0,0,0,0,0,58871,47597,0,0,0,0,49149,48106,63433,50887,63432, + 0,63434,63436,63435,0,0,0,63437,0,52922,0,63438,0,0,50343,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54243,0,0,63183,0,49843,63184,0,0,63185, + 63186,63187,63188,0,0,63190,0,45483,63191,0,63192,63193,63194,0,63195,63196, + 0,0,0,0,63197,63198,53194,0,63199,63200,63201,63202,63203,63204,49392,63205, + 63206,63207,63208,63209,0,63210,0,63211,63212,0,63213,63214,63215,63216,63217, + 63218,63219,63220,48808,0,63221,63222,63223,63224,0,0,0,0,0,51450,63225,63226, + 63227,63228,0,0,63229,63230,63393,63394,63395,63396,63397,0,0,63398,63399,63400, + 45550,63401,63402,63403,0,0,63404,63405,49627,63406,0,0,63407,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,50417,61615,48294,61616,50169,0,50616,53691,0,61617,61618,61619,61620, + 61621,53692,0,53740,0,61623,61622,54439,0,52690,61624,61626,61625,61627,61628, + 0,0,47339,61629,47848,0,61630,61631,48873,61632,46828,61633,61634,61635,61636, + 51381,61637,61638,0,61639,50676,0,61640,0,0,0,61641,0,61642,63421,0,61643,61644, + 61645,0,61646,0,0,0,0,61647,47831,0,61648,61649,61650,61651,61652,61653,61654, + 61656,0,0,54181,61655,0,61657,0,0,0,0,0,0,0,0,0,0,62906,49849,0,0,63460,0,0, + 0,0,63461,63462,0,0,63463,0,0,0,0,0,0,63464,49844,0,0,0,0,0,0,0,0,0,63466,0, + 63467,0,0,0,0,0,0,49907,0,0,0,0,0,0,0,0,0,0,0,0,0,62704,0,0,0,62703,0,0,49897, + 0,63457,63458,0,0,0,0,0,48070,0,0,0,0,55780,0,0,0,51954,49384,61604,0,47834, + 0,0,51117,0,0,0,50348,0,0,63468,63469,63470,0,63472,63471,0,63473,0,0,63476, + 0,63475,0,63474,63477,0,0,0,0,63478,0,0,0,0,0,0,0,0,0,60905,0,60906,60907,0, + 63164,0,0,0,0,0,0,0,0,0,0,0,0,63165,0,63166,46758,0,55486,0,0,47556,0,0,0,55483, + 0,56497,0,0,0,0,0,0,51955,0,63479,0,0,0,0,0,0,0,0,0,63480,0,0,63481,0,0,0,0, + 0,0,0,63483,0,63482,0,45511,0,63484,63485,0,0,0,0,0,63486,0,0,0,0,0,0,0,0,0, + 0,0,50923,60596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46045,63155,0,0,63156,49636,63157,63158,63159, + 63160,63161,63162,51363,63163,0,0,0,0,0,0,0,0,0,0,0,0,49658,47528,60904,0,0, + 0,47594,55775,41889,41890,41891,41447,41893,41894,41895,41896,41897,41898,41899, + 41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912, + 41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925, + 41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938, + 41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951, + 41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964, + 41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977, + 41978,41979,41980,41981,41387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41449,41450,0,41982, + 0,41892,0} \ No newline at end of file diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJis.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJis.java new file mode 100644 index 000000000..5b9f63f38 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJis.java @@ -0,0 +1,92 @@ +package com.jpexs.helpers.utf8.charset; + +import com.jpexs.decompiler.flash.action.parser.ActionParseException; +import com.jpexs.decompiler.flash.action.parser.script.ActionScriptLexer; +import com.jpexs.decompiler.flash.action.parser.script.ParsedSymbol; +import com.jpexs.decompiler.flash.action.parser.script.SymbolType; +import com.jpexs.helpers.utf8.Utf8Helper; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.HashMap; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +/** + * ShiftJis to unicode and back conversion. + * Based on https://github.com/MoarVM/MoarVM/blob/master/src/strings/shiftjis_codeindex.h + */ +public class ShiftJis extends AbstractCharsetConverter { + + public static final int[][] shiftjis_offset_values = { + {107, 11}, + {126, 8}, + {141, 11}, + {167, 7}, + {182, 4}, + {187, 15}, + {212, 7}, + {245, 6}, + {277, 4}, + {364, 11}, + {461, 8}, + {493, 8}, + {525, 38}, + {596, 15}, + {644, 13}, + {689, 438}, + {1157, 1}, + {1181, 8}, + {1219, 190}, + {4374, 43}, + {7807, 2908} + }; + + public static final int SHIFTJIS_OFFSET_VALUES_ELEMS = 21; + public static final int SHIFTJIS_INDEX_TO_CP_CODEPOINTS_ELEMS = 7350; + public static final int SHIFTJIS_MAX_INDEX = 11103; + + private static final int SHIFTJIS_NULL = -1; + + private static int[] shiftjis_index_to_cp_codepoints = new int[7350]; + private static Map shiftjis_cp_to_index = new HashMap<>(); + + static { + //Since data is too long to save it directly into Java source, load it from bin + + InputStream is = Gb2312.class.getResourceAsStream("/com/jpexs/helpers/utf8/charset/ShiftJisdata.bin"); + if (is == null) { + System.exit(0); + } + ActionScriptLexer lexer = new ActionScriptLexer(new InputStreamReader(is, Utf8Helper.charset)); + try { + ParsedSymbol s; + readOneDimensionalInt(shiftjis_index_to_cp_codepoints, lexer); + readMap(shiftjis_cp_to_index, lexer); + + } catch (IOException | ActionParseException ex) { + Logger.getLogger(ShiftJis.class.getName()).log(Level.SEVERE, null, ex); + } + } + + @Override + public int toUnicode(int codePoint) { + if (codePoint < 128) { + return codePoint; + } + + if (shiftjis_cp_to_index.containsKey(codePoint)) { + return shiftjis_cp_to_index.get(codePoint); + } + return SHIFTJIS_NULL; + } + + @Override + public int fromUnicode(int codePoint) { + if (codePoint < shiftjis_index_to_cp_codepoints.length) { + return shiftjis_index_to_cp_codepoints[codePoint]; + } + return SHIFTJIS_NULL; + } +} diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJisdata.bin b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJisdata.bin new file mode 100644 index 000000000..700597a28 --- /dev/null +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/utf8/charset/ShiftJisdata.bin @@ -0,0 +1,7891 @@ +shiftjis_index_to_cp_codepoints = { +12288,12289,12290,65292,65294,12539,65306,65307,65311,65281,12443,12444,180, +65344,168,65342,65507,65343,12541,12542,12445,12446,12291,20189,12293,12294, +12295,12540,8213,8208,65295,65340,65374,8741,65372,8230,8229,8216,8217,8220, +8221,65288,65289,12308,12309,65339,65341,65371,65373,12296,12297,12298,12299, +12300,12301,12302,12303,12304,12305,65291,65293,177,215,247,65309,8800,65308, +65310,8806,8807,8734,8756,9794,9792,176,8242,8243,8451,65509,65284,65504,65505, +65285,65283,65286,65290,65312,167,9734,9733,9675,9679,9678,9671,9670,9633,9632, +9651,9650,9661,9660,8251,12306,8594,8592,8593,8595,12307,8712,8715,8838,8839, +8834,8835,8746,8745,8743,8744,65506,8658,8660,8704,8707,8736,8869,8978,8706, +8711,8801,8786,8810,8811,8730,8765,8733,8757,8747,8748,8491,8240,9839,9837,9834, +8224,8225,182,9711,65296,65297,65298,65299,65300,65301,65302,65303,65304,65305, +65313,65314,65315,65316,65317,65318,65319,65320,65321,65322,65323,65324,65325, +65326,65327,65328,65329,65330,65331,65332,65333,65334,65335,65336,65337,65338, +65345,65346,65347,65348,65349,65350,65351,65352,65353,65354,65355,65356,65357, +65358,65359,65360,65361,65362,65363,65364,65365,65366,65367,65368,65369,65370, +12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365, +12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378, +12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391, +12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404, +12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417, +12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430, +12431,12432,12433,12434,12435,12449,12450,12451,12452,12453,12454,12455,12456, +12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469, +12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482, +12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495, +12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508, +12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521, +12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534, +913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,931,932,933, +934,935,936,937,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960, +961,963,964,965,966,967,968,969,1040,1041,1042,1043,1044,1045,1025,1046,1047, +1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063, +1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1105,1078, +1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094, +1095,1096,1097,1098,1099,1100,1101,1102,1103,9472,9474,9484,9488,9496,9492,9500, +9516,9508,9524,9532,9473,9475,9487,9491,9499,9495,9507,9523,9515,9531,9547,9504, +9519,9512,9527,9535,9501,9520,9509,9528,9538,9312,9313,9314,9315,9316,9317,9318, +9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,8544,8545,8546, +8547,8548,8549,8550,8551,8552,8553,13129,13076,13090,13133,13080,13095,13059, +13110,13137,13143,13069,13094,13091,13099,13130,13115,13212,13213,13214,13198, +13199,13252,13217,13179,12317,12319,8470,13261,8481,12964,12965,12966,12967, +12968,12849,12850,12857,13182,13181,13180,8786,8801,8747,8750,8721,8730,8869, +8736,8735,8895,8757,8745,8746,20124,21782,23043,38463,21696,24859,25384,23030, +36898,33909,33564,31312,24746,25569,28197,26093,33894,33446,39925,26771,22311, +26017,25201,23451,22992,34427,39156,32098,32190,39822,25110,31903,34999,23433, +24245,25353,26263,26696,38343,38797,26447,20197,20234,20301,20381,20553,22258, +22839,22996,23041,23561,24799,24847,24944,26131,26885,28858,30031,30064,31227, +32173,32239,32963,33806,34915,35586,36949,36986,21307,20117,20133,22495,32946, +37057,30959,19968,22769,28322,36920,31282,33576,33419,39983,20801,21360,21693, +21729,22240,23035,24341,39154,28139,32996,34093,38498,38512,38560,38907,21515, +21491,23431,28879,32701,36802,38632,21359,40284,31418,19985,30867,33276,28198, +22040,21764,27421,34074,39995,23013,21417,28006,29916,38287,22082,20113,36939, +38642,33615,39180,21473,21942,23344,24433,26144,26355,26628,27704,27891,27945, +29787,30408,31310,38964,33521,34907,35424,37613,28082,30123,30410,39365,24742, +35585,36234,38322,27022,21421,20870,22290,22576,22852,23476,24310,24616,25513, +25588,27839,28436,28814,28948,29017,29141,29503,32257,33398,33489,34199,36960, +37467,40219,22633,26044,27738,29989,20985,22830,22885,24448,24540,25276,26106, +27178,27431,27572,29579,32705,35158,40236,40206,40644,23713,27798,33659,20740, +23627,25014,33222,26742,29281,20057,20474,21368,24681,28201,31311,38899,19979, +21270,20206,20309,20285,20385,20339,21152,21487,22025,22799,23233,23478,23521, +31185,26247,26524,26550,27468,27827,28779,29634,31117,31166,31292,31623,33457, +33499,33540,33655,33775,33747,34662,35506,22057,36008,36838,36942,38686,34442, +20420,23784,25105,29273,30011,33253,33469,34558,36032,38597,39187,39381,20171, +20250,35299,22238,22602,22730,24315,24555,24618,24724,24674,25040,25106,25296, +25913,39745,26214,26800,28023,28784,30028,30342,32117,33445,34809,38283,38542, +35997,20977,21182,22806,21683,23475,23830,24936,27010,28079,30861,33995,34903, +35442,37799,39608,28012,39336,34521,22435,26623,34510,37390,21123,22151,21508, +24275,25313,25785,26684,26680,27579,29554,30906,31339,35226,35282,36203,36611, +37101,38307,38548,38761,23398,23731,27005,38989,38990,25499,31520,27179,27263, +26806,39949,28511,21106,21917,24688,25324,27963,28167,28369,33883,35088,36676, +19988,39993,21494,26907,27194,38788,26666,20828,31427,33970,37340,37772,22107, +40232,26658,33541,33841,31909,21000,33477,29926,20094,20355,20896,23506,21002, +21208,21223,24059,21914,22570,23014,23436,23448,23515,24178,24185,24739,24863, +24931,25022,25563,25954,26577,26707,26874,27454,27475,27735,28450,28567,28485, +29872,29976,30435,30475,31487,31649,31777,32233,32566,32752,32925,33382,33694, +35251,35532,36011,36996,37969,38291,38289,38306,38501,38867,39208,33304,20024, +21547,23736,24012,29609,30284,30524,23721,32747,36107,38593,38929,38996,39000, +20225,20238,21361,21916,22120,22522,22855,23305,23492,23696,24076,24190,24524, +25582,26426,26071,26082,26399,26827,26820,27231,24112,27589,27671,27773,30079, +31048,23395,31232,32000,24509,35215,35352,36020,36215,36556,36637,39138,39438, +39740,20096,20605,20736,22931,23452,25135,25216,25836,27450,29344,30097,31047, +32681,34811,35516,35696,25516,33738,38816,21513,21507,21931,26708,27224,35440, +30759,26485,40653,21364,23458,33050,34384,36870,19992,20037,20167,20241,21450, +21560,23470,24339,24613,25937,26429,27714,27762,27875,28792,29699,31350,31406, +31496,32026,31998,32102,26087,29275,21435,23621,24040,25298,25312,25369,28192, +34394,35377,36317,37624,28417,31142,39770,20136,20139,20140,20379,20384,20689, +20807,31478,20849,20982,21332,21281,21375,21483,21932,22659,23777,24375,24394, +24623,24656,24685,25375,25945,27211,27841,29378,29421,30703,33016,33029,33288, +34126,37111,37857,38911,39255,39514,20208,20957,23597,26241,26989,23616,26354, +26997,29577,26704,31873,20677,21220,22343,24062,37670,26020,27427,27453,29748, +31105,31165,31563,32202,33465,33740,34943,35167,35641,36817,37329,21535,37504, +20061,20534,21477,21306,29399,29590,30697,33510,36527,39366,39368,39378,20855, +24858,34398,21936,31354,20598,23507,36935,38533,20018,27355,37351,23633,23624, +25496,31391,27795,38772,36705,31402,29066,38536,31874,26647,32368,26705,37740, +21234,21531,34219,35347,32676,36557,37089,21350,34952,31041,20418,20670,21009, +20804,21843,22317,29674,22411,22865,24418,24452,24693,24950,24935,25001,25522, +25658,25964,26223,26690,28179,30054,31293,31995,32076,32153,32331,32619,33550, +33610,34509,35336,35427,35686,36605,38938,40335,33464,36814,39912,21127,25119, +25731,28608,38553,26689,20625,27424,27770,28500,31348,32080,34880,35363,26376, +20214,20537,20518,20581,20860,21048,21091,21927,22287,22533,23244,24314,25010, +25080,25331,25458,26908,27177,29309,29356,29486,30740,30831,32121,30476,32937, +35211,35609,36066,36562,36963,37749,38522,38997,39443,40568,20803,21407,21427, +24187,24358,28187,28304,29572,29694,32067,33335,35328,35578,38480,20046,20491, +21476,21628,22266,22993,23396,24049,24235,24359,25144,25925,26543,28246,29392, +31946,34996,32929,32993,33776,34382,35463,36328,37431,38599,39015,40723,20116, +20114,20237,21320,21577,21566,23087,24460,24481,24735,26791,27278,29786,30849, +35486,35492,35703,37264,20062,39881,20132,20348,20399,20505,20502,20809,20844, +21151,21177,21246,21402,21475,21521,21518,21897,22353,22434,22909,23380,23389, +23439,24037,24039,24055,24184,24195,24218,24247,24344,24658,24908,25239,25304, +25511,25915,26114,26179,26356,26477,26657,26775,27083,27743,27946,28009,28207, +28317,30002,30343,30828,31295,31968,32005,32024,32094,32177,32789,32771,32943, +32945,33108,33167,33322,33618,34892,34913,35611,36002,36092,37066,37237,37489, +30783,37628,38308,38477,38917,39321,39640,40251,21083,21163,21495,21512,22741, +25335,28640,35946,36703,40633,20811,21051,21578,22269,31296,37239,40288,40658, +29508,28425,33136,29969,24573,24794,39592,29403,36796,27492,38915,20170,22256, +22372,22718,23130,24680,25031,26127,26118,26681,26801,28151,30165,32058,33390, +39746,20123,20304,21449,21766,23919,24038,24046,26619,27801,29811,30722,35408, +37782,35039,22352,24231,25387,20661,20652,20877,26368,21705,22622,22971,23472, +24425,25165,25505,26685,27507,28168,28797,37319,29312,30741,30758,31085,25998, +32048,33756,35009,36617,38555,21092,22312,26448,32618,36001,20916,22338,38442, +22586,27018,32948,21682,23822,22524,30869,40442,20316,21066,21643,25662,26152, +26388,26613,31364,31574,32034,37679,26716,39853,31545,21273,20874,21047,23519, +25334,25774,25830,26413,27578,34217,38609,30352,39894,25420,37638,39851,30399, +26194,19977,20632,21442,23665,24808,25746,25955,26719,29158,29642,29987,31639, +32386,34453,35715,36059,37240,39184,26028,26283,27531,20181,20180,20282,20351, +21050,21496,21490,21987,22235,22763,22987,22985,23039,23376,23629,24066,24107, +24535,24605,25351,25903,23388,26031,26045,26088,26525,27490,27515,27663,29509, +31049,31169,31992,32025,32043,32930,33026,33267,35222,35422,35433,35430,35468, +35566,36039,36060,38604,39164,27503,20107,20284,20365,20816,23383,23546,24904, +25345,26178,27425,28363,27835,29246,29885,30164,30913,31034,32780,32819,33258, +33940,36766,27728,40575,24335,35672,40235,31482,36600,23437,38635,19971,21489, +22519,22833,23241,23460,24713,28287,28422,30142,36074,23455,34048,31712,20594, +26612,33437,23649,34122,32286,33294,20889,23556,25448,36198,26012,29038,31038, +32023,32773,35613,36554,36974,34503,37034,20511,21242,23610,26451,28796,29237, +37196,37320,37675,33509,23490,24369,24825,20027,21462,23432,25163,26417,27530, +29417,29664,31278,33131,36259,37202,39318,20754,21463,21610,23551,25480,27193, +32172,38656,22234,21454,21608,23447,23601,24030,20462,24833,25342,27954,31168, +31179,32066,32333,32722,33261,33311,33936,34886,35186,35728,36468,36655,36913, +37195,37228,38598,37276,20160,20303,20805,21313,24467,25102,26580,27713,28171, +29539,32294,37325,37507,21460,22809,23487,28113,31069,32302,31899,22654,29087, +20986,34899,36848,20426,23803,26149,30636,31459,33308,39423,20934,24490,26092, +26991,27529,28147,28310,28516,30462,32020,24033,36981,37255,38918,20966,21021, +25152,26257,26329,28186,24246,32210,32626,26360,34223,34295,35576,21161,21465, +22899,24207,24464,24661,37604,38500,20663,20767,21213,21280,21319,21484,21736, +21830,21809,22039,22888,22974,23100,23477,23558,23567,23569,23578,24196,24202, +24288,24432,25215,25220,25307,25484,25463,26119,26124,26157,26230,26494,26786, +27167,27189,27836,28040,28169,28248,28988,28966,29031,30151,30465,30813,30977, +31077,31216,31456,31505,31911,32057,32918,33750,33931,34121,34909,35059,35359, +35388,35412,35443,35937,36062,37284,37478,37758,37912,38556,38808,19978,19976, +19998,20055,20887,21104,22478,22580,22732,23330,24120,24773,25854,26465,26454, +27972,29366,30067,31331,33976,35698,37304,37664,22065,22516,39166,25325,26893, +27542,29165,32340,32887,33394,35302,39135,34645,36785,23611,20280,20449,20405, +21767,23072,23517,23529,24515,24910,25391,26032,26187,26862,27035,28024,28145, +30003,30137,30495,31070,31206,32051,33251,33455,34218,35242,35386,36523,36763, +36914,37341,38663,20154,20161,20995,22645,22764,23563,29978,23613,33102,35338, +36805,38499,38765,31525,35535,38920,37218,22259,21416,36887,21561,22402,24101, +25512,27700,28810,30561,31883,32736,34928,36930,37204,37648,37656,38543,29790, +39620,23815,23913,25968,26530,36264,38619,25454,26441,26905,33733,38935,38592, +35070,28548,25722,23544,19990,28716,30045,26159,20932,21046,21218,22995,24449, +24615,25104,25919,25972,26143,26228,26866,26646,27491,28165,29298,29983,30427, +31934,32854,22768,35069,35199,35488,35475,35531,36893,37266,38738,38745,25993, +31246,33030,38587,24109,24796,25114,26021,26132,26512,30707,31309,31821,32318, +33034,36012,36196,36321,36447,30889,20999,25305,25509,25666,25240,35373,31363, +31680,35500,38634,32118,33292,34633,20185,20808,21315,21344,23459,23554,23574, +24029,25126,25159,25776,26643,26676,27849,27973,27927,26579,28508,29006,29053, +26059,31359,31661,32218,32330,32680,33146,33307,33337,34214,35438,36046,36341, +36984,36983,37549,37521,38275,39854,21069,21892,28472,28982,20840,31109,32341, +33203,31950,22092,22609,23720,25514,26366,26365,26970,29401,30095,30094,30990, +31062,31199,31895,32032,32068,34311,35380,38459,36961,40736,20711,21109,21452, +21474,20489,21930,22766,22863,29245,23435,23652,21277,24803,24819,25436,25475, +25407,25531,25805,26089,26361,24035,27085,27133,28437,29157,20105,30185,30456, +31379,31967,32207,32156,32865,33609,33624,33900,33980,34299,35013,36208,36865, +36973,37783,38684,39442,20687,22679,24974,33235,34101,36104,36896,20419,20596, +21063,21363,24687,25417,26463,28204,36275,36895,20439,23646,36042,26063,32154, +21330,34966,20854,25539,23384,23403,23562,25613,26449,36956,20182,22810,22826, +27760,35409,21822,22549,22949,24816,25171,26561,33333,26965,38464,39364,39464, +20307,22534,23550,32784,23729,24111,24453,24608,24907,25140,26367,27888,28382, +32974,33151,33492,34955,36024,36864,36910,38538,40667,39899,20195,21488,22823, +31532,37261,38988,40441,28381,28711,21331,21828,23429,25176,25246,25299,27810, +28655,29730,35351,37944,28609,35582,33592,20967,34552,21482,21481,20294,36948, +36784,22890,33073,24061,31466,36799,26842,35895,29432,40008,27197,35504,20025, +21336,22022,22374,25285,25506,26086,27470,28129,28251,28845,30701,31471,31658, +32187,32829,32966,34507,35477,37723,22243,22727,24382,26029,26262,27264,27573, +30007,35527,20516,30693,22320,24347,24677,26234,27744,30196,31258,32622,33268, +34584,36933,39347,31689,30044,31481,31569,33988,36880,31209,31378,33590,23265, +30528,20013,20210,23449,24544,25277,26172,26609,27880,34411,34935,35387,37198, +37619,39376,27159,28710,29482,33511,33879,36015,19969,20806,20939,21899,23541, +24086,24115,24193,24340,24373,24427,24500,25074,25361,26274,26397,28526,29266, +30010,30522,32884,33081,33144,34678,35519,35548,36229,36339,37530,38263,38914, +40165,21189,25431,30452,26389,27784,29645,36035,37806,38515,27941,22684,26894, +27084,36861,37786,30171,36890,22618,26626,25524,27131,20291,28460,26584,36795, +34086,32180,37716,26943,28528,22378,22775,23340,32044,29226,21514,37347,40372, +20141,20302,20572,20597,21059,35998,21576,22564,23450,24093,24213,24237,24311, +24351,24716,25269,25402,25552,26799,27712,30855,31118,31243,32224,33351,35330, +35558,36420,36883,37048,37165,37336,40718,27877,25688,25826,25973,28404,30340, +31515,36969,37841,28346,21746,24505,25764,36685,36845,37444,20856,22635,22825, +23637,24215,28155,32399,29980,36028,36578,39003,28857,20253,27583,28593,30000, +38651,20814,21520,22581,22615,22956,23648,24466,26007,26460,28193,30331,33759, +36077,36884,37117,37709,30757,30778,21162,24230,22303,22900,24594,20498,20826, +20908,20941,20992,21776,22612,22616,22871,23445,23798,23947,24764,25237,25645, +26481,26691,26812,26847,30423,28120,28271,28059,28783,29128,24403,30168,31095, +31561,31572,31570,31958,32113,21040,33891,34153,34276,35342,35588,35910,36367, +36867,36879,37913,38518,38957,39472,38360,20685,21205,21516,22530,23566,24999, +25758,27934,30643,31461,33012,33796,36947,37509,23776,40199,21311,24471,24499, +28060,29305,30563,31167,31716,27602,29420,35501,26627,27233,20984,31361,26932, +23626,40182,33515,23493,37193,28702,22136,23663,24775,25958,27788,35930,36929, +38931,21585,26311,37389,22856,37027,20869,20045,20970,34201,35598,28760,25466, +37707,26978,39348,32260,30071,21335,26976,36575,38627,27741,20108,23612,24336, +36841,21250,36049,32905,34425,24319,26085,20083,20837,22914,23615,38894,20219, +22922,24525,35469,28641,31152,31074,23527,33905,29483,29105,24180,24565,25467, +25754,29123,31896,20035,24316,20043,22492,22178,24745,28611,32013,33021,33075, +33215,36786,35223,34468,24052,25226,25773,35207,26487,27874,27966,29750,30772, +23110,32629,33453,39340,20467,24259,25309,25490,25943,26479,30403,29260,32972, +32954,36649,37197,20493,22521,23186,26757,26995,29028,29437,36023,22770,36064, +38506,36889,34687,31204,30695,33833,20271,21093,21338,25293,26575,27850,30333, +31636,31893,33334,34180,36843,26333,28448,29190,32283,33707,39361,40614,20989, +31665,30834,31672,32903,31560,27368,24161,32908,30033,30048,20843,37474,28300, +30330,37271,39658,20240,32624,25244,31567,38309,40169,22138,22617,34532,38588, +20276,21028,21322,21453,21467,24070,25644,26001,26495,27710,27726,29256,29359, +29677,30036,32321,33324,34281,36009,31684,37318,29033,38930,39151,25405,26217, +30058,30436,30928,34115,34542,21290,21329,21542,22915,24199,24444,24754,25161, +25209,25259,26000,27604,27852,30130,30382,30865,31192,32203,32631,32933,34987, +35513,36027,36991,38750,39131,27147,31800,20633,23614,24494,26503,27608,29749, +30473,32654,40763,26570,31255,21305,30091,39661,24422,33181,33777,32920,24380, +24517,30050,31558,36924,26727,23019,23195,32016,30334,35628,20469,24426,27161, +27703,28418,29922,31080,34920,35413,35961,24287,25551,30149,31186,33495,37672, +37618,33948,34541,39981,21697,24428,25996,27996,28693,36007,36051,38971,25935, +29942,19981,20184,22496,22827,23142,23500,20904,24067,24220,24598,25206,25975, +26023,26222,28014,29238,31526,33104,33178,33433,35676,36000,36070,36212,38428, +38468,20398,25771,27494,33310,33889,34154,37096,23553,26963,39080,33914,34135, +20239,21103,24489,24133,26381,31119,33145,35079,35206,28149,24343,25173,27832, +20175,29289,39826,20998,21563,22132,22707,24996,25198,28954,22894,31881,31966, +32027,38640,25991,32862,19993,20341,20853,22592,24163,24179,24330,26564,20006, +34109,38281,38491,31859,38913,20731,22721,30294,30887,21029,30629,34065,31622, +20559,22793,29255,31687,32232,36794,36820,36941,20415,21193,23081,24321,38829, +20445,33303,37610,22275,25429,27497,29995,35036,36628,31298,21215,22675,24917, +25098,26286,27597,31807,33769,20515,20472,21253,21574,22577,22857,23453,23792, +23791,23849,24214,25265,25447,25918,26041,26379,27861,27873,28921,30770,32299, +32990,33459,33804,34028,34562,35090,35370,35914,37030,37586,39165,40179,40300, +20047,20129,20621,21078,22346,22952,24125,24536,24537,25151,26292,26395,26576, +26834,20882,32033,32938,33192,35584,35980,36031,37502,38450,21536,38956,21271, +20693,21340,22696,25778,26420,29287,30566,31302,37350,21187,27809,27526,22528, +24140,22868,26412,32763,20961,30406,25705,30952,39764,40635,22475,22969,26151, +26522,27598,21737,27097,24149,33180,26517,39850,26622,40018,26717,20134,20451, +21448,25273,26411,27819,36804,20397,32365,40639,19975,24930,28288,28459,34067, +21619,26410,39749,24051,31637,23724,23494,34588,28234,34001,31252,33032,22937, +31885,27665,30496,21209,22818,28961,29279,30683,38695,40289,26891,23167,23064, +20901,21517,21629,26126,30431,36855,37528,40180,23018,29277,28357,20813,26825, +32191,32236,38754,40634,25720,27169,33538,22916,23391,27611,29467,30450,32178, +32791,33945,20786,26408,40665,30446,26466,21247,39173,23588,25147,31870,36016, +21839,24758,32011,38272,21249,20063,20918,22812,29242,32822,37326,24357,30690, +21380,24441,32004,34220,35379,36493,38742,26611,34222,37971,24841,24840,27833, +30290,35565,36664,21807,20305,20778,21191,21451,23461,24189,24736,24962,25558, +26377,26586,28263,28044,29494,29495,30001,31056,35029,35480,36938,37009,37109, +38596,34701,22805,20104,20313,19982,35465,36671,38928,20653,24188,22934,23481, +24248,25562,25594,25793,26332,26954,27096,27915,28342,29076,29992,31407,32650, +32768,33865,33993,35201,35617,36362,36965,38525,39178,24958,25233,27442,27779, +28020,32716,32764,28096,32645,34746,35064,26469,33713,38972,38647,27931,32097, +33853,37226,20081,21365,23888,27396,28651,34253,34349,35239,21033,21519,23653, +26446,26792,29702,29827,30178,35023,35041,37324,38626,38520,24459,29575,31435, +33870,25504,30053,21129,27969,28316,29705,30041,30827,31890,38534,31452,40845, +20406,24942,26053,34396,20102,20142,20698,20001,20940,23534,26009,26753,28092, +29471,30274,30637,31260,31975,33391,35538,36988,37327,38517,38936,21147,32209, +20523,21400,26519,28107,29136,29747,33256,36650,38563,40023,40607,29792,22593, +28057,32047,39006,20196,20278,20363,20919,21169,23994,24604,29618,31036,33491, +37428,38583,38646,38666,40599,40802,26278,27508,21015,21155,28872,35010,24265, +24651,24976,28451,29001,31806,32244,32879,34030,36899,37676,21570,39791,27347, +28809,36034,36335,38706,21172,23105,24266,24324,26391,27004,27028,28010,28431, +29282,29436,31725,32769,32894,34635,37070,20845,40595,31108,32907,37682,35542, +20525,21644,35441,27498,36036,33031,24785,26528,40434,20121,20120,39952,35435, +34241,34152,26880,28286,30871,33109,24332,19984,19989,20010,20017,20022,20028, +20031,20034,20054,20056,20098,20101,35947,20106,33298,24333,20110,20126,20127, +20128,20130,20144,20147,20150,20174,20173,20164,20166,20162,20183,20190,20205, +20191,20215,20233,20314,20272,20315,20317,20311,20295,20342,20360,20367,20376, +20347,20329,20336,20369,20335,20358,20374,20760,20436,20447,20430,20440,20443, +20433,20442,20432,20452,20453,20506,20520,20500,20522,20517,20485,20252,20470, +20513,20521,20524,20478,20463,20497,20486,20547,20551,26371,20565,20560,20552, +20570,20566,20588,20600,20608,20634,20613,20660,20658,20681,20682,20659,20674, +20694,20702,20709,20717,20707,20718,20729,20725,20745,20737,20738,20758,20757, +20756,20762,20769,20794,20791,20796,20795,20799,20800,20818,20812,20820,20834, +31480,20841,20842,20846,20864,20866,22232,20876,20873,20879,20881,20883,20885, +20886,20900,20902,20898,20905,20906,20907,20915,20913,20914,20912,20917,20925, +20933,20937,20955,20960,34389,20969,20973,20976,20981,20990,20996,21003,21012, +21006,21031,21034,21038,21043,21049,21071,21060,21067,21068,21086,21076,21098, +21108,21097,21107,21119,21117,21133,21140,21138,21105,21128,21137,36776,36775, +21164,21165,21180,21173,21185,21197,21207,21214,21219,21222,39149,21216,21235, +21237,21240,21241,21254,21256,30008,21261,21264,21263,21269,21274,21283,21295, +21297,21299,21304,21312,21318,21317,19991,21321,21325,20950,21342,21353,21358, +22808,21371,21367,21378,21398,21408,21414,21413,21422,21424,21430,21443,31762, +38617,21471,26364,29166,21486,21480,21485,21498,21505,21565,21568,21548,21549, +21564,21550,21558,21545,21533,21582,21647,21621,21646,21599,21617,21623,21616, +21650,21627,21632,21622,21636,21648,21638,21703,21666,21688,21669,21676,21700, +21704,21672,21675,21698,21668,21694,21692,21720,21733,21734,21775,21780,21757, +21742,21741,21754,21730,21817,21824,21859,21836,21806,21852,21829,21846,21847, +21816,21811,21853,21913,21888,21679,21898,21919,21883,21886,21912,21918,21934, +21884,21891,21929,21895,21928,21978,21957,21983,21956,21980,21988,21972,22036, +22007,22038,22014,22013,22043,22009,22094,22096,29151,22068,22070,22066,22072, +22123,22116,22063,22124,22122,22150,22144,22154,22176,22164,22159,22181,22190, +22198,22196,22210,22204,22209,22211,22208,22216,22222,22225,22227,22231,22254, +22265,22272,22271,22276,22281,22280,22283,22285,22291,22296,22294,21959,22300, +22310,22327,22328,22350,22331,22336,22351,22377,22464,22408,22369,22399,22409, +22419,22432,22451,22436,22442,22448,22467,22470,22484,22482,22483,22538,22486, +22499,22539,22553,22557,22642,22561,22626,22603,22640,27584,22610,22589,22649, +22661,22713,22687,22699,22714,22750,22715,22712,22702,22725,22739,22737,22743, +22745,22744,22757,22748,22756,22751,22767,22778,22777,22779,22780,22781,22786, +22794,22800,22811,26790,22821,22828,22829,22834,22840,22846,31442,22869,22864, +22862,22874,22872,22882,22880,22887,22892,22889,22904,22913,22941,20318,20395, +22947,22962,22982,23016,23004,22925,23001,23002,23077,23071,23057,23068,23049, +23066,23104,23148,23113,23093,23094,23138,23146,23194,23228,23230,23243,23234, +23229,23267,23255,23270,23273,23254,23290,23291,23308,23307,23318,23346,23248, +23338,23350,23358,23363,23365,23360,23377,23381,23386,23387,23397,23401,23408, +23411,23413,23416,25992,23418,23424,23427,23462,23480,23491,23495,23497,23508, +23504,23524,23526,23522,23518,23525,23531,23536,23542,23539,23557,23559,23560, +23565,23571,23584,23586,23592,23608,23609,23617,23622,23630,23635,23632,23631, +23409,23660,23662,20066,23670,23673,23692,23697,23700,22939,23723,23739,23734, +23740,23735,23749,23742,23751,23769,23785,23805,23802,23789,23948,23786,23819, +23829,23831,23900,23839,23835,23825,23828,23842,23834,23833,23832,23884,23890, +23886,23883,23916,23923,23926,23943,23940,23938,23970,23965,23980,23982,23997, +23952,23991,23996,24009,24013,24019,24018,24022,24027,24043,24050,24053,24075, +24090,24089,24081,24091,24118,24119,24132,24131,24128,24142,24151,24148,24159, +24162,24164,24135,24181,24182,24186,40636,24191,24224,24257,24258,24264,24272, +24271,24278,24291,24285,24282,24283,24290,24289,24296,24297,24300,24305,24307, +24304,24308,24312,24318,24323,24329,24413,24412,24331,24337,24342,24361,24365, +24376,24385,24392,24396,24398,24367,24401,24406,24407,24409,24417,24429,24435, +24439,24451,24450,24447,24458,24456,24465,24455,24478,24473,24472,24480,24488, +24493,24508,24534,24571,24548,24568,24561,24541,24755,24575,24609,24672,24601, +24592,24617,24590,24625,24603,24597,24619,24614,24591,24634,24666,24641,24682, +24695,24671,24650,24646,24653,24675,24643,24676,24642,24684,24683,24665,24705, +24717,24807,24707,24730,24708,24731,24726,24727,24722,24743,24715,24801,24760, +24800,24787,24756,24560,24765,24774,24757,24792,24909,24853,24838,24822,24823, +24832,24820,24826,24835,24865,24827,24817,24845,24846,24903,24894,24872,24871, +24906,24895,24892,24876,24884,24893,24898,24900,24947,24951,24920,24921,24922, +24939,24948,24943,24933,24945,24927,24925,24915,24949,24985,24982,24967,25004, +24980,24986,24970,24977,25003,25006,25036,25034,25033,25079,25032,25027,25030, +25018,25035,32633,25037,25062,25059,25078,25082,25076,25087,25085,25084,25086, +25088,25096,25097,25101,25100,25108,25115,25118,25121,25130,25134,25136,25138, +25139,25153,25166,25182,25187,25179,25184,25192,25212,25218,25225,25214,25234, +25235,25238,25300,25219,25236,25303,25297,25275,25295,25343,25286,25812,25288, +25308,25292,25290,25282,25287,25243,25289,25356,25326,25329,25383,25346,25352, +25327,25333,25424,25406,25421,25628,25423,25494,25486,25472,25515,25462,25507, +25487,25481,25503,25525,25451,25449,25534,25577,25536,25542,25571,25545,25554, +25590,25540,25622,25652,25606,25619,25638,25654,25885,25623,25640,25615,25703, +25711,25718,25678,25898,25749,25747,25765,25769,25736,25788,25818,25810,25797, +25799,25787,25816,25794,25841,25831,33289,25824,25825,25260,25827,25839,25900, +25846,25844,25842,25850,25856,25853,25880,25884,25861,25892,25891,25899,25908, +25909,25911,25910,25912,30027,25928,25942,25941,25933,25944,25950,25949,25970, +25976,25986,25987,35722,26011,26015,26027,26039,26051,26054,26049,26052,26060, +26066,26075,26073,26080,26081,26097,26482,26122,26115,26107,26483,26165,26166, +26164,26140,26191,26180,26185,26177,26206,26205,26212,26215,26216,26207,26210, +26224,26243,26248,26254,26249,26244,26264,26269,26305,26297,26313,26302,26300, +26308,26296,26326,26330,26336,26175,26342,26345,26352,26357,26359,26383,26390, +26398,26406,26407,38712,26414,26431,26422,26433,26424,26423,26438,26462,26464, +26457,26467,26468,26505,26480,26537,26492,26474,26508,26507,26534,26529,26501, +26551,26607,26548,26604,26547,26601,26552,26596,26590,26589,26594,26606,26553, +26574,26566,26599,27292,26654,26694,26665,26688,26701,26674,26702,26803,26667, +26713,26723,26743,26751,26783,26767,26797,26772,26781,26779,26755,27310,26809, +26740,26805,26784,26810,26895,26765,26750,26881,26826,26888,26840,26914,26918, +26849,26892,26829,26836,26855,26837,26934,26898,26884,26839,26851,26917,26873, +26848,26863,26920,26922,26906,26915,26913,26822,27001,26999,26972,27000,26987, +26964,27006,26990,26937,26996,26941,26969,26928,26977,26974,26973,27009,26986, +27058,27054,27088,27071,27073,27091,27070,27086,23528,27082,27101,27067,27075, +27047,27182,27025,27040,27036,27029,27060,27102,27112,27138,27163,27135,27402, +27129,27122,27111,27141,27057,27166,27117,27156,27115,27146,27154,27329,27171, +27155,27204,27148,27250,27190,27256,27207,27234,27225,27238,27208,27192,27170, +27280,27277,27296,27268,27298,27299,27287,34327,27323,27331,27330,27320,27315, +27308,27358,27345,27359,27306,27354,27370,27387,27397,34326,27386,27410,27414, +39729,27423,27448,27447,30428,27449,39150,27463,27459,27465,27472,27481,27476, +27483,27487,27489,27512,27513,27519,27520,27524,27523,27533,27544,27541,27550, +27556,27562,27563,27567,27570,27569,27571,27575,27580,27590,27595,27603,27615, +27628,27627,27635,27631,40638,27656,27667,27668,27675,27684,27683,27742,27733, +27746,27754,27778,27789,27802,27777,27803,27774,27752,27763,27794,27792,27844, +27889,27859,27837,27863,27845,27869,27822,27825,27838,27834,27867,27887,27865, +27882,27935,34893,27958,27947,27965,27960,27929,27957,27955,27922,27916,28003, +28051,28004,27994,28025,27993,28046,28053,28644,28037,28153,28181,28170,28085, +28103,28134,28088,28102,28140,28126,28108,28136,28114,28101,28154,28121,28132, +28117,28138,28142,28205,28270,28206,28185,28274,28255,28222,28195,28267,28203, +28278,28237,28191,28227,28218,28238,28196,28415,28189,28216,28290,28330,28312, +28361,28343,28371,28349,28335,28356,28338,28372,28373,28303,28325,28354,28319, +28481,28433,28748,28396,28408,28414,28479,28402,28465,28399,28466,28364,28478, +28435,28407,28550,28538,28536,28545,28544,28527,28507,28659,28525,28546,28540, +28504,28558,28561,28610,28518,28595,28579,28577,28580,28601,28614,28586,28639, +28629,28652,28628,28632,28657,28654,28635,28681,28683,28666,28689,28673,28687, +28670,28699,28698,28532,28701,28696,28703,28720,28734,28722,28753,28771,28825, +28818,28847,28913,28844,28856,28851,28846,28895,28875,28893,28889,28937,28925, +28956,28953,29029,29013,29064,29030,29026,29004,29014,29036,29071,29179,29060, +29077,29096,29100,29143,29113,29118,29138,29129,29140,29134,29152,29164,29159, +29173,29180,29177,29183,29197,29200,29211,29224,29229,29228,29232,29234,29243, +29244,29247,29248,29254,29259,29272,29300,29310,29314,29313,29319,29330,29334, +29346,29351,29369,29362,29379,29382,29380,29390,29394,29410,29408,29409,29433, +29431,20495,29463,29450,29468,29462,29469,29492,29487,29481,29477,29502,29518, +29519,40664,29527,29546,29544,29552,29560,29557,29563,29562,29640,29619,29646, +29627,29632,29669,29678,29662,29858,29701,29807,29733,29688,29746,29754,29781, +29759,29791,29785,29761,29788,29801,29808,29795,29802,29814,29822,29835,29854, +29863,29898,29903,29908,29681,29920,29923,29927,29929,29934,29938,29936,29937, +29944,29943,29956,29955,29957,29964,29966,29965,29973,29971,29982,29990,29996, +30012,30020,30029,30026,30025,30043,30022,30042,30057,30052,30055,30059,30061, +30072,30070,30086,30087,30068,30090,30089,30082,30100,30106,30109,30117,30115, +30146,30131,30147,30133,30141,30136,30140,30129,30157,30154,30162,30169,30179, +30174,30206,30207,30204,30209,30192,30202,30194,30195,30219,30221,30217,30239, +30247,30240,30241,30242,30244,30260,30256,30267,30279,30280,30278,30300,30296, +30305,30306,30312,30313,30314,30311,30316,30320,30322,30326,30328,30332,30336, +30339,30344,30347,30350,30358,30355,30361,30362,30384,30388,30392,30393,30394, +30402,30413,30422,30418,30430,30433,30437,30439,30442,34351,30459,30472,30471, +30468,30505,30500,30494,30501,30502,30491,30519,30520,30535,30554,30568,30571, +30555,30565,30591,30590,30585,30606,30603,30609,30624,30622,30640,30646,30649, +30655,30652,30653,30651,30663,30669,30679,30682,30684,30691,30702,30716,30732, +30738,31014,30752,31018,30789,30862,30836,30854,30844,30874,30860,30883,30901, +30890,30895,30929,30918,30923,30932,30910,30908,30917,30922,30956,30951,30938, +30973,30964,30983,30994,30993,31001,31020,31019,31040,31072,31063,31071,31066, +31061,31059,31098,31103,31114,31133,31143,40779,31146,31150,31155,31161,31162, +31177,31189,31207,31212,31201,31203,31240,31245,31256,31257,31264,31263,31104, +31281,31291,31294,31287,31299,31319,31305,31329,31330,31337,40861,31344,31353, +31357,31368,31383,31381,31384,31382,31401,31432,31408,31414,31429,31428,31423, +36995,31431,31434,31437,31439,31445,31443,31449,31450,31453,31457,31458,31462, +31469,31472,31490,31503,31498,31494,31539,31512,31513,31518,31541,31528,31542, +31568,31610,31492,31565,31499,31564,31557,31605,31589,31604,31591,31600,31601, +31596,31598,31645,31640,31647,31629,31644,31642,31627,31634,31631,31581,31641, +31691,31681,31692,31695,31668,31686,31709,31721,31761,31764,31718,31717,31840, +31744,31751,31763,31731,31735,31767,31757,31734,31779,31783,31786,31775,31799, +31787,31805,31820,31811,31828,31823,31808,31824,31832,31839,31844,31830,31845, +31852,31861,31875,31888,31908,31917,31906,31915,31905,31912,31923,31922,31921, +31918,31929,31933,31936,31941,31938,31960,31954,31964,31970,39739,31983,31986, +31988,31990,31994,32006,32002,32028,32021,32010,32069,32075,32046,32050,32063, +32053,32070,32115,32086,32078,32114,32104,32110,32079,32099,32147,32137,32091, +32143,32125,32155,32186,32174,32163,32181,32199,32189,32171,32317,32162,32175, +32220,32184,32159,32176,32216,32221,32228,32222,32251,32242,32225,32261,32266, +32291,32289,32274,32305,32287,32265,32267,32290,32326,32358,32315,32309,32313, +32323,32311,32306,32314,32359,32349,32342,32350,32345,32346,32377,32362,32361, +32380,32379,32387,32213,32381,36782,32383,32392,32393,32396,32402,32400,32403, +32404,32406,32398,32411,32412,32568,32570,32581,32588,32589,32590,32592,32593, +32597,32596,32600,32607,32608,32616,32617,32615,32632,32642,32646,32643,32648, +32647,32652,32660,32670,32669,32666,32675,32687,32690,32697,32686,32694,32696, +35697,32709,32710,32714,32725,32724,32737,32742,32745,32755,32761,39132,32774, +32772,32779,32786,32792,32793,32796,32801,32808,32831,32827,32842,32838,32850, +32856,32858,32863,32866,32872,32883,32882,32880,32886,32889,32893,32895,32900, +32902,32901,32923,32915,32922,32941,20880,32940,32987,32997,32985,32989,32964, +32986,32982,33033,33007,33009,33051,33065,33059,33071,33099,38539,33094,33086, +33107,33105,33020,33137,33134,33125,33126,33140,33155,33160,33162,33152,33154, +33184,33173,33188,33187,33119,33171,33193,33200,33205,33214,33208,33213,33216, +33218,33210,33225,33229,33233,33241,33240,33224,33242,33247,33248,33255,33274, +33275,33278,33281,33282,33285,33287,33290,33293,33296,33302,33321,33323,33336, +33331,33344,33369,33368,33373,33370,33375,33380,33378,33384,33386,33387,33326, +33393,33399,33400,33406,33421,33426,33451,33439,33467,33452,33505,33507,33503, +33490,33524,33523,33530,33683,33539,33531,33529,33502,33542,33500,33545,33497, +33589,33588,33558,33586,33585,33600,33593,33616,33605,33583,33579,33559,33560, +33669,33690,33706,33695,33698,33686,33571,33678,33671,33674,33660,33717,33651, +33653,33696,33673,33704,33780,33811,33771,33742,33789,33795,33752,33803,33729, +33783,33799,33760,33778,33805,33826,33824,33725,33848,34054,33787,33901,33834, +33852,34138,33924,33911,33899,33965,33902,33922,33897,33862,33836,33903,33913, +33845,33994,33890,33977,33983,33951,34009,33997,33979,34010,34000,33985,33990, +34006,33953,34081,34047,34036,34071,34072,34092,34079,34069,34068,34044,34112, +34147,34136,34120,34113,34306,34123,34133,34176,34212,34184,34193,34186,34216, +34157,34196,34203,34282,34183,34204,34167,34174,34192,34249,34234,34255,34233, +34256,34261,34269,34277,34268,34297,34314,34323,34315,34302,34298,34310,34338, +34330,34352,34367,34381,20053,34388,34399,34407,34417,34451,34467,34473,34474, +34443,34444,34486,34479,34500,34502,34480,34505,34851,34475,34516,34526,34537, +34540,34527,34523,34543,34578,34566,34568,34560,34563,34555,34577,34569,34573, +34553,34570,34612,34623,34615,34619,34597,34601,34586,34656,34655,34680,34636, +34638,34676,34647,34664,34670,34649,34643,34659,34666,34821,34722,34719,34690, +34735,34763,34749,34752,34768,38614,34731,34756,34739,34759,34758,34747,34799, +34802,34784,34831,34829,34814,34806,34807,34830,34770,34833,34838,34837,34850, +34849,34865,34870,34873,34855,34875,34884,34882,34898,34905,34910,34914,34923, +34945,34942,34974,34933,34941,34997,34930,34946,34967,34962,34990,34969,34978, +34957,34980,34992,35007,34993,35011,35012,35028,35032,35033,35037,35065,35074, +35068,35060,35048,35058,35076,35084,35082,35091,35139,35102,35109,35114,35115, +35137,35140,35131,35126,35128,35148,35101,35168,35166,35174,35172,35181,35178, +35183,35188,35191,35198,35203,35208,35210,35219,35224,35233,35241,35238,35244, +35247,35250,35258,35261,35263,35264,35290,35292,35293,35303,35316,35320,35331, +35350,35344,35340,35355,35357,35365,35382,35393,35419,35410,35398,35400,35452, +35437,35436,35426,35461,35458,35460,35496,35489,35473,35493,35494,35482,35491, +35524,35533,35522,35546,35563,35571,35559,35556,35569,35604,35552,35554,35575, +35550,35547,35596,35591,35610,35553,35606,35600,35607,35616,35635,38827,35622, +35627,35646,35624,35649,35660,35663,35662,35657,35670,35675,35674,35691,35679, +35692,35695,35700,35709,35712,35724,35726,35730,35731,35734,35737,35738,35898, +35905,35903,35912,35916,35918,35920,35925,35938,35948,35960,35962,35970,35977, +35973,35978,35981,35982,35988,35964,35992,25117,36013,36010,36029,36018,36019, +36014,36022,36040,36033,36068,36067,36058,36093,36090,36091,36100,36101,36106, +36103,36111,36109,36112,40782,36115,36045,36116,36118,36199,36205,36209,36211, +36225,36249,36290,36286,36282,36303,36314,36310,36300,36315,36299,36330,36331, +36319,36323,36348,36360,36361,36351,36381,36382,36368,36383,36418,36405,36400, +36404,36426,36423,36425,36428,36432,36424,36441,36452,36448,36394,36451,36437, +36470,36466,36476,36481,36487,36485,36484,36491,36490,36499,36497,36500,36505, +36522,36513,36524,36528,36550,36529,36542,36549,36552,36555,36571,36579,36604, +36603,36587,36606,36618,36613,36629,36626,36633,36627,36636,36639,36635,36620, +36646,36659,36667,36665,36677,36674,36670,36684,36681,36678,36686,36695,36700, +36706,36707,36708,36764,36767,36771,36781,36783,36791,36826,36837,36834,36842, +36847,36999,36852,36869,36857,36858,36881,36885,36897,36877,36894,36886,36875, +36903,36918,36917,36921,36856,36943,36944,36945,36946,36878,36937,36926,36950, +36952,36958,36968,36975,36982,38568,36978,36994,36989,36993,36992,37002,37001, +37007,37032,37039,37041,37045,37090,37092,25160,37083,37122,37138,37145,37170, +37168,37194,37206,37208,37219,37221,37225,37235,37234,37259,37257,37250,37282, +37291,37295,37290,37301,37300,37306,37312,37313,37321,37323,37328,37334,37343, +37345,37339,37372,37365,37366,37406,37375,37396,37420,37397,37393,37470,37463, +37445,37449,37476,37448,37525,37439,37451,37456,37532,37526,37523,37531,37466, +37583,37561,37559,37609,37647,37626,37700,37678,37657,37666,37658,37667,37690, +37685,37691,37724,37728,37756,37742,37718,37808,37804,37805,37780,37817,37846, +37847,37864,37861,37848,37827,37853,37840,37832,37860,37914,37908,37907,37891, +37895,37904,37942,37931,37941,37921,37946,37953,37970,37956,37979,37984,37986, +37982,37994,37417,38000,38005,38007,38013,37978,38012,38014,38017,38015,38274, +38279,38282,38292,38294,38296,38297,38304,38312,38311,38317,38332,38331,38329, +38334,38346,28662,38339,38349,38348,38357,38356,38358,38364,38369,38373,38370, +38433,38440,38446,38447,38466,38476,38479,38475,38519,38492,38494,38493,38495, +38502,38514,38508,38541,38552,38549,38551,38570,38567,38577,38578,38576,38580, +38582,38584,38585,38606,38603,38601,38605,35149,38620,38669,38613,38649,38660, +38662,38664,38675,38670,38673,38671,38678,38681,38692,38698,38704,38713,38717, +38718,38724,38726,38728,38722,38729,38748,38752,38756,38758,38760,21202,38763, +38769,38777,38789,38780,38785,38778,38790,38795,38799,38800,38812,38824,38822, +38819,38835,38836,38851,38854,38856,38859,38876,38893,40783,38898,31455,38902, +38901,38927,38924,38968,38948,38945,38967,38973,38982,38991,38987,39019,39023, +39024,39025,39028,39027,39082,39087,39089,39094,39108,39107,39110,39145,39147, +39171,39177,39186,39188,39192,39201,39197,39198,39204,39200,39212,39214,39229, +39230,39234,39241,39237,39248,39243,39249,39250,39244,39253,39319,39320,39333, +39341,39342,39356,39391,39387,39389,39384,39377,39405,39406,39409,39410,39419, +39416,39425,39439,39429,39394,39449,39467,39479,39493,39490,39488,39491,39486, +39509,39501,39515,39511,39519,39522,39525,39524,39529,39531,39530,39597,39600, +39612,39616,39631,39633,39635,39636,39646,39647,39650,39651,39654,39663,39659, +39662,39668,39665,39671,39675,39686,39704,39706,39711,39714,39715,39717,39719, +39720,39721,39722,39726,39727,39730,39748,39747,39759,39757,39758,39761,39768, +39796,39827,39811,39825,39830,39831,39839,39840,39848,39860,39872,39882,39865, +39878,39887,39889,39890,39907,39906,39908,39892,39905,39994,39922,39921,39920, +39957,39956,39945,39955,39948,39942,39944,39954,39946,39940,39982,39963,39973, +39972,39969,39984,40007,39986,40006,39998,40026,40032,40039,40054,40056,40167, +40172,40176,40201,40200,40171,40195,40198,40234,40230,40367,40227,40223,40260, +40213,40210,40257,40255,40254,40262,40264,40285,40286,40292,40273,40272,40281, +40306,40329,40327,40363,40303,40314,40346,40356,40361,40370,40388,40385,40379, +40376,40378,40390,40399,40386,40409,40403,40440,40422,40429,40431,40445,40474, +40475,40478,40565,40569,40573,40577,40584,40587,40588,40594,40597,40593,40605, +40613,40617,40632,40618,40621,38753,40652,40654,40655,40656,40660,40668,40670, +40669,40672,40677,40680,40687,40692,40694,40695,40697,40699,40700,40701,40711, +40712,30391,40725,40737,40748,40766,40778,40786,40788,40803,40799,40800,40801, +40806,40807,40812,40810,40823,40818,40822,40853,40860,40864,22575,27079,36953, +29796,20956,29081,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8544,8545, +8546,8547,8548,8549,8550,8551,8552,8553,65506,65508,65287,65282,12849,8470,8481, +8757,32394,35100,37704,37512,34012,20425,28859,26161,26824,37625,26363,24389, +20008,20193,20220,20224,20227,20281,20310,20370,20362,20378,20372,20429,20544, +20514,20479,20510,20550,20592,20546,20628,20724,20696,20810,20836,20893,20926, +20972,21013,21148,21158,21184,21211,21248,21255,21284,21362,21395,21426,21469, +64014,21660,21642,21673,21759,21894,22361,22373,22444,22472,22471,64015,64016, +22686,22706,22795,22867,22875,22877,22883,22948,22970,23382,23488,29999,23512, +23532,23582,23718,23738,23797,23847,23891,64017,23874,23917,23992,23993,24016, +24353,24372,24423,24503,24542,24669,24709,24714,24798,24789,24864,24818,24849, +24887,24880,24984,25107,25254,25589,25696,25757,25806,25934,26112,26133,26171, +26121,26158,26142,26148,26213,26199,26201,64018,26227,26265,26272,26290,26303, +26362,26382,63785,26470,26555,26706,26560,26625,26692,26831,64019,26984,64020, +27032,27106,27184,27243,27206,27251,27262,27362,27364,27606,27711,27740,27782, +27759,27866,27908,28039,28015,28054,28076,28111,28152,28146,28156,28217,28252, +28199,28220,28351,28552,28597,28661,28677,28679,28712,28805,28843,28943,28932, +29020,28998,28999,64021,29121,29182,29361,29374,29476,64022,29559,29629,29641, +29654,29667,29650,29703,29685,29734,29738,29737,29742,29794,29833,29855,29953, +30063,30338,30364,30366,30363,30374,64023,30534,21167,30753,30798,30820,30842, +31024,64024,64025,64026,31124,64027,31131,31441,31463,64028,31467,31646,64029, +32072,32092,32183,32160,32214,32338,32583,32673,64030,33537,33634,33663,33735, +33782,33864,33972,34131,34137,34155,64031,34224,64032,64033,34823,35061,35346, +35383,35449,35495,35518,35551,64034,35574,35667,35711,36080,36084,36114,36214, +64035,36559,64036,64037,36967,37086,64038,37141,37159,37338,37335,37342,37357, +37358,37348,37349,37382,37392,37386,37434,37440,37436,37454,37465,37457,37433, +37479,37543,37495,37496,37607,37591,37593,37584,64039,37589,37600,37587,37669, +37665,37627,64040,37662,37631,37661,37634,37744,37719,37796,37830,37854,37880, +37937,37957,37960,38290,63964,64041,38557,38575,38707,38715,38723,38733,38735, +38737,38741,38999,39013,64042,64043,39207,64044,39326,39502,39641,39644,39797, +39794,39823,39857,39867,39936,40304,40299,64045,40473,40657}; + +shift_jis_cp_to_index = { + {0xA7, 87}, + {0xA8, 14}, + {0xB0, 74}, + {0xB1, 61}, + {0xB4, 12}, + {0xB6, 182}, + {0xD7, 62}, + {0xF7, 63}, + {0x391, 470}, + {0x392, 471}, + {0x393, 472}, + {0x394, 473}, + {0x395, 474}, + {0x396, 475}, + {0x397, 476}, + {0x398, 477}, + {0x399, 478}, + {0x39A, 479}, + {0x39B, 480}, + {0x39C, 481}, + {0x39D, 482}, + {0x39E, 483}, + {0x39F, 484}, + {0x3A0, 485}, + {0x3A1, 486}, + {0x3A3, 487}, + {0x3A4, 488}, + {0x3A5, 489}, + {0x3A6, 490}, + {0x3A7, 491}, + {0x3A8, 492}, + {0x3A9, 493}, + {0x3B1, 502}, + {0x3B2, 503}, + {0x3B3, 504}, + {0x3B4, 505}, + {0x3B5, 506}, + {0x3B6, 507}, + {0x3B7, 508}, + {0x3B8, 509}, + {0x3B9, 510}, + {0x3BA, 511}, + {0x3BB, 512}, + {0x3BC, 513}, + {0x3BD, 514}, + {0x3BE, 515}, + {0x3BF, 516}, + {0x3C0, 517}, + {0x3C1, 518}, + {0x3C3, 519}, + {0x3C4, 520}, + {0x3C5, 521}, + {0x3C6, 522}, + {0x3C7, 523}, + {0x3C8, 524}, + {0x3C9, 525}, + {0x401, 570}, + {0x410, 564}, + {0x411, 565}, + {0x412, 566}, + {0x413, 567}, + {0x414, 568}, + {0x415, 569}, + {0x416, 571}, + {0x417, 572}, + {0x418, 573}, + {0x419, 574}, + {0x41A, 575}, + {0x41B, 576}, + {0x41C, 577}, + {0x41D, 578}, + {0x41E, 579}, + {0x41F, 580}, + {0x420, 581}, + {0x421, 582}, + {0x422, 583}, + {0x423, 584}, + {0x424, 585}, + {0x425, 586}, + {0x426, 587}, + {0x427, 588}, + {0x428, 589}, + {0x429, 590}, + {0x42A, 591}, + {0x42B, 592}, + {0x42C, 593}, + {0x42D, 594}, + {0x42E, 595}, + {0x42F, 596}, + {0x430, 612}, + {0x431, 613}, + {0x432, 614}, + {0x433, 615}, + {0x434, 616}, + {0x435, 617}, + {0x436, 619}, + {0x437, 620}, + {0x438, 621}, + {0x439, 622}, + {0x43A, 623}, + {0x43B, 624}, + {0x43C, 625}, + {0x43D, 626}, + {0x43E, 627}, + {0x43F, 628}, + {0x440, 629}, + {0x441, 630}, + {0x442, 631}, + {0x443, 632}, + {0x444, 633}, + {0x445, 634}, + {0x446, 635}, + {0x447, 636}, + {0x448, 637}, + {0x449, 638}, + {0x44A, 639}, + {0x44B, 640}, + {0x44C, 641}, + {0x44D, 642}, + {0x44E, 643}, + {0x44F, 644}, + {0x451, 618}, + {0x2010, 29}, + {0x2015, 28}, + {0x2018, 37}, + {0x2019, 38}, + {0x201C, 39}, + {0x201D, 40}, + {0x2020, 180}, + {0x2021, 181}, + {0x2025, 36}, + {0x2026, 35}, + {0x2030, 176}, + {0x2032, 75}, + {0x2033, 76}, + {0x203B, 101}, + {0x2103, 77}, + {0x2116, 1193}, + {0x2121, 1195}, + {0x212B, 175}, + {0x2160, 1148}, + {0x2161, 1149}, + {0x2162, 1150}, + {0x2163, 1151}, + {0x2164, 1152}, + {0x2165, 1153}, + {0x2166, 1154}, + {0x2167, 1155}, + {0x2168, 1156}, + {0x2169, 1157}, + {0x2170, 10716}, + {0x2171, 10717}, + {0x2172, 10718}, + {0x2173, 10719}, + {0x2174, 10720}, + {0x2175, 10721}, + {0x2176, 10722}, + {0x2177, 10723}, + {0x2178, 10724}, + {0x2179, 10725}, + {0x2190, 104}, + {0x2191, 105}, + {0x2192, 103}, + {0x2193, 106}, + {0x21D2, 138}, + {0x21D4, 139}, + {0x2200, 140}, + {0x2202, 156}, + {0x2203, 141}, + {0x2207, 157}, + {0x2208, 119}, + {0x220B, 120}, + {0x2211, 1211}, + {0x221A, 162}, + {0x221D, 164}, + {0x221E, 70}, + {0x221F, 1215}, + {0x2220, 153}, + {0x2225, 33}, + {0x2227, 135}, + {0x2228, 136}, + {0x2229, 126}, + {0x222A, 125}, + {0x222B, 166}, + {0x222C, 167}, + {0x222E, 1210}, + {0x2234, 71}, + {0x2235, 165}, + {0x223D, 163}, + {0x2252, 159}, + {0x2260, 65}, + {0x2261, 158}, + {0x2266, 68}, + {0x2267, 69}, + {0x226A, 160}, + {0x226B, 161}, + {0x2282, 123}, + {0x2283, 124}, + {0x2286, 121}, + {0x2287, 122}, + {0x22A5, 154}, + {0x22BF, 1216}, + {0x2312, 155}, + {0x2460, 1128}, + {0x2461, 1129}, + {0x2462, 1130}, + {0x2463, 1131}, + {0x2464, 1132}, + {0x2465, 1133}, + {0x2466, 1134}, + {0x2467, 1135}, + {0x2468, 1136}, + {0x2469, 1137}, + {0x246A, 1138}, + {0x246B, 1139}, + {0x246C, 1140}, + {0x246D, 1141}, + {0x246E, 1142}, + {0x246F, 1143}, + {0x2470, 1144}, + {0x2471, 1145}, + {0x2472, 1146}, + {0x2473, 1147}, + {0x2500, 658}, + {0x2501, 669}, + {0x2502, 659}, + {0x2503, 670}, + {0x250C, 660}, + {0x250F, 671}, + {0x2510, 661}, + {0x2513, 672}, + {0x2514, 663}, + {0x2517, 674}, + {0x2518, 662}, + {0x251B, 673}, + {0x251C, 664}, + {0x251D, 685}, + {0x2520, 680}, + {0x2523, 675}, + {0x2524, 666}, + {0x2525, 687}, + {0x2528, 682}, + {0x252B, 677}, + {0x252C, 665}, + {0x252F, 681}, + {0x2530, 686}, + {0x2533, 676}, + {0x2534, 667}, + {0x2537, 683}, + {0x2538, 688}, + {0x253B, 678}, + {0x253C, 668}, + {0x253F, 684}, + {0x2542, 689}, + {0x254B, 679}, + {0x25A0, 96}, + {0x25A1, 95}, + {0x25B2, 98}, + {0x25B3, 97}, + {0x25BC, 100}, + {0x25BD, 99}, + {0x25C6, 94}, + {0x25C7, 93}, + {0x25CB, 90}, + {0x25CE, 92}, + {0x25CF, 91}, + {0x25EF, 187}, + {0x2605, 89}, + {0x2606, 88}, + {0x2640, 73}, + {0x2642, 72}, + {0x266A, 179}, + {0x266D, 178}, + {0x266F, 177}, + {0x3000, 0}, + {0x3001, 1}, + {0x3002, 2}, + {0x3003, 22}, + {0x3005, 24}, + {0x3006, 25}, + {0x3007, 26}, + {0x3008, 49}, + {0x3009, 50}, + {0x300A, 51}, + {0x300B, 52}, + {0x300C, 53}, + {0x300D, 54}, + {0x300E, 55}, + {0x300F, 56}, + {0x3010, 57}, + {0x3011, 58}, + {0x3012, 102}, + {0x3013, 107}, + {0x3014, 43}, + {0x3015, 44}, + {0x301D, 1191}, + {0x301F, 1192}, + {0x3041, 282}, + {0x3042, 283}, + {0x3043, 284}, + {0x3044, 285}, + {0x3045, 286}, + {0x3046, 287}, + {0x3047, 288}, + {0x3048, 289}, + {0x3049, 290}, + {0x304A, 291}, + {0x304B, 292}, + {0x304C, 293}, + {0x304D, 294}, + {0x304E, 295}, + {0x304F, 296}, + {0x3050, 297}, + {0x3051, 298}, + {0x3052, 299}, + {0x3053, 300}, + {0x3054, 301}, + {0x3055, 302}, + {0x3056, 303}, + {0x3057, 304}, + {0x3058, 305}, + {0x3059, 306}, + {0x305A, 307}, + {0x305B, 308}, + {0x305C, 309}, + {0x305D, 310}, + {0x305E, 311}, + {0x305F, 312}, + {0x3060, 313}, + {0x3061, 314}, + {0x3062, 315}, + {0x3063, 316}, + {0x3064, 317}, + {0x3065, 318}, + {0x3066, 319}, + {0x3067, 320}, + {0x3068, 321}, + {0x3069, 322}, + {0x306A, 323}, + {0x306B, 324}, + {0x306C, 325}, + {0x306D, 326}, + {0x306E, 327}, + {0x306F, 328}, + {0x3070, 329}, + {0x3071, 330}, + {0x3072, 331}, + {0x3073, 332}, + {0x3074, 333}, + {0x3075, 334}, + {0x3076, 335}, + {0x3077, 336}, + {0x3078, 337}, + {0x3079, 338}, + {0x307A, 339}, + {0x307B, 340}, + {0x307C, 341}, + {0x307D, 342}, + {0x307E, 343}, + {0x307F, 344}, + {0x3080, 345}, + {0x3081, 346}, + {0x3082, 347}, + {0x3083, 348}, + {0x3084, 349}, + {0x3085, 350}, + {0x3086, 351}, + {0x3087, 352}, + {0x3088, 353}, + {0x3089, 354}, + {0x308A, 355}, + {0x308B, 356}, + {0x308C, 357}, + {0x308D, 358}, + {0x308E, 359}, + {0x308F, 360}, + {0x3090, 361}, + {0x3091, 362}, + {0x3092, 363}, + {0x3093, 364}, + {0x309B, 10}, + {0x309C, 11}, + {0x309D, 20}, + {0x309E, 21}, + {0x30A1, 376}, + {0x30A2, 377}, + {0x30A3, 378}, + {0x30A4, 379}, + {0x30A5, 380}, + {0x30A6, 381}, + {0x30A7, 382}, + {0x30A8, 383}, + {0x30A9, 384}, + {0x30AA, 385}, + {0x30AB, 386}, + {0x30AC, 387}, + {0x30AD, 388}, + {0x30AE, 389}, + {0x30AF, 390}, + {0x30B0, 391}, + {0x30B1, 392}, + {0x30B2, 393}, + {0x30B3, 394}, + {0x30B4, 395}, + {0x30B5, 396}, + {0x30B6, 397}, + {0x30B7, 398}, + {0x30B8, 399}, + {0x30B9, 400}, + {0x30BA, 401}, + {0x30BB, 402}, + {0x30BC, 403}, + {0x30BD, 404}, + {0x30BE, 405}, + {0x30BF, 406}, + {0x30C0, 407}, + {0x30C1, 408}, + {0x30C2, 409}, + {0x30C3, 410}, + {0x30C4, 411}, + {0x30C5, 412}, + {0x30C6, 413}, + {0x30C7, 414}, + {0x30C8, 415}, + {0x30C9, 416}, + {0x30CA, 417}, + {0x30CB, 418}, + {0x30CC, 419}, + {0x30CD, 420}, + {0x30CE, 421}, + {0x30CF, 422}, + {0x30D0, 423}, + {0x30D1, 424}, + {0x30D2, 425}, + {0x30D3, 426}, + {0x30D4, 427}, + {0x30D5, 428}, + {0x30D6, 429}, + {0x30D7, 430}, + {0x30D8, 431}, + {0x30D9, 432}, + {0x30DA, 433}, + {0x30DB, 434}, + {0x30DC, 435}, + {0x30DD, 436}, + {0x30DE, 437}, + {0x30DF, 438}, + {0x30E0, 439}, + {0x30E1, 440}, + {0x30E2, 441}, + {0x30E3, 442}, + {0x30E4, 443}, + {0x30E5, 444}, + {0x30E6, 445}, + {0x30E7, 446}, + {0x30E8, 447}, + {0x30E9, 448}, + {0x30EA, 449}, + {0x30EB, 450}, + {0x30EC, 451}, + {0x30ED, 452}, + {0x30EE, 453}, + {0x30EF, 454}, + {0x30F0, 455}, + {0x30F1, 456}, + {0x30F2, 457}, + {0x30F3, 458}, + {0x30F4, 459}, + {0x30F5, 460}, + {0x30F6, 461}, + {0x30FB, 5}, + {0x30FC, 27}, + {0x30FD, 18}, + {0x30FE, 19}, + {0x3231, 1201}, + {0x3232, 1202}, + {0x3239, 1203}, + {0x32A4, 1196}, + {0x32A5, 1197}, + {0x32A6, 1198}, + {0x32A7, 1199}, + {0x32A8, 1200}, + {0x3303, 1165}, + {0x330D, 1169}, + {0x3314, 1160}, + {0x3318, 1163}, + {0x3322, 1161}, + {0x3323, 1171}, + {0x3326, 1170}, + {0x3327, 1164}, + {0x332B, 1172}, + {0x3336, 1166}, + {0x333B, 1174}, + {0x3349, 1159}, + {0x334A, 1173}, + {0x334D, 1162}, + {0x3351, 1167}, + {0x3357, 1168}, + {0x337B, 1190}, + {0x337C, 1206}, + {0x337D, 1205}, + {0x337E, 1204}, + {0x338E, 1178}, + {0x338F, 1179}, + {0x339C, 1175}, + {0x339D, 1176}, + {0x339E, 1177}, + {0x33A1, 1181}, + {0x33C4, 1180}, + {0x33CD, 1194}, + {0x4E00, 1485}, + {0x4E01, 3285}, + {0x4E03, 2560}, + {0x4E07, 4039}, + {0x4E08, 2795}, + {0x4E09, 2459}, + {0x4E0A, 2794}, + {0x4E0B, 1625}, + {0x4E0D, 3811}, + {0x4E0E, 4166}, + {0x4E10, 4419}, + {0x4E11, 1518}, + {0x4E14, 1769}, + {0x4E15, 4420}, + {0x4E16, 2917}, + {0x4E17, 4639}, + {0x4E18, 1933}, + {0x4E19, 3879}, + {0x4E1E, 2796}, + {0x4E21, 4259}, + {0x4E26, 3887}, + {0x4E28, 10756}, + {0x4E2A, 4421}, + {0x4E2D, 3265}, + {0x4E31, 4422}, + {0x4E32, 2063}, + {0x4E36, 4423}, + {0x4E38, 1846}, + {0x4E39, 3211}, + {0x4E3B, 2608}, + {0x4E3C, 4424}, + {0x4E3F, 4425}, + {0x4E42, 4426}, + {0x4E43, 3592}, + {0x4E45, 1934}, + {0x4E4B, 3594}, + {0x4E4D, 3544}, + {0x4E4E, 2196}, + {0x4E4F, 3966}, + {0x4E55, 6808}, + {0x4E56, 4427}, + {0x4E57, 2797}, + {0x4E58, 4428}, + {0x4E59, 1618}, + {0x4E5D, 2042}, + {0x4E5E, 2241}, + {0x4E5F, 4114}, + {0x4E62, 4987}, + {0x4E71, 4215}, + {0x4E73, 3570}, + {0x4E7E, 1790}, + {0x4E80, 1900}, + {0x4E82, 4429}, + {0x4E85, 4430}, + {0x4E86, 4256}, + {0x4E88, 4164}, + {0x4E89, 3079}, + {0x4E8A, 4432}, + {0x4E8B, 2529}, + {0x4E8C, 3560}, + {0x4E8E, 4435}, + {0x4E91, 1533}, + {0x4E92, 2224}, + {0x4E94, 2223}, + {0x4E95, 1479}, + {0x4E98, 4366}, + {0x4E99, 4365}, + {0x4E9B, 2368}, + {0x4E9C, 1410}, + {0x4E9E, 4436}, + {0x4E9F, 4437}, + {0x4EA0, 4438}, + {0x4EA1, 3967}, + {0x4EA2, 4439}, + {0x4EA4, 2243}, + {0x4EA5, 1480}, + {0x4EA6, 4029}, + {0x4EA8, 1971}, + {0x4EAB, 1972}, + {0x4EAC, 1973}, + {0x4EAD, 3355}, + {0x4EAE, 4257}, + {0x4EB0, 4440}, + {0x4EB3, 4441}, + {0x4EB6, 4442}, + {0x4EBA, 2864}, + {0x4EC0, 2657}, + {0x4EC1, 2865}, + {0x4EC2, 4447}, + {0x4EC4, 4445}, + {0x4EC6, 4446}, + {0x4EC7, 1935}, + {0x4ECA, 2352}, + {0x4ECB, 1677}, + {0x4ECD, 4444}, + {0x4ECE, 4443}, + {0x4ECF, 3862}, + {0x4ED4, 2481}, + {0x4ED5, 2480}, + {0x4ED6, 3131}, + {0x4ED7, 4448}, + {0x4ED8, 3812}, + {0x4ED9, 2984}, + {0x4EDD, 23}, + {0x4EDE, 4449}, + {0x4EDF, 4451}, + {0x4EE1, 10757}, + {0x4EE3, 3170}, + {0x4EE4, 4294}, + {0x4EE5, 1451}, + {0x4EED, 4450}, + {0x4EEE, 1627}, + {0x4EF0, 2009}, + {0x4EF2, 3266}, + {0x4EF6, 2146}, + {0x4EF7, 4452}, + {0x4EFB, 3575}, + {0x4EFC, 10758}, + {0x4F00, 10759}, + {0x4F01, 1860}, + {0x4F03, 10760}, + {0x4F09, 4453}, + {0x4F0A, 1452}, + {0x4F0D, 2225}, + {0x4F0E, 1861}, + {0x4F0F, 3849}, + {0x4F10, 3683}, + {0x4F11, 1936}, + {0x4F1A, 1678}, + {0x4F1C, 4488}, + {0x4F1D, 3416}, + {0x4F2F, 3647}, + {0x4F30, 4455}, + {0x4F34, 3693}, + {0x4F36, 4295}, + {0x4F38, 2832}, + {0x4F39, 10761}, + {0x4F3A, 2482}, + {0x4F3C, 2530}, + {0x4F3D, 1629}, + {0x4F43, 3338}, + {0x4F46, 3197}, + {0x4F47, 4459}, + {0x4F4D, 1453}, + {0x4F4E, 3356}, + {0x4F4F, 2658}, + {0x4F50, 2369}, + {0x4F51, 4139}, + {0x4F53, 3147}, + {0x4F55, 1628}, + {0x4F56, 10762}, + {0x4F57, 4458}, + {0x4F59, 4165}, + {0x4F5A, 4454}, + {0x4F5B, 4456}, + {0x4F5C, 2427}, + {0x4F5D, 4457}, + {0x4F5E, 4891}, + {0x4F69, 4465}, + {0x4F6F, 4468}, + {0x4F70, 4466}, + {0x4F73, 1631}, + {0x4F75, 3880}, + {0x4F76, 4460}, + {0x4F7B, 4464}, + {0x4F7C, 2244}, + {0x4F7F, 2483}, + {0x4F83, 1791}, + {0x4F86, 4469}, + {0x4F88, 4461}, + {0x4F8A, 10764}, + {0x4F8B, 4296}, + {0x4F8D, 2531}, + {0x4F8F, 4462}, + {0x4F91, 4467}, + {0x4F92, 10763}, + {0x4F94, 10766}, + {0x4F96, 4470}, + {0x4F98, 4463}, + {0x4F9A, 10765}, + {0x4F9B, 1974}, + {0x4F9D, 1454}, + {0x4FA0, 1975}, + {0x4FA1, 1630}, + {0x4FAB, 4892}, + {0x4FAD, 4036}, + {0x4FAE, 3837}, + {0x4FAF, 2245}, + {0x4FB5, 2834}, + {0x4FB6, 4252}, + {0x4FBF, 3909}, + {0x4FC2, 2091}, + {0x4FC3, 3106}, + {0x4FC4, 1665}, + {0x4FC9, 10749}, + {0x4FCA, 2682}, + {0x4FCD, 10767}, + {0x4FCE, 4474}, + {0x4FD0, 4479}, + {0x4FD1, 4477}, + {0x4FD4, 4472}, + {0x4FD7, 3116}, + {0x4FD8, 4475}, + {0x4FDA, 4478}, + {0x4FDB, 4476}, + {0x4FDD, 3914}, + {0x4FDF, 4473}, + {0x4FE1, 2833}, + {0x4FE3, 4030}, + {0x4FE4, 4480}, + {0x4FE5, 4481}, + {0x4FEE, 2635}, + {0x4FEF, 4494}, + {0x4FF3, 3619}, + {0x4FF5, 3781}, + {0x4FF6, 4489}, + {0x4FF8, 3933}, + {0x4FFA, 1619}, + {0x4FFE, 4493}, + {0x4FFF, 10770}, + {0x5005, 4487}, + {0x5006, 4496}, + {0x5009, 3057}, + {0x500B, 2197}, + {0x500D, 3631}, + {0x500F, 5960}, + {0x5011, 4495}, + {0x5012, 3444}, + {0x5014, 4484}, + {0x5016, 2247}, + {0x5019, 2246}, + {0x501A, 4482}, + {0x501E, 10771}, + {0x501F, 2595}, + {0x5021, 4490}, + {0x5022, 10769}, + {0x5023, 3932}, + {0x5024, 3240}, + {0x5025, 4486}, + {0x5026, 2148}, + {0x5028, 4483}, + {0x5029, 4491}, + {0x502A, 4485}, + {0x502B, 4278}, + {0x502C, 4492}, + {0x502D, 4356}, + {0x5036, 2043}, + {0x5039, 2147}, + {0x5040, 10768}, + {0x5042, 10774}, + {0x5043, 4497}, + {0x5046, 10772}, + {0x5047, 4498}, + {0x5048, 4502}, + {0x5049, 1455}, + {0x504F, 3901}, + {0x5050, 4501}, + {0x5055, 4500}, + {0x5056, 4504}, + {0x505A, 4503}, + {0x505C, 3357}, + {0x5065, 2149}, + {0x506C, 4505}, + {0x5070, 10773}, + {0x5072, 2574}, + {0x5074, 3107}, + {0x5075, 3358}, + {0x5076, 2059}, + {0x5078, 4506}, + {0x507D, 1901}, + {0x5080, 4507}, + {0x5085, 4509}, + {0x508D, 3968}, + {0x5091, 2137}, + {0x5094, 10775}, + {0x5098, 2460}, + {0x5099, 3752}, + {0x509A, 4508}, + {0x50AC, 2386}, + {0x50AD, 4170}, + {0x50B2, 4511}, + {0x50B3, 4514}, + {0x50B4, 4510}, + {0x50B5, 2385}, + {0x50B7, 2724}, + {0x50BE, 2092}, + {0x50C2, 4515}, + {0x50C5, 2020}, + {0x50C9, 4512}, + {0x50CA, 4513}, + {0x50CD, 3492}, + {0x50CF, 3099}, + {0x50D1, 1976}, + {0x50D5, 3992}, + {0x50D6, 4516}, + {0x50D8, 10777}, + {0x50DA, 4258}, + {0x50DE, 4517}, + {0x50E3, 4520}, + {0x50E5, 4518}, + {0x50E7, 3053}, + {0x50ED, 4519}, + {0x50EE, 4521}, + {0x50F4, 10776}, + {0x50F5, 4523}, + {0x50F9, 4522}, + {0x50FB, 3893}, + {0x5100, 1902}, + {0x5101, 4525}, + {0x5102, 4526}, + {0x5104, 1612}, + {0x5109, 4524}, + {0x5112, 2621}, + {0x5114, 4529}, + {0x5115, 4528}, + {0x5116, 4527}, + {0x5118, 4471}, + {0x511A, 4530}, + {0x511F, 2725}, + {0x5121, 4531}, + {0x512A, 4140}, + {0x5132, 4098}, + {0x5137, 4533}, + {0x513A, 4532}, + {0x513B, 4535}, + {0x513C, 4534}, + {0x513F, 4536}, + {0x5140, 4537}, + {0x5141, 1493}, + {0x5143, 2182}, + {0x5144, 2094}, + {0x5145, 2659}, + {0x5146, 3286}, + {0x5147, 1977}, + {0x5148, 2985}, + {0x5149, 2248}, + {0x514A, 10778}, + {0x514B, 2333}, + {0x514C, 4539}, + {0x514D, 4081}, + {0x514E, 3421}, + {0x5150, 2532}, + {0x5152, 4538}, + {0x5154, 4540}, + {0x515A, 3445}, + {0x515C, 1776}, + {0x5162, 4541}, + {0x5164, 10779}, + {0x5165, 3571}, + {0x5168, 3027}, + {0x5169, 4543}, + {0x516A, 4544}, + {0x516B, 3677}, + {0x516C, 2249}, + {0x516D, 4350}, + {0x516E, 4545}, + {0x5171, 1979}, + {0x5175, 3881}, + {0x5176, 3123}, + {0x5177, 2054}, + {0x5178, 3404}, + {0x517C, 2150}, + {0x5180, 4546}, + {0x5182, 4547}, + {0x5185, 3543}, + {0x5186, 1566}, + {0x5189, 4550}, + {0x518A, 2442}, + {0x518C, 4549}, + {0x518D, 2387}, + {0x518F, 4551}, + {0x5190, 6563}, + {0x5191, 4552}, + {0x5192, 3980}, + {0x5193, 4553}, + {0x5195, 4554}, + {0x5196, 4555}, + {0x5197, 2798}, + {0x5199, 2581}, + {0x519D, 10780}, + {0x51A0, 1792}, + {0x51A2, 4558}, + {0x51A4, 4556}, + {0x51A5, 4070}, + {0x51A6, 4557}, + {0x51A8, 3817}, + {0x51A9, 4559}, + {0x51AA, 4560}, + {0x51AB, 4561}, + {0x51AC, 3446}, + {0x51B0, 4565}, + {0x51B1, 4563}, + {0x51B2, 4564}, + {0x51B3, 4562}, + {0x51B4, 2416}, + {0x51B5, 4566}, + {0x51B6, 4115}, + {0x51B7, 4297}, + {0x51BD, 4567}, + {0x51BE, 10781}, + {0x51C4, 2921}, + {0x51C5, 4568}, + {0x51C6, 2689}, + {0x51C9, 4569}, + {0x51CB, 3287}, + {0x51CC, 4260}, + {0x51CD, 3447}, + {0x51D6, 4642}, + {0x51DB, 4570}, + {0x51DC, 7806}, + {0x51DD, 2010}, + {0x51E0, 4571}, + {0x51E1, 4009}, + {0x51E6, 2703}, + {0x51E7, 3193}, + {0x51E9, 4573}, + {0x51EA, 3545}, + {0x51EC, 10782}, + {0x51ED, 4574}, + {0x51F0, 4575}, + {0x51F1, 1705}, + {0x51F5, 4576}, + {0x51F6, 1980}, + {0x51F8, 3521}, + {0x51F9, 1593}, + {0x51FA, 2679}, + {0x51FD, 3666}, + {0x51FE, 4577}, + {0x5200, 3448}, + {0x5203, 2866}, + {0x5204, 4578}, + {0x5206, 3865}, + {0x5207, 2971}, + {0x5208, 1787}, + {0x520A, 1794}, + {0x520B, 4579}, + {0x520E, 4581}, + {0x5211, 2093}, + {0x5214, 4580}, + {0x5215, 10783}, + {0x5217, 4312}, + {0x521D, 2704}, + {0x5224, 3694}, + {0x5225, 3897}, + {0x5227, 4582}, + {0x5229, 4223}, + {0x522A, 4583}, + {0x522E, 4584}, + {0x5230, 3477}, + {0x5233, 4585}, + {0x5236, 2922}, + {0x5237, 2443}, + {0x5238, 2151}, + {0x5239, 4586}, + {0x523A, 2484}, + {0x523B, 2334}, + {0x5243, 3359}, + {0x5244, 4588}, + {0x5247, 3108}, + {0x524A, 2428}, + {0x524B, 4589}, + {0x524C, 4590}, + {0x524D, 3023}, + {0x524F, 4587}, + {0x5254, 4592}, + {0x5256, 3969}, + {0x525B, 2323}, + {0x525E, 4591}, + {0x5263, 2152}, + {0x5264, 2411}, + {0x5265, 3648}, + {0x5269, 4595}, + {0x526A, 4593}, + {0x526F, 3850}, + {0x5270, 2799}, + {0x5271, 4602}, + {0x5272, 1759}, + {0x5273, 4596}, + {0x5274, 4594}, + {0x5275, 3054}, + {0x527D, 4598}, + {0x527F, 4597}, + {0x5283, 1727}, + {0x5287, 2131}, + {0x5288, 4603}, + {0x5289, 4242}, + {0x528D, 4599}, + {0x5291, 4604}, + {0x5292, 4601}, + {0x5294, 4600}, + {0x529B, 4276}, + {0x529C, 10784}, + {0x529F, 2250}, + {0x52A0, 1632}, + {0x52A3, 4313}, + {0x52A6, 10785}, + {0x52A9, 2716}, + {0x52AA, 3439}, + {0x52AB, 2324}, + {0x52AC, 4607}, + {0x52AD, 4608}, + {0x52AF, 10959}, + {0x52B1, 4298}, + {0x52B4, 4334}, + {0x52B5, 4610}, + {0x52B9, 2251}, + {0x52BC, 4609}, + {0x52BE, 1706}, + {0x52C0, 10786}, + {0x52C1, 4611}, + {0x52C3, 4001}, + {0x52C5, 3317}, + {0x52C7, 4141}, + {0x52C9, 3910}, + {0x52CD, 4612}, + {0x52D2, 7478}, + {0x52D5, 3493}, + {0x52D7, 4613}, + {0x52D8, 1795}, + {0x52D9, 4060}, + {0x52DB, 10787}, + {0x52DD, 2726}, + {0x52DE, 4614}, + {0x52DF, 3924}, + {0x52E0, 4618}, + {0x52E2, 2923}, + {0x52E3, 4615}, + {0x52E4, 2021}, + {0x52E6, 4616}, + {0x52E7, 1796}, + {0x52F2, 2081}, + {0x52F3, 4619}, + {0x52F5, 4620}, + {0x52F8, 4621}, + {0x52F9, 4622}, + {0x52FA, 2596}, + {0x52FE, 2252}, + {0x52FF, 4103}, + {0x5300, 10788}, + {0x5301, 4113}, + {0x5302, 3564}, + {0x5305, 3934}, + {0x5306, 4623}, + {0x5307, 10789}, + {0x5308, 4624}, + {0x530D, 4626}, + {0x530F, 4628}, + {0x5310, 4627}, + {0x5315, 4629}, + {0x5316, 1626}, + {0x5317, 3991}, + {0x5319, 2441}, + {0x531A, 4630}, + {0x531D, 3064}, + {0x5320, 2727}, + {0x5321, 1982}, + {0x5323, 4631}, + {0x5324, 10790}, + {0x532A, 3724}, + {0x532F, 4632}, + {0x5331, 4633}, + {0x5333, 4634}, + {0x5338, 4635}, + {0x5339, 3763}, + {0x533A, 2045}, + {0x533B, 1478}, + {0x533F, 3508}, + {0x5340, 4636}, + {0x5341, 2660}, + {0x5343, 2986}, + {0x5345, 4638}, + {0x5346, 4637}, + {0x5347, 2728}, + {0x5348, 2226}, + {0x5349, 4640}, + {0x534A, 3695}, + {0x534D, 4641}, + {0x5351, 3725}, + {0x5352, 3121}, + {0x5353, 3179}, + {0x5354, 1981}, + {0x5357, 3555}, + {0x5358, 3212}, + {0x535A, 3649}, + {0x535C, 3993}, + {0x535E, 4643}, + {0x5360, 2987}, + {0x5366, 2088}, + {0x5369, 4644}, + {0x536E, 4645}, + {0x536F, 1515}, + {0x5370, 1494}, + {0x5371, 1862}, + {0x5372, 10791}, + {0x5373, 3109}, + {0x5374, 1928}, + {0x5375, 4216}, + {0x5377, 4648}, + {0x5378, 1620}, + {0x537B, 4647}, + {0x537F, 1983}, + {0x5382, 4649}, + {0x5384, 4122}, + {0x5393, 10792}, + {0x5396, 4650}, + {0x5398, 4279}, + {0x539A, 2253}, + {0x539F, 2183}, + {0x53A0, 4651}, + {0x53A5, 4653}, + {0x53A6, 4652}, + {0x53A8, 2882}, + {0x53A9, 1528}, + {0x53AD, 1565}, + {0x53AE, 4654}, + {0x53B0, 4655}, + {0x53B2, 10793}, + {0x53B3, 2184}, + {0x53B6, 4656}, + {0x53BB, 1957}, + {0x53C2, 2461}, + {0x53C3, 4657}, + {0x53C8, 4031}, + {0x53C9, 2370}, + {0x53CA, 1937}, + {0x53CB, 4142}, + {0x53CC, 3055}, + {0x53CD, 3696}, + {0x53CE, 2630}, + {0x53D4, 2670}, + {0x53D6, 2609}, + {0x53D7, 2622}, + {0x53D9, 2717}, + {0x53DB, 3697}, + {0x53DD, 10794}, + {0x53DF, 4660}, + {0x53E1, 1538}, + {0x53E2, 3056}, + {0x53E3, 2254}, + {0x53E4, 2198}, + {0x53E5, 2044}, + {0x53E8, 4664}, + {0x53E9, 3196}, + {0x53EA, 3195}, + {0x53EB, 1984}, + {0x53EC, 2729}, + {0x53ED, 4665}, + {0x53EE, 4663}, + {0x53EF, 1633}, + {0x53F0, 3171}, + {0x53F1, 2561}, + {0x53F2, 2486}, + {0x53F3, 1509}, + {0x53F6, 1771}, + {0x53F7, 2325}, + {0x53F8, 2485}, + {0x53FA, 4666}, + {0x5401, 4667}, + {0x5403, 1920}, + {0x5404, 1729}, + {0x5408, 2326}, + {0x5409, 1919}, + {0x540A, 3352}, + {0x540B, 1508}, + {0x540C, 3494}, + {0x540D, 4071}, + {0x540E, 2256}, + {0x540F, 4224}, + {0x5410, 3422}, + {0x5411, 2255}, + {0x541B, 2082}, + {0x541D, 4676}, + {0x541F, 2040}, + {0x5420, 3989}, + {0x5426, 3726}, + {0x5429, 4675}, + {0x542B, 1847}, + {0x542C, 4670}, + {0x542D, 4671}, + {0x542E, 4673}, + {0x5436, 4674}, + {0x5438, 1938}, + {0x5439, 2884}, + {0x543B, 3866}, + {0x543C, 4672}, + {0x543D, 4668}, + {0x543E, 2228}, + {0x5440, 4669}, + {0x5442, 4327}, + {0x5446, 3935}, + {0x5448, 3361}, + {0x5449, 2227}, + {0x544A, 2335}, + {0x544E, 4677}, + {0x5451, 3538}, + {0x545F, 4681}, + {0x5468, 2631}, + {0x546A, 2623}, + {0x5470, 4684}, + {0x5471, 4682}, + {0x5473, 4044}, + {0x5475, 4679}, + {0x5476, 4688}, + {0x5477, 4683}, + {0x547B, 4686}, + {0x547C, 2199}, + {0x547D, 4072}, + {0x5480, 4687}, + {0x5484, 4689}, + {0x5486, 4691}, + {0x548A, 10797}, + {0x548B, 2429}, + {0x548C, 4357}, + {0x548E, 4680}, + {0x548F, 4678}, + {0x5490, 4690}, + {0x5492, 4685}, + {0x549C, 10796}, + {0x54A2, 4693}, + {0x54A4, 4702}, + {0x54A5, 4695}, + {0x54A8, 4699}, + {0x54A9, 10798}, + {0x54AB, 4700}, + {0x54AC, 4696}, + {0x54AF, 4729}, + {0x54B2, 2422}, + {0x54B3, 1708}, + {0x54B8, 4694}, + {0x54BC, 4704}, + {0x54BD, 1495}, + {0x54BE, 4703}, + {0x54C0, 1414}, + {0x54C1, 3801}, + {0x54C2, 4701}, + {0x54C4, 4697}, + {0x54C7, 4692}, + {0x54C8, 4698}, + {0x54C9, 2389}, + {0x54D8, 4705}, + {0x54E1, 1496}, + {0x54E2, 4714}, + {0x54E5, 4706}, + {0x54E6, 4707}, + {0x54E8, 2730}, + {0x54E9, 4020}, + {0x54ED, 4712}, + {0x54EE, 4711}, + {0x54F2, 3398}, + {0x54FA, 4713}, + {0x54FD, 4710}, + {0x54FF, 10799}, + {0x5504, 1523}, + {0x5506, 2371}, + {0x5507, 2835}, + {0x550F, 4708}, + {0x5510, 3449}, + {0x5514, 4709}, + {0x5516, 1411}, + {0x552E, 4719}, + {0x552F, 4138}, + {0x5531, 2732}, + {0x5533, 4725}, + {0x5538, 4724}, + {0x5539, 4715}, + {0x553E, 3136}, + {0x5540, 4716}, + {0x5544, 3180}, + {0x5545, 4721}, + {0x5546, 2731}, + {0x554C, 4718}, + {0x554F, 4109}, + {0x5553, 2095}, + {0x5556, 4722}, + {0x5557, 4723}, + {0x555C, 4720}, + {0x555D, 4726}, + {0x5563, 4717}, + {0x557B, 4732}, + {0x557C, 4737}, + {0x557E, 4733}, + {0x5580, 4728}, + {0x5583, 4738}, + {0x5584, 3024}, + {0x5586, 10800}, + {0x5587, 4740}, + {0x5589, 2257}, + {0x558A, 4730}, + {0x558B, 3288}, + {0x5598, 4734}, + {0x5599, 4727}, + {0x559A, 1798}, + {0x559C, 1863}, + {0x559D, 1760}, + {0x559E, 4735}, + {0x559F, 4731}, + {0x55A7, 2153}, + {0x55A8, 4741}, + {0x55A9, 4739}, + {0x55AA, 3058}, + {0x55AB, 1921}, + {0x55AC, 1985}, + {0x55AE, 4736}, + {0x55B0, 2057}, + {0x55B6, 1539}, + {0x55C4, 4745}, + {0x55C5, 4743}, + {0x55C7, 4800}, + {0x55D4, 4748}, + {0x55DA, 4742}, + {0x55DC, 4746}, + {0x55DF, 4744}, + {0x55E3, 2487}, + {0x55E4, 4747}, + {0x55F7, 4750}, + {0x55F9, 4755}, + {0x55FD, 4753}, + {0x55FE, 4752}, + {0x5606, 3213}, + {0x5609, 1634}, + {0x5614, 4749}, + {0x5616, 4751}, + {0x5617, 2733}, + {0x5618, 1522}, + {0x561B, 4754}, + {0x5629, 1659}, + {0x562F, 4765}, + {0x5631, 2817}, + {0x5632, 4761}, + {0x5634, 4759}, + {0x5636, 4760}, + {0x5638, 4762}, + {0x5642, 1532}, + {0x564C, 3032}, + {0x564E, 4756}, + {0x5650, 4757}, + {0x565B, 1781}, + {0x5664, 4764}, + {0x5668, 1864}, + {0x566A, 4767}, + {0x566B, 4763}, + {0x566C, 4766}, + {0x5674, 3867}, + {0x5678, 3530}, + {0x567A, 3689}, + {0x5680, 4769}, + {0x5686, 4768}, + {0x5687, 1728}, + {0x568A, 4770}, + {0x568F, 4773}, + {0x5694, 4772}, + {0x56A0, 4771}, + {0x56A2, 3596}, + {0x56A5, 4774}, + {0x56AE, 4775}, + {0x56B4, 4777}, + {0x56B6, 4776}, + {0x56BC, 4779}, + {0x56C0, 4782}, + {0x56C1, 4780}, + {0x56C2, 4778}, + {0x56C3, 4781}, + {0x56C8, 4783}, + {0x56CE, 4784}, + {0x56D1, 4785}, + {0x56D3, 4786}, + {0x56D7, 4787}, + {0x56D8, 4548}, + {0x56DA, 2629}, + {0x56DB, 2488}, + {0x56DE, 1680}, + {0x56E0, 1497}, + {0x56E3, 3231}, + {0x56EE, 4788}, + {0x56F0, 2353}, + {0x56F2, 1456}, + {0x56F3, 2881}, + {0x56F9, 4789}, + {0x56FA, 2200}, + {0x56FD, 2336}, + {0x56FF, 4791}, + {0x5700, 4790}, + {0x5703, 3917}, + {0x5704, 4792}, + {0x5708, 4794}, + {0x5709, 4793}, + {0x570B, 4795}, + {0x570D, 4796}, + {0x570F, 2154}, + {0x5712, 1567}, + {0x5713, 4797}, + {0x5716, 4799}, + {0x5718, 4798}, + {0x571C, 4801}, + {0x571F, 3441}, + {0x5726, 4802}, + {0x5727, 1430}, + {0x5728, 2412}, + {0x572D, 2096}, + {0x5730, 3242}, + {0x5737, 4803}, + {0x5738, 4804}, + {0x573B, 4806}, + {0x5740, 4807}, + {0x5742, 2417}, + {0x5747, 2022}, + {0x574A, 3970}, + {0x574E, 4805}, + {0x574F, 4808}, + {0x5750, 2382}, + {0x5751, 2258}, + {0x5759, 10801}, + {0x5761, 4812}, + {0x5764, 2354}, + {0x5765, 10802}, + {0x5766, 3214}, + {0x5769, 4809}, + {0x576A, 3347}, + {0x577F, 4813}, + {0x5782, 2885}, + {0x5788, 4811}, + {0x5789, 4814}, + {0x578B, 2098}, + {0x5793, 4815}, + {0x57A0, 4816}, + {0x57A2, 2259}, + {0x57A3, 1723}, + {0x57A4, 4818}, + {0x57AA, 4819}, + {0x57AC, 10803}, + {0x57B0, 4820}, + {0x57B3, 4817}, + {0x57C0, 4810}, + {0x57C3, 4821}, + {0x57C6, 4822}, + {0x57C7, 10805}, + {0x57C8, 10804}, + {0x57CB, 4015}, + {0x57CE, 2800}, + {0x57D2, 4824}, + {0x57D3, 4825}, + {0x57D4, 4823}, + {0x57D6, 4827}, + {0x57DC, 3595}, + {0x57DF, 1481}, + {0x57E0, 3813}, + {0x57E3, 4828}, + {0x57F4, 2818}, + {0x57F7, 2562}, + {0x57F9, 3632}, + {0x57FA, 1865}, + {0x57FC, 2424}, + {0x5800, 4004}, + {0x5802, 3495}, + {0x5805, 2155}, + {0x5806, 3148}, + {0x580A, 4826}, + {0x580B, 4829}, + {0x5815, 3137}, + {0x5819, 4830}, + {0x581D, 4831}, + {0x5821, 4833}, + {0x5824, 3362}, + {0x582A, 1799}, + {0x582F, 7802}, + {0x5830, 1568}, + {0x5831, 3936}, + {0x5834, 2801}, + {0x5835, 3423}, + {0x583A, 2419}, + {0x583D, 4839}, + {0x5840, 3882}, + {0x5841, 4290}, + {0x584A, 1681}, + {0x584B, 4835}, + {0x5851, 3033}, + {0x5852, 4838}, + {0x5854, 3450}, + {0x5857, 3424}, + {0x5858, 3451}, + {0x5859, 3690}, + {0x585A, 3334}, + {0x585E, 2390}, + {0x5862, 4834}, + {0x5869, 1589}, + {0x586B, 3405}, + {0x5870, 4836}, + {0x5872, 4832}, + {0x5875, 2867}, + {0x5879, 4840}, + {0x587E, 2677}, + {0x5883, 1986}, + {0x5885, 4841}, + {0x5893, 3925}, + {0x5897, 3100}, + {0x589C, 3327}, + {0x589E, 10808}, + {0x589F, 4843}, + {0x58A8, 3994}, + {0x58AB, 4844}, + {0x58AE, 4849}, + {0x58B2, 10809}, + {0x58B3, 3868}, + {0x58B8, 4848}, + {0x58B9, 4842}, + {0x58BA, 4845}, + {0x58BB, 4847}, + {0x58BE, 2355}, + {0x58C1, 3894}, + {0x58C5, 4850}, + {0x58C7, 3232}, + {0x58CA, 1682}, + {0x58CC, 2802}, + {0x58D1, 4852}, + {0x58D3, 4851}, + {0x58D5, 2327}, + {0x58D7, 4853}, + {0x58D8, 4855}, + {0x58D9, 4854}, + {0x58DC, 4857}, + {0x58DE, 4846}, + {0x58DF, 4859}, + {0x58E4, 4858}, + {0x58E5, 4856}, + {0x58EB, 2489}, + {0x58EC, 2868}, + {0x58EE, 3059}, + {0x58EF, 4860}, + {0x58F0, 2941}, + {0x58F1, 1486}, + {0x58F2, 3639}, + {0x58F7, 3348}, + {0x58F9, 4862}, + {0x58FA, 4861}, + {0x58FB, 4863}, + {0x58FC, 4864}, + {0x58FD, 4865}, + {0x5902, 4866}, + {0x5909, 3902}, + {0x590A, 4867}, + {0x590B, 10810}, + {0x590F, 1635}, + {0x5910, 4868}, + {0x5915, 4163}, + {0x5916, 1707}, + {0x5918, 4646}, + {0x5919, 2671}, + {0x591A, 3132}, + {0x591B, 4869}, + {0x591C, 4116}, + {0x5922, 4061}, + {0x5925, 4871}, + {0x5927, 3172}, + {0x5929, 3406}, + {0x592A, 3133}, + {0x592B, 3814}, + {0x592C, 4872}, + {0x592D, 4873}, + {0x592E, 1594}, + {0x5931, 2563}, + {0x5932, 4874}, + {0x5937, 1457}, + {0x5938, 4875}, + {0x593E, 4876}, + {0x5944, 1569}, + {0x5947, 1866}, + {0x5948, 3541}, + {0x5949, 3937}, + {0x594E, 4880}, + {0x594F, 3060}, + {0x5950, 4879}, + {0x5951, 2099}, + {0x5953, 10811}, + {0x5954, 4006}, + {0x5955, 4878}, + {0x5957, 3452}, + {0x5958, 4882}, + {0x595A, 4881}, + {0x595B, 10812}, + {0x595D, 10813}, + {0x5960, 4884}, + {0x5962, 4883}, + {0x5963, 10814}, + {0x5965, 1595}, + {0x5967, 4885}, + {0x5968, 2734}, + {0x5969, 4887}, + {0x596A, 3200}, + {0x596C, 4886}, + {0x596E, 3872}, + {0x5973, 2718}, + {0x5974, 3442}, + {0x5978, 4888}, + {0x597D, 2260}, + {0x5981, 4889}, + {0x5982, 3572}, + {0x5983, 3727}, + {0x5984, 4090}, + {0x598A, 3576}, + {0x598D, 4898}, + {0x5993, 1903}, + {0x5996, 4172}, + {0x5999, 4056}, + {0x599B, 4993}, + {0x599D, 4890}, + {0x59A3, 4893}, + {0x59A4, 10815}, + {0x59A5, 3138}, + {0x59A8, 3971}, + {0x59AC, 3425}, + {0x59B2, 4894}, + {0x59B9, 4016}, + {0x59BA, 10816}, + {0x59BB, 2391}, + {0x59BE, 2735}, + {0x59C6, 4895}, + {0x59C9, 2491}, + {0x59CB, 2490}, + {0x59D0, 1434}, + {0x59D1, 2201}, + {0x59D3, 2924}, + {0x59D4, 1458}, + {0x59D9, 4899}, + {0x59DA, 4900}, + {0x59DC, 4897}, + {0x59E5, 1527}, + {0x59E6, 1800}, + {0x59E8, 4896}, + {0x59EA, 4078}, + {0x59EB, 3776}, + {0x59F6, 1417}, + {0x59FB, 1498}, + {0x59FF, 2492}, + {0x5A01, 1459}, + {0x5A03, 1412}, + {0x5A09, 4905}, + {0x5A11, 4903}, + {0x5A18, 4069}, + {0x5A1A, 4906}, + {0x5A1C, 4904}, + {0x5A1F, 4902}, + {0x5A20, 2836}, + {0x5A25, 4901}, + {0x5A29, 3911}, + {0x5A2F, 2229}, + {0x5A35, 4910}, + {0x5A36, 4911}, + {0x5A3C, 2736}, + {0x5A40, 4907}, + {0x5A41, 4335}, + {0x5A46, 3615}, + {0x5A49, 4909}, + {0x5A5A, 2356}, + {0x5A62, 4912}, + {0x5A66, 3815}, + {0x5A6A, 4913}, + {0x5A6C, 4908}, + {0x5A7F, 4068}, + {0x5A92, 3633}, + {0x5A9A, 4914}, + {0x5A9B, 3777}, + {0x5ABC, 4915}, + {0x5ABD, 4919}, + {0x5ABE, 4916}, + {0x5AC1, 1636}, + {0x5AC2, 4918}, + {0x5AC9, 2564}, + {0x5ACB, 4917}, + {0x5ACC, 2156}, + {0x5AD0, 4931}, + {0x5AD6, 4924}, + {0x5AD7, 4921}, + {0x5AE1, 3263}, + {0x5AE3, 4920}, + {0x5AE6, 4922}, + {0x5AE9, 4923}, + {0x5AFA, 4925}, + {0x5AFB, 4926}, + {0x5B09, 1867}, + {0x5B0B, 4928}, + {0x5B0C, 4927}, + {0x5B16, 4929}, + {0x5B22, 2803}, + {0x5B2A, 4932}, + {0x5B2C, 3349}, + {0x5B30, 1540}, + {0x5B32, 4930}, + {0x5B36, 4933}, + {0x5B3E, 4934}, + {0x5B40, 4937}, + {0x5B43, 4935}, + {0x5B45, 4936}, + {0x5B50, 2493}, + {0x5B51, 4938}, + {0x5B54, 2261}, + {0x5B55, 4939}, + {0x5B56, 10817}, + {0x5B57, 2533}, + {0x5B58, 3125}, + {0x5B5A, 4940}, + {0x5B5B, 4941}, + {0x5B5C, 2501}, + {0x5B5D, 2262}, + {0x5B5F, 4091}, + {0x5B63, 1887}, + {0x5B64, 2202}, + {0x5B65, 4942}, + {0x5B66, 1747}, + {0x5B69, 4943}, + {0x5B6B, 3126}, + {0x5B70, 4944}, + {0x5B71, 4984}, + {0x5B73, 4945}, + {0x5B75, 4946}, + {0x5B78, 4947}, + {0x5B7A, 4949}, + {0x5B80, 4950}, + {0x5B83, 4951}, + {0x5B85, 3181}, + {0x5B87, 1510}, + {0x5B88, 2610}, + {0x5B89, 1443}, + {0x5B8B, 3062}, + {0x5B8C, 1801}, + {0x5B8D, 2558}, + {0x5B8F, 2263}, + {0x5B95, 3453}, + {0x5B97, 2632}, + {0x5B98, 1802}, + {0x5B99, 3267}, + {0x5B9A, 3363}, + {0x5B9B, 1433}, + {0x5B9C, 1904}, + {0x5B9D, 3938}, + {0x5B9F, 2571}, + {0x5BA2, 1929}, + {0x5BA3, 2988}, + {0x5BA4, 2565}, + {0x5BA5, 4143}, + {0x5BA6, 4952}, + {0x5BAE, 1939}, + {0x5BB0, 2392}, + {0x5BB3, 1709}, + {0x5BB4, 1570}, + {0x5BB5, 2737}, + {0x5BB6, 1637}, + {0x5BB8, 4953}, + {0x5BB9, 4173}, + {0x5BBF, 2672}, + {0x5BC0, 10818}, + {0x5BC2, 2605}, + {0x5BC3, 4954}, + {0x5BC4, 1868}, + {0x5BC5, 3527}, + {0x5BC6, 4050}, + {0x5BC7, 4955}, + {0x5BC9, 4956}, + {0x5BCC, 3816}, + {0x5BD0, 4958}, + {0x5BD2, 1793}, + {0x5BD3, 2060}, + {0x5BD4, 4957}, + {0x5BD8, 10820}, + {0x5BDB, 1803}, + {0x5BDD, 2837}, + {0x5BDE, 4962}, + {0x5BDF, 2444}, + {0x5BE1, 1638}, + {0x5BE2, 4961}, + {0x5BE4, 4959}, + {0x5BE5, 4963}, + {0x5BE6, 4960}, + {0x5BE7, 3582}, + {0x5BE8, 5590}, + {0x5BE9, 2838}, + {0x5BEB, 4964}, + {0x5BEC, 10821}, + {0x5BEE, 4261}, + {0x5BF0, 4965}, + {0x5BF3, 4967}, + {0x5BF5, 3289}, + {0x5BF6, 4966}, + {0x5BF8, 2916}, + {0x5BFA, 2534}, + {0x5BFE, 3149}, + {0x5BFF, 2624}, + {0x5C01, 3844}, + {0x5C02, 2989}, + {0x5C04, 2582}, + {0x5C05, 4968}, + {0x5C06, 2738}, + {0x5C07, 4969}, + {0x5C08, 4970}, + {0x5C09, 1460}, + {0x5C0A, 3127}, + {0x5C0B, 2869}, + {0x5C0D, 4971}, + {0x5C0E, 3496}, + {0x5C0F, 2739}, + {0x5C11, 2740}, + {0x5C13, 4972}, + {0x5C16, 2990}, + {0x5C1A, 2741}, + {0x5C1E, 10822}, + {0x5C20, 4973}, + {0x5C22, 4974}, + {0x5C24, 4105}, + {0x5C28, 4975}, + {0x5C2D, 2011}, + {0x5C31, 2633}, + {0x5C38, 4976}, + {0x5C39, 4977}, + {0x5C3A, 2597}, + {0x5C3B, 2831}, + {0x5C3C, 3561}, + {0x5C3D, 2871}, + {0x5C3E, 3753}, + {0x5C3F, 3573}, + {0x5C40, 2014}, + {0x5C41, 4978}, + {0x5C45, 1958}, + {0x5C46, 4979}, + {0x5C48, 2067}, + {0x5C4A, 3524}, + {0x5C4B, 1613}, + {0x5C4D, 2494}, + {0x5C4E, 4980}, + {0x5C4F, 4983}, + {0x5C50, 4982}, + {0x5C51, 2066}, + {0x5C53, 4981}, + {0x5C55, 3407}, + {0x5C5E, 3117}, + {0x5C60, 3426}, + {0x5C61, 2577}, + {0x5C64, 3063}, + {0x5C65, 4225}, + {0x5C6C, 4985}, + {0x5C6E, 4986}, + {0x5C6F, 3531}, + {0x5C71, 2462}, + {0x5C76, 4988}, + {0x5C79, 4989}, + {0x5C8C, 4990}, + {0x5C90, 1869}, + {0x5C91, 4991}, + {0x5C94, 4992}, + {0x5CA1, 1609}, + {0x5CA6, 10823}, + {0x5CA8, 3034}, + {0x5CA9, 1853}, + {0x5CAB, 4994}, + {0x5CAC, 4049}, + {0x5CB1, 3151}, + {0x5CB3, 1748}, + {0x5CB6, 4996}, + {0x5CB7, 4998}, + {0x5CB8, 1848}, + {0x5CBA, 10824}, + {0x5CBB, 4995}, + {0x5CBC, 4997}, + {0x5CBE, 5000}, + {0x5CC5, 4999}, + {0x5CC7, 5001}, + {0x5CD9, 5002}, + {0x5CE0, 3506}, + {0x5CE1, 1987}, + {0x5CE8, 1666}, + {0x5CE9, 5003}, + {0x5CEA, 5008}, + {0x5CED, 5006}, + {0x5CEF, 3940}, + {0x5CF0, 3939}, + {0x5CF5, 10825}, + {0x5CF6, 3454}, + {0x5CFA, 5005}, + {0x5CFB, 2683}, + {0x5CFD, 5004}, + {0x5D07, 2901}, + {0x5D0B, 5009}, + {0x5D0E, 2423}, + {0x5D11, 5015}, + {0x5D14, 5016}, + {0x5D15, 5010}, + {0x5D16, 1710}, + {0x5D17, 5011}, + {0x5D18, 5020}, + {0x5D19, 5019}, + {0x5D1A, 5018}, + {0x5D1B, 5014}, + {0x5D1F, 5013}, + {0x5D22, 5017}, + {0x5D27, 10826}, + {0x5D29, 3941}, + {0x5D42, 10829}, + {0x5D4B, 5024}, + {0x5D4C, 5021}, + {0x5D4E, 5023}, + {0x5D50, 4217}, + {0x5D52, 5022}, + {0x5D53, 10827}, + {0x5D5C, 5012}, + {0x5D69, 2902}, + {0x5D6C, 5025}, + {0x5D6D, 10830}, + {0x5D6F, 2372}, + {0x5D73, 5026}, + {0x5D76, 5027}, + {0x5D82, 5030}, + {0x5D84, 5029}, + {0x5D87, 5028}, + {0x5D8B, 3455}, + {0x5D8C, 5007}, + {0x5D90, 5036}, + {0x5D9D, 5032}, + {0x5DA2, 5031}, + {0x5DAC, 5033}, + {0x5DAE, 5034}, + {0x5DB7, 5037}, + {0x5DB8, 10831}, + {0x5DB9, 10832}, + {0x5DBA, 4299}, + {0x5DBC, 5038}, + {0x5DBD, 5035}, + {0x5DC9, 5039}, + {0x5DCC, 1849}, + {0x5DCD, 5040}, + {0x5DD0, 10833}, + {0x5DD2, 5042}, + {0x5DD3, 5041}, + {0x5DD6, 5043}, + {0x5DDB, 5044}, + {0x5DDD, 2991}, + {0x5DDE, 2634}, + {0x5DE1, 2699}, + {0x5DE3, 3074}, + {0x5DE5, 2264}, + {0x5DE6, 2373}, + {0x5DE7, 2265}, + {0x5DE8, 1959}, + {0x5DEB, 5045}, + {0x5DEE, 2374}, + {0x5DF1, 2203}, + {0x5DF2, 5046}, + {0x5DF3, 4047}, + {0x5DF4, 3606}, + {0x5DF5, 5047}, + {0x5DF7, 2266}, + {0x5DFB, 1797}, + {0x5DFD, 3202}, + {0x5DFE, 2023}, + {0x5E02, 2495}, + {0x5E03, 3818}, + {0x5E06, 3698}, + {0x5E0B, 5048}, + {0x5E0C, 1870}, + {0x5E11, 5051}, + {0x5E16, 3290}, + {0x5E19, 5050}, + {0x5E1A, 5049}, + {0x5E1B, 5052}, + {0x5E1D, 3364}, + {0x5E25, 2886}, + {0x5E2B, 2496}, + {0x5E2D, 2955}, + {0x5E2F, 3152}, + {0x5E30, 1881}, + {0x5E33, 3291}, + {0x5E36, 5053}, + {0x5E37, 5054}, + {0x5E38, 2804}, + {0x5E3D, 3972}, + {0x5E40, 5057}, + {0x5E43, 5056}, + {0x5E44, 5055}, + {0x5E45, 3852}, + {0x5E47, 5064}, + {0x5E4C, 4005}, + {0x5E4E, 5058}, + {0x5E54, 5060}, + {0x5E55, 4022}, + {0x5E57, 5059}, + {0x5E5F, 5061}, + {0x5E61, 3673}, + {0x5E62, 5062}, + {0x5E63, 3883}, + {0x5E64, 5063}, + {0x5E72, 1804}, + {0x5E73, 3884}, + {0x5E74, 3586}, + {0x5E75, 5065}, + {0x5E76, 5066}, + {0x5E78, 2267}, + {0x5E79, 1805}, + {0x5E7A, 5067}, + {0x5E7B, 2185}, + {0x5E7C, 4171}, + {0x5E7D, 4144}, + {0x5E7E, 1871}, + {0x5E7F, 5069}, + {0x5E81, 3292}, + {0x5E83, 2268}, + {0x5E84, 2742}, + {0x5E87, 3728}, + {0x5E8A, 2743}, + {0x5E8F, 2719}, + {0x5E95, 3365}, + {0x5E96, 3942}, + {0x5E97, 3408}, + {0x5E9A, 2269}, + {0x5E9C, 3819}, + {0x5EA0, 5070}, + {0x5EA6, 3440}, + {0x5EA7, 2383}, + {0x5EAB, 2204}, + {0x5EAD, 3366}, + {0x5EB5, 1444}, + {0x5EB6, 2709}, + {0x5EB7, 2270}, + {0x5EB8, 4174}, + {0x5EC1, 5071}, + {0x5EC2, 5072}, + {0x5EC3, 3620}, + {0x5EC8, 5073}, + {0x5EC9, 4316}, + {0x5ECA, 4336}, + {0x5ECF, 5075}, + {0x5ED0, 5074}, + {0x5ED3, 1730}, + {0x5ED6, 5076}, + {0x5EDA, 5079}, + {0x5EDB, 5080}, + {0x5EDD, 5078}, + {0x5EDF, 3791}, + {0x5EE0, 2744}, + {0x5EE1, 5082}, + {0x5EE2, 5081}, + {0x5EE3, 5077}, + {0x5EE8, 5083}, + {0x5EE9, 5084}, + {0x5EEC, 5085}, + {0x5EF0, 5088}, + {0x5EF1, 5086}, + {0x5EF3, 5087}, + {0x5EF4, 5089}, + {0x5EF6, 1571}, + {0x5EF7, 3367}, + {0x5EF8, 5090}, + {0x5EFA, 2157}, + {0x5EFB, 1683}, + {0x5EFC, 3593}, + {0x5EFE, 5091}, + {0x5EFF, 3568}, + {0x5F01, 3912}, + {0x5F03, 5092}, + {0x5F04, 4337}, + {0x5F09, 5093}, + {0x5F0A, 3885}, + {0x5F0B, 5096}, + {0x5F0C, 4418}, + {0x5F0D, 4434}, + {0x5F0F, 2553}, + {0x5F10, 3562}, + {0x5F11, 5097}, + {0x5F13, 1940}, + {0x5F14, 3293}, + {0x5F15, 1499}, + {0x5F16, 5098}, + {0x5F17, 3859}, + {0x5F18, 2271}, + {0x5F1B, 3243}, + {0x5F1F, 3368}, + {0x5F21, 10834}, + {0x5F25, 4120}, + {0x5F26, 2186}, + {0x5F27, 2205}, + {0x5F29, 5099}, + {0x5F2D, 5100}, + {0x5F2F, 5106}, + {0x5F31, 2606}, + {0x5F34, 10835}, + {0x5F35, 3294}, + {0x5F37, 1988}, + {0x5F38, 5101}, + {0x5F3C, 3770}, + {0x5F3E, 3233}, + {0x5F41, 5102}, + {0x5F45, 10755}, + {0x5F48, 5103}, + {0x5F4A, 1989}, + {0x5F4C, 5104}, + {0x5F4E, 5105}, + {0x5F51, 5107}, + {0x5F53, 3469}, + {0x5F56, 5108}, + {0x5F57, 5109}, + {0x5F59, 5110}, + {0x5F5C, 5095}, + {0x5F5D, 5094}, + {0x5F61, 5111}, + {0x5F62, 2100}, + {0x5F66, 3766}, + {0x5F67, 10836}, + {0x5F69, 2393}, + {0x5F6A, 3782}, + {0x5F6B, 3295}, + {0x5F6C, 3802}, + {0x5F6D, 5112}, + {0x5F70, 2745}, + {0x5F71, 1541}, + {0x5F73, 5113}, + {0x5F77, 5114}, + {0x5F79, 4123}, + {0x5F7C, 3729}, + {0x5F7F, 5117}, + {0x5F80, 1596}, + {0x5F81, 2925}, + {0x5F82, 5116}, + {0x5F83, 5115}, + {0x5F84, 2101}, + {0x5F85, 3153}, + {0x5F87, 5121}, + {0x5F88, 5119}, + {0x5F8A, 5118}, + {0x5F8B, 4236}, + {0x5F8C, 2230}, + {0x5F90, 2720}, + {0x5F91, 5120}, + {0x5F92, 3427}, + {0x5F93, 2661}, + {0x5F97, 3509}, + {0x5F98, 5124}, + {0x5F99, 5123}, + {0x5F9E, 5122}, + {0x5FA0, 5125}, + {0x5FA1, 2231}, + {0x5FA8, 5126}, + {0x5FA9, 3851}, + {0x5FAA, 2690}, + {0x5FAD, 5127}, + {0x5FAE, 3754}, + {0x5FB3, 3510}, + {0x5FB4, 3296}, + {0x5FB7, 10837}, + {0x5FB9, 3399}, + {0x5FBC, 5128}, + {0x5FBD, 1890}, + {0x5FC3, 2839}, + {0x5FC5, 3771}, + {0x5FCC, 1872}, + {0x5FCD, 3577}, + {0x5FD6, 5129}, + {0x5FD7, 2497}, + {0x5FD8, 3973}, + {0x5FD9, 3974}, + {0x5FDC, 1597}, + {0x5FDD, 5134}, + {0x5FDE, 10838}, + {0x5FE0, 3268}, + {0x5FE4, 5131}, + {0x5FEB, 1684}, + {0x5FF0, 5182}, + {0x5FF1, 5133}, + {0x5FF5, 3587}, + {0x5FF8, 5132}, + {0x5FFB, 5130}, + {0x5FFD, 2345}, + {0x5FFF, 5136}, + {0x600E, 5142}, + {0x600F, 5148}, + {0x6010, 5140}, + {0x6012, 3443}, + {0x6015, 5145}, + {0x6016, 3820}, + {0x6019, 5139}, + {0x601B, 5144}, + {0x601C, 4300}, + {0x601D, 2498}, + {0x6020, 3154}, + {0x6021, 5137}, + {0x6025, 1941}, + {0x6026, 5147}, + {0x6027, 2926}, + {0x6028, 1572}, + {0x6029, 5141}, + {0x602A, 1685}, + {0x602B, 5146}, + {0x602F, 1990}, + {0x6031, 5143}, + {0x603A, 5149}, + {0x6041, 5151}, + {0x6042, 5161}, + {0x6043, 5159}, + {0x6046, 5156}, + {0x604A, 5155}, + {0x604B, 4317}, + {0x604D, 5157}, + {0x6050, 1991}, + {0x6052, 2272}, + {0x6055, 2721}, + {0x6059, 5164}, + {0x605A, 5150}, + {0x605D, 10839}, + {0x605F, 5154}, + {0x6060, 5138}, + {0x6062, 1687}, + {0x6063, 5158}, + {0x6064, 5160}, + {0x6065, 3244}, + {0x6068, 2357}, + {0x6069, 1621}, + {0x606A, 5152}, + {0x606B, 5163}, + {0x606C, 5162}, + {0x606D, 1992}, + {0x606F, 3110}, + {0x6070, 1761}, + {0x6075, 2102}, + {0x6077, 5153}, + {0x6081, 5165}, + {0x6083, 5168}, + {0x6084, 5170}, + {0x6085, 10840}, + {0x6089, 2566}, + {0x608A, 10841}, + {0x608B, 5176}, + {0x608C, 3369}, + {0x608D, 5166}, + {0x6092, 5174}, + {0x6094, 1686}, + {0x6096, 5172}, + {0x6097, 5173}, + {0x609A, 5169}, + {0x609B, 5171}, + {0x609F, 2232}, + {0x60A0, 4145}, + {0x60A3, 1806}, + {0x60A6, 1560}, + {0x60A7, 5175}, + {0x60A9, 3597}, + {0x60AA, 1422}, + {0x60B2, 3730}, + {0x60B3, 5135}, + {0x60B4, 5181}, + {0x60B5, 5185}, + {0x60B6, 4110}, + {0x60B8, 5178}, + {0x60BC, 3456}, + {0x60BD, 5183}, + {0x60C5, 2805}, + {0x60C6, 5184}, + {0x60C7, 3532}, + {0x60D1, 4362}, + {0x60D3, 5180}, + {0x60D5, 10843}, + {0x60D8, 5186}, + {0x60DA, 2346}, + {0x60DC, 2956}, + {0x60DE, 10842}, + {0x60DF, 1461}, + {0x60E0, 5179}, + {0x60E1, 5177}, + {0x60E3, 3065}, + {0x60E7, 5167}, + {0x60E8, 2463}, + {0x60F0, 3139}, + {0x60F1, 5198}, + {0x60F2, 10845}, + {0x60F3, 3066}, + {0x60F4, 5193}, + {0x60F6, 5190}, + {0x60F7, 5191}, + {0x60F9, 2607}, + {0x60FA, 5194}, + {0x60FB, 5197}, + {0x6100, 5192}, + {0x6101, 2636}, + {0x6103, 5195}, + {0x6106, 5189}, + {0x6108, 4133}, + {0x6109, 4132}, + {0x610D, 5199}, + {0x610E, 5200}, + {0x610F, 1462}, + {0x6111, 10846}, + {0x6115, 5188}, + {0x611A, 2055}, + {0x611B, 1415}, + {0x611F, 1807}, + {0x6120, 10844}, + {0x6121, 5196}, + {0x6127, 5204}, + {0x6128, 5203}, + {0x612C, 5208}, + {0x6130, 10848}, + {0x6134, 5209}, + {0x6137, 10847}, + {0x613C, 5207}, + {0x613D, 5210}, + {0x613E, 5202}, + {0x613F, 5206}, + {0x6142, 5211}, + {0x6144, 5212}, + {0x6147, 5201}, + {0x6148, 2535}, + {0x614A, 5205}, + {0x614B, 3155}, + {0x614C, 2273}, + {0x614D, 5187}, + {0x614E, 2840}, + {0x6153, 5225}, + {0x6155, 3926}, + {0x6158, 5215}, + {0x6159, 5216}, + {0x615A, 5217}, + {0x615D, 5224}, + {0x615F, 5223}, + {0x6162, 4040}, + {0x6163, 1808}, + {0x6165, 5221}, + {0x6167, 2104}, + {0x6168, 1711}, + {0x616B, 5218}, + {0x616E, 4253}, + {0x616F, 5220}, + {0x6170, 1463}, + {0x6171, 5222}, + {0x6173, 5213}, + {0x6174, 5219}, + {0x6175, 5226}, + {0x6176, 2103}, + {0x6177, 5214}, + {0x617E, 4196}, + {0x6182, 4146}, + {0x6187, 5229}, + {0x618A, 5233}, + {0x618E, 3101}, + {0x6190, 4318}, + {0x6191, 5234}, + {0x6194, 5231}, + {0x6196, 5228}, + {0x6198, 10849}, + {0x6199, 5227}, + {0x619A, 5232}, + {0x61A4, 3869}, + {0x61A7, 3497}, + {0x61A9, 2105}, + {0x61AB, 5235}, + {0x61AC, 5230}, + {0x61AE, 5236}, + {0x61B2, 2158}, + {0x61B6, 1614}, + {0x61BA, 5244}, + {0x61BE, 1809}, + {0x61C3, 5242}, + {0x61C6, 5243}, + {0x61C7, 2358}, + {0x61C8, 5241}, + {0x61C9, 5239}, + {0x61CA, 5238}, + {0x61CB, 5245}, + {0x61CC, 5237}, + {0x61CD, 5247}, + {0x61D0, 1688}, + {0x61E3, 5249}, + {0x61E6, 5248}, + {0x61F2, 3297}, + {0x61F4, 5252}, + {0x61F6, 5250}, + {0x61F7, 5240}, + {0x61F8, 2159}, + {0x61FA, 5251}, + {0x61FC, 5255}, + {0x61FD, 5254}, + {0x61FE, 5256}, + {0x61FF, 5253}, + {0x6200, 5257}, + {0x6208, 5258}, + {0x6209, 5259}, + {0x620A, 3927}, + {0x620C, 5261}, + {0x620D, 5260}, + {0x620E, 2662}, + {0x6210, 2927}, + {0x6211, 1667}, + {0x6212, 1689}, + {0x6213, 10850}, + {0x6214, 5262}, + {0x6216, 1440}, + {0x621A, 2957}, + {0x621B, 5263}, + {0x621D, 7084}, + {0x621E, 5264}, + {0x621F, 2132}, + {0x6221, 5265}, + {0x6226, 2992}, + {0x622A, 5266}, + {0x622E, 5267}, + {0x622F, 1905}, + {0x6230, 5268}, + {0x6232, 5269}, + {0x6233, 5270}, + {0x6234, 3156}, + {0x6238, 2206}, + {0x623B, 4106}, + {0x623F, 3975}, + {0x6240, 2705}, + {0x6241, 5271}, + {0x6247, 2993}, + {0x6248, 7266}, + {0x6249, 3731}, + {0x624B, 2611}, + {0x624D, 2394}, + {0x624E, 5272}, + {0x6253, 3140}, + {0x6255, 3860}, + {0x6258, 3182}, + {0x625B, 5275}, + {0x625E, 5273}, + {0x6260, 5276}, + {0x6263, 5274}, + {0x6268, 5277}, + {0x626E, 3870}, + {0x6271, 1432}, + {0x6276, 3821}, + {0x6279, 3732}, + {0x627C, 5278}, + {0x627E, 5281}, + {0x627F, 2746}, + {0x6280, 1906}, + {0x6282, 5279}, + {0x6283, 5286}, + {0x6284, 2747}, + {0x6289, 5280}, + {0x628A, 3607}, + {0x6291, 4197}, + {0x6292, 5282}, + {0x6293, 5283}, + {0x6294, 5287}, + {0x6295, 3457}, + {0x6296, 5284}, + {0x6297, 2274}, + {0x6298, 2975}, + {0x629B, 5301}, + {0x629C, 3685}, + {0x629E, 3183}, + {0x62A6, 10851}, + {0x62AB, 3733}, + {0x62AC, 5370}, + {0x62B1, 3943}, + {0x62B5, 3370}, + {0x62B9, 4032}, + {0x62BB, 5290}, + {0x62BC, 1598}, + {0x62BD, 3269}, + {0x62C2, 5299}, + {0x62C5, 3215}, + {0x62C6, 5293}, + {0x62C7, 5300}, + {0x62C8, 5295}, + {0x62C9, 5302}, + {0x62CA, 5298}, + {0x62CC, 5297}, + {0x62CD, 3650}, + {0x62CF, 5291}, + {0x62D0, 1690}, + {0x62D1, 5289}, + {0x62D2, 1960}, + {0x62D3, 3184}, + {0x62D4, 5285}, + {0x62D7, 5288}, + {0x62D8, 2275}, + {0x62D9, 2972}, + {0x62DB, 2748}, + {0x62DC, 5296}, + {0x62DD, 3621}, + {0x62E0, 1961}, + {0x62E1, 1731}, + {0x62EC, 1762}, + {0x62ED, 2820}, + {0x62EE, 5304}, + {0x62EF, 5309}, + {0x62F1, 5305}, + {0x62F3, 2160}, + {0x62F5, 5310}, + {0x62F6, 2445}, + {0x62F7, 2328}, + {0x62FE, 2637}, + {0x62FF, 5292}, + {0x6301, 2536}, + {0x6302, 5307}, + {0x6307, 2499}, + {0x6308, 5308}, + {0x6309, 1445}, + {0x630C, 5303}, + {0x6311, 3298}, + {0x6319, 1962}, + {0x631F, 1993}, + {0x6327, 5306}, + {0x6328, 1416}, + {0x632B, 2384}, + {0x632F, 2841}, + {0x633A, 3371}, + {0x633D, 3717}, + {0x633E, 5312}, + {0x633F, 3069}, + {0x6349, 3111}, + {0x634C, 2454}, + {0x634D, 5313}, + {0x634F, 5315}, + {0x6350, 5311}, + {0x6355, 3918}, + {0x6357, 3318}, + {0x635C, 3067}, + {0x6367, 3944}, + {0x6368, 2583}, + {0x6369, 5327}, + {0x636B, 5326}, + {0x636E, 2907}, + {0x6372, 2161}, + {0x6376, 5320}, + {0x6377, 2750}, + {0x637A, 3549}, + {0x637B, 3588}, + {0x6380, 5318}, + {0x6383, 3068}, + {0x6388, 2625}, + {0x6389, 5323}, + {0x638C, 2749}, + {0x638E, 5317}, + {0x638F, 5322}, + {0x6392, 3622}, + {0x6396, 5316}, + {0x6398, 2068}, + {0x639B, 1752}, + {0x639F, 5324}, + {0x63A0, 4240}, + {0x63A1, 2395}, + {0x63A2, 3216}, + {0x63A3, 5321}, + {0x63A5, 2973}, + {0x63A7, 2276}, + {0x63A8, 2887}, + {0x63A9, 1573}, + {0x63AA, 3035}, + {0x63AB, 5319}, + {0x63AC, 1916}, + {0x63B2, 2106}, + {0x63B4, 3336}, + {0x63B5, 5325}, + {0x63BB, 3070}, + {0x63BE, 5328}, + {0x63C0, 5330}, + {0x63C3, 3124}, + {0x63C4, 5336}, + {0x63C6, 5331}, + {0x63C9, 5333}, + {0x63CF, 3792}, + {0x63D0, 3372}, + {0x63D2, 5334}, + {0x63D6, 4147}, + {0x63DA, 4175}, + {0x63DB, 1810}, + {0x63E1, 1423}, + {0x63E3, 5332}, + {0x63E9, 5329}, + {0x63EE, 1873}, + {0x63F4, 1574}, + {0x63F5, 10852}, + {0x63F6, 5335}, + {0x63FA, 4176}, + {0x6406, 5339}, + {0x640D, 3128}, + {0x640F, 5346}, + {0x6413, 5340}, + {0x6416, 5337}, + {0x6417, 5344}, + {0x641C, 5314}, + {0x6426, 5341}, + {0x6428, 5345}, + {0x642C, 3699}, + {0x642D, 3458}, + {0x6434, 5338}, + {0x6436, 5342}, + {0x643A, 2107}, + {0x643E, 2430}, + {0x6442, 2974}, + {0x644E, 5350}, + {0x6458, 3389}, + {0x6460, 10853}, + {0x6467, 5347}, + {0x6469, 4011}, + {0x646F, 5348}, + {0x6476, 5349}, + {0x6478, 4087}, + {0x647A, 2915}, + {0x6483, 2133}, + {0x6488, 5356}, + {0x6492, 2464}, + {0x6493, 5353}, + {0x6495, 5352}, + {0x649A, 3589}, + {0x649D, 10854}, + {0x649E, 3498}, + {0x64A4, 3400}, + {0x64A5, 5354}, + {0x64A9, 5355}, + {0x64AB, 3838}, + {0x64AD, 3608}, + {0x64AE, 2446}, + {0x64B0, 2994}, + {0x64B2, 3995}, + {0x64B9, 1732}, + {0x64BB, 5362}, + {0x64BC, 5357}, + {0x64C1, 4177}, + {0x64C2, 5364}, + {0x64C5, 5360}, + {0x64C7, 5361}, + {0x64CD, 3071}, + {0x64CE, 10855}, + {0x64D2, 5359}, + {0x64D4, 5294}, + {0x64D8, 5363}, + {0x64DA, 5358}, + {0x64E0, 5368}, + {0x64E1, 5369}, + {0x64E2, 3390}, + {0x64E3, 5371}, + {0x64E6, 2447}, + {0x64E7, 5366}, + {0x64EC, 1907}, + {0x64EF, 5372}, + {0x64F1, 5365}, + {0x64F2, 5376}, + {0x64F4, 5375}, + {0x64F6, 5374}, + {0x64FA, 5377}, + {0x64FD, 5379}, + {0x64FE, 2806}, + {0x6500, 5378}, + {0x6505, 5382}, + {0x6518, 5380}, + {0x651C, 5381}, + {0x651D, 5343}, + {0x6523, 5384}, + {0x6524, 5383}, + {0x652A, 5351}, + {0x652B, 5385}, + {0x652C, 5373}, + {0x652F, 2500}, + {0x6534, 5386}, + {0x6535, 5387}, + {0x6536, 5389}, + {0x6537, 5388}, + {0x6538, 5390}, + {0x6539, 1691}, + {0x653B, 2277}, + {0x653E, 3945}, + {0x653F, 2928}, + {0x6545, 2207}, + {0x6548, 5392}, + {0x654D, 5395}, + {0x654E, 10856}, + {0x654F, 3809}, + {0x6551, 1942}, + {0x6555, 5394}, + {0x6556, 5393}, + {0x6557, 3623}, + {0x6558, 5396}, + {0x6559, 1994}, + {0x655D, 5398}, + {0x655E, 5397}, + {0x6562, 1811}, + {0x6563, 2465}, + {0x6566, 3533}, + {0x656C, 2108}, + {0x6570, 2903}, + {0x6572, 5399}, + {0x6574, 2929}, + {0x6575, 3391}, + {0x6577, 3822}, + {0x6578, 5400}, + {0x6582, 5401}, + {0x6583, 5402}, + {0x6587, 3877}, + {0x6588, 4948}, + {0x6589, 2951}, + {0x658C, 3803}, + {0x658E, 2405}, + {0x6590, 3734}, + {0x6591, 3700}, + {0x6597, 3428}, + {0x6599, 4262}, + {0x659B, 5404}, + {0x659C, 2585}, + {0x659F, 5405}, + {0x65A1, 1431}, + {0x65A4, 2025}, + {0x65A5, 2958}, + {0x65A7, 3823}, + {0x65AB, 5406}, + {0x65AC, 2477}, + {0x65AD, 3234}, + {0x65AF, 2502}, + {0x65B0, 2842}, + {0x65B7, 5407}, + {0x65B9, 3946}, + {0x65BC, 1590}, + {0x65BD, 2503}, + {0x65C1, 5410}, + {0x65C3, 5408}, + {0x65C4, 5411}, + {0x65C5, 4254}, + {0x65C6, 5409}, + {0x65CB, 3004}, + {0x65CC, 5412}, + {0x65CF, 3119}, + {0x65D2, 5413}, + {0x65D7, 1875}, + {0x65D9, 5415}, + {0x65DB, 5414}, + {0x65E0, 5416}, + {0x65E1, 5417}, + {0x65E2, 1876}, + {0x65E5, 3569}, + {0x65E6, 3217}, + {0x65E7, 1955}, + {0x65E8, 2504}, + {0x65E9, 3072}, + {0x65EC, 2691}, + {0x65ED, 1425}, + {0x65F1, 5418}, + {0x65FA, 1599}, + {0x65FB, 5422}, + {0x6600, 10857}, + {0x6602, 2278}, + {0x6603, 5421}, + {0x6606, 2360}, + {0x6607, 2751}, + {0x6609, 10860}, + {0x660A, 5420}, + {0x660C, 2752}, + {0x660E, 4073}, + {0x660F, 2359}, + {0x6613, 1464}, + {0x6614, 2959}, + {0x6615, 10858}, + {0x661C, 5427}, + {0x661E, 10862}, + {0x661F, 2930}, + {0x6620, 1542}, + {0x6624, 10863}, + {0x6625, 2684}, + {0x6627, 4017}, + {0x6628, 2431}, + {0x662D, 2753}, + {0x662E, 10861}, + {0x662F, 2920}, + {0x6631, 10751}, + {0x6634, 5426}, + {0x6635, 5424}, + {0x6636, 5425}, + {0x663B, 10859}, + {0x663C, 3270}, + {0x663F, 5457}, + {0x6641, 5431}, + {0x6642, 2537}, + {0x6643, 2279}, + {0x6644, 5429}, + {0x6649, 5430}, + {0x664B, 2843}, + {0x664F, 5428}, + {0x6652, 2458}, + {0x6657, 10865}, + {0x6659, 10866}, + {0x665D, 5433}, + {0x665E, 5432}, + {0x665F, 5437}, + {0x6662, 5438}, + {0x6664, 5434}, + {0x6665, 10864}, + {0x6666, 1693}, + {0x6667, 5435}, + {0x6668, 5436}, + {0x6669, 3718}, + {0x666E, 3824}, + {0x666F, 2109}, + {0x6670, 5439}, + {0x6673, 10868}, + {0x6674, 2931}, + {0x6676, 2754}, + {0x667A, 3245}, + {0x6681, 2012}, + {0x6683, 5440}, + {0x6684, 5444}, + {0x6687, 1640}, + {0x6688, 5441}, + {0x6689, 5443}, + {0x668E, 5442}, + {0x6691, 2706}, + {0x6696, 3235}, + {0x6697, 1446}, + {0x6698, 5445}, + {0x6699, 10869}, + {0x669D, 5446}, + {0x66A0, 10870}, + {0x66A2, 3299}, + {0x66A6, 4310}, + {0x66AB, 2478}, + {0x66AE, 3928}, + {0x66B2, 10871}, + {0x66B4, 3976}, + {0x66B8, 5453}, + {0x66B9, 5448}, + {0x66BC, 5451}, + {0x66BE, 5450}, + {0x66BF, 10872}, + {0x66C1, 5447}, + {0x66C4, 5452}, + {0x66C7, 3539}, + {0x66C9, 5449}, + {0x66D6, 5454}, + {0x66D9, 2707}, + {0x66DA, 5455}, + {0x66DC, 4178}, + {0x66DD, 3659}, + {0x66E0, 5456}, + {0x66E6, 5458}, + {0x66E9, 5459}, + {0x66F0, 5460}, + {0x66F2, 2015}, + {0x66F3, 1543}, + {0x66F4, 2280}, + {0x66F5, 5461}, + {0x66F7, 5462}, + {0x66F8, 2712}, + {0x66F9, 3073}, + {0x66FA, 10873}, + {0x66FB, 10754}, + {0x66FC, 4661}, + {0x66FD, 3037}, + {0x66FE, 3036}, + {0x66FF, 3157}, + {0x6700, 2388}, + {0x6703, 4499}, + {0x6708, 2145}, + {0x6709, 4148}, + {0x670B, 3947}, + {0x670D, 3853}, + {0x670E, 10874}, + {0x670F, 5463}, + {0x6714, 2432}, + {0x6715, 3320}, + {0x6716, 5464}, + {0x6717, 4338}, + {0x671B, 3977}, + {0x671D, 3300}, + {0x671E, 5465}, + {0x671F, 1877}, + {0x6726, 5466}, + {0x6727, 5467}, + {0x6728, 4099}, + {0x672A, 4045}, + {0x672B, 4033}, + {0x672C, 4007}, + {0x672D, 2448}, + {0x672E, 5469}, + {0x6731, 2612}, + {0x6734, 3996}, + {0x6736, 5471}, + {0x6737, 5474}, + {0x6738, 5473}, + {0x673A, 1874}, + {0x673D, 1943}, + {0x673F, 5470}, + {0x6741, 5472}, + {0x6746, 5475}, + {0x6749, 2908}, + {0x674E, 4226}, + {0x674F, 1450}, + {0x6750, 2413}, + {0x6751, 3129}, + {0x6753, 2598}, + {0x6756, 2808}, + {0x6759, 5478}, + {0x675C, 3429}, + {0x675E, 5476}, + {0x675F, 3112}, + {0x6760, 5477}, + {0x6761, 2807}, + {0x6762, 4102}, + {0x6763, 5479}, + {0x6764, 5480}, + {0x6765, 4207}, + {0x6766, 10876}, + {0x676A, 5485}, + {0x676D, 2281}, + {0x676F, 3624}, + {0x6770, 5482}, + {0x6771, 3459}, + {0x6772, 5419}, + {0x6773, 5423}, + {0x6775, 1926}, + {0x6777, 3610}, + {0x677C, 5484}, + {0x677E, 2755}, + {0x677F, 3701}, + {0x6785, 5490}, + {0x6787, 3755}, + {0x6789, 5481}, + {0x678B, 5487}, + {0x678C, 5486}, + {0x6790, 2960}, + {0x6795, 4024}, + {0x6797, 4280}, + {0x679A, 4018}, + {0x679C, 1641}, + {0x679D, 2505}, + {0x67A0, 4363}, + {0x67A1, 5489}, + {0x67A2, 2904}, + {0x67A6, 5488}, + {0x67A9, 5483}, + {0x67AF, 2208}, + {0x67B3, 5495}, + {0x67B4, 5493}, + {0x67B6, 1642}, + {0x67B7, 5491}, + {0x67B8, 5497}, + {0x67B9, 5503}, + {0x67BB, 10877}, + {0x67C0, 10879}, + {0x67C1, 3141}, + {0x67C4, 3886}, + {0x67C6, 5505}, + {0x67CA, 3761}, + {0x67CE, 5504}, + {0x67CF, 3651}, + {0x67D0, 3978}, + {0x67D1, 1812}, + {0x67D3, 3000}, + {0x67D4, 2663}, + {0x67D8, 3340}, + {0x67DA, 4149}, + {0x67DD, 5500}, + {0x67DE, 5499}, + {0x67E2, 5501}, + {0x67E4, 5498}, + {0x67E7, 5506}, + {0x67E9, 5496}, + {0x67EC, 5494}, + {0x67EE, 5502}, + {0x67EF, 5492}, + {0x67F1, 3271}, + {0x67F3, 4129}, + {0x67F4, 2575}, + {0x67F5, 2433}, + {0x67FB, 2375}, + {0x67FE, 4026}, + {0x67FF, 1724}, + {0x6801, 10880}, + {0x6802, 3335}, + {0x6803, 3519}, + {0x6804, 1544}, + {0x6813, 2995}, + {0x6816, 2933}, + {0x6817, 2077}, + {0x681E, 5508}, + {0x6821, 2282}, + {0x6822, 1783}, + {0x6829, 5510}, + {0x682A, 1775}, + {0x682B, 5516}, + {0x6832, 5513}, + {0x6834, 2996}, + {0x6838, 1734}, + {0x6839, 2361}, + {0x683C, 1733}, + {0x683D, 2396}, + {0x6840, 5511}, + {0x6841, 2136}, + {0x6842, 2110}, + {0x6843, 3460}, + {0x6844, 10881}, + {0x6846, 5509}, + {0x6848, 1447}, + {0x684D, 5512}, + {0x684E, 5514}, + {0x6850, 2018}, + {0x6851, 2079}, + {0x6852, 10878}, + {0x6853, 1813}, + {0x6854, 1922}, + {0x6859, 5517}, + {0x685C, 2438}, + {0x685D, 4028}, + {0x685F, 2466}, + {0x6863, 5518}, + {0x6867, 3775}, + {0x6874, 5530}, + {0x6876, 1616}, + {0x6877, 5519}, + {0x687E, 5536}, + {0x687F, 5520}, + {0x6881, 4263}, + {0x6883, 5527}, + {0x6885, 3634}, + {0x688D, 5535}, + {0x688F, 5522}, + {0x6893, 1429}, + {0x6894, 5524}, + {0x6897, 2283}, + {0x689B, 5526}, + {0x689D, 5525}, + {0x689F, 5521}, + {0x68A0, 5532}, + {0x68A2, 2756}, + {0x68A6, 4870}, + {0x68A7, 2233}, + {0x68A8, 4227}, + {0x68AD, 5523}, + {0x68AF, 3373}, + {0x68B0, 1694}, + {0x68B1, 2362}, + {0x68B3, 5515}, + {0x68B5, 5531}, + {0x68B6, 1756}, + {0x68B9, 5529}, + {0x68BA, 5533}, + {0x68BC, 3461}, + {0x68C4, 1879}, + {0x68C6, 5563}, + {0x68C8, 10752}, + {0x68C9, 4082}, + {0x68CA, 5538}, + {0x68CB, 1878}, + {0x68CD, 5545}, + {0x68CF, 10882}, + {0x68D2, 3979}, + {0x68D4, 5546}, + {0x68D5, 5548}, + {0x68D7, 5552}, + {0x68D8, 5540}, + {0x68DA, 3205}, + {0x68DF, 3462}, + {0x68E0, 5556}, + {0x68E1, 5543}, + {0x68E3, 5553}, + {0x68E7, 5547}, + {0x68EE, 2844}, + {0x68EF, 5557}, + {0x68F2, 2932}, + {0x68F9, 5555}, + {0x68FA, 1814}, + {0x6900, 4371}, + {0x6901, 5537}, + {0x6904, 5551}, + {0x6905, 1465}, + {0x6908, 5539}, + {0x690B, 4067}, + {0x690C, 5544}, + {0x690D, 2821}, + {0x690E, 3328}, + {0x690F, 5534}, + {0x6912, 5550}, + {0x6919, 2909}, + {0x691A, 5560}, + {0x691B, 1772}, + {0x691C, 2162}, + {0x6921, 5562}, + {0x6922, 5541}, + {0x6923, 5561}, + {0x6925, 5554}, + {0x6926, 5542}, + {0x6928, 5558}, + {0x692A, 5559}, + {0x6930, 5576}, + {0x6934, 3523}, + {0x6936, 5549}, + {0x6939, 5572}, + {0x693D, 5574}, + {0x693F, 3345}, + {0x694A, 4179}, + {0x6953, 3845}, + {0x6954, 5569}, + {0x6955, 3143}, + {0x6959, 5575}, + {0x695A, 3038}, + {0x695C, 5566}, + {0x695D, 5579}, + {0x695E, 5578}, + {0x6960, 3556}, + {0x6961, 5577}, + {0x6962, 3551}, + {0x6968, 10884}, + {0x696A, 5581}, + {0x696B, 5568}, + {0x696D, 2013}, + {0x696E, 5571}, + {0x696F, 2692}, + {0x6973, 3635}, + {0x6974, 5573}, + {0x6975, 2016}, + {0x6977, 5565}, + {0x6978, 5567}, + {0x6979, 5564}, + {0x697C, 4339}, + {0x697D, 1749}, + {0x697E, 5570}, + {0x6981, 5580}, + {0x6982, 1712}, + {0x698A, 2420}, + {0x698E, 1564}, + {0x6991, 5597}, + {0x6994, 4340}, + {0x6995, 5600}, + {0x6998, 10886}, + {0x699B, 2845}, + {0x699C, 5599}, + {0x69A0, 5598}, + {0x69A7, 5595}, + {0x69AE, 5583}, + {0x69B1, 5612}, + {0x69B2, 5582}, + {0x69B4, 5601}, + {0x69BB, 5593}, + {0x69BE, 5588}, + {0x69BF, 5585}, + {0x69C1, 5586}, + {0x69C3, 5594}, + {0x69C7, 7803}, + {0x69CA, 5591}, + {0x69CB, 2284}, + {0x69CC, 3329}, + {0x69CD, 3075}, + {0x69CE, 5589}, + {0x69D0, 5584}, + {0x69D3, 5587}, + {0x69D8, 4180}, + {0x69D9, 4021}, + {0x69DD, 5592}, + {0x69DE, 5602}, + {0x69E2, 10887}, + {0x69E7, 5610}, + {0x69E8, 5603}, + {0x69EB, 5616}, + {0x69ED, 5614}, + {0x69F2, 5609}, + {0x69F9, 5608}, + {0x69FB, 3337}, + {0x69FD, 3076}, + {0x69FF, 5606}, + {0x6A02, 5604}, + {0x6A05, 5611}, + {0x6A0A, 5617}, + {0x6A0B, 3750}, + {0x6A0C, 5623}, + {0x6A12, 5618}, + {0x6A13, 5621}, + {0x6A14, 5615}, + {0x6A17, 3279}, + {0x6A19, 3783}, + {0x6A1B, 5605}, + {0x6A1E, 5613}, + {0x6A1F, 2757}, + {0x6A21, 4088}, + {0x6A22, 5633}, + {0x6A23, 5620}, + {0x6A29, 2163}, + {0x6A2A, 1600}, + {0x6A2B, 1754}, + {0x6A2E, 5596}, + {0x6A30, 10888}, + {0x6A35, 2758}, + {0x6A36, 5625}, + {0x6A38, 5632}, + {0x6A39, 2626}, + {0x6A3A, 1773}, + {0x6A3D, 3209}, + {0x6A44, 5622}, + {0x6A46, 10890}, + {0x6A47, 5627}, + {0x6A48, 5631}, + {0x6A4B, 1995}, + {0x6A58, 1923}, + {0x6A59, 5629}, + {0x6A5F, 1880}, + {0x6A61, 3520}, + {0x6A62, 5628}, + {0x6A66, 5630}, + {0x6A6B, 10889}, + {0x6A72, 5624}, + {0x6A73, 10891}, + {0x6A78, 5626}, + {0x6A7E, 10892}, + {0x6A7F, 1755}, + {0x6A80, 3236}, + {0x6A84, 5637}, + {0x6A8D, 5635}, + {0x6A8E, 2234}, + {0x6A90, 5634}, + {0x6A97, 5640}, + {0x6A9C, 5507}, + {0x6AA0, 5636}, + {0x6AA2, 5638}, + {0x6AA3, 5639}, + {0x6AAA, 5651}, + {0x6AAC, 5647}, + {0x6AAE, 5528}, + {0x6AB3, 5646}, + {0x6AB8, 5645}, + {0x6ABB, 5642}, + {0x6AC1, 5619}, + {0x6AC2, 5644}, + {0x6AC3, 5643}, + {0x6AD1, 5649}, + {0x6AD3, 4329}, + {0x6ADA, 5652}, + {0x6ADB, 2064}, + {0x6ADE, 5648}, + {0x6ADF, 5650}, + {0x6AE2, 10893}, + {0x6AE4, 10894}, + {0x6AE8, 3672}, + {0x6AEA, 5653}, + {0x6AFA, 5657}, + {0x6AFB, 5654}, + {0x6B04, 4218}, + {0x6B05, 5655}, + {0x6B0A, 5607}, + {0x6B12, 5658}, + {0x6B16, 5659}, + {0x6B1D, 1524}, + {0x6B1F, 5661}, + {0x6B20, 2138}, + {0x6B21, 2538}, + {0x6B23, 2026}, + {0x6B27, 1601}, + {0x6B32, 4198}, + {0x6B37, 5663}, + {0x6B38, 5662}, + {0x6B39, 5665}, + {0x6B3A, 1908}, + {0x6B3D, 2027}, + {0x6B3E, 1815}, + {0x6B43, 5668}, + {0x6B47, 5667}, + {0x6B49, 5669}, + {0x6B4C, 1643}, + {0x6B4E, 3218}, + {0x6B50, 5670}, + {0x6B53, 1816}, + {0x6B54, 5672}, + {0x6B59, 5671}, + {0x6B5B, 5673}, + {0x6B5F, 5674}, + {0x6B61, 5675}, + {0x6B62, 2506}, + {0x6B63, 2934}, + {0x6B64, 2350}, + {0x6B66, 3839}, + {0x6B69, 3919}, + {0x6B6A, 4359}, + {0x6B6F, 2528}, + {0x6B73, 2397}, + {0x6B74, 4311}, + {0x6B78, 5676}, + {0x6B79, 5677}, + {0x6B7B, 2507}, + {0x6B7F, 5678}, + {0x6B80, 5679}, + {0x6B83, 5681}, + {0x6B84, 5680}, + {0x6B86, 4003}, + {0x6B89, 2693}, + {0x6B8A, 2613}, + {0x6B8B, 2479}, + {0x6B8D, 5682}, + {0x6B95, 5684}, + {0x6B96, 2822}, + {0x6B98, 5683}, + {0x6B9E, 5685}, + {0x6BA4, 5686}, + {0x6BAA, 5687}, + {0x6BAB, 5688}, + {0x6BAF, 5689}, + {0x6BB1, 5691}, + {0x6BB2, 5690}, + {0x6BB3, 5692}, + {0x6BB4, 1602}, + {0x6BB5, 3237}, + {0x6BB7, 5693}, + {0x6BBA, 2449}, + {0x6BBB, 1735}, + {0x6BBC, 5694}, + {0x6BBF, 3417}, + {0x6BC0, 4837}, + {0x6BC5, 1882}, + {0x6BC6, 5695}, + {0x6BCB, 5696}, + {0x6BCD, 3929}, + {0x6BCE, 4019}, + {0x6BD2, 3516}, + {0x6BD3, 5697}, + {0x6BD4, 3735}, + {0x6BD6, 10895}, + {0x6BD8, 3756}, + {0x6BDB, 4092}, + {0x6BDF, 5698}, + {0x6BEB, 5700}, + {0x6BEC, 5699}, + {0x6BEF, 5702}, + {0x6BF3, 5701}, + {0x6C08, 5704}, + {0x6C0F, 2508}, + {0x6C11, 4058}, + {0x6C13, 5705}, + {0x6C14, 5706}, + {0x6C17, 1883}, + {0x6C1B, 5707}, + {0x6C23, 5709}, + {0x6C24, 5708}, + {0x6C34, 2888}, + {0x6C37, 3784}, + {0x6C38, 1545}, + {0x6C3E, 3702}, + {0x6C3F, 10896}, + {0x6C40, 3374}, + {0x6C41, 2664}, + {0x6C42, 1944}, + {0x6C4E, 3703}, + {0x6C50, 2551}, + {0x6C55, 5711}, + {0x6C57, 1817}, + {0x6C5A, 1591}, + {0x6C5C, 10897}, + {0x6C5D, 3559}, + {0x6C5E, 5710}, + {0x6C5F, 2285}, + {0x6C60, 3246}, + {0x6C62, 5712}, + {0x6C68, 5720}, + {0x6C6A, 5713}, + {0x6C6F, 10899}, + {0x6C70, 3134}, + {0x6C72, 1945}, + {0x6C73, 5721}, + {0x6C7A, 2139}, + {0x6C7D, 1884}, + {0x6C7E, 5719}, + {0x6C81, 5717}, + {0x6C82, 5714}, + {0x6C83, 4199}, + {0x6C86, 10898}, + {0x6C88, 3321}, + {0x6C8C, 3534}, + {0x6C8D, 5715}, + {0x6C90, 5723}, + {0x6C92, 5722}, + {0x6C93, 2070}, + {0x6C96, 1610}, + {0x6C99, 2376}, + {0x6C9A, 5716}, + {0x6C9B, 5718}, + {0x6CA1, 4002}, + {0x6CA2, 3185}, + {0x6CAB, 4034}, + {0x6CAE, 5731}, + {0x6CB1, 5732}, + {0x6CB3, 1644}, + {0x6CB8, 3861}, + {0x6CB9, 4134}, + {0x6CBA, 5734}, + {0x6CBB, 2540}, + {0x6CBC, 2759}, + {0x6CBD, 5727}, + {0x6CBE, 5733}, + {0x6CBF, 1575}, + {0x6CC1, 1996}, + {0x6CC4, 5724}, + {0x6CC5, 5729}, + {0x6CC9, 2997}, + {0x6CCA, 3652}, + {0x6CCC, 3736}, + {0x6CD3, 5726}, + {0x6CD5, 3948}, + {0x6CD7, 5728}, + {0x6CD9, 5737}, + {0x6CDA, 10900}, + {0x6CDB, 5735}, + {0x6CDD, 5730}, + {0x6CE1, 3949}, + {0x6CE2, 3611}, + {0x6CE3, 1946}, + {0x6CE5, 3388}, + {0x6CE8, 3272}, + {0x6CEA, 5738}, + {0x6CEF, 5736}, + {0x6CF0, 3158}, + {0x6CF1, 5725}, + {0x6CF3, 1546}, + {0x6D04, 10901}, + {0x6D0B, 4181}, + {0x6D0C, 5749}, + {0x6D12, 5748}, + {0x6D17, 2999}, + {0x6D19, 5745}, + {0x6D1B, 4211}, + {0x6D1E, 3499}, + {0x6D1F, 5739}, + {0x6D25, 3326}, + {0x6D29, 1547}, + {0x6D2A, 2286}, + {0x6D2B, 5742}, + {0x6D32, 2638}, + {0x6D33, 5747}, + {0x6D35, 5746}, + {0x6D36, 5741}, + {0x6D38, 5744}, + {0x6D3B, 1763}, + {0x6D3D, 5743}, + {0x6D3E, 3612}, + {0x6D41, 4243}, + {0x6D44, 2809}, + {0x6D45, 2998}, + {0x6D59, 5755}, + {0x6D5A, 5753}, + {0x6D5C, 3804}, + {0x6D63, 5750}, + {0x6D64, 5752}, + {0x6D66, 1529}, + {0x6D69, 2287}, + {0x6D6A, 4341}, + {0x6D6C, 1720}, + {0x6D6E, 3825}, + {0x6D6F, 10903}, + {0x6D74, 4200}, + {0x6D77, 1695}, + {0x6D78, 2846}, + {0x6D79, 5754}, + {0x6D85, 5759}, + {0x6D87, 10902}, + {0x6D88, 2760}, + {0x6D8C, 4151}, + {0x6D8E, 5756}, + {0x6D93, 5751}, + {0x6D95, 5757}, + {0x6D96, 10904}, + {0x6D99, 4291}, + {0x6D9B, 3466}, + {0x6D9C, 3511}, + {0x6DAC, 10905}, + {0x6DAF, 1713}, + {0x6DB2, 1556}, + {0x6DB5, 5763}, + {0x6DB8, 5766}, + {0x6DBC, 4264}, + {0x6DC0, 4203}, + {0x6DC5, 5773}, + {0x6DC6, 5767}, + {0x6DC7, 5764}, + {0x6DCB, 4281}, + {0x6DCC, 5770}, + {0x6DCF, 10906}, + {0x6DD1, 2673}, + {0x6DD2, 5772}, + {0x6DD5, 5777}, + {0x6DD8, 3464}, + {0x6DD9, 5775}, + {0x6DDE, 5769}, + {0x6DE1, 3219}, + {0x6DE4, 5776}, + {0x6DE6, 5765}, + {0x6DE8, 5771}, + {0x6DEA, 5778}, + {0x6DEB, 1501}, + {0x6DEC, 5768}, + {0x6DEE, 5779}, + {0x6DF1, 2847}, + {0x6DF2, 10908}, + {0x6DF3, 2694}, + {0x6DF5, 3858}, + {0x6DF7, 2363}, + {0x6DF8, 10907}, + {0x6DF9, 5760}, + {0x6DFA, 5774}, + {0x6DFB, 3409}, + {0x6DFC, 10909}, + {0x6E05, 2935}, + {0x6E07, 1764}, + {0x6E08, 2398}, + {0x6E09, 2761}, + {0x6E0A, 5762}, + {0x6E0B, 2665}, + {0x6E13, 2111}, + {0x6E15, 5761}, + {0x6E19, 5783}, + {0x6E1A, 2708}, + {0x6E1B, 2187}, + {0x6E1D, 5798}, + {0x6E1F, 5792}, + {0x6E20, 1963}, + {0x6E21, 3430}, + {0x6E23, 5787}, + {0x6E24, 5796}, + {0x6E25, 1424}, + {0x6E26, 1521}, + {0x6E27, 10912}, + {0x6E29, 1622}, + {0x6E2B, 5789}, + {0x6E2C, 3113}, + {0x6E2D, 5780}, + {0x6E2E, 5782}, + {0x6E2F, 2288}, + {0x6E38, 5799}, + {0x6E39, 10910}, + {0x6E3A, 5794}, + {0x6E3C, 10913}, + {0x6E3E, 5786}, + {0x6E43, 5793}, + {0x6E4A, 4052}, + {0x6E4D, 5791}, + {0x6E4E, 5795}, + {0x6E56, 2209}, + {0x6E58, 2762}, + {0x6E5B, 3220}, + {0x6E5C, 10911}, + {0x6E5F, 5785}, + {0x6E67, 4150}, + {0x6E6B, 5788}, + {0x6E6E, 5781}, + {0x6E6F, 3465}, + {0x6E72, 5784}, + {0x6E76, 5790}, + {0x6E7E, 4372}, + {0x6E7F, 2567}, + {0x6E80, 4041}, + {0x6E82, 5800}, + {0x6E8C, 3679}, + {0x6E8F, 5812}, + {0x6E90, 2188}, + {0x6E96, 2695}, + {0x6E98, 5802}, + {0x6E9C, 4244}, + {0x6E9D, 2289}, + {0x6E9F, 5815}, + {0x6EA2, 1487}, + {0x6EA5, 5813}, + {0x6EAA, 5801}, + {0x6EAF, 5807}, + {0x6EB2, 5809}, + {0x6EB6, 4182}, + {0x6EB7, 5804}, + {0x6EBA, 3397}, + {0x6EBD, 5806}, + {0x6EBF, 10914}, + {0x6EC2, 5814}, + {0x6EC4, 5808}, + {0x6EC5, 4080}, + {0x6EC9, 5803}, + {0x6ECB, 2539}, + {0x6ECC, 5827}, + {0x6ED1, 1765}, + {0x6ED3, 5805}, + {0x6ED4, 5810}, + {0x6ED5, 5811}, + {0x6EDD, 3177}, + {0x6EDE, 3159}, + {0x6EEC, 5819}, + {0x6EEF, 5825}, + {0x6EF2, 5823}, + {0x6EF4, 3392}, + {0x6EF7, 5830}, + {0x6EF8, 5820}, + {0x6EFE, 5821}, + {0x6EFF, 5797}, + {0x6F01, 1968}, + {0x6F02, 3785}, + {0x6F06, 2568}, + {0x6F09, 2342}, + {0x6F0F, 4342}, + {0x6F11, 5817}, + {0x6F13, 5829}, + {0x6F14, 1576}, + {0x6F15, 3077}, + {0x6F20, 3660}, + {0x6F22, 1818}, + {0x6F23, 4319}, + {0x6F2B, 4042}, + {0x6F2C, 3339}, + {0x6F31, 5824}, + {0x6F32, 5826}, + {0x6F38, 3025}, + {0x6F3E, 5828}, + {0x6F3F, 5822}, + {0x6F41, 5816}, + {0x6F45, 1820}, + {0x6F54, 2140}, + {0x6F58, 5842}, + {0x6F5B, 5837}, + {0x6F5C, 3001}, + {0x6F5F, 1758}, + {0x6F64, 2696}, + {0x6F66, 5846}, + {0x6F6D, 5839}, + {0x6F6E, 3301}, + {0x6F6F, 5836}, + {0x6F70, 3346}, + {0x6F74, 5871}, + {0x6F78, 5833}, + {0x6F7A, 5832}, + {0x6F7C, 5841}, + {0x6F80, 5835}, + {0x6F81, 5834}, + {0x6F82, 5840}, + {0x6F84, 2914}, + {0x6F86, 5831}, + {0x6F88, 10915}, + {0x6F8E, 5843}, + {0x6F91, 5844}, + {0x6F97, 1819}, + {0x6FA1, 5849}, + {0x6FA3, 5848}, + {0x6FA4, 5850}, + {0x6FAA, 5853}, + {0x6FB1, 3418}, + {0x6FB3, 5847}, + {0x6FB5, 10916}, + {0x6FB9, 5851}, + {0x6FC0, 2134}, + {0x6FC1, 3190}, + {0x6FC2, 5845}, + {0x6FC3, 3598}, + {0x6FC6, 5852}, + {0x6FD4, 5857}, + {0x6FD5, 5855}, + {0x6FD8, 5858}, + {0x6FDB, 5861}, + {0x6FDF, 5854}, + {0x6FE0, 2329}, + {0x6FE1, 3579}, + {0x6FE4, 5758}, + {0x6FEB, 4219}, + {0x6FEC, 5856}, + {0x6FEE, 5860}, + {0x6FEF, 3186}, + {0x6FF1, 5859}, + {0x6FF3, 5838}, + {0x6FF5, 10917}, + {0x6FF6, 7404}, + {0x6FFA, 5864}, + {0x6FFE, 5868}, + {0x7001, 5866}, + {0x7005, 10918}, + {0x7007, 10919}, + {0x7009, 5862}, + {0x700B, 5863}, + {0x700F, 5867}, + {0x7011, 5865}, + {0x7015, 3805}, + {0x7018, 5873}, + {0x701A, 5870}, + {0x701B, 5869}, + {0x701D, 5872}, + {0x701E, 3529}, + {0x701F, 5874}, + {0x7026, 3280}, + {0x7027, 3178}, + {0x7028, 10920}, + {0x702C, 2918}, + {0x7030, 5875}, + {0x7032, 5877}, + {0x703E, 5876}, + {0x704C, 5818}, + {0x7051, 5878}, + {0x7058, 3548}, + {0x7063, 5879}, + {0x706B, 1645}, + {0x706F, 3467}, + {0x7070, 1696}, + {0x7078, 1947}, + {0x707C, 2599}, + {0x707D, 2399}, + {0x7085, 10921}, + {0x7089, 4330}, + {0x708A, 2889}, + {0x708E, 1577}, + {0x7092, 5881}, + {0x7099, 5880}, + {0x70AB, 10922}, + {0x70AC, 5884}, + {0x70AD, 3221}, + {0x70AE, 5887}, + {0x70AF, 5882}, + {0x70B3, 5886}, + {0x70B8, 5885}, + {0x70B9, 3415}, + {0x70BA, 1466}, + {0x70BB, 10750}, + {0x70C8, 4314}, + {0x70CB, 5889}, + {0x70CF, 1511}, + {0x70D9, 5891}, + {0x70DD, 5890}, + {0x70DF, 5888}, + {0x70F1, 5883}, + {0x70F9, 3950}, + {0x70FD, 5893}, + {0x7104, 10924}, + {0x7109, 5892}, + {0x710F, 10923}, + {0x7114, 1578}, + {0x7119, 5895}, + {0x711A, 3871}, + {0x711C, 5894}, + {0x7121, 4062}, + {0x7126, 2764}, + {0x7136, 3026}, + {0x713C, 2763}, + {0x7146, 10926}, + {0x7147, 10927}, + {0x7149, 4320}, + {0x714C, 5901}, + {0x714E, 3002}, + {0x7155, 5897}, + {0x7156, 5902}, + {0x7159, 1579}, + {0x715C, 10925}, + {0x7162, 5900}, + {0x7164, 3636}, + {0x7165, 5896}, + {0x7166, 5899}, + {0x7167, 2765}, + {0x7169, 3714}, + {0x716C, 5903}, + {0x716E, 2586}, + {0x717D, 3003}, + {0x7184, 5906}, + {0x7188, 5898}, + {0x718A, 2074}, + {0x718F, 5904}, + {0x7194, 4183}, + {0x7195, 5907}, + {0x7199, 7807}, + {0x719F, 2678}, + {0x71A8, 5908}, + {0x71AC, 5909}, + {0x71B1, 3585}, + {0x71B9, 5911}, + {0x71BE, 5912}, + {0x71C1, 10929}, + {0x71C3, 3590}, + {0x71C8, 3468}, + {0x71C9, 5914}, + {0x71CE, 5916}, + {0x71D0, 4282}, + {0x71D2, 5913}, + {0x71D4, 5915}, + {0x71D5, 1580}, + {0x71D7, 5910}, + {0x71DF, 4758}, + {0x71E0, 5917}, + {0x71E5, 3078}, + {0x71E6, 2467}, + {0x71E7, 5919}, + {0x71EC, 5918}, + {0x71ED, 2823}, + {0x71EE, 4662}, + {0x71F5, 5920}, + {0x71F9, 5922}, + {0x71FB, 5905}, + {0x71FC, 5921}, + {0x71FE, 10930}, + {0x71FF, 5923}, + {0x7206, 3661}, + {0x720D, 5924}, + {0x7210, 5925}, + {0x721B, 5926}, + {0x7228, 5927}, + {0x722A, 3351}, + {0x722C, 5929}, + {0x722D, 5928}, + {0x7230, 5930}, + {0x7232, 5931}, + {0x7235, 2600}, + {0x7236, 3826}, + {0x723A, 4117}, + {0x723B, 5932}, + {0x723C, 5933}, + {0x723D, 3061}, + {0x723E, 2541}, + {0x723F, 5934}, + {0x7240, 5935}, + {0x7246, 5936}, + {0x7247, 3903}, + {0x7248, 3704}, + {0x724B, 5937}, + {0x724C, 3626}, + {0x7252, 3302}, + {0x7258, 5938}, + {0x7259, 1668}, + {0x725B, 1956}, + {0x725D, 4079}, + {0x725F, 4063}, + {0x7261, 1617}, + {0x7262, 4343}, + {0x7267, 3997}, + {0x7269, 3863}, + {0x7272, 2936}, + {0x7274, 5939}, + {0x7279, 3512}, + {0x727D, 2164}, + {0x727E, 5940}, + {0x7280, 2401}, + {0x7281, 5942}, + {0x7282, 5941}, + {0x7287, 5943}, + {0x7292, 5944}, + {0x7296, 5945}, + {0x72A0, 1909}, + {0x72A2, 5946}, + {0x72A7, 5947}, + {0x72AC, 2165}, + {0x72AF, 3705}, + {0x72B1, 10931}, + {0x72B2, 5949}, + {0x72B6, 2810}, + {0x72B9, 5948}, + {0x72BE, 10932}, + {0x72C2, 1997}, + {0x72C3, 5950}, + {0x72C4, 5952}, + {0x72C6, 5951}, + {0x72CE, 5953}, + {0x72D0, 2210}, + {0x72D2, 5954}, + {0x72D7, 2046}, + {0x72D9, 3039}, + {0x72DB, 2348}, + {0x72E0, 5956}, + {0x72E1, 5957}, + {0x72E2, 5955}, + {0x72E9, 2614}, + {0x72EC, 3517}, + {0x72ED, 1998}, + {0x72F7, 5959}, + {0x72F8, 3207}, + {0x72F9, 5958}, + {0x72FC, 4344}, + {0x72FD, 3637}, + {0x730A, 5962}, + {0x7316, 5964}, + {0x7317, 5961}, + {0x731B, 4093}, + {0x731C, 5963}, + {0x731D, 5965}, + {0x731F, 4265}, + {0x7324, 10933}, + {0x7325, 5969}, + {0x7329, 5968}, + {0x732A, 3281}, + {0x732B, 3584}, + {0x732E, 2166}, + {0x732F, 5967}, + {0x7334, 5966}, + {0x7336, 4152}, + {0x7337, 4153}, + {0x733E, 5970}, + {0x733F, 1581}, + {0x7344, 2341}, + {0x7345, 2509}, + {0x734E, 5971}, + {0x734F, 5972}, + {0x7357, 5974}, + {0x7363, 2666}, + {0x7368, 5976}, + {0x736A, 5975}, + {0x7370, 5977}, + {0x7372, 1736}, + {0x7375, 5979}, + {0x7377, 10935}, + {0x7378, 5978}, + {0x737A, 5981}, + {0x737B, 5980}, + {0x7384, 2189}, + {0x7387, 4237}, + {0x7389, 2017}, + {0x738B, 1603}, + {0x7396, 2047}, + {0x73A9, 1850}, + {0x73B2, 4301}, + {0x73B3, 5983}, + {0x73BB, 5985}, + {0x73BD, 10936}, + {0x73C0, 5986}, + {0x73C2, 1646}, + {0x73C8, 5982}, + {0x73C9, 10937}, + {0x73CA, 2468}, + {0x73CD, 3322}, + {0x73CE, 5984}, + {0x73D2, 10940}, + {0x73D6, 10938}, + {0x73DE, 5989}, + {0x73E0, 2615}, + {0x73E3, 10939}, + {0x73E5, 5987}, + {0x73EA, 2097}, + {0x73ED, 3706}, + {0x73EE, 5988}, + {0x73F1, 6015}, + {0x73F5, 10942}, + {0x73F8, 5994}, + {0x73FE, 2190}, + {0x7403, 1948}, + {0x7405, 5991}, + {0x7406, 4228}, + {0x7407, 10941}, + {0x7409, 4245}, + {0x7422, 3187}, + {0x7425, 5993}, + {0x7426, 10943}, + {0x7429, 10945}, + {0x742A, 10944}, + {0x742E, 10946}, + {0x7432, 5995}, + {0x7433, 4283}, + {0x7434, 2028}, + {0x7435, 3757}, + {0x7436, 3613}, + {0x743A, 5996}, + {0x743F, 5998}, + {0x7441, 6001}, + {0x7455, 5997}, + {0x7459, 6000}, + {0x745A, 2235}, + {0x745B, 1548}, + {0x745C, 6002}, + {0x745E, 2899}, + {0x745F, 5999}, + {0x7460, 4289}, + {0x7462, 10947}, + {0x7463, 6005}, + {0x7464, 7805}, + {0x7469, 6003}, + {0x746A, 6006}, + {0x746F, 5992}, + {0x7470, 6004}, + {0x7473, 2377}, + {0x7476, 6007}, + {0x747E, 6008}, + {0x7483, 4229}, + {0x7489, 10948}, + {0x748B, 6009}, + {0x749E, 6010}, + {0x749F, 10949}, + {0x74A2, 5990}, + {0x74A7, 6011}, + {0x74B0, 1821}, + {0x74BD, 2542}, + {0x74CA, 6012}, + {0x74CF, 6013}, + {0x74D4, 6014}, + {0x74DC, 1530}, + {0x74E0, 6016}, + {0x74E2, 3786}, + {0x74E3, 6017}, + {0x74E6, 1789}, + {0x74E7, 6018}, + {0x74E9, 6019}, + {0x74EE, 6020}, + {0x74F0, 6022}, + {0x74F1, 6023}, + {0x74F2, 6021}, + {0x74F6, 3810}, + {0x74F7, 6025}, + {0x74F8, 6024}, + {0x7501, 10950}, + {0x7503, 6027}, + {0x7504, 6026}, + {0x7505, 6028}, + {0x750C, 6029}, + {0x750D, 6031}, + {0x750E, 6030}, + {0x7511, 2344}, + {0x7513, 6033}, + {0x7515, 6032}, + {0x7518, 1822}, + {0x751A, 2870}, + {0x751C, 3411}, + {0x751E, 6034}, + {0x751F, 2937}, + {0x7523, 2469}, + {0x7525, 1592}, + {0x7526, 6035}, + {0x7528, 4184}, + {0x752B, 3920}, + {0x752C, 6036}, + {0x752F, 10819}, + {0x7530, 3419}, + {0x7531, 4154}, + {0x7532, 2290}, + {0x7533, 2848}, + {0x7537, 3238}, + {0x7538, 4625}, + {0x753A, 3303}, + {0x753B, 1669}, + {0x753C, 6037}, + {0x7544, 6038}, + {0x7546, 6043}, + {0x7549, 6041}, + {0x754A, 6040}, + {0x754B, 5391}, + {0x754C, 1697}, + {0x754D, 6039}, + {0x754F, 1467}, + {0x7551, 3675}, + {0x7554, 3707}, + {0x7559, 4246}, + {0x755A, 6044}, + {0x755B, 6042}, + {0x755C, 3255}, + {0x755D, 2919}, + {0x7560, 3676}, + {0x7562, 3772}, + {0x7564, 6046}, + {0x7565, 4241}, + {0x7566, 2112}, + {0x7567, 6047}, + {0x7569, 6045}, + {0x756A, 3719}, + {0x756B, 6048}, + {0x756D, 6049}, + {0x756F, 10951}, + {0x7570, 1468}, + {0x7573, 2811}, + {0x7574, 6054}, + {0x7576, 6051}, + {0x7577, 3554}, + {0x7578, 6050}, + {0x757F, 1885}, + {0x7582, 6057}, + {0x7586, 6052}, + {0x7587, 6053}, + {0x7589, 6056}, + {0x758A, 6055}, + {0x758B, 3764}, + {0x758E, 3041}, + {0x758F, 3040}, + {0x7591, 1910}, + {0x7594, 6058}, + {0x759A, 6059}, + {0x759D, 6060}, + {0x75A3, 6062}, + {0x75A5, 6061}, + {0x75AB, 1557}, + {0x75B1, 6070}, + {0x75B2, 3737}, + {0x75B3, 6064}, + {0x75B5, 6066}, + {0x75B8, 6068}, + {0x75B9, 2849}, + {0x75BC, 6069}, + {0x75BD, 6067}, + {0x75BE, 2569}, + {0x75C2, 6063}, + {0x75C3, 6065}, + {0x75C5, 3793}, + {0x75C7, 2766}, + {0x75CA, 6072}, + {0x75CD, 6071}, + {0x75D2, 6073}, + {0x75D4, 2543}, + {0x75D5, 2364}, + {0x75D8, 3470}, + {0x75D9, 6074}, + {0x75DB, 3332}, + {0x75DE, 6076}, + {0x75E2, 4230}, + {0x75E3, 6075}, + {0x75E9, 3080}, + {0x75F0, 6081}, + {0x75F2, 6083}, + {0x75F3, 6084}, + {0x75F4, 3247}, + {0x75FA, 6082}, + {0x75FC, 6079}, + {0x75FE, 6077}, + {0x75FF, 6078}, + {0x7601, 6080}, + {0x7609, 6087}, + {0x760B, 6085}, + {0x760D, 6086}, + {0x761F, 6088}, + {0x7620, 6090}, + {0x7621, 6091}, + {0x7622, 6092}, + {0x7624, 6093}, + {0x7627, 6089}, + {0x7630, 6095}, + {0x7634, 6094}, + {0x763B, 6096}, + {0x7642, 4266}, + {0x7646, 6099}, + {0x7647, 6097}, + {0x7648, 6098}, + {0x764C, 1851}, + {0x7652, 4135}, + {0x7656, 3895}, + {0x7658, 6101}, + {0x765C, 6100}, + {0x7661, 6102}, + {0x7662, 6103}, + {0x7667, 6107}, + {0x7668, 6104}, + {0x7669, 6105}, + {0x766A, 6106}, + {0x766C, 6108}, + {0x7670, 6109}, + {0x7672, 6110}, + {0x7676, 6111}, + {0x7678, 6112}, + {0x767A, 3680}, + {0x767B, 3431}, + {0x767C, 6113}, + {0x767D, 3653}, + {0x767E, 3779}, + {0x7680, 6114}, + {0x7682, 10952}, + {0x7683, 6115}, + {0x7684, 3393}, + {0x7686, 1698}, + {0x7687, 2291}, + {0x7688, 6116}, + {0x768B, 6117}, + {0x768E, 6118}, + {0x7690, 2452}, + {0x7693, 6120}, + {0x7696, 6119}, + {0x7699, 6121}, + {0x769A, 6122}, + {0x769B, 10955}, + {0x769C, 10953}, + {0x769E, 10954}, + {0x76A6, 10956}, + {0x76AE, 3738}, + {0x76B0, 6123}, + {0x76B4, 6124}, + {0x76B7, 7780}, + {0x76B8, 6125}, + {0x76B9, 6126}, + {0x76BA, 6127}, + {0x76BF, 2457}, + {0x76C2, 6128}, + {0x76C3, 3625}, + {0x76C6, 4010}, + {0x76C8, 1549}, + {0x76CA, 1558}, + {0x76CD, 6129}, + {0x76D2, 6131}, + {0x76D6, 6130}, + {0x76D7, 3463}, + {0x76DB, 2938}, + {0x76DC, 5664}, + {0x76DE, 6132}, + {0x76DF, 4074}, + {0x76E1, 6133}, + {0x76E3, 1823}, + {0x76E4, 3720}, + {0x76E5, 6134}, + {0x76E7, 6135}, + {0x76EA, 6136}, + {0x76EE, 4101}, + {0x76F2, 4094}, + {0x76F4, 3319}, + {0x76F8, 3081}, + {0x76FB, 6138}, + {0x76FE, 2697}, + {0x7701, 2767}, + {0x7704, 6141}, + {0x7707, 6140}, + {0x7708, 6139}, + {0x7709, 3758}, + {0x770B, 1824}, + {0x770C, 2170}, + {0x771B, 6147}, + {0x771E, 6144}, + {0x771F, 2850}, + {0x7720, 4059}, + {0x7724, 6143}, + {0x7725, 6145}, + {0x7726, 6146}, + {0x7729, 6142}, + {0x7737, 6148}, + {0x7738, 6149}, + {0x773A, 3304}, + {0x773C, 1852}, + {0x7740, 3264}, + {0x7746, 10958}, + {0x7747, 6150}, + {0x775A, 6151}, + {0x775B, 6154}, + {0x7761, 2890}, + {0x7763, 3513}, + {0x7765, 6155}, + {0x7766, 3998}, + {0x7768, 6152}, + {0x776B, 6153}, + {0x7779, 6158}, + {0x777E, 6157}, + {0x777F, 6156}, + {0x778B, 6160}, + {0x778E, 6159}, + {0x7791, 6161}, + {0x779E, 6163}, + {0x77A0, 6162}, + {0x77A5, 3898}, + {0x77AC, 2685}, + {0x77AD, 4267}, + {0x77B0, 6164}, + {0x77B3, 3500}, + {0x77B6, 6165}, + {0x77B9, 6166}, + {0x77BB, 6170}, + {0x77BC, 6168}, + {0x77BD, 6169}, + {0x77BF, 6167}, + {0x77C7, 6171}, + {0x77CD, 6172}, + {0x77D7, 6173}, + {0x77DA, 6174}, + {0x77DB, 4064}, + {0x77DC, 6175}, + {0x77E2, 4121}, + {0x77E3, 6176}, + {0x77E5, 3241}, + {0x77E7, 3645}, + {0x77E9, 2048}, + {0x77ED, 3222}, + {0x77EE, 6177}, + {0x77EF, 1999}, + {0x77F3, 2961}, + {0x77FC, 6178}, + {0x7802, 2378}, + {0x780C, 6179}, + {0x7812, 6180}, + {0x7814, 2167}, + {0x7815, 2402}, + {0x7820, 6182}, + {0x7821, 10960}, + {0x7825, 3437}, + {0x7826, 2403}, + {0x7827, 1925}, + {0x7832, 3951}, + {0x7834, 3614}, + {0x783A, 3438}, + {0x783F, 2315}, + {0x7845, 6184}, + {0x784E, 10961}, + {0x785D, 2768}, + {0x7864, 10962}, + {0x786B, 4247}, + {0x786C, 2292}, + {0x786F, 2168}, + {0x7872, 3668}, + {0x7874, 6186}, + {0x787A, 10963}, + {0x787C, 6188}, + {0x7881, 2236}, + {0x7886, 6187}, + {0x7887, 3375}, + {0x788C, 6190}, + {0x788D, 1714}, + {0x788E, 6185}, + {0x7891, 3739}, + {0x7893, 1519}, + {0x7895, 2425}, + {0x7897, 4373}, + {0x789A, 6189}, + {0x78A3, 6191}, + {0x78A7, 3896}, + {0x78A9, 2970}, + {0x78AA, 6193}, + {0x78AF, 6194}, + {0x78B5, 6192}, + {0x78BA, 1737}, + {0x78BC, 6200}, + {0x78BE, 6199}, + {0x78C1, 2544}, + {0x78C5, 6201}, + {0x78C6, 6196}, + {0x78CA, 6202}, + {0x78CB, 6197}, + {0x78D0, 3721}, + {0x78D1, 6195}, + {0x78D4, 6198}, + {0x78DA, 6205}, + {0x78E7, 6204}, + {0x78E8, 4012}, + {0x78EC, 6203}, + {0x78EF, 1484}, + {0x78F4, 6207}, + {0x78FD, 6206}, + {0x7901, 2769}, + {0x7907, 6208}, + {0x790E, 3042}, + {0x7911, 6210}, + {0x7912, 6209}, + {0x7919, 6211}, + {0x7926, 6181}, + {0x792A, 6183}, + {0x792B, 6213}, + {0x792C, 6212}, + {0x7930, 10964}, + {0x793A, 2545}, + {0x793C, 4302}, + {0x793E, 2587}, + {0x7940, 6214}, + {0x7941, 2090}, + {0x7947, 1911}, + {0x7948, 1886}, + {0x7949, 2510}, + {0x7950, 4155}, + {0x7953, 6220}, + {0x7955, 6219}, + {0x7956, 3043}, + {0x7957, 6216}, + {0x795A, 6218}, + {0x795D, 2674}, + {0x795E, 2851}, + {0x795F, 6217}, + {0x7960, 6215}, + {0x7962, 3581}, + {0x7965, 2770}, + {0x7968, 3787}, + {0x796D, 2404}, + {0x7977, 3471}, + {0x797A, 6221}, + {0x797F, 6222}, + {0x7980, 6244}, + {0x7981, 2029}, + {0x7984, 4352}, + {0x7985, 3028}, + {0x798A, 6223}, + {0x798D, 1647}, + {0x798E, 3376}, + {0x798F, 3854}, + {0x7994, 10968}, + {0x799B, 10970}, + {0x799D, 6224}, + {0x79A6, 1969}, + {0x79A7, 6225}, + {0x79AA, 6227}, + {0x79AE, 6228}, + {0x79B0, 3580}, + {0x79B3, 6229}, + {0x79B9, 6230}, + {0x79BA, 6231}, + {0x79BD, 2030}, + {0x79BE, 1648}, + {0x79BF, 3514}, + {0x79C0, 2639}, + {0x79C1, 2511}, + {0x79C9, 6232}, + {0x79CB, 2640}, + {0x79D1, 1639}, + {0x79D2, 3794}, + {0x79D5, 6233}, + {0x79D8, 3740}, + {0x79DF, 3044}, + {0x79E1, 6236}, + {0x79E3, 6237}, + {0x79E4, 3644}, + {0x79E6, 2852}, + {0x79E7, 6234}, + {0x79E9, 3260}, + {0x79EC, 6235}, + {0x79F0, 2771}, + {0x79FB, 1469}, + {0x7A00, 1888}, + {0x7A08, 6238}, + {0x7A0B, 3377}, + {0x7A0D, 6239}, + {0x7A0E, 2952}, + {0x7A14, 4054}, + {0x7A17, 3762}, + {0x7A18, 6240}, + {0x7A19, 6241}, + {0x7A1A, 3248}, + {0x7A1C, 4268}, + {0x7A1F, 6243}, + {0x7A20, 6242}, + {0x7A2E, 2616}, + {0x7A31, 6245}, + {0x7A32, 1489}, + {0x7A37, 6248}, + {0x7A3B, 6246}, + {0x7A3C, 1649}, + {0x7A3D, 2113}, + {0x7A3E, 6247}, + {0x7A3F, 2293}, + {0x7A40, 2337}, + {0x7A42, 3923}, + {0x7A43, 6249}, + {0x7A46, 3999}, + {0x7A49, 6251}, + {0x7A4D, 2962}, + {0x7A4E, 1550}, + {0x7A4F, 1623}, + {0x7A50, 1421}, + {0x7A57, 6250}, + {0x7A61, 6252}, + {0x7A62, 6253}, + {0x7A63, 2812}, + {0x7A69, 6254}, + {0x7A6B, 1738}, + {0x7A70, 6256}, + {0x7A74, 2141}, + {0x7A76, 1949}, + {0x7A79, 6257}, + {0x7A7A, 2058}, + {0x7A7D, 6258}, + {0x7A7F, 3005}, + {0x7A81, 3522}, + {0x7A83, 2977}, + {0x7A84, 2434}, + {0x7A88, 6259}, + {0x7A92, 3261}, + {0x7A93, 3082}, + {0x7A95, 6261}, + {0x7A96, 6263}, + {0x7A97, 6260}, + {0x7A98, 6262}, + {0x7A9F, 2069}, + {0x7AA9, 6264}, + {0x7AAA, 2073}, + {0x7AAE, 1950}, + {0x7AAF, 4185}, + {0x7AB0, 6266}, + {0x7AB6, 6267}, + {0x7ABA, 1517}, + {0x7ABF, 6270}, + {0x7AC3, 1777}, + {0x7AC4, 6269}, + {0x7AC5, 6268}, + {0x7AC7, 6272}, + {0x7AC8, 6265}, + {0x7ACA, 6273}, + {0x7ACB, 4238}, + {0x7ACD, 6274}, + {0x7ACF, 6275}, + {0x7AD1, 10971}, + {0x7AD2, 4877}, + {0x7AD3, 6277}, + {0x7AD5, 6276}, + {0x7AD9, 6278}, + {0x7ADA, 6279}, + {0x7ADC, 4250}, + {0x7ADD, 6280}, + {0x7ADF, 7504}, + {0x7AE0, 2772}, + {0x7AE1, 6281}, + {0x7AE2, 6282}, + {0x7AE3, 2686}, + {0x7AE5, 3501}, + {0x7AE6, 6283}, + {0x7AE7, 10972}, + {0x7AEA, 3203}, + {0x7AEB, 10974}, + {0x7AED, 6284}, + {0x7AEF, 3223}, + {0x7AF0, 6285}, + {0x7AF6, 1978}, + {0x7AF8, 4542}, + {0x7AF9, 3256}, + {0x7AFA, 2556}, + {0x7AFF, 1825}, + {0x7B02, 6286}, + {0x7B04, 6299}, + {0x7B06, 6289}, + {0x7B08, 1951}, + {0x7B0A, 6288}, + {0x7B0B, 6301}, + {0x7B0F, 6287}, + {0x7B11, 2773}, + {0x7B18, 6291}, + {0x7B19, 6292}, + {0x7B1B, 3394}, + {0x7B1E, 6293}, + {0x7B20, 1753}, + {0x7B25, 2877}, + {0x7B26, 3827}, + {0x7B28, 6295}, + {0x7B2C, 3173}, + {0x7B33, 6290}, + {0x7B35, 6294}, + {0x7B36, 6296}, + {0x7B39, 2440}, + {0x7B45, 6303}, + {0x7B46, 3773}, + {0x7B48, 3671}, + {0x7B49, 3472}, + {0x7B4B, 2031}, + {0x7B4C, 6302}, + {0x7B4D, 6300}, + {0x7B4F, 3686}, + {0x7B50, 6297}, + {0x7B51, 3257}, + {0x7B52, 3474}, + {0x7B54, 3473}, + {0x7B56, 2435}, + {0x7B5D, 6321}, + {0x7B65, 6305}, + {0x7B67, 6307}, + {0x7B6C, 6310}, + {0x7B6E, 6311}, + {0x7B70, 6308}, + {0x7B71, 6309}, + {0x7B74, 6306}, + {0x7B75, 6304}, + {0x7B7A, 6298}, + {0x7B86, 3900}, + {0x7B87, 1650}, + {0x7B8B, 6318}, + {0x7B8D, 6315}, + {0x7B8F, 6320}, + {0x7B92, 6319}, + {0x7B94, 3654}, + {0x7B95, 4048}, + {0x7B97, 2470}, + {0x7B98, 6313}, + {0x7B99, 6322}, + {0x7B9A, 6317}, + {0x7B9C, 6316}, + {0x7B9D, 6312}, + {0x7B9E, 10975}, + {0x7B9F, 6314}, + {0x7BA1, 1826}, + {0x7BAA, 3224}, + {0x7BAD, 3006}, + {0x7BB1, 3667}, + {0x7BB4, 6327}, + {0x7BB8, 3669}, + {0x7BC0, 2978}, + {0x7BC1, 6324}, + {0x7BC4, 3712}, + {0x7BC6, 6328}, + {0x7BC7, 3904}, + {0x7BC9, 3254}, + {0x7BCB, 6323}, + {0x7BCC, 6325}, + {0x7BCF, 6326}, + {0x7BDD, 6329}, + {0x7BE0, 2573}, + {0x7BE4, 3515}, + {0x7BE5, 6334}, + {0x7BE6, 6333}, + {0x7BE9, 6330}, + {0x7BED, 4345}, + {0x7BF3, 6339}, + {0x7BF6, 6343}, + {0x7BF7, 6340}, + {0x7C00, 6336}, + {0x7C07, 6337}, + {0x7C0D, 6342}, + {0x7C11, 6331}, + {0x7C12, 4658}, + {0x7C13, 6338}, + {0x7C14, 6332}, + {0x7C17, 6341}, + {0x7C1F, 6347}, + {0x7C21, 1827}, + {0x7C23, 6344}, + {0x7C27, 6345}, + {0x7C2A, 6346}, + {0x7C2B, 6349}, + {0x7C37, 6348}, + {0x7C38, 3751}, + {0x7C3D, 6350}, + {0x7C3E, 4321}, + {0x7C3F, 3930}, + {0x7C40, 6355}, + {0x7C43, 6352}, + {0x7C4C, 6351}, + {0x7C4D, 2963}, + {0x7C4F, 6354}, + {0x7C50, 6356}, + {0x7C54, 6353}, + {0x7C56, 6360}, + {0x7C58, 6357}, + {0x7C5F, 6358}, + {0x7C60, 6335}, + {0x7C64, 6359}, + {0x7C65, 6361}, + {0x7C6C, 6362}, + {0x7C73, 3891}, + {0x7C75, 6363}, + {0x7C7E, 4107}, + {0x7C81, 2019}, + {0x7C82, 2076}, + {0x7C83, 6364}, + {0x7C89, 3873}, + {0x7C8B, 2891}, + {0x7C8D, 4057}, + {0x7C90, 6365}, + {0x7C92, 4248}, + {0x7C95, 3655}, + {0x7C97, 3045}, + {0x7C98, 3591}, + {0x7C9B, 2676}, + {0x7C9F, 1441}, + {0x7CA1, 6370}, + {0x7CA2, 6368}, + {0x7CA4, 6366}, + {0x7CA5, 1786}, + {0x7CA7, 2774}, + {0x7CA8, 6371}, + {0x7CAB, 6369}, + {0x7CAD, 6367}, + {0x7CAE, 6375}, + {0x7CB1, 6374}, + {0x7CB2, 6373}, + {0x7CB3, 6372}, + {0x7CB9, 6376}, + {0x7CBD, 6377}, + {0x7CBE, 2939}, + {0x7CC0, 6378}, + {0x7CC2, 6380}, + {0x7CC5, 6379}, + {0x7CCA, 2211}, + {0x7CCE, 3031}, + {0x7CD2, 6382}, + {0x7CD6, 3475}, + {0x7CD8, 6381}, + {0x7CDC, 6383}, + {0x7CDE, 3874}, + {0x7CDF, 3083}, + {0x7CE0, 2294}, + {0x7CE2, 6384}, + {0x7CE7, 4269}, + {0x7CEF, 6386}, + {0x7CF2, 6387}, + {0x7CF4, 6388}, + {0x7CF6, 6389}, + {0x7CF8, 2512}, + {0x7CFA, 6390}, + {0x7CFB, 2114}, + {0x7CFE, 1953}, + {0x7D00, 1889}, + {0x7D02, 6392}, + {0x7D04, 4124}, + {0x7D05, 2295}, + {0x7D06, 6391}, + {0x7D0A, 6395}, + {0x7D0B, 4111}, + {0x7D0D, 3599}, + {0x7D10, 3778}, + {0x7D14, 2698}, + {0x7D15, 6394}, + {0x7D17, 2588}, + {0x7D18, 2296}, + {0x7D19, 2513}, + {0x7D1A, 1952}, + {0x7D1B, 3875}, + {0x7D1C, 6393}, + {0x7D20, 3046}, + {0x7D21, 3981}, + {0x7D22, 2436}, + {0x7D2B, 2514}, + {0x7D2C, 3350}, + {0x7D2E, 6398}, + {0x7D2F, 4292}, + {0x7D30, 2406}, + {0x7D32, 6399}, + {0x7D33, 2853}, + {0x7D35, 6401}, + {0x7D39, 2775}, + {0x7D3A, 2365}, + {0x7D3F, 6400}, + {0x7D42, 2641}, + {0x7D43, 2191}, + {0x7D44, 3047}, + {0x7D45, 6396}, + {0x7D46, 6402}, + {0x7D48, 10977}, + {0x7D4B, 6397}, + {0x7D4C, 2115}, + {0x7D4E, 6405}, + {0x7D4F, 6409}, + {0x7D50, 2142}, + {0x7D56, 6404}, + {0x7D5B, 6413}, + {0x7D5C, 10978}, + {0x7D5E, 2297}, + {0x7D61, 4212}, + {0x7D62, 1437}, + {0x7D63, 6410}, + {0x7D66, 1954}, + {0x7D68, 6407}, + {0x7D6E, 6408}, + {0x7D71, 3476}, + {0x7D72, 6406}, + {0x7D73, 6403}, + {0x7D75, 1699}, + {0x7D76, 2981}, + {0x7D79, 2169}, + {0x7D7D, 6415}, + {0x7D89, 6412}, + {0x7D8F, 6414}, + {0x7D93, 6411}, + {0x7D99, 2116}, + {0x7D9A, 3120}, + {0x7D9B, 6416}, + {0x7D9C, 3085}, + {0x7D9F, 6429}, + {0x7DA0, 10980}, + {0x7DA2, 6425}, + {0x7DA3, 6419}, + {0x7DAB, 6423}, + {0x7DAC, 2627}, + {0x7DAD, 1470}, + {0x7DAE, 6418}, + {0x7DAF, 6426}, + {0x7DB0, 6430}, + {0x7DB1, 2298}, + {0x7DB2, 4095}, + {0x7DB4, 3343}, + {0x7DB5, 6420}, + {0x7DB7, 10979}, + {0x7DB8, 6428}, + {0x7DBA, 6417}, + {0x7DBB, 3225}, + {0x7DBD, 6422}, + {0x7DBE, 1438}, + {0x7DBF, 4083}, + {0x7DC7, 6421}, + {0x7DCA, 2032}, + {0x7DCB, 3741}, + {0x7DCF, 3084}, + {0x7DD1, 4277}, + {0x7DD2, 2710}, + {0x7DD5, 6469}, + {0x7DD6, 10981}, + {0x7DD8, 6431}, + {0x7DDA, 3007}, + {0x7DDC, 6427}, + {0x7DDD, 6432}, + {0x7DDE, 6434}, + {0x7DE0, 3378}, + {0x7DE1, 6437}, + {0x7DE4, 6433}, + {0x7DE8, 3905}, + {0x7DE9, 1828}, + {0x7DEC, 4084}, + {0x7DEF, 1471}, + {0x7DF2, 6436}, + {0x7DF4, 4322}, + {0x7DFB, 6435}, + {0x7E01, 1582}, + {0x7E04, 3553}, + {0x7E05, 6438}, + {0x7E09, 6445}, + {0x7E0A, 6439}, + {0x7E0B, 6446}, + {0x7E12, 6442}, + {0x7E1B, 3662}, + {0x7E1E, 2579}, + {0x7E1F, 6444}, + {0x7E21, 6441}, + {0x7E22, 6447}, + {0x7E23, 6440}, + {0x7E26, 2667}, + {0x7E2B, 3952}, + {0x7E2E, 2675}, + {0x7E31, 6443}, + {0x7E32, 6455}, + {0x7E35, 6451}, + {0x7E37, 6454}, + {0x7E39, 6452}, + {0x7E3A, 6456}, + {0x7E3B, 6450}, + {0x7E3D, 6424}, + {0x7E3E, 2964}, + {0x7E41, 3708}, + {0x7E43, 6453}, + {0x7E46, 6448}, + {0x7E4A, 3008}, + {0x7E4B, 2117}, + {0x7E4D, 2642}, + {0x7E52, 10982}, + {0x7E54, 2824}, + {0x7E55, 3029}, + {0x7E56, 6459}, + {0x7E59, 6461}, + {0x7E5A, 6462}, + {0x7E5D, 6458}, + {0x7E5E, 6460}, + {0x7E66, 6449}, + {0x7E67, 6457}, + {0x7E69, 6465}, + {0x7E6A, 6464}, + {0x7E6D, 4037}, + {0x7E70, 2078}, + {0x7E79, 6463}, + {0x7E7B, 6467}, + {0x7E7C, 6466}, + {0x7E7D, 6470}, + {0x7E7F, 6472}, + {0x7E82, 2471}, + {0x7E83, 6468}, + {0x7E88, 6473}, + {0x7E89, 6474}, + {0x7E8A, 10744}, + {0x7E8C, 6475}, + {0x7E8E, 6481}, + {0x7E8F, 3410}, + {0x7E90, 6477}, + {0x7E92, 6476}, + {0x7E93, 6478}, + {0x7E94, 6479}, + {0x7E96, 6480}, + {0x7E9B, 6482}, + {0x7E9C, 6483}, + {0x7F36, 1829}, + {0x7F38, 6484}, + {0x7F3A, 6485}, + {0x7F45, 6486}, + {0x7F47, 10983}, + {0x7F4C, 6487}, + {0x7F4D, 6488}, + {0x7F4E, 6489}, + {0x7F50, 6490}, + {0x7F51, 6491}, + {0x7F54, 6493}, + {0x7F55, 6492}, + {0x7F58, 6494}, + {0x7F5F, 6495}, + {0x7F60, 6496}, + {0x7F67, 6499}, + {0x7F68, 6497}, + {0x7F69, 6498}, + {0x7F6A, 2414}, + {0x7F6B, 2118}, + {0x7F6E, 3249}, + {0x7F70, 3684}, + {0x7F72, 2711}, + {0x7F75, 3616}, + {0x7F77, 3742}, + {0x7F78, 6500}, + {0x7F79, 5246}, + {0x7F82, 6501}, + {0x7F83, 6503}, + {0x7F85, 4204}, + {0x7F86, 6502}, + {0x7F87, 6505}, + {0x7F88, 6504}, + {0x7F8A, 4186}, + {0x7F8C, 6506}, + {0x7F8E, 3759}, + {0x7F94, 6507}, + {0x7F9A, 6510}, + {0x7F9D, 6509}, + {0x7F9E, 6508}, + {0x7FA1, 10984}, + {0x7FA3, 6511}, + {0x7FA4, 2085}, + {0x7FA8, 3009}, + {0x7FA9, 1912}, + {0x7FAE, 6515}, + {0x7FAF, 6512}, + {0x7FB2, 6513}, + {0x7FB6, 6516}, + {0x7FB8, 6517}, + {0x7FB9, 6514}, + {0x7FBD, 1512}, + {0x7FC1, 1604}, + {0x7FC5, 6519}, + {0x7FC6, 6520}, + {0x7FCA, 6521}, + {0x7FCC, 4201}, + {0x7FD2, 2643}, + {0x7FD4, 6523}, + {0x7FD5, 6522}, + {0x7FE0, 2892}, + {0x7FE1, 6524}, + {0x7FE6, 6525}, + {0x7FE9, 6526}, + {0x7FEB, 1854}, + {0x7FF0, 1830}, + {0x7FF3, 6527}, + {0x7FF9, 6528}, + {0x7FFB, 4008}, + {0x7FFC, 4202}, + {0x8000, 4187}, + {0x8001, 4346}, + {0x8003, 2300}, + {0x8004, 6531}, + {0x8005, 2589}, + {0x8006, 6530}, + {0x800B, 6532}, + {0x800C, 2546}, + {0x8010, 3150}, + {0x8012, 6533}, + {0x8015, 2299}, + {0x8017, 4096}, + {0x8018, 6534}, + {0x8019, 6535}, + {0x801C, 6536}, + {0x8021, 6537}, + {0x8028, 6538}, + {0x8033, 2547}, + {0x8036, 4118}, + {0x803B, 6540}, + {0x803D, 3226}, + {0x803F, 6539}, + {0x8046, 6542}, + {0x804A, 6541}, + {0x8052, 6543}, + {0x8056, 2940}, + {0x8058, 6544}, + {0x805A, 6545}, + {0x805E, 3878}, + {0x805F, 6546}, + {0x8061, 3086}, + {0x8062, 6547}, + {0x8068, 6548}, + {0x806F, 4323}, + {0x8070, 6551}, + {0x8072, 6550}, + {0x8073, 6549}, + {0x8074, 3305}, + {0x8076, 6552}, + {0x8077, 2825}, + {0x8079, 6553}, + {0x807D, 6554}, + {0x807E, 4347}, + {0x807F, 6555}, + {0x8084, 6556}, + {0x8085, 6558}, + {0x8086, 6557}, + {0x8087, 3670}, + {0x8089, 3566}, + {0x808B, 4353}, + {0x808C, 3674}, + {0x8093, 6560}, + {0x8096, 2776}, + {0x8098, 3769}, + {0x809A, 6561}, + {0x809B, 6559}, + {0x809D, 1831}, + {0x80A1, 2213}, + {0x80A2, 2515}, + {0x80A5, 3743}, + {0x80A9, 2171}, + {0x80AA, 3982}, + {0x80AC, 6564}, + {0x80AD, 6562}, + {0x80AF, 2301}, + {0x80B1, 2302}, + {0x80B2, 1482}, + {0x80B4, 2421}, + {0x80BA, 3628}, + {0x80C3, 1472}, + {0x80C4, 6569}, + {0x80C6, 3227}, + {0x80CC, 3627}, + {0x80CE, 3160}, + {0x80D6, 6571}, + {0x80D9, 6567}, + {0x80DA, 6570}, + {0x80DB, 6565}, + {0x80DD, 6568}, + {0x80DE, 3953}, + {0x80E1, 2214}, + {0x80E4, 1502}, + {0x80E5, 6566}, + {0x80EF, 6573}, + {0x80F1, 6574}, + {0x80F4, 3502}, + {0x80F8, 2000}, + {0x80FC, 6585}, + {0x80FD, 3600}, + {0x8102, 2516}, + {0x8105, 2001}, + {0x8106, 2953}, + {0x8107, 4361}, + {0x8108, 4055}, + {0x8109, 6572}, + {0x810A, 2965}, + {0x811A, 1930}, + {0x811B, 6575}, + {0x8123, 6577}, + {0x8129, 6576}, + {0x812F, 6578}, + {0x8131, 3201}, + {0x8133, 3601}, + {0x8139, 3306}, + {0x813E, 6582}, + {0x8146, 6581}, + {0x814B, 6579}, + {0x814E, 2872}, + {0x8150, 3828}, + {0x8151, 6584}, + {0x8153, 6583}, + {0x8154, 2303}, + {0x8155, 4374}, + {0x815F, 6600}, + {0x8165, 6588}, + {0x8166, 6589}, + {0x816B, 2617}, + {0x816E, 6587}, + {0x8170, 2343}, + {0x8171, 6586}, + {0x8174, 6590}, + {0x8178, 3307}, + {0x8179, 3855}, + {0x817A, 3010}, + {0x817F, 3161}, + {0x8180, 6594}, + {0x8182, 6595}, + {0x8183, 6591}, + {0x8188, 6592}, + {0x818A, 6593}, + {0x818F, 2304}, + {0x8193, 6601}, + {0x8195, 6597}, + {0x819A, 3829}, + {0x819C, 4023}, + {0x819D, 3767}, + {0x81A0, 6596}, + {0x81A3, 6599}, + {0x81A4, 6598}, + {0x81A8, 3983}, + {0x81A9, 6602}, + {0x81B0, 6603}, + {0x81B3, 3030}, + {0x81B5, 6604}, + {0x81B8, 6606}, + {0x81BA, 6610}, + {0x81BD, 6607}, + {0x81BE, 6605}, + {0x81BF, 3602}, + {0x81C0, 6608}, + {0x81C2, 6609}, + {0x81C6, 1615}, + {0x81C8, 6616}, + {0x81C9, 6611}, + {0x81CD, 6612}, + {0x81D1, 6613}, + {0x81D3, 3102}, + {0x81D8, 6615}, + {0x81D9, 6614}, + {0x81DA, 6617}, + {0x81DF, 6618}, + {0x81E0, 6619}, + {0x81E3, 2854}, + {0x81E5, 1670}, + {0x81E7, 6620}, + {0x81E8, 4284}, + {0x81EA, 2548}, + {0x81ED, 2644}, + {0x81F3, 2517}, + {0x81F4, 3250}, + {0x81FA, 6621}, + {0x81FB, 6622}, + {0x81FC, 1520}, + {0x81FE, 6623}, + {0x8201, 6624}, + {0x8202, 6625}, + {0x8205, 6626}, + {0x8207, 6627}, + {0x8208, 2002}, + {0x8209, 5367}, + {0x820A, 6628}, + {0x820C, 2982}, + {0x820D, 6629}, + {0x820E, 2580}, + {0x8210, 6630}, + {0x8212, 4433}, + {0x8216, 6631}, + {0x8217, 3915}, + {0x8218, 1845}, + {0x821B, 3011}, + {0x821C, 2687}, + {0x821E, 3840}, + {0x821F, 2645}, + {0x8229, 6632}, + {0x822A, 2305}, + {0x822B, 6633}, + {0x822C, 3709}, + {0x822E, 6647}, + {0x8233, 6635}, + {0x8235, 3142}, + {0x8236, 3656}, + {0x8237, 2192}, + {0x8238, 6634}, + {0x8239, 3012}, + {0x8240, 6636}, + {0x8247, 3379}, + {0x8258, 6638}, + {0x8259, 6637}, + {0x825A, 6640}, + {0x825D, 6639}, + {0x825F, 6641}, + {0x8262, 6643}, + {0x8264, 6642}, + {0x8266, 1832}, + {0x8268, 6644}, + {0x826A, 6645}, + {0x826B, 6646}, + {0x826E, 2366}, + {0x826F, 4270}, + {0x8271, 6648}, + {0x8272, 2826}, + {0x8276, 1583}, + {0x8277, 6649}, + {0x8278, 6650}, + {0x827E, 6651}, + {0x828B, 1491}, + {0x828D, 6652}, + {0x8292, 6653}, + {0x8299, 3830}, + {0x829D, 2576}, + {0x829F, 6655}, + {0x82A5, 1700}, + {0x82A6, 1427}, + {0x82AB, 6654}, + {0x82AC, 6657}, + {0x82AD, 3617}, + {0x82AF, 2855}, + {0x82B1, 1651}, + {0x82B3, 3954}, + {0x82B8, 2128}, + {0x82B9, 2033}, + {0x82BB, 6656}, + {0x82BD, 1671}, + {0x82C5, 1788}, + {0x82D1, 1584}, + {0x82D2, 6661}, + {0x82D3, 4303}, + {0x82D4, 3162}, + {0x82D7, 3795}, + {0x82D9, 6673}, + {0x82DB, 1652}, + {0x82DC, 6671}, + {0x82DE, 6669}, + {0x82DF, 6660}, + {0x82E1, 6658}, + {0x82E3, 6659}, + {0x82E5, 2604}, + {0x82E6, 2049}, + {0x82E7, 3282}, + {0x82EB, 3526}, + {0x82F1, 1552}, + {0x82F3, 6663}, + {0x82F4, 6662}, + {0x82F9, 6668}, + {0x82FA, 6664}, + {0x82FB, 6667}, + {0x8301, 10986}, + {0x8302, 4089}, + {0x8303, 6666}, + {0x8304, 1653}, + {0x8305, 1784}, + {0x8306, 6670}, + {0x8309, 6672}, + {0x830E, 2119}, + {0x8316, 6676}, + {0x8317, 6685}, + {0x8318, 6686}, + {0x831C, 1420}, + {0x8323, 6693}, + {0x8328, 1490}, + {0x832B, 6684}, + {0x832F, 6683}, + {0x8331, 6678}, + {0x8332, 6677}, + {0x8334, 6675}, + {0x8335, 6674}, + {0x8336, 3262}, + {0x8338, 3192}, + {0x8339, 6680}, + {0x8340, 6679}, + {0x8345, 6682}, + {0x8349, 3087}, + {0x834A, 2120}, + {0x834F, 1536}, + {0x8350, 6681}, + {0x8352, 2306}, + {0x8358, 3088}, + {0x8362, 10987}, + {0x8373, 6699}, + {0x8375, 6700}, + {0x8377, 1654}, + {0x837B, 1611}, + {0x837C, 6697}, + {0x837F, 10988}, + {0x8385, 6687}, + {0x8387, 6695}, + {0x8389, 6702}, + {0x838A, 6696}, + {0x838E, 6694}, + {0x8393, 6665}, + {0x8396, 6692}, + {0x839A, 6688}, + {0x839E, 1833}, + {0x839F, 6690}, + {0x83A0, 6701}, + {0x83A2, 6691}, + {0x83A8, 6703}, + {0x83AA, 6689}, + {0x83AB, 3663}, + {0x83B1, 4208}, + {0x83B5, 6698}, + {0x83BD, 6720}, + {0x83C1, 6712}, + {0x83C5, 2910}, + {0x83C7, 10989}, + {0x83CA, 1917}, + {0x83CC, 2034}, + {0x83CE, 6707}, + {0x83D3, 1656}, + {0x83D6, 2777}, + {0x83D8, 6710}, + {0x83DC, 2407}, + {0x83DF, 3432}, + {0x83E0, 6715}, + {0x83E9, 3931}, + {0x83EB, 6706}, + {0x83EF, 1655}, + {0x83F0, 2215}, + {0x83F1, 3768}, + {0x83F2, 6716}, + {0x83F4, 6704}, + {0x83F6, 10990}, + {0x83F7, 6713}, + {0x83FB, 6723}, + {0x83FD, 6708}, + {0x8403, 6709}, + {0x8404, 3503}, + {0x8407, 6714}, + {0x840B, 6711}, + {0x840C, 3955}, + {0x840D, 6717}, + {0x840E, 1473}, + {0x8413, 6705}, + {0x8420, 6719}, + {0x8422, 6718}, + {0x8429, 3646}, + {0x842A, 6725}, + {0x842C, 6736}, + {0x8431, 1785}, + {0x8435, 6739}, + {0x8438, 6721}, + {0x843C, 6726}, + {0x843D, 4213}, + {0x8446, 6735}, + {0x8448, 10991}, + {0x8449, 4188}, + {0x844E, 4239}, + {0x8457, 3283}, + {0x845B, 1766}, + {0x8461, 3841}, + {0x8462, 6741}, + {0x8463, 3478}, + {0x8466, 1426}, + {0x8469, 6734}, + {0x846B, 6730}, + {0x846C, 3089}, + {0x846D, 6724}, + {0x846E, 6732}, + {0x846F, 6737}, + {0x8471, 3583}, + {0x8475, 1419}, + {0x8477, 6729}, + {0x8479, 6738}, + {0x847A, 3847}, + {0x8482, 6733}, + {0x8484, 6728}, + {0x848B, 2778}, + {0x8490, 2646}, + {0x8494, 2549}, + {0x8499, 4097}, + {0x849C, 3798}, + {0x849F, 6744}, + {0x84A1, 6753}, + {0x84AD, 6731}, + {0x84B2, 1778}, + {0x84B4, 10992}, + {0x84B8, 2813}, + {0x84B9, 6742}, + {0x84BB, 6747}, + {0x84BC, 3090}, + {0x84BF, 6743}, + {0x84C1, 6750}, + {0x84C4, 3258}, + {0x84C6, 6751}, + {0x84C9, 4189}, + {0x84CA, 6740}, + {0x84CB, 1715}, + {0x84CD, 6746}, + {0x84D0, 6749}, + {0x84D1, 4053}, + {0x84D6, 6752}, + {0x84D9, 6745}, + {0x84DA, 6748}, + {0x84DC, 10748}, + {0x84EC, 3956}, + {0x84EE, 4324}, + {0x84F4, 6756}, + {0x84FC, 6763}, + {0x84FF, 6755}, + {0x8500, 2572}, + {0x8506, 6722}, + {0x8511, 3899}, + {0x8513, 4043}, + {0x8514, 6762}, + {0x8515, 6761}, + {0x8517, 6757}, + {0x8518, 6758}, + {0x851A, 1525}, + {0x851F, 6760}, + {0x8521, 6754}, + {0x8526, 3342}, + {0x852C, 6759}, + {0x852D, 1503}, + {0x8535, 3103}, + {0x853D, 3888}, + {0x8540, 6764}, + {0x8541, 6768}, + {0x8543, 3722}, + {0x8548, 6767}, + {0x8549, 2779}, + {0x854A, 2578}, + {0x854B, 6770}, + {0x854E, 2003}, + {0x8553, 10993}, + {0x8555, 6771}, + {0x8557, 3848}, + {0x8558, 6766}, + {0x8559, 10994}, + {0x855A, 6727}, + {0x8563, 6765}, + {0x8568, 4370}, + {0x8569, 3479}, + {0x856A, 3842}, + {0x856B, 10995}, + {0x856D, 6778}, + {0x8577, 6784}, + {0x857E, 6785}, + {0x8580, 6772}, + {0x8584, 3657}, + {0x8587, 6782}, + {0x8588, 6774}, + {0x858A, 6776}, + {0x8590, 6786}, + {0x8591, 6775}, + {0x8594, 6779}, + {0x8597, 1585}, + {0x8599, 3546}, + {0x859B, 6780}, + {0x859C, 6783}, + {0x85A4, 6773}, + {0x85A6, 3013}, + {0x85A8, 6777}, + {0x85A9, 2450}, + {0x85AA, 2856}, + {0x85AB, 2083}, + {0x85AC, 4125}, + {0x85AE, 4130}, + {0x85AF, 2713}, + {0x85B0, 10997}, + {0x85B9, 6790}, + {0x85BA, 6788}, + {0x85C1, 4369}, + {0x85C9, 6787}, + {0x85CD, 4220}, + {0x85CF, 6789}, + {0x85D0, 6791}, + {0x85D5, 6792}, + {0x85DC, 6795}, + {0x85DD, 6793}, + {0x85E4, 3480}, + {0x85E5, 6794}, + {0x85E9, 3710}, + {0x85EA, 6781}, + {0x85F7, 2714}, + {0x85F9, 6796}, + {0x85FA, 6801}, + {0x85FB, 3091}, + {0x85FE, 6800}, + {0x8602, 6769}, + {0x8606, 6802}, + {0x8607, 3048}, + {0x860A, 6797}, + {0x860B, 6799}, + {0x8613, 6798}, + {0x8616, 5656}, + {0x8617, 5641}, + {0x861A, 6804}, + {0x8622, 6803}, + {0x862D, 4221}, + {0x862F, 6137}, + {0x8630, 6805}, + {0x863F, 6806}, + {0x864D, 6807}, + {0x864E, 2216}, + {0x8650, 1931}, + {0x8654, 6809}, + {0x8655, 4572}, + {0x865A, 1964}, + {0x865C, 4255}, + {0x865E, 2056}, + {0x865F, 6810}, + {0x8667, 6811}, + {0x866B, 3273}, + {0x8671, 6812}, + {0x8679, 3567}, + {0x867B, 1435}, + {0x868A, 1664}, + {0x868B, 6817}, + {0x868C, 6818}, + {0x8693, 6813}, + {0x8695, 2472}, + {0x86A3, 6814}, + {0x86A4, 3605}, + {0x86A9, 6815}, + {0x86AA, 6816}, + {0x86AB, 6826}, + {0x86AF, 6820}, + {0x86B0, 6823}, + {0x86B6, 6819}, + {0x86C4, 6821}, + {0x86C6, 6822}, + {0x86C7, 2593}, + {0x86C9, 6824}, + {0x86CB, 3228}, + {0x86CD, 2121}, + {0x86CE, 1725}, + {0x86D4, 6827}, + {0x86D9, 1722}, + {0x86DB, 6832}, + {0x86DE, 6828}, + {0x86DF, 6831}, + {0x86E4, 3691}, + {0x86E9, 6829}, + {0x86EC, 6830}, + {0x86ED, 3799}, + {0x86EE, 3723}, + {0x86EF, 6833}, + {0x86F8, 3194}, + {0x86F9, 6843}, + {0x86FB, 6839}, + {0x86FE, 1672}, + {0x8700, 6837}, + {0x8702, 3957}, + {0x8703, 6838}, + {0x8706, 6835}, + {0x8708, 6836}, + {0x8709, 6841}, + {0x870A, 6844}, + {0x870D, 6842}, + {0x8711, 6840}, + {0x8712, 6834}, + {0x8718, 3251}, + {0x871A, 6851}, + {0x871C, 4051}, + {0x8725, 6849}, + {0x8729, 6850}, + {0x8734, 6845}, + {0x8737, 6847}, + {0x873B, 6848}, + {0x873F, 6846}, + {0x8749, 2983}, + {0x874B, 4348}, + {0x874C, 6855}, + {0x874E, 6856}, + {0x8753, 6862}, + {0x8755, 2829}, + {0x8757, 6858}, + {0x8759, 6861}, + {0x875F, 6853}, + {0x8760, 6852}, + {0x8763, 6863}, + {0x8766, 1657}, + {0x8768, 6859}, + {0x876A, 6864}, + {0x876E, 6860}, + {0x8774, 6857}, + {0x8776, 3308}, + {0x8778, 6854}, + {0x877F, 3643}, + {0x8782, 6868}, + {0x878D, 4162}, + {0x879F, 6867}, + {0x87A2, 6866}, + {0x87AB, 6875}, + {0x87AF, 6869}, + {0x87B3, 6877}, + {0x87BA, 4205}, + {0x87BB, 6880}, + {0x87BD, 6871}, + {0x87C0, 6872}, + {0x87C4, 6876}, + {0x87C6, 6879}, + {0x87C7, 6878}, + {0x87CB, 6870}, + {0x87D0, 6873}, + {0x87D2, 6890}, + {0x87E0, 6883}, + {0x87EF, 6881}, + {0x87F2, 6882}, + {0x87F6, 6887}, + {0x87F7, 6888}, + {0x87F9, 1701}, + {0x87FB, 1913}, + {0x87FE, 6886}, + {0x8805, 6865}, + {0x8807, 11000}, + {0x880D, 6885}, + {0x880E, 6889}, + {0x880F, 6884}, + {0x8811, 6891}, + {0x8815, 6893}, + {0x8816, 6892}, + {0x8821, 6895}, + {0x8822, 6894}, + {0x8823, 6825}, + {0x8827, 6899}, + {0x8831, 6896}, + {0x8836, 6897}, + {0x8839, 6898}, + {0x883B, 6900}, + {0x8840, 2143}, + {0x8842, 6902}, + {0x8844, 6901}, + {0x8846, 2647}, + {0x884C, 2307}, + {0x884D, 5740}, + {0x8852, 6903}, + {0x8853, 2680}, + {0x8857, 1716}, + {0x8859, 6904}, + {0x885B, 1553}, + {0x885D, 2780}, + {0x885E, 6905}, + {0x8861, 2308}, + {0x8862, 6906}, + {0x8863, 1474}, + {0x8868, 3788}, + {0x886B, 6907}, + {0x8870, 2893}, + {0x8872, 6914}, + {0x8875, 6911}, + {0x8877, 3274}, + {0x887D, 6912}, + {0x887E, 6909}, + {0x887F, 2035}, + {0x8881, 6908}, + {0x8882, 6915}, + {0x8888, 2089}, + {0x888B, 3163}, + {0x888D, 6921}, + {0x8892, 6917}, + {0x8896, 3122}, + {0x8897, 6916}, + {0x8899, 6919}, + {0x889E, 6910}, + {0x88A2, 6920}, + {0x88A4, 6922}, + {0x88AB, 3744}, + {0x88AE, 6918}, + {0x88B0, 6923}, + {0x88B1, 6925}, + {0x88B4, 2212}, + {0x88B5, 6913}, + {0x88B7, 1442}, + {0x88BF, 6924}, + {0x88C1, 2408}, + {0x88C2, 4315}, + {0x88C3, 6926}, + {0x88C4, 6927}, + {0x88C5, 3092}, + {0x88CF, 4231}, + {0x88D4, 6928}, + {0x88D5, 4156}, + {0x88D8, 6929}, + {0x88D9, 6930}, + {0x88DC, 3921}, + {0x88DD, 6931}, + {0x88DF, 2381}, + {0x88E1, 4232}, + {0x88E8, 6936}, + {0x88F2, 6937}, + {0x88F3, 2781}, + {0x88F4, 6935}, + {0x88F5, 11001}, + {0x88F8, 4206}, + {0x88F9, 6932}, + {0x88FC, 6934}, + {0x88FD, 2942}, + {0x88FE, 2913}, + {0x8902, 6933}, + {0x8904, 6938}, + {0x8907, 3856}, + {0x890A, 6940}, + {0x890C, 6939}, + {0x8910, 1767}, + {0x8912, 3958}, + {0x8913, 6941}, + {0x891C, 10745}, + {0x891D, 6953}, + {0x891E, 6943}, + {0x8925, 6944}, + {0x892A, 6945}, + {0x892B, 6946}, + {0x8936, 6950}, + {0x8938, 6951}, + {0x893B, 6949}, + {0x8941, 6947}, + {0x8943, 6942}, + {0x8944, 6948}, + {0x894C, 6952}, + {0x894D, 7448}, + {0x8956, 1605}, + {0x895E, 6955}, + {0x895F, 2036}, + {0x8960, 6954}, + {0x8964, 6957}, + {0x8966, 6956}, + {0x896A, 6959}, + {0x896D, 6958}, + {0x896F, 6960}, + {0x8972, 2648}, + {0x8974, 6961}, + {0x8977, 6962}, + {0x897E, 6963}, + {0x897F, 2943}, + {0x8981, 4190}, + {0x8983, 6964}, + {0x8986, 3857}, + {0x8987, 3609}, + {0x8988, 6965}, + {0x898A, 6966}, + {0x898B, 2172}, + {0x898F, 1891}, + {0x8993, 6967}, + {0x8996, 2518}, + {0x8997, 3604}, + {0x8998, 6968}, + {0x899A, 1739}, + {0x89A1, 6969}, + {0x89A6, 6971}, + {0x89A7, 4222}, + {0x89A9, 6970}, + {0x89AA, 2857}, + {0x89AC, 6972}, + {0x89AF, 6973}, + {0x89B2, 6974}, + {0x89B3, 1834}, + {0x89BA, 6975}, + {0x89BD, 6976}, + {0x89BF, 6977}, + {0x89C0, 6978}, + {0x89D2, 1740}, + {0x89DA, 6979}, + {0x89DC, 6980}, + {0x89DD, 6981}, + {0x89E3, 1679}, + {0x89E6, 2827}, + {0x89E7, 6982}, + {0x89F4, 6983}, + {0x89F8, 6984}, + {0x8A00, 2193}, + {0x8A02, 3380}, + {0x8A03, 6985}, + {0x8A08, 2122}, + {0x8A0A, 2873}, + {0x8A0C, 6988}, + {0x8A0E, 3481}, + {0x8A10, 6987}, + {0x8A12, 11002}, + {0x8A13, 2084}, + {0x8A16, 6986}, + {0x8A17, 3188}, + {0x8A18, 1892}, + {0x8A1B, 6989}, + {0x8A1D, 6990}, + {0x8A1F, 2782}, + {0x8A23, 2144}, + {0x8A25, 6991}, + {0x8A2A, 3959}, + {0x8A2D, 2976}, + {0x8A31, 1965}, + {0x8A33, 4126}, + {0x8A34, 3049}, + {0x8A36, 6992}, + {0x8A37, 11003}, + {0x8A3A, 2858}, + {0x8A3B, 3275}, + {0x8A3C, 2783}, + {0x8A41, 6993}, + {0x8A46, 6996}, + {0x8A48, 6997}, + {0x8A50, 2379}, + {0x8A51, 3135}, + {0x8A52, 6995}, + {0x8A54, 2784}, + {0x8A55, 3789}, + {0x8A5B, 6994}, + {0x8A5E, 2519}, + {0x8A60, 1554}, + {0x8A62, 7001}, + {0x8A63, 2123}, + {0x8A66, 2521}, + {0x8A69, 2520}, + {0x8A6B, 4368}, + {0x8A6C, 7000}, + {0x8A6D, 6999}, + {0x8A6E, 3014}, + {0x8A70, 1924}, + {0x8A71, 4358}, + {0x8A72, 1717}, + {0x8A73, 2785}, + {0x8A79, 11004}, + {0x8A7C, 6998}, + {0x8A82, 7003}, + {0x8A84, 7004}, + {0x8A85, 7002}, + {0x8A87, 2217}, + {0x8A89, 4167}, + {0x8A8C, 2522}, + {0x8A8D, 3578}, + {0x8A91, 7007}, + {0x8A93, 2945}, + {0x8A95, 3229}, + {0x8A98, 4157}, + {0x8A9A, 7010}, + {0x8A9E, 2237}, + {0x8AA0, 2944}, + {0x8AA1, 7006}, + {0x8AA3, 7011}, + {0x8AA4, 2238}, + {0x8AA5, 7008}, + {0x8AA6, 7009}, + {0x8AA7, 11005}, + {0x8AA8, 7005}, + {0x8AAC, 2979}, + {0x8AAD, 3518}, + {0x8AB0, 3210}, + {0x8AB2, 1658}, + {0x8AB9, 3745}, + {0x8ABC, 1914}, + {0x8ABE, 11006}, + {0x8ABF, 3309}, + {0x8AC2, 7014}, + {0x8AC4, 7012}, + {0x8AC7, 3239}, + {0x8ACB, 2946}, + {0x8ACC, 1835}, + {0x8ACD, 7013}, + {0x8ACF, 2878}, + {0x8AD2, 4271}, + {0x8AD6, 4355}, + {0x8ADA, 7015}, + {0x8ADB, 7026}, + {0x8ADC, 3310}, + {0x8ADE, 7025}, + {0x8ADF, 11007}, + {0x8AE0, 7022}, + {0x8AE1, 7030}, + {0x8AE2, 7023}, + {0x8AE4, 7019}, + {0x8AE6, 3381}, + {0x8AE7, 7018}, + {0x8AEB, 7016}, + {0x8AED, 4136}, + {0x8AEE, 2523}, + {0x8AF1, 7020}, + {0x8AF3, 7017}, + {0x8AF6, 11009}, + {0x8AF7, 7024}, + {0x8AF8, 2715}, + {0x8AFA, 2194}, + {0x8AFE, 3191}, + {0x8B00, 3984}, + {0x8B01, 1561}, + {0x8B02, 1475}, + {0x8B04, 3482}, + {0x8B07, 7028}, + {0x8B0C, 7027}, + {0x8B0E, 3547}, + {0x8B10, 7032}, + {0x8B14, 7021}, + {0x8B16, 7031}, + {0x8B17, 7033}, + {0x8B19, 2173}, + {0x8B1A, 7029}, + {0x8B1B, 2309}, + {0x8B1D, 2590}, + {0x8B20, 7034}, + {0x8B21, 4191}, + {0x8B26, 7037}, + {0x8B28, 7040}, + {0x8B2B, 7038}, + {0x8B2C, 3780}, + {0x8B33, 7035}, + {0x8B39, 2037}, + {0x8B3E, 7039}, + {0x8B41, 7041}, + {0x8B49, 7045}, + {0x8B4C, 7042}, + {0x8B4E, 7044}, + {0x8B4F, 7043}, + {0x8B53, 11010}, + {0x8B56, 7046}, + {0x8B58, 2554}, + {0x8B5A, 7048}, + {0x8B5B, 7047}, + {0x8B5C, 3831}, + {0x8B5F, 7050}, + {0x8B66, 2124}, + {0x8B6B, 7049}, + {0x8B6C, 7051}, + {0x8B6F, 7052}, + {0x8B70, 1915}, + {0x8B71, 6518}, + {0x8B72, 2814}, + {0x8B74, 7053}, + {0x8B77, 2239}, + {0x8B7D, 7054}, + {0x8B7F, 11011}, + {0x8B80, 7055}, + {0x8B83, 2473}, + {0x8B8A, 5403}, + {0x8B8C, 7056}, + {0x8B8E, 7057}, + {0x8B90, 2649}, + {0x8B92, 7058}, + {0x8B93, 7059}, + {0x8B96, 7060}, + {0x8B99, 7061}, + {0x8B9A, 7062}, + {0x8C37, 3206}, + {0x8C3A, 7063}, + {0x8C3F, 7065}, + {0x8C41, 7064}, + {0x8C46, 3483}, + {0x8C48, 7066}, + {0x8C4A, 3960}, + {0x8C4C, 7067}, + {0x8C4E, 7068}, + {0x8C50, 7069}, + {0x8C55, 7070}, + {0x8C5A, 3535}, + {0x8C61, 2786}, + {0x8C62, 7071}, + {0x8C6A, 2330}, + {0x8C6B, 4431}, + {0x8C6C, 7072}, + {0x8C78, 7073}, + {0x8C79, 3790}, + {0x8C7A, 7074}, + {0x8C7C, 7082}, + {0x8C82, 7075}, + {0x8C85, 7077}, + {0x8C89, 7076}, + {0x8C8A, 7078}, + {0x8C8C, 3985}, + {0x8C8D, 7079}, + {0x8C8E, 7080}, + {0x8C94, 7081}, + {0x8C98, 7083}, + {0x8C9D, 1704}, + {0x8C9E, 3360}, + {0x8CA0, 3832}, + {0x8CA1, 2415}, + {0x8CA2, 2310}, + {0x8CA7, 3806}, + {0x8CA8, 1660}, + {0x8CA9, 3711}, + {0x8CAA, 7086}, + {0x8CAB, 1836}, + {0x8CAC, 2966}, + {0x8CAD, 7085}, + {0x8CAE, 7090}, + {0x8CAF, 3284}, + {0x8CB0, 4108}, + {0x8CB2, 7088}, + {0x8CB3, 7089}, + {0x8CB4, 1893}, + {0x8CB6, 7091}, + {0x8CB7, 3638}, + {0x8CB8, 3164}, + {0x8CBB, 3746}, + {0x8CBC, 3412}, + {0x8CBD, 7087}, + {0x8CBF, 3986}, + {0x8CC0, 1673}, + {0x8CC1, 7093}, + {0x8CC2, 4331}, + {0x8CC3, 3323}, + {0x8CC4, 4360}, + {0x8CC7, 2524}, + {0x8CC8, 7092}, + {0x8CCA, 3118}, + {0x8CCD, 7109}, + {0x8CCE, 3015}, + {0x8CD1, 3565}, + {0x8CD3, 3807}, + {0x8CDA, 7096}, + {0x8CDB, 2474}, + {0x8CDC, 2525}, + {0x8CDE, 2787}, + {0x8CE0, 3640}, + {0x8CE2, 2174}, + {0x8CE3, 7095}, + {0x8CE4, 7094}, + {0x8CE6, 3833}, + {0x8CEA, 2570}, + {0x8CED, 3433}, + {0x8CF0, 11012}, + {0x8CF4, 11013}, + {0x8CFA, 7098}, + {0x8CFB, 7099}, + {0x8CFC, 2311}, + {0x8CFD, 7097}, + {0x8D04, 7100}, + {0x8D05, 7101}, + {0x8D07, 7103}, + {0x8D08, 3104}, + {0x8D0A, 7102}, + {0x8D0B, 1855}, + {0x8D0D, 7105}, + {0x8D0F, 7104}, + {0x8D10, 7106}, + {0x8D12, 11014}, + {0x8D13, 7108}, + {0x8D14, 7110}, + {0x8D16, 7111}, + {0x8D64, 2967}, + {0x8D66, 2584}, + {0x8D67, 7112}, + {0x8D6B, 1741}, + {0x8D6D, 7113}, + {0x8D70, 3093}, + {0x8D71, 7114}, + {0x8D73, 7115}, + {0x8D74, 3834}, + {0x8D76, 11015}, + {0x8D77, 1894}, + {0x8D81, 7116}, + {0x8D85, 3311}, + {0x8D8A, 1562}, + {0x8D99, 7117}, + {0x8DA3, 2618}, + {0x8DA8, 2905}, + {0x8DB3, 3114}, + {0x8DBA, 7120}, + {0x8DBE, 7119}, + {0x8DC2, 7118}, + {0x8DCB, 7126}, + {0x8DCC, 7124}, + {0x8DCF, 7121}, + {0x8DD6, 7123}, + {0x8DDA, 7122}, + {0x8DDB, 7125}, + {0x8DDD, 1966}, + {0x8DDF, 7129}, + {0x8DE1, 2968}, + {0x8DE3, 7130}, + {0x8DE8, 2218}, + {0x8DEA, 7127}, + {0x8DEB, 7128}, + {0x8DEF, 4332}, + {0x8DF3, 3312}, + {0x8DF5, 3016}, + {0x8DFC, 7131}, + {0x8DFF, 7134}, + {0x8E08, 7132}, + {0x8E09, 7133}, + {0x8E0A, 4192}, + {0x8E0F, 3484}, + {0x8E10, 7137}, + {0x8E1D, 7135}, + {0x8E1E, 7136}, + {0x8E1F, 7138}, + {0x8E2A, 7152}, + {0x8E30, 7141}, + {0x8E34, 7142}, + {0x8E35, 7140}, + {0x8E42, 7139}, + {0x8E44, 3382}, + {0x8E47, 7144}, + {0x8E48, 7148}, + {0x8E49, 7145}, + {0x8E4A, 7143}, + {0x8E4C, 7146}, + {0x8E50, 7147}, + {0x8E55, 7154}, + {0x8E59, 7149}, + {0x8E5F, 2969}, + {0x8E60, 7151}, + {0x8E63, 7153}, + {0x8E64, 7150}, + {0x8E72, 7156}, + {0x8E74, 2650}, + {0x8E76, 7155}, + {0x8E7C, 7157}, + {0x8E81, 7158}, + {0x8E84, 7161}, + {0x8E85, 7160}, + {0x8E87, 7159}, + {0x8E8A, 7163}, + {0x8E8B, 7162}, + {0x8E8D, 4127}, + {0x8E91, 7165}, + {0x8E93, 7164}, + {0x8E94, 7166}, + {0x8E99, 7167}, + {0x8EA1, 7169}, + {0x8EAA, 7168}, + {0x8EAB, 2859}, + {0x8EAC, 7170}, + {0x8EAF, 2050}, + {0x8EB0, 7171}, + {0x8EB1, 7173}, + {0x8EBE, 7174}, + {0x8EC5, 7175}, + {0x8EC6, 7172}, + {0x8EC8, 7176}, + {0x8ECA, 2591}, + {0x8ECB, 7177}, + {0x8ECC, 1895}, + {0x8ECD, 2086}, + {0x8ECF, 11017}, + {0x8ED2, 2175}, + {0x8EDB, 7178}, + {0x8EDF, 3557}, + {0x8EE2, 3413}, + {0x8EE3, 7179}, + {0x8EEB, 7182}, + {0x8EF8, 2557}, + {0x8EFB, 7181}, + {0x8EFC, 7180}, + {0x8EFD, 2125}, + {0x8EFE, 7183}, + {0x8F03, 1742}, + {0x8F05, 7185}, + {0x8F09, 2409}, + {0x8F0A, 7184}, + {0x8F0C, 7193}, + {0x8F12, 7187}, + {0x8F13, 7189}, + {0x8F14, 3922}, + {0x8F15, 7186}, + {0x8F19, 7188}, + {0x8F1B, 7192}, + {0x8F1C, 7190}, + {0x8F1D, 1896}, + {0x8F1F, 7191}, + {0x8F26, 7194}, + {0x8F29, 3629}, + {0x8F2A, 4285}, + {0x8F2F, 2651}, + {0x8F33, 7195}, + {0x8F38, 4137}, + {0x8F39, 7197}, + {0x8F3B, 7196}, + {0x8F3E, 7200}, + {0x8F3F, 4168}, + {0x8F42, 7199}, + {0x8F44, 1768}, + {0x8F45, 7198}, + {0x8F46, 7203}, + {0x8F49, 7202}, + {0x8F4C, 7201}, + {0x8F4D, 3401}, + {0x8F4E, 7204}, + {0x8F57, 7205}, + {0x8F5C, 7206}, + {0x8F5F, 2331}, + {0x8F61, 2072}, + {0x8F62, 7207}, + {0x8F63, 7208}, + {0x8F64, 7209}, + {0x8F9B, 2860}, + {0x8F9C, 7210}, + {0x8F9E, 2550}, + {0x8F9F, 7211}, + {0x8FA3, 7212}, + {0x8FA7, 4606}, + {0x8FA8, 4605}, + {0x8FAD, 7213}, + {0x8FAE, 6471}, + {0x8FAF, 7214}, + {0x8FB0, 3199}, + {0x8FB1, 2830}, + {0x8FB2, 3603}, + {0x8FB7, 7215}, + {0x8FBA, 3906}, + {0x8FBB, 3341}, + {0x8FBC, 2349}, + {0x8FBF, 3204}, + {0x8FC2, 1513}, + {0x8FC4, 4035}, + {0x8FC5, 2874}, + {0x8FCE, 2129}, + {0x8FD1, 2038}, + {0x8FD4, 3907}, + {0x8FDA, 7216}, + {0x8FE2, 7218}, + {0x8FE5, 7217}, + {0x8FE6, 1661}, + {0x8FE9, 3563}, + {0x8FEA, 7219}, + {0x8FEB, 3658}, + {0x8FED, 3402}, + {0x8FEF, 7220}, + {0x8FF0, 2681}, + {0x8FF4, 7222}, + {0x8FF7, 4075}, + {0x8FF8, 7237}, + {0x8FF9, 7224}, + {0x8FFA, 7225}, + {0x8FFD, 3330}, + {0x9000, 3165}, + {0x9001, 3094}, + {0x9003, 3485}, + {0x9005, 7223}, + {0x9006, 1932}, + {0x900B, 7232}, + {0x900D, 7229}, + {0x900E, 7242}, + {0x900F, 3486}, + {0x9010, 3259}, + {0x9011, 7226}, + {0x9013, 3383}, + {0x9014, 3434}, + {0x9015, 7227}, + {0x9016, 7231}, + {0x9017, 2883}, + {0x9019, 3642}, + {0x901A, 3333}, + {0x901D, 2947}, + {0x901E, 7230}, + {0x901F, 3115}, + {0x9020, 3105}, + {0x9021, 7228}, + {0x9022, 1418}, + {0x9023, 4325}, + {0x9027, 7233}, + {0x902E, 3166}, + {0x9031, 2652}, + {0x9032, 2861}, + {0x9035, 7235}, + {0x9036, 7234}, + {0x9038, 1488}, + {0x9039, 7236}, + {0x903C, 3774}, + {0x903E, 7244}, + {0x9041, 3536}, + {0x9042, 2894}, + {0x9045, 3252}, + {0x9047, 2061}, + {0x9049, 7243}, + {0x904A, 4158}, + {0x904B, 1534}, + {0x904D, 3908}, + {0x904E, 1662}, + {0x904F, 7238}, + {0x9050, 7239}, + {0x9051, 7240}, + {0x9052, 7241}, + {0x9053, 3504}, + {0x9054, 3198}, + {0x9055, 1476}, + {0x9056, 7245}, + {0x9058, 7246}, + {0x9059, 7804}, + {0x905C, 3130}, + {0x905E, 7247}, + {0x9060, 1586}, + {0x9061, 3051}, + {0x9063, 2176}, + {0x9065, 4193}, + {0x9067, 11020}, + {0x9068, 7248}, + {0x9069, 3395}, + {0x906D, 3095}, + {0x906E, 2592}, + {0x906F, 7249}, + {0x9072, 7252}, + {0x9075, 2700}, + {0x9076, 7250}, + {0x9077, 3018}, + {0x9078, 3017}, + {0x907A, 1477}, + {0x907C, 4272}, + {0x907D, 7254}, + {0x907F, 3747}, + {0x9080, 7256}, + {0x9081, 7255}, + {0x9082, 7253}, + {0x9083, 6271}, + {0x9084, 1837}, + {0x9087, 7221}, + {0x9089, 7258}, + {0x908A, 7257}, + {0x908F, 7259}, + {0x9091, 4159}, + {0x90A3, 3542}, + {0x90A6, 3961}, + {0x90A8, 7260}, + {0x90AA, 2594}, + {0x90AF, 7261}, + {0x90B1, 7262}, + {0x90B5, 7263}, + {0x90B8, 3384}, + {0x90C1, 1483}, + {0x90CA, 2312}, + {0x90CE, 4349}, + {0x90DB, 7267}, + {0x90DE, 11021}, + {0x90E1, 2087}, + {0x90E2, 7264}, + {0x90E4, 7265}, + {0x90E8, 3843}, + {0x90ED, 1743}, + {0x90F5, 4160}, + {0x90F7, 2004}, + {0x90FD, 3435}, + {0x9102, 7268}, + {0x9112, 7269}, + {0x9115, 11023}, + {0x9119, 7270}, + {0x9127, 11024}, + {0x912D, 3385}, + {0x9130, 7272}, + {0x9132, 7271}, + {0x9149, 3528}, + {0x914A, 7273}, + {0x914B, 2653}, + {0x914C, 2601}, + {0x914D, 3630}, + {0x914E, 3276}, + {0x9152, 2619}, + {0x9154, 2895}, + {0x9156, 7274}, + {0x9158, 7275}, + {0x9162, 2880}, + {0x9163, 7276}, + {0x9165, 7277}, + {0x9169, 7278}, + {0x916A, 4214}, + {0x916C, 2654}, + {0x9172, 7280}, + {0x9173, 7279}, + {0x9175, 2313}, + {0x9177, 2338}, + {0x9178, 2475}, + {0x9182, 7283}, + {0x9187, 2701}, + {0x9189, 7282}, + {0x918B, 7281}, + {0x918D, 3174}, + {0x9190, 2240}, + {0x9192, 2948}, + {0x9197, 3681}, + {0x919C, 2656}, + {0x91A2, 7284}, + {0x91A4, 2788}, + {0x91AA, 7287}, + {0x91AB, 7285}, + {0x91AF, 7286}, + {0x91B4, 7289}, + {0x91B5, 7288}, + {0x91B8, 2815}, + {0x91BA, 7290}, + {0x91C0, 7291}, + {0x91C1, 7292}, + {0x91C6, 3713}, + {0x91C7, 2400}, + {0x91C8, 2602}, + {0x91C9, 7293}, + {0x91CB, 7294}, + {0x91CC, 4233}, + {0x91CD, 2668}, + {0x91CE, 4119}, + {0x91CF, 4273}, + {0x91D0, 7295}, + {0x91D1, 2039}, + {0x91D6, 7296}, + {0x91D7, 11026}, + {0x91D8, 3386}, + {0x91DA, 11025}, + {0x91DB, 7299}, + {0x91DC, 1779}, + {0x91DD, 2862}, + {0x91DE, 11027}, + {0x91DF, 7297}, + {0x91E1, 7298}, + {0x91E3, 3353}, + {0x91E4, 11030}, + {0x91E5, 11031}, + {0x91E6, 4000}, + {0x91E7, 2065}, + {0x91ED, 11028}, + {0x91EE, 11029}, + {0x91F5, 7301}, + {0x91F6, 7302}, + {0x91FC, 7300}, + {0x91FF, 7304}, + {0x9206, 11032}, + {0x920A, 11034}, + {0x920D, 3540}, + {0x920E, 1726}, + {0x9210, 11033}, + {0x9211, 7308}, + {0x9214, 7305}, + {0x9215, 7307}, + {0x921E, 7303}, + {0x9229, 7378}, + {0x922C, 7306}, + {0x9234, 4304}, + {0x9237, 2219}, + {0x9239, 11041}, + {0x923A, 11035}, + {0x923C, 11037}, + {0x923F, 7316}, + {0x9240, 11036}, + {0x9244, 3403}, + {0x9245, 7311}, + {0x9248, 7314}, + {0x9249, 7312}, + {0x924B, 7317}, + {0x924E, 11038}, + {0x9250, 7318}, + {0x9251, 11040}, + {0x9257, 7310}, + {0x9259, 11039}, + {0x925A, 7323}, + {0x925B, 1587}, + {0x925E, 7309}, + {0x9262, 3678}, + {0x9264, 7313}, + {0x9266, 2789}, + {0x9267, 11042}, + {0x9271, 2314}, + {0x9277, 11044}, + {0x9278, 11045}, + {0x927E, 3987}, + {0x9280, 2041}, + {0x9283, 2669}, + {0x9285, 3505}, + {0x9288, 10747}, + {0x9291, 3020}, + {0x9293, 7321}, + {0x9295, 7315}, + {0x9296, 7320}, + {0x9298, 4076}, + {0x929A, 3313}, + {0x929B, 7322}, + {0x929C, 7319}, + {0x92A7, 11043}, + {0x92AD, 3019}, + {0x92B7, 7326}, + {0x92B9, 7325}, + {0x92CF, 7324}, + {0x92D0, 11049}, + {0x92D2, 3962}, + {0x92D3, 11053}, + {0x92D5, 11051}, + {0x92D7, 11047}, + {0x92D9, 11048}, + {0x92E0, 11052}, + {0x92E4, 2722}, + {0x92E7, 11046}, + {0x92E9, 7327}, + {0x92EA, 3916}, + {0x92ED, 1555}, + {0x92F2, 3797}, + {0x92F3, 3277}, + {0x92F8, 1967}, + {0x92F9, 10753}, + {0x92FA, 7329}, + {0x92FB, 11056}, + {0x92FC, 2316}, + {0x92FF, 11059}, + {0x9302, 11061}, + {0x9306, 2455}, + {0x930F, 7328}, + {0x9310, 2896}, + {0x9318, 2897}, + {0x9319, 7332}, + {0x931A, 7334}, + {0x931D, 11060}, + {0x931E, 11058}, + {0x9320, 2816}, + {0x9321, 11055}, + {0x9322, 7333}, + {0x9323, 7335}, + {0x9325, 11054}, + {0x9326, 2024}, + {0x9328, 3796}, + {0x932B, 2603}, + {0x932C, 4326}, + {0x932E, 7331}, + {0x932F, 2437}, + {0x9332, 4354}, + {0x9335, 7337}, + {0x933A, 7336}, + {0x933B, 7338}, + {0x9344, 7330}, + {0x9348, 10746}, + {0x934B, 3550}, + {0x934D, 3436}, + {0x9354, 3344}, + {0x9356, 7343}, + {0x9357, 11063}, + {0x935B, 3230}, + {0x935C, 7339}, + {0x9360, 7340}, + {0x936C, 2080}, + {0x936E, 7342}, + {0x9370, 11062}, + {0x9375, 2177}, + {0x937C, 7341}, + {0x937E, 2790}, + {0x938C, 1780}, + {0x9394, 7347}, + {0x9396, 2380}, + {0x9397, 3096}, + {0x939A, 3331}, + {0x93A4, 11064}, + {0x93A7, 1718}, + {0x93AC, 7345}, + {0x93AD, 7346}, + {0x93AE, 3324}, + {0x93B0, 7344}, + {0x93B9, 7348}, + {0x93C3, 7354}, + {0x93C6, 11065}, + {0x93C8, 7357}, + {0x93D0, 7356}, + {0x93D1, 3396}, + {0x93D6, 7349}, + {0x93D7, 7350}, + {0x93D8, 7353}, + {0x93DD, 7355}, + {0x93DE, 11066}, + {0x93E1, 2005}, + {0x93E4, 7358}, + {0x93E5, 7352}, + {0x93E8, 7351}, + {0x93F8, 11067}, + {0x9403, 7362}, + {0x9407, 7363}, + {0x9410, 7364}, + {0x9413, 7361}, + {0x9414, 7360}, + {0x9418, 2791}, + {0x9419, 3487}, + {0x941A, 7359}, + {0x9421, 7368}, + {0x942B, 7366}, + {0x9431, 11068}, + {0x9435, 7367}, + {0x9436, 7365}, + {0x9438, 3189}, + {0x943A, 7369}, + {0x9441, 7370}, + {0x9444, 7372}, + {0x9445, 11069}, + {0x9448, 11070}, + {0x9451, 1838}, + {0x9452, 7371}, + {0x9453, 4131}, + {0x945A, 7383}, + {0x945B, 7373}, + {0x945E, 7376}, + {0x9460, 7374}, + {0x9462, 7375}, + {0x946A, 7377}, + {0x9470, 7379}, + {0x9475, 7380}, + {0x9477, 7381}, + {0x947C, 7384}, + {0x947D, 7382}, + {0x947E, 7385}, + {0x947F, 7387}, + {0x9481, 7386}, + {0x9577, 3314}, + {0x9580, 4112}, + {0x9582, 7388}, + {0x9583, 3021}, + {0x9587, 7389}, + {0x9589, 3889}, + {0x958A, 7390}, + {0x958B, 1702}, + {0x958F, 1531}, + {0x9591, 1840}, + {0x9592, 11071}, + {0x9593, 1839}, + {0x9594, 7391}, + {0x9596, 7392}, + {0x9598, 7393}, + {0x9599, 7394}, + {0x95A0, 7395}, + {0x95A2, 1841}, + {0x95A3, 1744}, + {0x95A4, 2317}, + {0x95A5, 3687}, + {0x95A7, 7397}, + {0x95A8, 7396}, + {0x95AD, 7398}, + {0x95B2, 1563}, + {0x95B9, 7401}, + {0x95BB, 7400}, + {0x95BC, 7399}, + {0x95BE, 7402}, + {0x95C3, 7405}, + {0x95C7, 1448}, + {0x95CA, 7403}, + {0x95CC, 7407}, + {0x95CD, 7406}, + {0x95D4, 7409}, + {0x95D5, 7408}, + {0x95D6, 7410}, + {0x95D8, 3491}, + {0x95DC, 7411}, + {0x95E1, 7412}, + {0x95E2, 7414}, + {0x95E5, 7413}, + {0x961C, 3835}, + {0x9621, 7415}, + {0x9628, 7416}, + {0x962A, 2418}, + {0x962E, 7417}, + {0x962F, 7418}, + {0x9632, 3988}, + {0x963B, 3050}, + {0x963F, 1413}, + {0x9640, 3144}, + {0x9642, 7419}, + {0x9644, 3836}, + {0x964B, 7422}, + {0x964C, 7420}, + {0x964D, 2318}, + {0x964F, 7421}, + {0x9650, 2195}, + {0x965B, 3890}, + {0x965C, 7424}, + {0x965D, 7426}, + {0x965E, 7425}, + {0x965F, 7427}, + {0x9662, 1504}, + {0x9663, 2875}, + {0x9664, 2723}, + {0x9665, 1842}, + {0x9666, 7428}, + {0x966A, 3641}, + {0x966C, 7430}, + {0x9670, 1505}, + {0x9672, 7429}, + {0x9673, 3325}, + {0x9675, 4274}, + {0x9676, 3488}, + {0x9677, 7423}, + {0x9678, 4235}, + {0x967A, 2178}, + {0x967D, 4194}, + {0x9685, 2062}, + {0x9686, 4249}, + {0x9688, 2075}, + {0x968A, 3167}, + {0x968B, 6580}, + {0x968D, 7431}, + {0x968E, 1703}, + {0x968F, 2898}, + {0x9694, 1745}, + {0x9695, 7433}, + {0x9697, 7434}, + {0x9698, 7432}, + {0x9699, 2135}, + {0x969B, 2410}, + {0x969C, 2792}, + {0x969D, 11074}, + {0x96A0, 1506}, + {0x96A3, 4286}, + {0x96A7, 7436}, + {0x96A8, 7251}, + {0x96AA, 7435}, + {0x96AF, 11075}, + {0x96B0, 7439}, + {0x96B1, 7437}, + {0x96B2, 7438}, + {0x96B4, 7440}, + {0x96B6, 7441}, + {0x96B7, 4305}, + {0x96B8, 7442}, + {0x96B9, 7443}, + {0x96BB, 2954}, + {0x96BC, 3692}, + {0x96C0, 2912}, + {0x96C1, 1856}, + {0x96C4, 4161}, + {0x96C5, 1674}, + {0x96C6, 2655}, + {0x96C7, 2220}, + {0x96C9, 7446}, + {0x96CB, 7445}, + {0x96CC, 2526}, + {0x96CD, 7447}, + {0x96CE, 7444}, + {0x96D1, 2451}, + {0x96D5, 7451}, + {0x96D6, 6874}, + {0x96D9, 4659}, + {0x96DB, 2906}, + {0x96DC, 7449}, + {0x96E2, 4234}, + {0x96E3, 3558}, + {0x96E8, 1514}, + {0x96EA, 2980}, + {0x96EB, 2559}, + {0x96F0, 3876}, + {0x96F2, 1535}, + {0x96F6, 4306}, + {0x96F7, 4210}, + {0x96F9, 7452}, + {0x96FB, 3420}, + {0x9700, 2628}, + {0x9704, 7453}, + {0x9706, 7454}, + {0x9707, 2863}, + {0x9708, 7455}, + {0x970A, 4307}, + {0x970D, 7450}, + {0x970E, 7457}, + {0x970F, 7459}, + {0x9711, 7458}, + {0x9713, 7456}, + {0x9716, 7460}, + {0x9719, 7461}, + {0x971C, 3097}, + {0x971E, 1663}, + {0x9724, 7462}, + {0x9727, 4065}, + {0x972A, 7463}, + {0x9730, 7464}, + {0x9732, 4333}, + {0x9733, 11076}, + {0x9738, 5468}, + {0x9739, 7465}, + {0x973B, 11077}, + {0x973D, 7466}, + {0x973E, 7467}, + {0x9742, 7471}, + {0x9743, 11078}, + {0x9744, 7468}, + {0x9746, 7469}, + {0x9748, 7470}, + {0x9749, 7472}, + {0x974D, 11079}, + {0x974F, 11080}, + {0x9751, 11081}, + {0x9752, 2949}, + {0x9755, 11082}, + {0x9756, 4128}, + {0x9759, 2950}, + {0x975C, 7473}, + {0x975E, 3748}, + {0x9760, 7474}, + {0x9761, 7758}, + {0x9762, 4085}, + {0x9764, 7475}, + {0x9766, 7476}, + {0x9768, 7477}, + {0x9769, 1746}, + {0x976B, 7479}, + {0x976D, 2876}, + {0x9771, 7480}, + {0x9774, 2071}, + {0x9779, 7481}, + {0x977A, 7485}, + {0x977C, 7483}, + {0x9781, 7484}, + {0x9784, 1774}, + {0x9785, 7482}, + {0x9786, 7486}, + {0x978B, 7487}, + {0x978D, 1449}, + {0x978F, 7488}, + {0x9790, 7489}, + {0x9798, 2793}, + {0x979C, 7490}, + {0x97A0, 1918}, + {0x97A3, 7493}, + {0x97A6, 7492}, + {0x97A8, 7491}, + {0x97AB, 7036}, + {0x97AD, 3913}, + {0x97B3, 7494}, + {0x97B4, 7495}, + {0x97C3, 7496}, + {0x97C6, 7497}, + {0x97C8, 7498}, + {0x97CB, 7499}, + {0x97D3, 1843}, + {0x97DC, 7500}, + {0x97ED, 7501}, + {0x97EE, 3574}, + {0x97F2, 7503}, + {0x97F3, 1624}, + {0x97F5, 7506}, + {0x97F6, 7505}, + {0x97FB, 1507}, + {0x97FF, 2006}, + {0x9801, 3892}, + {0x9802, 3315}, + {0x9803, 2351}, + {0x9805, 2319}, + {0x9806, 2702}, + {0x9808, 2879}, + {0x980C, 7508}, + {0x980F, 7507}, + {0x9810, 4169}, + {0x9811, 1857}, + {0x9812, 3715}, + {0x9813, 3537}, + {0x9817, 2911}, + {0x9818, 4275}, + {0x981A, 2126}, + {0x9821, 7511}, + {0x9824, 7510}, + {0x982C, 3990}, + {0x982D, 3489}, + {0x9834, 1551}, + {0x9837, 7512}, + {0x9838, 7509}, + {0x983B, 3808}, + {0x983C, 4209}, + {0x983D, 7513}, + {0x9846, 7514}, + {0x984B, 7516}, + {0x984C, 3175}, + {0x984D, 1750}, + {0x984E, 1751}, + {0x984F, 7515}, + {0x9854, 1858}, + {0x9855, 2179}, + {0x9857, 11083}, + {0x9858, 1859}, + {0x985B, 3414}, + {0x985E, 4293}, + {0x9865, 11084}, + {0x9867, 2221}, + {0x986B, 7517}, + {0x986F, 7518}, + {0x9870, 7519}, + {0x9871, 7520}, + {0x9873, 7522}, + {0x9874, 7521}, + {0x98A8, 3846}, + {0x98AA, 7523}, + {0x98AF, 7524}, + {0x98B1, 7525}, + {0x98B6, 7526}, + {0x98C3, 7528}, + {0x98C4, 7527}, + {0x98C6, 7529}, + {0x98DB, 3749}, + {0x98DC, 6529}, + {0x98DF, 2828}, + {0x98E2, 1897}, + {0x98E9, 7530}, + {0x98EB, 7531}, + {0x98ED, 4617}, + {0x98EE, 5666}, + {0x98EF, 3716}, + {0x98F2, 1500}, + {0x98F4, 1436}, + {0x98FC, 2527}, + {0x98FD, 3963}, + {0x98FE, 2819}, + {0x9903, 7532}, + {0x9905, 4104}, + {0x9909, 7533}, + {0x990A, 4195}, + {0x990C, 1537}, + {0x9910, 2476}, + {0x9912, 7534}, + {0x9913, 1675}, + {0x9914, 7535}, + {0x9918, 7536}, + {0x991D, 7538}, + {0x991E, 7539}, + {0x9920, 7541}, + {0x9921, 7537}, + {0x9924, 7540}, + {0x9927, 11087}, + {0x9928, 1844}, + {0x992C, 7542}, + {0x992E, 7543}, + {0x993D, 7544}, + {0x993E, 7545}, + {0x9942, 7546}, + {0x9945, 7548}, + {0x9949, 7547}, + {0x994B, 7550}, + {0x994C, 7553}, + {0x9950, 7549}, + {0x9951, 7551}, + {0x9952, 7552}, + {0x9955, 7554}, + {0x9957, 2007}, + {0x9996, 2620}, + {0x9997, 7555}, + {0x9998, 7556}, + {0x9999, 2320}, + {0x999E, 11089}, + {0x99A5, 7557}, + {0x99A8, 1721}, + {0x99AC, 3618}, + {0x99AD, 7558}, + {0x99AE, 7559}, + {0x99B3, 3253}, + {0x99B4, 3552}, + {0x99BC, 7560}, + {0x99C1, 3664}, + {0x99C4, 3145}, + {0x99C5, 1559}, + {0x99C6, 2051}, + {0x99C8, 2052}, + {0x99D0, 3278}, + {0x99D1, 7565}, + {0x99D2, 2053}, + {0x99D5, 1676}, + {0x99D8, 7564}, + {0x99DB, 7562}, + {0x99DD, 7563}, + {0x99DF, 7561}, + {0x99E2, 7575}, + {0x99ED, 7566}, + {0x99EE, 7567}, + {0x99F1, 7568}, + {0x99F2, 7569}, + {0x99F8, 7571}, + {0x99FB, 7570}, + {0x99FF, 2688}, + {0x9A01, 7572}, + {0x9A05, 7574}, + {0x9A0E, 1898}, + {0x9A0F, 7573}, + {0x9A12, 3098}, + {0x9A13, 2180}, + {0x9A19, 7576}, + {0x9A28, 3146}, + {0x9A2B, 7577}, + {0x9A30, 3490}, + {0x9A37, 7578}, + {0x9A3E, 7583}, + {0x9A40, 7581}, + {0x9A42, 7580}, + {0x9A43, 7582}, + {0x9A45, 7579}, + {0x9A4D, 7585}, + {0x9A4E, 11090}, + {0x9A55, 7584}, + {0x9A57, 7587}, + {0x9A5A, 2008}, + {0x9A5B, 7586}, + {0x9A5F, 7588}, + {0x9A62, 7589}, + {0x9A64, 7591}, + {0x9A65, 7590}, + {0x9A69, 7592}, + {0x9A6A, 7594}, + {0x9A6B, 7593}, + {0x9AA8, 2347}, + {0x9AAD, 7595}, + {0x9AB0, 7596}, + {0x9AB8, 1719}, + {0x9ABC, 7597}, + {0x9AC0, 7598}, + {0x9AC4, 2900}, + {0x9ACF, 7599}, + {0x9AD1, 7600}, + {0x9AD3, 7601}, + {0x9AD4, 7602}, + {0x9AD8, 2321}, + {0x9AD9, 11091}, + {0x9ADC, 11092}, + {0x9ADE, 7603}, + {0x9ADF, 7604}, + {0x9AE2, 7605}, + {0x9AE3, 7606}, + {0x9AE6, 7607}, + {0x9AEA, 3682}, + {0x9AEB, 7609}, + {0x9AED, 3765}, + {0x9AEE, 7610}, + {0x9AEF, 7608}, + {0x9AF1, 7612}, + {0x9AF4, 7611}, + {0x9AF7, 7613}, + {0x9AFB, 7614}, + {0x9B06, 7615}, + {0x9B18, 7616}, + {0x9B1A, 7617}, + {0x9B1F, 7618}, + {0x9B22, 7619}, + {0x9B23, 7620}, + {0x9B25, 7621}, + {0x9B27, 7622}, + {0x9B28, 7623}, + {0x9B29, 7624}, + {0x9B2A, 7625}, + {0x9B2E, 7626}, + {0x9B2F, 7627}, + {0x9B31, 5660}, + {0x9B32, 7628}, + {0x9B3B, 6385}, + {0x9B3C, 1899}, + {0x9B41, 1692}, + {0x9B42, 2367}, + {0x9B43, 7630}, + {0x9B44, 7629}, + {0x9B45, 4046}, + {0x9B4D, 7632}, + {0x9B4E, 7633}, + {0x9B4F, 7631}, + {0x9B51, 7634}, + {0x9B54, 4013}, + {0x9B58, 7635}, + {0x9B5A, 1970}, + {0x9B6F, 4328}, + {0x9B72, 11094}, + {0x9B74, 7636}, + {0x9B75, 11093}, + {0x9B83, 7638}, + {0x9B8E, 1439}, + {0x9B8F, 11095}, + {0x9B91, 7639}, + {0x9B92, 3864}, + {0x9B93, 7637}, + {0x9B96, 7640}, + {0x9B97, 7641}, + {0x9B9F, 7642}, + {0x9BA0, 7643}, + {0x9BA8, 7644}, + {0x9BAA, 4025}, + {0x9BAB, 2456}, + {0x9BAD, 2439}, + {0x9BAE, 3022}, + {0x9BB1, 11096}, + {0x9BB4, 7645}, + {0x9BB9, 7648}, + {0x9BBB, 11097}, + {0x9BC0, 7646}, + {0x9BC6, 7649}, + {0x9BC9, 2242}, + {0x9BCA, 7647}, + {0x9BCF, 7650}, + {0x9BD1, 7651}, + {0x9BD2, 7652}, + {0x9BD4, 7656}, + {0x9BD6, 2453}, + {0x9BDB, 3169}, + {0x9BE1, 7657}, + {0x9BE2, 7654}, + {0x9BE3, 7653}, + {0x9BE4, 7655}, + {0x9BE8, 2130}, + {0x9BF0, 7661}, + {0x9BF1, 7660}, + {0x9BF2, 7659}, + {0x9BF5, 1428}, + {0x9C00, 11098}, + {0x9C04, 7671}, + {0x9C06, 7667}, + {0x9C08, 7668}, + {0x9C09, 7664}, + {0x9C0A, 7670}, + {0x9C0C, 7666}, + {0x9C0D, 1757}, + {0x9C10, 4367}, + {0x9C12, 7669}, + {0x9C13, 7665}, + {0x9C14, 7663}, + {0x9C15, 7662}, + {0x9C1B, 7673}, + {0x9C21, 7676}, + {0x9C24, 7675}, + {0x9C25, 7674}, + {0x9C2D, 3800}, + {0x9C2E, 7672}, + {0x9C2F, 1492}, + {0x9C30, 7677}, + {0x9C32, 7679}, + {0x9C39, 1770}, + {0x9C3A, 7658}, + {0x9C3B, 1526}, + {0x9C3E, 7681}, + {0x9C46, 7680}, + {0x9C47, 7678}, + {0x9C48, 3208}, + {0x9C52, 4027}, + {0x9C57, 4287}, + {0x9C5A, 7682}, + {0x9C60, 7683}, + {0x9C67, 7684}, + {0x9C76, 7685}, + {0x9C78, 7686}, + {0x9CE5, 3316}, + {0x9CE7, 7687}, + {0x9CE9, 3688}, + {0x9CEB, 7692}, + {0x9CEC, 7688}, + {0x9CF0, 7689}, + {0x9CF3, 3964}, + {0x9CF4, 4077}, + {0x9CF6, 3525}, + {0x9D03, 7693}, + {0x9D06, 7694}, + {0x9D07, 3507}, + {0x9D08, 7691}, + {0x9D09, 7690}, + {0x9D0E, 1607}, + {0x9D12, 7702}, + {0x9D15, 7701}, + {0x9D1B, 1588}, + {0x9D1F, 7699}, + {0x9D23, 7698}, + {0x9D26, 7696}, + {0x9D28, 1782}, + {0x9D2A, 7695}, + {0x9D2B, 2555}, + {0x9D2C, 1606}, + {0x9D3B, 2322}, + {0x9D3E, 7705}, + {0x9D3F, 7704}, + {0x9D41, 7703}, + {0x9D44, 7700}, + {0x9D46, 7706}, + {0x9D48, 7707}, + {0x9D50, 7712}, + {0x9D51, 7711}, + {0x9D59, 7713}, + {0x9D5C, 1516}, + {0x9D5D, 7708}, + {0x9D5E, 7709}, + {0x9D60, 2339}, + {0x9D61, 4066}, + {0x9D64, 7710}, + {0x9D6B, 11100}, + {0x9D6C, 3965}, + {0x9D6F, 7718}, + {0x9D70, 11099}, + {0x9D72, 7714}, + {0x9D7A, 7719}, + {0x9D87, 7716}, + {0x9D89, 7715}, + {0x9D8F, 2127}, + {0x9D9A, 7720}, + {0x9DA4, 7721}, + {0x9DA9, 7722}, + {0x9DAB, 7717}, + {0x9DAF, 7697}, + {0x9DB2, 7723}, + {0x9DB4, 3354}, + {0x9DB8, 7727}, + {0x9DBA, 7728}, + {0x9DBB, 7726}, + {0x9DC1, 7725}, + {0x9DC2, 7731}, + {0x9DC4, 7724}, + {0x9DC6, 7729}, + {0x9DCF, 7730}, + {0x9DD3, 7733}, + {0x9DD9, 7732}, + {0x9DE6, 7735}, + {0x9DED, 7736}, + {0x9DEF, 7737}, + {0x9DF2, 4364}, + {0x9DF8, 7734}, + {0x9DF9, 3176}, + {0x9DFA, 2426}, + {0x9DFD, 7738}, + {0x9E19, 11102}, + {0x9E1A, 7739}, + {0x9E1B, 7740}, + {0x9E1E, 7741}, + {0x9E75, 7742}, + {0x9E78, 2181}, + {0x9E79, 7743}, + {0x9E7D, 7744}, + {0x9E7F, 2552}, + {0x9E81, 7745}, + {0x9E88, 7746}, + {0x9E8B, 7747}, + {0x9E8C, 7748}, + {0x9E91, 7751}, + {0x9E92, 7749}, + {0x9E93, 4351}, + {0x9E95, 7750}, + {0x9E97, 4308}, + {0x9E9D, 7752}, + {0x9E9F, 4288}, + {0x9EA5, 7753}, + {0x9EA6, 3665}, + {0x9EA9, 7754}, + {0x9EAA, 7756}, + {0x9EAD, 7757}, + {0x9EB8, 7755}, + {0x9EB9, 2332}, + {0x9EBA, 4086}, + {0x9EBB, 4014}, + {0x9EBC, 5068}, + {0x9EBE, 5703}, + {0x9EBF, 4038}, + {0x9EC4, 1608}, + {0x9ECC, 7759}, + {0x9ECD, 1927}, + {0x9ECE, 7760}, + {0x9ECF, 7761}, + {0x9ED0, 7762}, + {0x9ED1, 11103}, + {0x9ED2, 2340}, + {0x9ED4, 7763}, + {0x9ED8, 5973}, + {0x9ED9, 4100}, + {0x9EDB, 3168}, + {0x9EDC, 7764}, + {0x9EDD, 7766}, + {0x9EDE, 7765}, + {0x9EE0, 7767}, + {0x9EE5, 7768}, + {0x9EE8, 7769}, + {0x9EEF, 7770}, + {0x9EF4, 7771}, + {0x9EF6, 7772}, + {0x9EF7, 7773}, + {0x9EF9, 7774}, + {0x9EFB, 7775}, + {0x9EFC, 7776}, + {0x9EFD, 7777}, + {0x9F07, 7778}, + {0x9F08, 7779}, + {0x9F0E, 3387}, + {0x9F13, 2222}, + {0x9F15, 7781}, + {0x9F20, 3052}, + {0x9F21, 7782}, + {0x9F2C, 7783}, + {0x9F3B, 3760}, + {0x9F3E, 7784}, + {0x9F4A, 7785}, + {0x9F4B, 6226}, + {0x9F4E, 7107}, + {0x9F4F, 7502}, + {0x9F52, 7786}, + {0x9F54, 7787}, + {0x9F5F, 7789}, + {0x9F60, 7790}, + {0x9F61, 7791}, + {0x9F62, 4309}, + {0x9F63, 7788}, + {0x9F66, 7792}, + {0x9F67, 7793}, + {0x9F6A, 7795}, + {0x9F6C, 7794}, + {0x9F72, 7797}, + {0x9F76, 7798}, + {0x9F77, 7796}, + {0x9F8D, 4251}, + {0x9F95, 7799}, + {0x9F9C, 7800}, + {0x9F9D, 6255}, + {0x9FA0, 7801}, + {0xF929, 10875}, + {0xF9DC, 11072}, + {0xFA0E, 10795}, + {0xFA0F, 10806}, + {0xFA10, 10807}, + {0xFA11, 10828}, + {0xFA12, 10867}, + {0xFA13, 10883}, + {0xFA14, 10885}, + {0xFA15, 10928}, + {0xFA16, 10934}, + {0xFA17, 10957}, + {0xFA18, 10965}, + {0xFA19, 10966}, + {0xFA1A, 10967}, + {0xFA1B, 10969}, + {0xFA1C, 10973}, + {0xFA1D, 10976}, + {0xFA1E, 10985}, + {0xFA1F, 10996}, + {0xFA20, 10998}, + {0xFA21, 10999}, + {0xFA22, 11008}, + {0xFA23, 11016}, + {0xFA24, 11018}, + {0xFA25, 11019}, + {0xFA26, 11022}, + {0xFA27, 11050}, + {0xFA28, 11057}, + {0xFA29, 11073}, + {0xFA2A, 11085}, + {0xFA2B, 11086}, + {0xFA2C, 11088}, + {0xFA2D, 11101}, + {0xFF01, 9}, + {0xFF02, 10739}, + {0xFF03, 83}, + {0xFF04, 79}, + {0xFF05, 82}, + {0xFF06, 84}, + {0xFF07, 10738}, + {0xFF08, 41}, + {0xFF09, 42}, + {0xFF0A, 85}, + {0xFF0B, 59}, + {0xFF0C, 3}, + {0xFF0D, 60}, + {0xFF0E, 4}, + {0xFF0F, 30}, + {0xFF10, 203}, + {0xFF11, 204}, + {0xFF12, 205}, + {0xFF13, 206}, + {0xFF14, 207}, + {0xFF15, 208}, + {0xFF16, 209}, + {0xFF17, 210}, + {0xFF18, 211}, + {0xFF19, 212}, + {0xFF1A, 6}, + {0xFF1B, 7}, + {0xFF1C, 66}, + {0xFF1D, 64}, + {0xFF1E, 67}, + {0xFF1F, 8}, + {0xFF20, 86}, + {0xFF21, 220}, + {0xFF22, 221}, + {0xFF23, 222}, + {0xFF24, 223}, + {0xFF25, 224}, + {0xFF26, 225}, + {0xFF27, 226}, + {0xFF28, 227}, + {0xFF29, 228}, + {0xFF2A, 229}, + {0xFF2B, 230}, + {0xFF2C, 231}, + {0xFF2D, 232}, + {0xFF2E, 233}, + {0xFF2F, 234}, + {0xFF30, 235}, + {0xFF31, 236}, + {0xFF32, 237}, + {0xFF33, 238}, + {0xFF34, 239}, + {0xFF35, 240}, + {0xFF36, 241}, + {0xFF37, 242}, + {0xFF38, 243}, + {0xFF39, 244}, + {0xFF3A, 245}, + {0xFF3B, 45}, + {0xFF3C, 31}, + {0xFF3D, 46}, + {0xFF3E, 15}, + {0xFF3F, 17}, + {0xFF40, 13}, + {0xFF41, 252}, + {0xFF42, 253}, + {0xFF43, 254}, + {0xFF44, 255}, + {0xFF45, 256}, + {0xFF46, 257}, + {0xFF47, 258}, + {0xFF48, 259}, + {0xFF49, 260}, + {0xFF4A, 261}, + {0xFF4B, 262}, + {0xFF4C, 263}, + {0xFF4D, 264}, + {0xFF4E, 265}, + {0xFF4F, 266}, + {0xFF50, 267}, + {0xFF51, 268}, + {0xFF52, 269}, + {0xFF53, 270}, + {0xFF54, 271}, + {0xFF55, 272}, + {0xFF56, 273}, + {0xFF57, 274}, + {0xFF58, 275}, + {0xFF59, 276}, + {0xFF5A, 277}, + {0xFF5B, 47}, + {0xFF5C, 34}, + {0xFF5D, 48}, + {0xFF5E, 32}, + {0xFFE0, 80}, + {0xFFE1, 81}, + {0xFFE2, 137}, + {0xFFE3, 16}, + {0xFFE4, 10737}, + {0xFFE5, 78} +} \ No newline at end of file diff --git a/src/com/jpexs/decompiler/flash/gui/FontPanel.java b/src/com/jpexs/decompiler/flash/gui/FontPanel.java index 1e3bb8ccf..6785768f9 100644 --- a/src/com/jpexs/decompiler/flash/gui/FontPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/FontPanel.java @@ -25,6 +25,7 @@ import com.jpexs.decompiler.flash.tags.base.FontTag; import com.jpexs.decompiler.flash.tags.base.TextTag; import com.jpexs.decompiler.flash.treeitems.TreeItem; import com.jpexs.helpers.Helper; +import com.jpexs.helpers.utf8.Utf8Helper; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.FlowLayout; @@ -166,6 +167,12 @@ public class FontPanel extends JPanel { if (font.getSize() != 1024) { //Do not resize if not required so we can have single instance of custom fonts font = font.deriveFont(f.getFontStyle(), 1024); } + if (Utf8Helper.charToCodePoint(c, ft.getCodesCharset()) == -1) { + String msg = translate("error.charset.nocharacter").replace("%char%", "" + c); + Logger.getLogger(FontPanel.class.getName()).log(Level.SEVERE, msg); + ViewMessages.showMessageDialog(FontPanel.this, msg, translate("error"), JOptionPane.ERROR_MESSAGE); + return; + } if (!font.canDisplay(c)) { String msg = translate("error.font.nocharacter").replace("%char%", "" + c); Logger.getLogger(FontPanel.class.getName()).log(Level.SEVERE, msg); diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties index dd3530f14..1ad923af0 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties @@ -949,4 +949,6 @@ contextmenu.moveTagWithDependencies = Move tag with dependencies to contextmenu.moveUp = Move up contextmenu.moveDown = Move down contextmenu.changeCharset = Change charset (Current: %charset%) -contextmenu.more = More... \ No newline at end of file +contextmenu.more = More... + +error.charset.nocharacter = Selected charset does not contain character "%char%". \ No newline at end of file diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties index 763351425..041c71abe 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties @@ -921,4 +921,6 @@ contextmenu.moveTagWithDependencies = P\u0159esunout tag se z\u00e1vislostmi do contextmenu.moveUp = Posunout nahoru contextmenu.moveDown = Posunout dol\u016f contextmenu.changeCharset = Zm\u011bnit znakovou sadu (Nyn\u011bj\u0161\u00ed: %charset%) -contextmenu.more = V\u00edce... \ No newline at end of file +contextmenu.more = V\u00edce... + +error.charset.nocharacter = Vybran\u00e1 znakov\u00e1 sada neobsahuje znak "%char%". \ No newline at end of file diff --git a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java index 4be12c2fb..6d4e2950f 100644 --- a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java +++ b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java @@ -83,6 +83,7 @@ import com.jpexs.decompiler.graph.CompilationException; import com.jpexs.decompiler.graph.DottedChain; import com.jpexs.helpers.Helper; import com.jpexs.helpers.Reference; +import com.jpexs.helpers.utf8.Utf8Helper; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; @@ -231,7 +232,7 @@ public class TagTreeContextMenu extends JPopupMenu { changeCharsetMenu = new JMenu(); JMenu currentCharsetMenu = changeCharsetMenu; int charsetCnt = 0; - for (String charsetStr : Charset.availableCharsets().keySet()) { + for (String charsetStr : Utf8Helper.allowedCharsets) { if (charsetCnt == 30) { JMenu moreMenu = new JMenu(mainPanel.translate("contextmenu.more")); currentCharsetMenu.add(moreMenu);