blob: a8fe26c4136ffbd7070c7c8efc853369f0c7947e [file] [log] [blame]
/* ia64-dis.c -- Disassemble ia64 instructions
Copyright 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of GDB, GAS, and the GNU binutils.
GDB, GAS, and the GNU binutils are free software; you can redistribute
them and/or modify them under the terms of the GNU General Public
License as published by the Free Software Foundation; either version
2, or (at your option) any later version.
GDB, GAS, and the GNU binutils are distributed in the hope that they
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this file; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <string.h>
#include "disas/bfd.h"
/* ia64.h -- Header file for ia64 opcode table
Copyright (C) 1998, 1999, 2000, 2002, 2005, 2006
Free Software Foundation, Inc.
Contributed by David Mosberger-Tang <davidm@hpl.hp.com> */
#include <sys/types.h>
typedef uint64_t ia64_insn;
enum ia64_insn_type
{
IA64_TYPE_NIL = 0, /* illegal type */
IA64_TYPE_A, /* integer alu (I- or M-unit) */
IA64_TYPE_I, /* non-alu integer (I-unit) */
IA64_TYPE_M, /* memory (M-unit) */
IA64_TYPE_B, /* branch (B-unit) */
IA64_TYPE_F, /* floating-point (F-unit) */
IA64_TYPE_X, /* long encoding (X-unit) */
IA64_TYPE_DYN, /* Dynamic opcode */
IA64_NUM_TYPES
};
enum ia64_unit
{
IA64_UNIT_NIL = 0, /* illegal unit */
IA64_UNIT_I, /* integer unit */
IA64_UNIT_M, /* memory unit */
IA64_UNIT_B, /* branching unit */
IA64_UNIT_F, /* floating-point unit */
IA64_UNIT_L, /* long "unit" */
IA64_UNIT_X, /* may be integer or branch unit */
IA64_NUM_UNITS
};
/* Changes to this enumeration must be propagated to the operand table in
bfd/cpu-ia64-opc.c
*/
enum ia64_opnd
{
IA64_OPND_NIL, /* no operand---MUST BE FIRST!*/
/* constants */
IA64_OPND_AR_CSD, /* application register csd (ar.csd) */
IA64_OPND_AR_CCV, /* application register ccv (ar.ccv) */
IA64_OPND_AR_PFS, /* application register pfs (ar.pfs) */
IA64_OPND_C1, /* the constant 1 */
IA64_OPND_C8, /* the constant 8 */
IA64_OPND_C16, /* the constant 16 */
IA64_OPND_GR0, /* gr0 */
IA64_OPND_IP, /* instruction pointer (ip) */
IA64_OPND_PR, /* predicate register (pr) */
IA64_OPND_PR_ROT, /* rotating predicate register (pr.rot) */
IA64_OPND_PSR, /* processor status register (psr) */
IA64_OPND_PSR_L, /* processor status register L (psr.l) */
IA64_OPND_PSR_UM, /* processor status register UM (psr.um) */
/* register operands: */
IA64_OPND_AR3, /* third application register # (bits 20-26) */
IA64_OPND_B1, /* branch register # (bits 6-8) */
IA64_OPND_B2, /* branch register # (bits 13-15) */
IA64_OPND_CR3, /* third control register # (bits 20-26) */
IA64_OPND_F1, /* first floating-point register # */
IA64_OPND_F2, /* second floating-point register # */
IA64_OPND_F3, /* third floating-point register # */
IA64_OPND_F4, /* fourth floating-point register # */
IA64_OPND_P1, /* first predicate # */
IA64_OPND_P2, /* second predicate # */
IA64_OPND_R1, /* first register # */
IA64_OPND_R2, /* second register # */
IA64_OPND_R3, /* third register # */
IA64_OPND_R3_2, /* third register # (limited to gr0-gr3) */
/* memory operands: */
IA64_OPND_MR3, /* memory at addr of third register # */
/* indirect operands: */
IA64_OPND_CPUID_R3, /* cpuid[reg] */
IA64_OPND_DBR_R3, /* dbr[reg] */
IA64_OPND_DTR_R3, /* dtr[reg] */
IA64_OPND_ITR_R3, /* itr[reg] */
IA64_OPND_IBR_R3, /* ibr[reg] */
IA64_OPND_MSR_R3, /* msr[reg] */
IA64_OPND_PKR_R3, /* pkr[reg] */
IA64_OPND_PMC_R3, /* pmc[reg] */
IA64_OPND_PMD_R3, /* pmd[reg] */
IA64_OPND_RR_R3, /* rr[reg] */
/* immediate operands: */
IA64_OPND_CCNT5, /* 5-bit count (31 - bits 20-24) */
IA64_OPND_CNT2a, /* 2-bit count (1 + bits 27-28) */
IA64_OPND_CNT2b, /* 2-bit count (bits 27-28): 1, 2, 3 */
IA64_OPND_CNT2c, /* 2-bit count (bits 30-31): 0, 7, 15, or 16 */
IA64_OPND_CNT5, /* 5-bit count (bits 14-18) */
IA64_OPND_CNT6, /* 6-bit count (bits 27-32) */
IA64_OPND_CPOS6a, /* 6-bit count (63 - bits 20-25) */
IA64_OPND_CPOS6b, /* 6-bit count (63 - bits 14-19) */
IA64_OPND_CPOS6c, /* 6-bit count (63 - bits 31-36) */
IA64_OPND_IMM1, /* signed 1-bit immediate (bit 36) */
IA64_OPND_IMMU2, /* unsigned 2-bit immediate (bits 13-14) */
IA64_OPND_IMMU5b, /* unsigned 5-bit immediate (32 + bits 14-18) */
IA64_OPND_IMMU7a, /* unsigned 7-bit immediate (bits 13-19) */
IA64_OPND_IMMU7b, /* unsigned 7-bit immediate (bits 20-26) */
IA64_OPND_SOF, /* 8-bit stack frame size */
IA64_OPND_SOL, /* 8-bit size of locals */
IA64_OPND_SOR, /* 6-bit number of rotating registers (scaled by 8) */
IA64_OPND_IMM8, /* signed 8-bit immediate (bits 13-19 & 36) */
IA64_OPND_IMM8U4, /* cmp4*u signed 8-bit immediate (bits 13-19 & 36) */
IA64_OPND_IMM8M1, /* signed 8-bit immediate -1 (bits 13-19 & 36) */
IA64_OPND_IMM8M1U4, /* cmp4*u signed 8-bit immediate -1 (bits 13-19 & 36)*/
IA64_OPND_IMM8M1U8, /* cmp*u signed 8-bit immediate -1 (bits 13-19 & 36) */
IA64_OPND_IMMU9, /* unsigned 9-bit immediate (bits 33-34, 20-26) */
IA64_OPND_IMM9a, /* signed 9-bit immediate (bits 6-12, 27, 36) */
IA64_OPND_IMM9b, /* signed 9-bit immediate (bits 13-19, 27, 36) */
IA64_OPND_IMM14, /* signed 14-bit immediate (bits 13-19, 27-32, 36) */
IA64_OPND_IMM17, /* signed 17-bit immediate (2*bits 6-12, 24-31, 36) */
IA64_OPND_IMMU21, /* unsigned 21-bit immediate (bits 6-25, 36) */
IA64_OPND_IMM22, /* signed 22-bit immediate (bits 13-19, 22-36) */
IA64_OPND_IMMU24, /* unsigned 24-bit immediate (bits 6-26, 31-32, 36) */
IA64_OPND_IMM44, /* signed 44-bit immediate (2^16*bits 6-32, 36) */
IA64_OPND_IMMU62, /* unsigned 62-bit immediate */
IA64_OPND_IMMU64, /* unsigned 64-bit immediate (lotsa bits...) */
IA64_OPND_INC3, /* signed 3-bit (bits 13-15): +/-1, 4, 8, 16 */
IA64_OPND_LEN4, /* 4-bit count (bits 27-30 + 1) */
IA64_OPND_LEN6, /* 6-bit count (bits 27-32 + 1) */
IA64_OPND_MBTYPE4, /* 4-bit mux type (bits 20-23) */
IA64_OPND_MHTYPE8, /* 8-bit mux type (bits 20-27) */
IA64_OPND_POS6, /* 6-bit count (bits 14-19) */
IA64_OPND_TAG13, /* signed 13-bit tag (ip + 16*bits 6-12, 33-34) */
IA64_OPND_TAG13b, /* signed 13-bit tag (ip + 16*bits 24-32) */
IA64_OPND_TGT25, /* signed 25-bit (ip + 16*bits 6-25, 36) */
IA64_OPND_TGT25b, /* signed 25-bit (ip + 16*bits 6-12, 20-32, 36) */
IA64_OPND_TGT25c, /* signed 25-bit (ip + 16*bits 13-32, 36) */
IA64_OPND_TGT64, /* 64-bit (ip + 16*bits 13-32, 36, 2-40(L)) */
IA64_OPND_LDXMOV, /* any symbol, generates R_IA64_LDXMOV. */
IA64_OPND_COUNT /* # of operand types (MUST BE LAST!) */
};
enum ia64_dependency_mode
{
IA64_DV_RAW,
IA64_DV_WAW,
IA64_DV_WAR,
};
enum ia64_dependency_semantics
{
IA64_DVS_NONE,
IA64_DVS_IMPLIED,
IA64_DVS_IMPLIEDF,
IA64_DVS_DATA,
IA64_DVS_INSTR,
IA64_DVS_SPECIFIC,
IA64_DVS_STOP,
IA64_DVS_OTHER,
};
enum ia64_resource_specifier
{
IA64_RS_ANY,
IA64_RS_AR_K,
IA64_RS_AR_UNAT,
IA64_RS_AR, /* 8-15, 20, 22-23, 31, 33-35, 37-39, 41-43, 45-47, 67-111 */
IA64_RS_ARb, /* 48-63, 112-127 */
IA64_RS_BR,
IA64_RS_CFM,
IA64_RS_CPUID,
IA64_RS_CR_IRR,
IA64_RS_CR_LRR,
IA64_RS_CR, /* 3-7,10-15,18,26-63,75-79,82-127 */
IA64_RS_DBR,
IA64_RS_FR,
IA64_RS_FRb,
IA64_RS_GR0,
IA64_RS_GR,
IA64_RS_IBR,
IA64_RS_INSERVICE, /* CR[EOI] or CR[IVR] */
IA64_RS_MSR,
IA64_RS_PKR,
IA64_RS_PMC,
IA64_RS_PMD,
IA64_RS_PR, /* non-rotating, 1-15 */
IA64_RS_PRr, /* rotating, 16-62 */
IA64_RS_PR63,
IA64_RS_RR,
IA64_RS_ARX, /* ARs not in RS_AR or RS_ARb */
IA64_RS_CRX, /* CRs not in RS_CR */
IA64_RS_PSR, /* PSR bits */
IA64_RS_RSE, /* implementation-specific RSE resources */
IA64_RS_AR_FPSR,
};
enum ia64_rse_resource
{
IA64_RSE_N_STACKED_PHYS,
IA64_RSE_BOF,
IA64_RSE_STORE_REG,
IA64_RSE_LOAD_REG,
IA64_RSE_BSPLOAD,
IA64_RSE_RNATBITINDEX,
IA64_RSE_CFLE,
IA64_RSE_NDIRTY,
};
/* Information about a given resource dependency */
struct ia64_dependency
{
/* Name of the resource */
const char *name;
/* Does this dependency need further specification? */
enum ia64_resource_specifier specifier;
/* Mode of dependency */
enum ia64_dependency_mode mode;
/* Dependency semantics */
enum ia64_dependency_semantics semantics;
/* Register index, if applicable (distinguishes AR, CR, and PSR deps) */
#define REG_NONE (-1)
int regindex;
/* Special info on semantics */
const char *info;
};
/* Two arrays of indexes into the ia64_dependency table.
chks are dependencies to check for conflicts when an opcode is
encountered; regs are dependencies to register (mark as used) when an
opcode is used. chks correspond to readers (RAW) or writers (WAW or
WAR) of a resource, while regs correspond to writers (RAW or WAW) and
readers (WAR) of a resource. */
struct ia64_opcode_dependency
{
int nchks;
const unsigned short *chks;
int nregs;
const unsigned short *regs;
};
/* encode/extract the note/index for a dependency */
#define RDEP(N,X) (((N)<<11)|(X))
#define NOTE(X) (((X)>>11)&0x1F)
#define DEP(X) ((X)&0x7FF)
/* A template descriptor describes the execution units that are active
for each of the three slots. It also specifies the location of
instruction group boundaries that may be present between two slots. */
struct ia64_templ_desc
{
int group_boundary; /* 0=no boundary, 1=between slot 0 & 1, etc. */
enum ia64_unit exec_unit[3];
const char *name;
};
/* The opcode table is an array of struct ia64_opcode. */
struct ia64_opcode
{
/* The opcode name. */
const char *name;
/* The type of the instruction: */
enum ia64_insn_type type;
/* Number of output operands: */
int num_outputs;
/* The opcode itself. Those bits which will be filled in with
operands are zeroes. */
ia64_insn opcode;
/* The opcode mask. This is used by the disassembler. This is a
mask containing ones indicating those bits which must match the
opcode field, and zeroes indicating those bits which need not
match (and are presumably filled in by operands). */
ia64_insn mask;
/* An array of operand codes. Each code is an index into the
operand table. They appear in the order which the operands must
appear in assembly code, and are terminated by a zero. */
enum ia64_opnd operands[5];
/* One bit flags for the opcode. These are primarily used to
indicate specific processors and environments support the
instructions. The defined values are listed below. */
unsigned int flags;
/* Used by ia64_find_next_opcode (). */
short ent_index;
/* Opcode dependencies. */
const struct ia64_opcode_dependency *dependencies;
};
/* Values defined for the flags field of a struct ia64_opcode. */
#define IA64_OPCODE_FIRST (1<<0) /* must be first in an insn group */
#define IA64_OPCODE_X_IN_MLX (1<<1) /* insn is allowed in X slot of MLX */
#define IA64_OPCODE_LAST (1<<2) /* must be last in an insn group */
#define IA64_OPCODE_PRIV (1<<3) /* privileged instruct */
#define IA64_OPCODE_SLOT2 (1<<4) /* insn allowed in slot 2 only */
#define IA64_OPCODE_NO_PRED (1<<5) /* insn cannot be predicated */
#define IA64_OPCODE_PSEUDO (1<<6) /* insn is a pseudo-op */
#define IA64_OPCODE_F2_EQ_F3 (1<<7) /* constraint: F2 == F3 */
#define IA64_OPCODE_LEN_EQ_64MCNT (1<<8) /* constraint: LEN == 64-CNT */
#define IA64_OPCODE_MOD_RRBS (1<<9) /* modifies all rrbs in CFM */
#define IA64_OPCODE_POSTINC (1<<10) /* postincrement MR3 operand */
/* A macro to extract the major opcode from an instruction. */
#define IA64_OP(i) (((i) >> 37) & 0xf)
enum ia64_operand_class
{
IA64_OPND_CLASS_CST, /* constant */
IA64_OPND_CLASS_REG, /* register */
IA64_OPND_CLASS_IND, /* indirect register */
IA64_OPND_CLASS_ABS, /* absolute value */
IA64_OPND_CLASS_REL, /* IP-relative value */
};
/* The operands table is an array of struct ia64_operand. */
struct ia64_operand
{
enum ia64_operand_class class;
/* Set VALUE as the operand bits for the operand of type SELF in the
instruction pointed to by CODE. If an error occurs, *CODE is not
modified and the returned string describes the cause of the
error. If no error occurs, NULL is returned. */
const char *(*insert) (const struct ia64_operand *self, ia64_insn value,
ia64_insn *code);
/* Extract the operand bits for an operand of type SELF from
instruction CODE store them in *VALUE. If an error occurs, the
cause of the error is described by the string returned. If no
error occurs, NULL is returned. */
const char *(*extract) (const struct ia64_operand *self, ia64_insn code,
ia64_insn *value);
/* A string whose meaning depends on the operand class. */
const char *str;
struct bit_field
{
/* The number of bits in the operand. */
int bits;
/* How far the operand is left shifted in the instruction. */
int shift;
}
field[4]; /* no operand has more than this many bit-fields */
unsigned int flags;
const char *desc; /* brief description */
};
/* Values defined for the flags field of a struct ia64_operand. */
/* Disassemble as signed decimal (instead of hex): */
#define IA64_OPND_FLAG_DECIMAL_SIGNED (1<<0)
/* Disassemble as unsigned decimal (instead of hex): */
#define IA64_OPND_FLAG_DECIMAL_UNSIGNED (1<<1)
#define NELEMS(a) ((int) (sizeof (a) / sizeof (a[0])))
static const char*
ins_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
{
return "internal error---this shouldn't happen";
}
static const char*
ext_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
{
return "internal error---this shouldn't happen";
}
static const char*
ins_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
{
return 0;
}
static const char*
ext_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
{
return 0;
}
static const char*
ins_reg (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
if (value >= 1u << self->field[0].bits)
return "register number out of range";
*code |= value << self->field[0].shift;
return 0;
}
static const char*
ext_reg (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
*valuep = ((code >> self->field[0].shift)
& ((1u << self->field[0].bits) - 1));
return 0;
}
static const char*
ins_immu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
ia64_insn new = 0;
int i;
for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
{
new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
<< self->field[i].shift);
value >>= self->field[i].bits;
}
if (value)
return "integer operand out of range";
*code |= new;
return 0;
}
static const char*
ext_immu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
uint64_t value = 0;
int i, bits = 0, total = 0;
for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
{
bits = self->field[i].bits;
value |= ((code >> self->field[i].shift)
& ((((uint64_t) 1) << bits) - 1)) << total;
total += bits;
}
*valuep = value;
return 0;
}
static const char*
ins_immu5b (const struct ia64_operand *self, ia64_insn value,
ia64_insn *code)
{
if (value < 32 || value > 63)
return "value must be between 32 and 63";
return ins_immu (self, value - 32, code);
}
static const char*
ext_immu5b (const struct ia64_operand *self, ia64_insn code,
ia64_insn *valuep)
{
const char *result;
result = ext_immu (self, code, valuep);
if (result)
return result;
*valuep = *valuep + 32;
return 0;
}
static const char*
ins_immus8 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
if (value & 0x7)
return "value not an integer multiple of 8";
return ins_immu (self, value >> 3, code);
}
static const char*
ext_immus8 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
const char *result;
result = ext_immu (self, code, valuep);
if (result)
return result;
*valuep = *valuep << 3;
return 0;
}
static const char*
ins_imms_scaled (const struct ia64_operand *self, ia64_insn value,
ia64_insn *code, int scale)
{
int64_t svalue = value, sign_bit = 0;
ia64_insn new = 0;
int i;
svalue >>= scale;
for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
{
new |= ((svalue & ((((ia64_insn) 1) << self->field[i].bits) - 1))
<< self->field[i].shift);
sign_bit = (svalue >> (self->field[i].bits - 1)) & 1;
svalue >>= self->field[i].bits;
}
if ((!sign_bit && svalue != 0) || (sign_bit && svalue != -1))
return "integer operand out of range";
*code |= new;
return 0;
}
static const char*
ext_imms_scaled (const struct ia64_operand *self, ia64_insn code,
ia64_insn *valuep, int scale)
{
int i, bits = 0, total = 0;
int64_t val = 0, sign;
for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
{
bits = self->field[i].bits;
val |= ((code >> self->field[i].shift)
& ((((uint64_t) 1) << bits) - 1)) << total;
total += bits;
}
/* sign extend: */
sign = (int64_t) 1 << (total - 1);
val = (val ^ sign) - sign;
*valuep = (val << scale);
return 0;
}
static const char*
ins_imms (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
return ins_imms_scaled (self, value, code, 0);
}
static const char*
ins_immsu4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
value = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
return ins_imms_scaled (self, value, code, 0);
}
static const char*
ext_imms (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
return ext_imms_scaled (self, code, valuep, 0);
}
static const char*
ins_immsm1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
--value;
return ins_imms_scaled (self, value, code, 0);
}
static const char*
ins_immsm1u4 (const struct ia64_operand *self, ia64_insn value,
ia64_insn *code)
{
value = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
--value;
return ins_imms_scaled (self, value, code, 0);
}
static const char*
ext_immsm1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
const char *res = ext_imms_scaled (self, code, valuep, 0);
++*valuep;
return res;
}
static const char*
ins_imms1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
return ins_imms_scaled (self, value, code, 1);
}
static const char*
ext_imms1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
return ext_imms_scaled (self, code, valuep, 1);
}
static const char*
ins_imms4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
return ins_imms_scaled (self, value, code, 4);
}
static const char*
ext_imms4 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
return ext_imms_scaled (self, code, valuep, 4);
}
static const char*
ins_imms16 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
return ins_imms_scaled (self, value, code, 16);
}
static const char*
ext_imms16 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
return ext_imms_scaled (self, code, valuep, 16);
}
static const char*
ins_cimmu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
ia64_insn mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
return ins_immu (self, value ^ mask, code);
}
static const char*
ext_cimmu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
const char *result;
ia64_insn mask;
mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
result = ext_immu (self, code, valuep);
if (!result)
{
mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
*valuep ^= mask;
}
return result;
}
static const char*
ins_cnt (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
--value;
if (value >= ((uint64_t) 1) << self->field[0].bits)
return "count out of range";
*code |= value << self->field[0].shift;
return 0;
}
static const char*
ext_cnt (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
*valuep = ((code >> self->field[0].shift)
& ((((uint64_t) 1) << self->field[0].bits) - 1)) + 1;
return 0;
}
static const char*
ins_cnt2b (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
--value;
if (value > 2)
return "count must be in range 1..3";
*code |= value << self->field[0].shift;
return 0;
}
static const char*
ext_cnt2b (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
*valuep = ((code >> self->field[0].shift) & 0x3) + 1;
return 0;
}
static const char*
ins_cnt2c (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
switch (value)
{
case 0: value = 0; break;
case 7: value = 1; break;
case 15: value = 2; break;
case 16: value = 3; break;
default: return "count must be 0, 7, 15, or 16";
}
*code |= value << self->field[0].shift;
return 0;
}
static const char*
ext_cnt2c (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
ia64_insn value;
value = (code >> self->field[0].shift) & 0x3;
switch (value)
{
case 0: value = 0; break;
case 1: value = 7; break;
case 2: value = 15; break;
case 3: value = 16; break;
}
*valuep = value;
return 0;
}
static const char*
ins_inc3 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
{
int64_t val = value;
uint64_t sign = 0;
if (val < 0)
{
sign = 0x4;
value = -value;
}
switch (value)
{
case 1: value = 3; break;
case 4: value = 2; break;
case 8: value = 1; break;
case 16: value = 0; break;
default: return "count must be +/- 1, 4, 8, or 16";
}
*code |= (sign | value) << self->field[0].shift;
return 0;
}
static const char*
ext_inc3 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
{
int64_t val;
int negate;
val = (code >> self->field[0].shift) & 0x7;
negate = val & 0x4;
switch (val & 0x3)
{
case 0: val = 16; break;
case 1: val = 8; break;
case 2: val = 4; break;
case 3: val = 1; break;
}
if (negate)
val = -val;
*valuep = val;
return 0;
}
/* glib.h defines ABS so we must undefine it to avoid a clash */
#undef ABS
#define CST IA64_OPND_CLASS_CST
#define REG IA64_OPND_CLASS_REG
#define IND IA64_OPND_CLASS_IND
#define ABS IA64_OPND_CLASS_ABS
#define REL IA64_OPND_CLASS_REL
#define SDEC IA64_OPND_FLAG_DECIMAL_SIGNED
#define UDEC IA64_OPND_FLAG_DECIMAL_UNSIGNED
const struct ia64_operand elf64_ia64_operands[IA64_OPND_COUNT] =
{
/* constants: */
{ CST, ins_const, ext_const, "NIL", {{ 0, 0}}, 0, "<none>" },
{ CST, ins_const, ext_const, "ar.csd", {{ 0, 0}}, 0, "ar.csd" },
{ CST, ins_const, ext_const, "ar.ccv", {{ 0, 0}}, 0, "ar.ccv" },
{ CST, ins_const, ext_const, "ar.pfs", {{ 0, 0}}, 0, "ar.pfs" },
{ CST, ins_const, ext_const, "1", {{ 0, 0}}, 0, "1" },
{ CST, ins_const, ext_const, "8", {{ 0, 0}}, 0, "8" },
{ CST, ins_const, ext_const, "16", {{ 0, 0}}, 0, "16" },
{ CST, ins_const, ext_const, "r0", {{ 0, 0}}, 0, "r0" },
{ CST, ins_const, ext_const, "ip", {{ 0, 0}}, 0, "ip" },
{ CST, ins_const, ext_const, "pr", {{ 0, 0}}, 0, "pr" },
{ CST, ins_const, ext_const, "pr.rot", {{ 0, 0}}, 0, "pr.rot" },
{ CST, ins_const, ext_const, "psr", {{ 0, 0}}, 0, "psr" },
{ CST, ins_const, ext_const, "psr.l", {{ 0, 0}}, 0, "psr.l" },
{ CST, ins_const, ext_const, "psr.um", {{ 0, 0}}, 0, "psr.um" },
/* register operands: */
{ REG, ins_reg, ext_reg, "ar", {{ 7, 20}}, 0, /* AR3 */
"an application register" },
{ REG, ins_reg, ext_reg, "b", {{ 3, 6}}, 0, /* B1 */
"a branch register" },
{ REG, ins_reg, ext_reg, "b", {{ 3, 13}}, 0, /* B2 */
"a branch register"},
{ REG, ins_reg, ext_reg, "cr", {{ 7, 20}}, 0, /* CR */
"a control register"},
{ REG, ins_reg, ext_reg, "f", {{ 7, 6}}, 0, /* F1 */
"a floating-point register" },
{ REG, ins_reg, ext_reg, "f", {{ 7, 13}}, 0, /* F2 */
"a floating-point register" },
{ REG, ins_reg, ext_reg, "f", {{ 7, 20}}, 0, /* F3 */
"a floating-point register" },
{ REG, ins_reg, ext_reg, "f", {{ 7, 27}}, 0, /* F4 */
"a floating-point register" },
{ REG, ins_reg, ext_reg, "p", {{ 6, 6}}, 0, /* P1 */
"a predicate register" },
{ REG, ins_reg, ext_reg, "p", {{ 6, 27}}, 0, /* P2 */
"a predicate register" },
{ REG, ins_reg, ext_reg, "r", {{ 7, 6}}, 0, /* R1 */
"a general register" },
{ REG, ins_reg, ext_reg, "r", {{ 7, 13}}, 0, /* R2 */
"a general register" },
{ REG, ins_reg, ext_reg, "r", {{ 7, 20}}, 0, /* R3 */
"a general register" },
{ REG, ins_reg, ext_reg, "r", {{ 2, 20}}, 0, /* R3_2 */
"a general register r0-r3" },
/* memory operands: */
{ IND, ins_reg, ext_reg, "", {{7, 20}}, 0, /* MR3 */
"a memory address" },
/* indirect operands: */
{ IND, ins_reg, ext_reg, "cpuid", {{7, 20}}, 0, /* CPUID_R3 */
"a cpuid register" },
{ IND, ins_reg, ext_reg, "dbr", {{7, 20}}, 0, /* DBR_R3 */
"a dbr register" },
{ IND, ins_reg, ext_reg, "dtr", {{7, 20}}, 0, /* DTR_R3 */
"a dtr register" },
{ IND, ins_reg, ext_reg, "itr", {{7, 20}}, 0, /* ITR_R3 */
"an itr register" },
{ IND, ins_reg, ext_reg, "ibr", {{7, 20}}, 0, /* IBR_R3 */
"an ibr register" },
{ IND, ins_reg, ext_reg, "msr", {{7, 20}}, 0, /* MSR_R3 */
"an msr register" },
{ IND, ins_reg, ext_reg, "pkr", {{7, 20}}, 0, /* PKR_R3 */
"a pkr register" },
{ IND, ins_reg, ext_reg, "pmc", {{7, 20}}, 0, /* PMC_R3 */
"a pmc register" },
{ IND, ins_reg, ext_reg, "pmd", {{7, 20}}, 0, /* PMD_R3 */
"a pmd register" },
{ IND, ins_reg, ext_reg, "rr", {{7, 20}}, 0, /* RR_R3 */
"an rr register" },
/* immediate operands: */
{ ABS, ins_cimmu, ext_cimmu, 0, {{ 5, 20 }}, UDEC, /* CCNT5 */
"a 5-bit count (0-31)" },
{ ABS, ins_cnt, ext_cnt, 0, {{ 2, 27 }}, UDEC, /* CNT2a */
"a 2-bit count (1-4)" },
{ ABS, ins_cnt2b, ext_cnt2b, 0, {{ 2, 27 }}, UDEC, /* CNT2b */
"a 2-bit count (1-3)" },
{ ABS, ins_cnt2c, ext_cnt2c, 0, {{ 2, 30 }}, UDEC, /* CNT2c */
"a count (0, 7, 15, or 16)" },
{ ABS, ins_immu, ext_immu, 0, {{ 5, 14}}, UDEC, /* CNT5 */
"a 5-bit count (0-31)" },
{ ABS, ins_immu, ext_immu, 0, {{ 6, 27}}, UDEC, /* CNT6 */
"a 6-bit count (0-63)" },
{ ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 20}}, UDEC, /* CPOS6a */
"a 6-bit bit pos (0-63)" },
{ ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 14}}, UDEC, /* CPOS6b */
"a 6-bit bit pos (0-63)" },
{ ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 31}}, UDEC, /* CPOS6c */
"a 6-bit bit pos (0-63)" },
{ ABS, ins_imms, ext_imms, 0, {{ 1, 36}}, SDEC, /* IMM1 */
"a 1-bit integer (-1, 0)" },
{ ABS, ins_immu, ext_immu, 0, {{ 2, 13}}, UDEC, /* IMMU2 */
"a 2-bit unsigned (0-3)" },
{ ABS, ins_immu5b, ext_immu5b, 0, {{ 5, 14}}, UDEC, /* IMMU5b */
"a 5-bit unsigned (32 + (0-31))" },
{ ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, 0, /* IMMU7a */
"a 7-bit unsigned (0-127)" },
{ ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, 0, /* IMMU7b */
"a 7-bit unsigned (0-127)" },
{ ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, UDEC, /* SOF */
"a frame size (register count)" },
{ ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, UDEC, /* SOL */
"a local register count" },
{ ABS, ins_immus8,ext_immus8,0, {{ 4, 27}}, UDEC, /* SOR */
"a rotating register count (integer multiple of 8)" },
{ ABS, ins_imms, ext_imms, 0, /* IMM8 */
{{ 7, 13}, { 1, 36}}, SDEC,
"an 8-bit integer (-128-127)" },
{ ABS, ins_immsu4, ext_imms, 0, /* IMM8U4 */
{{ 7, 13}, { 1, 36}}, SDEC,
"an 8-bit signed integer for 32-bit unsigned compare (-128-127)" },
{ ABS, ins_immsm1, ext_immsm1, 0, /* IMM8M1 */
{{ 7, 13}, { 1, 36}}, SDEC,
"an 8-bit integer (-127-128)" },
{ ABS, ins_immsm1u4, ext_immsm1, 0, /* IMM8M1U4 */
{{ 7, 13}, { 1, 36}}, SDEC,
"an 8-bit integer for 32-bit unsigned compare (-127-(-1),1-128,0x100000000)" },
{ ABS, ins_immsm1, ext_immsm1, 0, /* IMM8M1U8 */
{{ 7, 13}, { 1, 36}}, SDEC,
"an 8-bit integer for 64-bit unsigned compare (-127-(-1),1-128,0x10000000000000000)" },
{ ABS, ins_immu, ext_immu, 0, {{ 2, 33}, { 7, 20}}, 0, /* IMMU9 */
"a 9-bit unsigned (0-511)" },
{ ABS, ins_imms, ext_imms, 0, /* IMM9a */
{{ 7, 6}, { 1, 27}, { 1, 36}}, SDEC,
"a 9-bit integer (-256-255)" },
{ ABS, ins_imms, ext_imms, 0, /* IMM9b */
{{ 7, 13}, { 1, 27}, { 1, 36}}, SDEC,
"a 9-bit integer (-256-255)" },
{ ABS, ins_imms, ext_imms, 0, /* IMM14 */
{{ 7, 13}, { 6, 27}, { 1, 36}}, SDEC,
"a 14-bit integer (-8192-8191)" },
{ ABS, ins_imms1, ext_imms1, 0, /* IMM17 */
{{ 7, 6}, { 8, 24}, { 1, 36}}, 0,
"a 17-bit integer (-65536-65535)" },
{ ABS, ins_immu, ext_immu, 0, {{20, 6}, { 1, 36}}, 0, /* IMMU21 */
"a 21-bit unsigned" },
{ ABS, ins_imms, ext_imms, 0, /* IMM22 */
{{ 7, 13}, { 9, 27}, { 5, 22}, { 1, 36}}, SDEC,
"a 22-bit signed integer" },
{ ABS, ins_immu, ext_immu, 0, /* IMMU24 */
{{21, 6}, { 2, 31}, { 1, 36}}, 0,
"a 24-bit unsigned" },
{ ABS, ins_imms16,ext_imms16,0, {{27, 6}, { 1, 36}}, 0, /* IMM44 */
"a 44-bit unsigned (least 16 bits ignored/zeroes)" },
{ ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* IMMU62 */
"a 62-bit unsigned" },
{ ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* IMMU64 */
"a 64-bit unsigned" },
{ ABS, ins_inc3, ext_inc3, 0, {{ 3, 13}}, SDEC, /* INC3 */
"an increment (+/- 1, 4, 8, or 16)" },
{ ABS, ins_cnt, ext_cnt, 0, {{ 4, 27}}, UDEC, /* LEN4 */
"a 4-bit length (1-16)" },
{ ABS, ins_cnt, ext_cnt, 0, {{ 6, 27}}, UDEC, /* LEN6 */
"a 6-bit length (1-64)" },
{ ABS, ins_immu, ext_immu, 0, {{ 4, 20}}, 0, /* MBTYPE4 */
"a mix type (@rev, @mix, @shuf, @alt, or @brcst)" },
{ ABS, ins_immu, ext_immu, 0, {{ 8, 20}}, 0, /* MBTYPE8 */
"an 8-bit mix type" },
{ ABS, ins_immu, ext_immu, 0, {{ 6, 14}}, UDEC, /* POS6 */
"a 6-bit bit pos (0-63)" },
{ REL, ins_imms4, ext_imms4, 0, {{ 7, 6}, { 2, 33}}, 0, /* TAG13 */
"a branch tag" },
{ REL, ins_imms4, ext_imms4, 0, {{ 9, 24}}, 0, /* TAG13b */
"a branch tag" },
{ REL, ins_imms4, ext_imms4, 0, {{20, 6}, { 1, 36}}, 0, /* TGT25 */
"a branch target" },
{ REL, ins_imms4, ext_imms4, 0, /* TGT25b */
{{ 7, 6}, {13, 20}, { 1, 36}}, 0,
"a branch target" },
{ REL, ins_imms4, ext_imms4, 0, {{20, 13}, { 1, 36}}, 0, /* TGT25c */
"a branch target" },
{ REL, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* TGT64 */
"a branch target" },
{ ABS, ins_const, ext_const, 0, {{0, 0}}, 0, /* LDXMOV */
"ldxmov target" },
};
/* ia64-asmtab.h -- Header for compacted IA-64 opcode tables.
Copyright 1999, 2000 Free Software Foundation, Inc.
Contributed by Bob Manson of Cygnus Support <manson@cygnus.com>
This file is part of GDB, GAS, and the GNU binutils.
GDB, GAS, and the GNU binutils are free software; you can redistribute
them and/or modify them under the terms of the GNU General Public
License as published by the Free Software Foundation; either version
2, or (at your option) any later version.
GDB, GAS, and the GNU binutils are distributed in the hope that they
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this file; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>. */
/* The primary opcode table is made up of the following: */
struct ia64_main_table
{
/* The entry in the string table that corresponds to the name of this
opcode. */
unsigned short name_index;
/* The type of opcode; corresponds to the TYPE field in
struct ia64_opcode. */
unsigned char opcode_type;
/* The number of outputs for this opcode. */
unsigned char num_outputs;
/* The base insn value for this opcode. It may be modified by completers. */
ia64_insn opcode;
/* The mask of valid bits in OPCODE. Zeros indicate operand fields. */
ia64_insn mask;
/* The operands of this instruction. Corresponds to the OPERANDS field
in struct ia64_opcode. */
unsigned char operands[5];
/* The flags for this instruction. Corresponds to the FLAGS field in
struct ia64_opcode. */
short flags;
/* The tree of completers for this instruction; this is an offset into
completer_table. */
short completers;
};
/* Each instruction has a set of possible "completers", or additional
suffixes that can alter the instruction's behavior, and which has
potentially different dependencies.
The completer entries modify certain bits in the instruction opcode.
Which bits are to be modified are marked by the BITS, MASK and
OFFSET fields. The completer entry may also note dependencies for the
opcode.
These completers are arranged in a DAG; the pointers are indexes
into the completer_table array. The completer DAG is searched by
find_completer () and ia64_find_matching_opcode ().
Note that each completer needs to be applied in turn, so that if we
have the instruction
cmp.lt.unc
the completer entries for both "lt" and "unc" would need to be applied
to the opcode's value.
Some instructions do not require any completers; these contain an
empty completer entry. Instructions that require a completer do
not contain an empty entry.
Terminal completers (those completers that validly complete an
instruction) are marked by having the TERMINAL_COMPLETER flag set.
Only dependencies listed in the terminal completer for an opcode are
considered to apply to that opcode instance. */
struct ia64_completer_table
{
/* The bit value that this completer sets. */
unsigned int bits;
/* And its mask. 1s are bits that are to be modified in the
instruction. */
unsigned int mask;
/* The entry in the string table that corresponds to the name of this
completer. */
unsigned short name_index;
/* An alternative completer, or -1 if this is the end of the chain. */
short alternative;
/* A pointer to the DAG of completers that can potentially follow
this one, or -1. */
short subentries;
/* The bit offset in the instruction where BITS and MASK should be
applied. */
unsigned char offset : 7;
unsigned char terminal_completer : 1;
/* Index into the dependency list table */
short dependencies;
};
/* This contains sufficient information for the disassembler to resolve
the complete name of the original instruction. */
struct ia64_dis_names
{
/* COMPLETER_INDEX represents the tree of completers that make up
the instruction. The LSB represents the top of the tree for the
specified instruction.
A 0 bit indicates to go to the next alternate completer via the
alternative field; a 1 bit indicates that the current completer
is part of the instruction, and to go down the subentries index.
We know we've reached the final completer when we run out of 1
bits.
There is always at least one 1 bit. */
unsigned int completer_index : 20;
/* The index in the main_table[] array for the instruction. */
unsigned short insn_index : 11;
/* If set, the next entry in this table is an alternate possibility
for this instruction encoding. Which one to use is determined by
the instruction type and other factors (see opcode_verify ()). */
unsigned int next_flag : 1;
/* The disassembly priority of this entry among instructions. */
unsigned short priority;
};
static const char * const ia64_strings[] = {
"", "0", "1", "a", "acq", "add", "addl", "addp4", "adds", "alloc", "and",
"andcm", "b", "bias", "br", "break", "brl", "brp", "bsw", "c", "call",
"cexit", "chk", "cloop", "clr", "clrrrb", "cmp", "cmp4", "cmp8xchg16",
"cmpxchg1", "cmpxchg2", "cmpxchg4", "cmpxchg8", "cond", "cover", "ctop",
"czx1", "czx2", "d", "dep", "dpnt", "dptk", "e", "epc", "eq", "excl",
"exit", "exp", "extr", "f", "fabs", "fadd", "famax", "famin", "fand",
"fandcm", "fault", "fc", "fchkf", "fclass", "fclrf", "fcmp", "fcvt",
"fetchadd4", "fetchadd8", "few", "fill", "flushrs", "fma", "fmax",
"fmerge", "fmin", "fmix", "fmpy", "fms", "fneg", "fnegabs", "fnma",
"fnmpy", "fnorm", "for", "fpabs", "fpack", "fpamax", "fpamin", "fpcmp",
"fpcvt", "fpma", "fpmax", "fpmerge", "fpmin", "fpmpy", "fpms", "fpneg",
"fpnegabs", "fpnma", "fpnmpy", "fprcpa", "fprsqrta", "frcpa", "frsqrta",
"fselect", "fsetc", "fsub", "fswap", "fsxt", "fwb", "fx", "fxor", "fxu",
"g", "ga", "ge", "getf", "geu", "gt", "gtu", "h", "hint", "hu", "i", "ia",
"imp", "invala", "itc", "itr", "l", "ld1", "ld16", "ld2", "ld4", "ld8",
"ldf", "ldf8", "ldfd", "ldfe", "ldfp8", "ldfpd", "ldfps", "ldfs", "le",
"leu", "lfetch", "loadrs", "loop", "lr", "lt", "ltu", "lu", "m", "many",
"mf", "mix1", "mix2", "mix4", "mov", "movl", "mux1", "mux2", "nc", "ne",
"neq", "nge", "ngt", "nl", "nle", "nlt", "nm", "nop", "nr", "ns", "nt1",
"nt2", "nta", "nz", "or", "orcm", "ord", "pack2", "pack4", "padd1",
"padd2", "padd4", "pavg1", "pavg2", "pavgsub1", "pavgsub2", "pcmp1",
"pcmp2", "pcmp4", "pmax1", "pmax2", "pmin1", "pmin2", "pmpy2", "pmpyshr2",
"popcnt", "pr", "probe", "psad1", "pshl2", "pshl4", "pshladd2", "pshr2",
"pshr4", "pshradd2", "psub1", "psub2", "psub4", "ptc", "ptr", "r", "raz",
"rel", "ret", "rfi", "rsm", "rum", "rw", "s", "s0", "s1", "s2", "s3",
"sa", "se", "setf", "shl", "shladd", "shladdp4", "shr", "shrp", "sig",
"spill", "spnt", "sptk", "srlz", "ssm", "sss", "st1", "st16", "st2",
"st4", "st8", "stf", "stf8", "stfd", "stfe", "stfs", "sub", "sum", "sxt1",
"sxt2", "sxt4", "sync", "tak", "tbit", "tf", "thash", "tnat", "tpa",
"trunc", "ttag", "u", "unc", "unord", "unpack1", "unpack2", "unpack4",
"uss", "uus", "uuu", "vmsw", "w", "wexit", "wtop", "x", "xchg1", "xchg2",
"xchg4", "xchg8", "xf", "xma", "xmpy", "xor", "xuf", "z", "zxt1", "zxt2",
"zxt4",
};
static const struct ia64_dependency
dependencies[] = {
{ "ALAT", 0, 0, 0, -1, NULL, },
{ "AR[BSP]", 26, 0, 2, 17, NULL, },
{ "AR[BSPSTORE]", 26, 0, 2, 18, NULL, },
{ "AR[CCV]", 26, 0, 2, 32, NULL, },
{ "AR[CFLG]", 26, 0, 2, 27, NULL, },
{ "AR[CSD]", 26, 0, 2, 25, NULL, },
{ "AR[EC]", 26, 0, 2, 66, NULL, },
{ "AR[EFLAG]", 26, 0, 2, 24, NULL, },
{ "AR[FCR]", 26, 0, 2, 21, NULL, },
{ "AR[FDR]", 26, 0, 2, 30, NULL, },
{ "AR[FIR]", 26, 0, 2, 29, NULL, },
{ "AR[FPSR].sf0.controls", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf1.controls", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf2.controls", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf3.controls", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf0.flags", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf1.flags", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf2.flags", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].sf3.flags", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].traps", 30, 0, 2, -1, NULL, },
{ "AR[FPSR].rv", 30, 0, 2, -1, NULL, },
{ "AR[FSR]", 26, 0, 2, 28, NULL, },
{ "AR[ITC]", 26, 0, 2, 44, NULL, },
{ "AR[K%], % in 0 - 7", 1, 0, 2, -1, NULL, },
{ "AR[LC]", 26, 0, 2, 65, NULL, },
{ "AR[PFS]", 26, 0, 2, 64, NULL, },
{ "AR[PFS]", 26, 0, 2, 64, NULL, },
{ "AR[PFS]", 26, 0, 0, 64, NULL, },
{ "AR[RNAT]", 26, 0, 2, 19, NULL, },
{ "AR[RSC]", 26, 0, 2, 16, NULL, },
{ "AR[SSD]", 26, 0, 2, 26, NULL, },
{ "AR[UNAT]{%}, % in 0 - 63", 2, 0, 2, -1, NULL, },
{ "AR%, % in 8-15, 20, 22-23, 31, 33-35, 37-39, 41-43, 45-47, 67-111", 3, 0, 0, -1, NULL, },
{ "AR%, % in 48-63, 112-127", 4, 0, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 0, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 0, 0, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 0, 2, -1, NULL, },
{ "CFM", 6, 0, 2, -1, NULL, },
{ "CFM", 6, 0, 2, -1, NULL, },
{ "CFM", 6, 0, 2, -1, NULL, },
{ "CFM", 6, 0, 2, -1, NULL, },
{ "CFM", 6, 0, 0, -1, NULL, },
{ "CPUID#", 7, 0, 5, -1, NULL, },
{ "CR[CMCV]", 27, 0, 3, 74, NULL, },
{ "CR[DCR]", 27, 0, 3, 0, NULL, },
{ "CR[EOI]", 27, 0, 7, 67, "SC Section 5.8.3.4, \"End of External Interrupt Register (EOI Ð CR67)\" on page 2:119", },
{ "CR[GPTA]", 27, 0, 3, 9, NULL, },
{ "CR[IFA]", 27, 0, 1, 20, NULL, },
{ "CR[IFA]", 27, 0, 3, 20, NULL, },
{ "CR[IFS]", 27, 0, 3, 23, NULL, },
{ "CR[IFS]", 27, 0, 1, 23, NULL, },
{ "CR[IFS]", 27, 0, 1, 23, NULL, },
{ "CR[IHA]", 27, 0, 3, 25, NULL, },
{ "CR[IIM]", 27, 0, 3, 24, NULL, },
{ "CR[IIP]", 27, 0, 3, 19, NULL, },
{ "CR[IIP]", 27, 0, 1, 19, NULL, },
{ "CR[IIPA]", 27, 0, 3, 22, NULL, },
{ "CR[IPSR]", 27, 0, 3, 16, NULL, },
{ "CR[IPSR]", 27, 0, 1, 16, NULL, },
{ "CR[IRR%], % in 0 - 3", 8, 0, 3, -1, NULL, },
{ "CR[ISR]", 27, 0, 3, 17, NULL, },
{ "CR[ITIR]", 27, 0, 3, 21, NULL, },
{ "CR[ITIR]", 27, 0, 1, 21, NULL, },
{ "CR[ITM]", 27, 0, 3, 1, NULL, },
{ "CR[ITV]", 27, 0, 3, 72, NULL, },
{ "CR[IVA]", 27, 0, 4, 2, NULL, },
{ "CR[IVR]", 27, 0, 7, 65, "SC Section 5.8.3.2, \"External Interrupt Vector Register (IVR Ð CR65)\" on page 2:118", },
{ "CR[LID]", 27, 0, 7, 64, "SC Section 5.8.3.1, \"Local ID (LID Ð CR64)\" on page 2:117", },
{ "CR[LRR%], % in 0 - 1", 9, 0, 3, -1, NULL, },
{ "CR[PMV]", 27, 0, 3, 73, NULL, },
{ "CR[PTA]", 27, 0, 3, 8, NULL, },
{ "CR[TPR]", 27, 0, 3, 66, NULL, },
{ "CR[TPR]", 27, 0, 7, 66, "SC Section 5.8.3.3, \"Task Priority Register (TPR Ð CR66)\" on page 2:119", },
{ "CR[TPR]", 27, 0, 1, 66, NULL, },
{ "CR%, % in 3-7, 10-15, 18, 26-63, 75-79, 82-127", 10, 0, 0, -1, NULL, },
{ "DBR#", 11, 0, 2, -1, NULL, },
{ "DBR#", 11, 0, 3, -1, NULL, },
{ "DTC", 0, 0, 3, -1, NULL, },
{ "DTC", 0, 0, 2, -1, NULL, },
{ "DTC", 0, 0, 0, -1, NULL, },
{ "DTC", 0, 0, 2, -1, NULL, },
{ "DTC_LIMIT*", 0, 0, 2, -1, NULL, },
{ "DTR", 0, 0, 3, -1, NULL, },
{ "DTR", 0, 0, 2, -1, NULL, },
{ "DTR", 0, 0, 3, -1, NULL, },
{ "DTR", 0, 0, 0, -1, NULL, },
{ "DTR", 0, 0, 2, -1, NULL, },
{ "FR%, % in 0 - 1", 12, 0, 0, -1, NULL, },
{ "FR%, % in 2 - 127", 13, 0, 2, -1, NULL, },
{ "FR%, % in 2 - 127", 13, 0, 0, -1, NULL, },
{ "GR0", 14, 0, 0, -1, NULL, },
{ "GR%, % in 1 - 127", 15, 0, 0, -1, NULL, },
{ "GR%, % in 1 - 127", 15, 0, 2, -1, NULL, },
{ "IBR#", 16, 0, 2, -1, NULL, },
{ "InService*", 17, 0, 3, -1, NULL, },
{ "InService*", 17, 0, 2, -1, NULL, },
{ "InService*", 17, 0, 2, -1, NULL, },
{ "IP", 0, 0, 0, -1, NULL, },
{ "ITC", 0, 0, 4, -1, NULL, },
{ "ITC", 0, 0, 2, -1, NULL, },
{ "ITC", 0, 0, 0, -1, NULL, },
{ "ITC", 0, 0, 4, -1, NULL, },
{ "ITC", 0, 0, 2, -1, NULL, },
{ "ITC_LIMIT*", 0, 0, 2, -1, NULL, },
{ "ITR", 0, 0, 2, -1, NULL, },
{ "ITR", 0, 0, 4, -1, NULL, },
{ "ITR", 0, 0, 2, -1, NULL, },
{ "ITR", 0, 0, 0, -1, NULL, },
{ "ITR", 0, 0, 4, -1, NULL, },
{ "memory", 0, 0, 0, -1, NULL, },
{ "MSR#", 18, 0, 5, -1, NULL, },
{ "PKR#", 19, 0, 3, -1, NULL, },
{ "PKR#", 19, 0, 0, -1, NULL, },
{ "PKR#", 19, 0, 2, -1, NULL, },
{ "PKR#", 19, 0, 2, -1, NULL, },
{ "PMC#", 20, 0, 2, -1, NULL, },
{ "PMC#", 20, 0, 7, -1, "SC Section 7.2.1, \"Generic Performance Counter Registers\" for PMC[0].fr on page 2:150", },
{ "PMD#", 21, 0, 2, -1, NULL, },
{ "PR0", 0, 0, 0, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 0, 2, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 0, 2, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 0, 0, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 0, 2, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 0, 2, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 0, 0, -1, NULL, },
{ "PR63", 24, 0, 2, -1, NULL, },
{ "PR63", 24, 0, 2, -1, NULL, },
{ "PR63", 24, 0, 0, -1, NULL, },
{ "PSR.ac", 28, 0, 1, 3, NULL, },
{ "PSR.ac", 28, 0, 3, 3, NULL, },
{ "PSR.ac", 28, 0, 2, 3, NULL, },
{ "PSR.ac", 28, 0, 2, 3, NULL, },
{ "PSR.be", 28, 0, 1, 1, NULL, },
{ "PSR.be", 28, 0, 3, 1, NULL, },
{ "PSR.be", 28, 0, 2, 1, NULL, },
{ "PSR.be", 28, 0, 2, 1, NULL, },
{ "PSR.bn", 28, 0, 2, 44, NULL, },
{ "PSR.cpl", 28, 0, 1, 32, NULL, },
{ "PSR.cpl", 28, 0, 2, 32, NULL, },
{ "PSR.da", 28, 0, 2, 38, NULL, },
{ "PSR.db", 28, 0, 3, 24, NULL, },
{ "PSR.db", 28, 0, 2, 24, NULL, },
{ "PSR.db", 28, 0, 2, 24, NULL, },
{ "PSR.dd", 28, 0, 2, 39, NULL, },
{ "PSR.dfh", 28, 0, 3, 19, NULL, },
{ "PSR.dfh", 28, 0, 2, 19, NULL, },
{ "PSR.dfh", 28, 0, 2, 19, NULL, },
{ "PSR.dfl", 28, 0, 3, 18, NULL, },
{ "PSR.dfl", 28, 0, 2, 18, NULL, },
{ "PSR.dfl", 28, 0, 2, 18, NULL, },
{ "PSR.di", 28, 0, 3, 22, NULL, },
{ "PSR.di", 28, 0, 2, 22, NULL, },
{ "PSR.di", 28, 0, 2, 22, NULL, },
{ "PSR.dt", 28, 0, 3, 17, NULL, },
{ "PSR.dt", 28, 0, 2, 17, NULL, },
{ "PSR.dt", 28, 0, 2, 17, NULL, },
{ "PSR.ed", 28, 0, 2, 43, NULL, },
{ "PSR.i", 28, 0, 2, 14, NULL, },
{ "PSR.ia", 28, 0, 0, 14, NULL, },
{ "PSR.ic", 28, 0, 2, 13, NULL, },
{ "PSR.ic", 28, 0, 3, 13, NULL, },
{ "PSR.ic", 28, 0, 2, 13, NULL, },
{ "PSR.id", 28, 0, 0, 14, NULL, },
{ "PSR.is", 28, 0, 0, 14, NULL, },
{ "PSR.it", 28, 0, 2, 14, NULL, },
{ "PSR.lp", 28, 0, 2, 25, NULL, },
{ "PSR.lp", 28, 0, 3, 25, NULL, },
{ "PSR.lp", 28, 0, 2, 25, NULL, },
{ "PSR.mc", 28, 0, 2, 35, NULL, },
{ "PSR.mfh", 28, 0, 2, 5, NULL, },
{ "PSR.mfl", 28, 0, 2, 4, NULL, },
{ "PSR.pk", 28, 0, 3, 15, NULL, },
{ "PSR.pk", 28, 0, 2, 15, NULL, },
{ "PSR.pk", 28, 0, 2, 15, NULL, },
{ "PSR.pp", 28, 0, 2, 21, NULL, },
{ "PSR.ri", 28, 0, 0, 41, NULL, },
{ "PSR.rt", 28, 0, 2, 27, NULL, },
{ "PSR.rt", 28, 0, 3, 27, NULL, },
{ "PSR.rt", 28, 0, 2, 27, NULL, },
{ "PSR.si", 28, 0, 2, 23, NULL, },
{ "PSR.si", 28, 0, 3, 23, NULL, },
{ "PSR.si", 28, 0, 2, 23, NULL, },
{ "PSR.sp", 28, 0, 2, 20, NULL, },
{ "PSR.sp", 28, 0, 3, 20, NULL, },
{ "PSR.sp", 28, 0, 2, 20, NULL, },
{ "PSR.ss", 28, 0, 2, 40, NULL, },
{ "PSR.tb", 28, 0, 3, 26, NULL, },
{ "PSR.tb", 28, 0, 2, 26, NULL, },
{ "PSR.tb", 28, 0, 2, 26, NULL, },
{ "PSR.up", 28, 0, 2, 2, NULL, },
{ "PSR.vm", 28, 0, 1, 46, NULL, },
{ "PSR.vm", 28, 0, 2, 46, NULL, },
{ "RR#", 25, 0, 3, -1, NULL, },
{ "RR#", 25, 0, 2, -1, NULL, },
{ "RSE", 29, 0, 2, -1, NULL, },
{ "ALAT", 0, 1, 0, -1, NULL, },
{ "AR[BSP]", 26, 1, 2, 17, NULL, },
{ "AR[BSPSTORE]", 26, 1, 2, 18, NULL, },
{ "AR[CCV]", 26, 1, 2, 32, NULL, },
{ "AR[CFLG]", 26, 1, 2, 27, NULL, },
{ "AR[CSD]", 26, 1, 2, 25, NULL, },
{ "AR[EC]", 26, 1, 2, 66, NULL, },
{ "AR[EFLAG]", 26, 1, 2, 24, NULL, },
{ "AR[FCR]", 26, 1, 2, 21, NULL, },
{ "AR[FDR]", 26, 1, 2, 30, NULL, },
{ "AR[FIR]", 26, 1, 2, 29, NULL, },
{ "AR[FPSR].sf0.controls", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf1.controls", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf2.controls", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf3.controls", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf0.flags", 30, 1, 0, -1, NULL, },
{ "AR[FPSR].sf0.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf0.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf1.flags", 30, 1, 0, -1, NULL, },
{ "AR[FPSR].sf1.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf1.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf2.flags", 30, 1, 0, -1, NULL, },
{ "AR[FPSR].sf2.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf2.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf3.flags", 30, 1, 0, -1, NULL, },
{ "AR[FPSR].sf3.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].sf3.flags", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].rv", 30, 1, 2, -1, NULL, },
{ "AR[FPSR].traps", 30, 1, 2, -1, NULL, },
{ "AR[FSR]", 26, 1, 2, 28, NULL, },
{ "AR[ITC]", 26, 1, 2, 44, NULL, },
{ "AR[K%], % in 0 - 7", 1, 1, 2, -1, NULL, },
{ "AR[LC]", 26, 1, 2, 65, NULL, },
{ "AR[PFS]", 26, 1, 0, 64, NULL, },
{ "AR[PFS]", 26, 1, 2, 64, NULL, },
{ "AR[PFS]", 26, 1, 2, 64, NULL, },
{ "AR[RNAT]", 26, 1, 2, 19, NULL, },
{ "AR[RSC]", 26, 1, 2, 16, NULL, },
{ "AR[SSD]", 26, 1, 2, 26, NULL, },
{ "AR[UNAT]{%}, % in 0 - 63", 2, 1, 2, -1, NULL, },
{ "AR%, % in 8-15, 20, 22-23, 31, 33-35, 37-39, 41-43, 45-47, 67-111", 3, 1, 0, -1, NULL, },
{ "AR%, % in 48 - 63, 112-127", 4, 1, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 1, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 1, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 1, 2, -1, NULL, },
{ "BR%, % in 0 - 7", 5, 1, 0, -1, NULL, },
{ "CFM", 6, 1, 2, -1, NULL, },
{ "CPUID#", 7, 1, 0, -1, NULL, },
{ "CR[CMCV]", 27, 1, 2, 74, NULL, },
{ "CR[DCR]", 27, 1, 2, 0, NULL, },
{ "CR[EOI]", 27, 1, 7, 67, "SC Section 5.8.3.4, \"End of External Interrupt Register (EOI Ð CR67)\" on page 2:119", },
{ "CR[GPTA]", 27, 1, 2, 9, NULL, },
{ "CR[IFA]", 27, 1, 2, 20, NULL, },
{ "CR[IFS]", 27, 1, 2, 23, NULL, },
{ "CR[IHA]", 27, 1, 2, 25, NULL, },
{ "CR[IIM]", 27, 1, 2, 24, NULL, },
{ "CR[IIP]", 27, 1, 2, 19, NULL, },
{ "CR[IIPA]", 27, 1, 2, 22, NULL, },
{ "CR[IPSR]", 27, 1, 2, 16, NULL, },
{ "CR[IRR%], % in 0 - 3", 8, 1, 2, -1, NULL, },
{ "CR[ISR]", 27, 1, 2, 17, NULL, },
{ "CR[ITIR]", 27, 1, 2, 21, NULL, },
{ "CR[ITM]", 27, 1, 2, 1, NULL, },
{ "CR[ITV]", 27, 1, 2, 72, NULL, },
{ "CR[IVA]", 27, 1, 2, 2, NULL, },
{ "CR[IVR]", 27, 1, 7, 65, "SC", },
{ "CR[LID]", 27, 1, 7, 64, "SC", },
{ "CR[LRR%], % in 0 - 1", 9, 1, 2, -1, NULL, },
{ "CR[PMV]", 27, 1, 2, 73, NULL, },
{ "CR[PTA]", 27, 1, 2, 8, NULL, },
{ "CR[TPR]", 27, 1, 2, 66, NULL, },
{ "CR%, % in 3-7, 10-15, 18, 26-63, 75-79, 82-127", 10, 1, 0, -1, NULL, },
{ "DBR#", 11, 1, 2, -1, NULL, },
{ "DTC", 0, 1, 0, -1, NULL, },
{ "DTC", 0, 1, 2, -1, NULL, },
{ "DTC", 0, 1, 2, -1, NULL, },
{ "DTC_LIMIT*", 0, 1, 2, -1, NULL, },
{ "DTR", 0, 1, 2, -1, NULL, },
{ "DTR", 0, 1, 2, -1, NULL, },
{ "DTR", 0, 1, 2, -1, NULL, },
{ "DTR", 0, 1, 0, -1, NULL, },
{ "FR%, % in 0 - 1", 12, 1, 0, -1, NULL, },
{ "FR%, % in 2 - 127", 13, 1, 2, -1, NULL, },
{ "GR0", 14, 1, 0, -1, NULL, },
{ "GR%, % in 1 - 127", 15, 1, 2, -1, NULL, },
{ "IBR#", 16, 1, 2, -1, NULL, },
{ "InService*", 17, 1, 7, -1, "SC", },
{ "IP", 0, 1, 0, -1, NULL, },
{ "ITC", 0, 1, 0, -1, NULL, },
{ "ITC", 0, 1, 2, -1, NULL, },
{ "ITC", 0, 1, 2, -1, NULL, },
{ "ITR", 0, 1, 2, -1, NULL, },
{ "ITR", 0, 1, 2, -1, NULL, },
{ "ITR", 0, 1, 0, -1, NULL, },
{ "memory", 0, 1, 0, -1, NULL, },
{ "MSR#", 18, 1, 7, -1, "SC", },
{ "PKR#", 19, 1, 0, -1, NULL, },
{ "PKR#", 19, 1, 0, -1, NULL, },
{ "PKR#", 19, 1, 2, -1, NULL, },
{ "PMC#", 20, 1, 2, -1, NULL, },
{ "PMD#", 21, 1, 2, -1, NULL, },
{ "PR0", 0, 1, 0, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 1, 0, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 1, 0, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 1, 2, -1, NULL, },
{ "PR%, % in 1 - 15", 22, 1, 2, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 1, 0, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 1, 0, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 1, 2, -1, NULL, },
{ "PR%, % in 16 - 62", 23, 1, 2, -1, NULL, },
{ "PR63", 24, 1, 0, -1, NULL, },
{ "PR63", 24, 1, 0, -1, NULL, },
{ "PR63", 24, 1, 2, -1, NULL, },
{ "PR63", 24, 1, 2, -1, NULL, },
{ "PSR.ac", 28, 1, 2, 3, NULL, },
{ "PSR.be", 28, 1, 2, 1, NULL, },
{ "PSR.bn", 28, 1, 2, 44, NULL, },
{ "PSR.cpl", 28, 1, 2, 32, NULL, },
{ "PSR.da", 28, 1, 2, 38, NULL, },
{ "PSR.db", 28, 1, 2, 24, NULL, },
{ "PSR.dd", 28, 1, 2, 39, NULL, },
{ "PSR.dfh", 28, 1, 2, 19, NULL, },
{ "PSR.dfl", 28, 1, 2, 18, NULL, },
{ "PSR.di", 28, 1, 2, 22, NULL, },
{ "PSR.dt", 28, 1, 2, 17, NULL, },
{ "PSR.ed", 28, 1, 2, 43, NULL, },
{ "PSR.i", 28, 1, 2, 14, NULL, },
{ "PSR.ia", 28, 1, 2, 14, NULL, },
{ "PSR.ic", 28, 1, 2, 13, NULL, },
{ "PSR.id", 28, 1, 2, 14, NULL, },
{ "PSR.is", 28, 1, 2, 14, NULL, },
{ "PSR.it", 28, 1, 2, 14, NULL, },
{ "PSR.lp", 28, 1, 2, 25, NULL, },
{ "PSR.mc", 28, 1, 2, 35, NULL, },
{ "PSR.mfh", 28, 1, 0, 5, NULL, },
{ "PSR.mfh", 28, 1, 2, 5, NULL, },
{ "PSR.mfh", 28, 1, 2, 5, NULL, },
{ "PSR.mfl", 28, 1, 0, 4, NULL, },
{ "PSR.mfl", 28, 1, 2, 4, NULL, },
{ "PSR.mfl", 28, 1, 2, 4, NULL, },
{ "PSR.pk", 28, 1, 2, 15, NULL, },
{ "PSR.pp", 28, 1, 2, 21, NULL, },
{ "PSR.ri", 28, 1, 2, 41, NULL, },
{ "PSR.rt", 28, 1, 2, 27, NULL, },
{ "PSR.si", 28, 1, 2, 23, NULL, },
{ "PSR.sp", 28, 1, 2, 20, NULL, },
{ "PSR.ss", 28, 1, 2, 40, NULL, },
{ "PSR.tb", 28, 1, 2, 26, NULL, },
{ "PSR.up", 28, 1, 2, 2, NULL, },
{ "PSR.vm", 28, 1, 2, 46, NULL, },
{ "RR#", 25, 1, 2, -1, NULL, },
{ "RSE", 29, 1, 2, -1, NULL, },
{ "PR63", 24, 2, 6, -1, NULL, },
};
static const unsigned short dep0[] = {
97, 282, 2140, 2327,
};
static const unsigned short dep1[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2327, 4135, 20616,
};
static const unsigned short dep2[] = {
97, 282, 2166, 2167, 2169, 2170, 2172, 2173, 2175, 2344, 2347, 2348, 2351,
2352, 2355, 2356,
};
static const unsigned short dep3[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 20616,
};
static const unsigned short dep4[] = {
97, 282, 22646, 22647, 22649, 22650, 22652, 22653, 22655, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep5[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
4135, 20616, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep6[] = {
97, 282, 2166, 2167, 2169, 2170, 2172, 2173, 2175, 2344, 2345, 2347, 2349,
2351, 2353, 2355,
};
static const unsigned short dep7[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2344, 2345, 2348, 2349, 2352, 2353, 2356, 4135, 20616,
};
static const unsigned short dep8[] = {
97, 282, 2166, 2167, 2169, 2170, 2172, 2173, 2175, 2344, 2346, 2348, 2350,
2352, 2354, 2356,
};
static const unsigned short dep9[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2344, 2346, 2347, 2350, 2351, 2354, 2355, 4135, 20616,
};
static const unsigned short dep10[] = {
97, 282, 2166, 2167, 2169, 2170, 2172, 2173, 2175, 2344, 2345, 2346, 2347,
2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356,
};
static const unsigned short dep11[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356,
4135, 20616,
};
static const unsigned short dep12[] = {
97, 282, 2395,
};
static const unsigned short dep13[] = {
40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2082, 2083, 2166, 2168,
2169, 2171, 2172, 2174, 2175, 4135,
};
static const unsigned short dep14[] = {
97, 163, 282, 325, 2395, 28866, 29018,
};
static const unsigned short dep15[] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 40, 41, 97, 150, 152, 158, 162,
164, 175, 185, 186, 188, 282, 325, 2082, 2083, 2166, 2168, 2169, 2171, 2172,
2174, 2175, 4135, 28866, 29018,
};
static const unsigned short dep16[] = {
1, 6, 40, 97, 137, 196, 201, 241, 282, 312, 2395, 28866, 29018,
};
static const unsigned short dep17[] = {
1, 25, 27, 38, 40, 41, 97, 158, 162, 164, 166, 167, 175, 185, 186, 188, 196,
201, 241, 282, 312, 2082, 2083, 2166, 2168, 2169, 2171, 2172, 2174, 2175,
4135, 28866, 29018,
};
static const unsigned short dep18[] = {
1, 40, 51, 97, 196, 241, 248, 282, 28866, 29018,
};
static const unsigned short dep19[] = {
1, 38, 40, 41, 97, 158, 160, 161, 162, 175, 185, 190, 191, 196, 241, 248,
282, 4135, 28866, 29018,
};
static const unsigned short dep20[] = {
40, 97, 241, 282,
};
static const unsigned short dep21[] = {
97, 158, 162, 175, 185, 241, 282,
};
static const unsigned short dep22[] = {
1, 40, 97, 131, 135, 136, 138, 139, 142, 143, 146, 149, 152, 155, 156, 157,
158, 161, 162, 163, 164, 167, 168, 169, 170, 173, 174, 175, 178, 181, 184,
185, 188, 189, 191, 196, 241, 282, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 333,
334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 28866, 29018,
};
static const unsigned short dep23[] = {
1, 38, 40, 41, 50, 51, 55, 58, 73, 97, 137, 138, 158, 162, 175, 185, 190,
191, 196, 241, 282, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
320, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 333, 334, 335, 336,
337, 338, 339, 340, 341, 342, 343, 344, 4135, 28866, 29018,
};
static const unsigned short dep24[] = {
97, 136, 282, 311,
};
static const unsigned short dep25[] = {
97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 311,
};
static const unsigned short dep26[] = {
97, 137, 282, 312,
};
static const unsigned short dep27[] = {
25, 26, 97, 98, 101, 105, 108, 137, 138, 158, 162, 164, 175, 185, 282, 312,
};
static const unsigned short dep28[] = {
97, 190, 282, 344,
};
static const unsigned short dep29[] = {
97, 98, 101, 105, 108, 137, 138, 158, 162, 164, 175, 185, 282, 344,
};
static const unsigned short dep30[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2168, 2169, 2171, 2172, 2174, 2175,
4135,
};
static const unsigned short dep31[] = {
1, 25, 40, 97, 196, 228, 229, 241, 282, 2082, 2285, 2288, 2395, 28866, 29018,
};
static const unsigned short dep32[] = {
1, 6, 38, 40, 41, 97, 137, 138, 158, 162, 164, 175, 185, 186, 188, 196, 228,
230, 241, 282, 2082, 2083, 2166, 2168, 2169, 2171, 2172, 2174, 2175, 2286,
2288, 4135, 28866, 29018,
};
static const unsigned short dep33[] = {
97, 282,
};
static const unsigned short dep34[] = {
97, 158, 162, 175, 185, 282, 2082, 2084,
};
static const unsigned short dep35[] = {
40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166, 2168, 2169, 2171,
2172, 2174, 2175, 4135,
};
static const unsigned short dep36[] = {
6, 37, 38, 39, 97, 125, 126, 201, 241, 282, 307, 308, 2395,
};
static const unsigned short dep37[] = {
6, 37, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 201, 241, 282, 307,
308, 347, 2166, 2168, 2169, 2171, 2172, 2174, 2175, 4135,
};
static const unsigned short dep38[] = {
24, 97, 227, 282, 2395,
};
static const unsigned short dep39[] = {
24, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 227, 282, 2166, 2168, 2169,
2171, 2172, 2174, 2175, 4135,
};
static const unsigned short dep40[] = {
6, 24, 37, 38, 39, 97, 125, 126, 201, 227, 241, 282, 307, 308, 2395,
};
static const unsigned short dep41[] = {
6, 24, 37, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 201, 227, 241, 282,
307, 308, 347, 2166, 2168, 2169, 2171, 2172, 2174, 2175, 4135,
};
static const unsigned short dep42[] = {
1, 6, 38, 40, 41, 97, 137, 138, 158, 162, 164, 175, 185, 186, 188, 196, 228,
230, 241, 282, 2166, 2168, 2169, 2171, 2172, 2174, 2175, 2286, 2288, 4135,
28866, 29018,
};
static const unsigned short dep43[] = {
97, 158, 162, 175, 185, 282,
};
static const unsigned short dep44[] = {
15, 97, 210, 211, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828, 22831,
22832, 22835, 22836,
};
static const unsigned short dep45[] = {
11, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep46[] = {
15, 16, 17, 18, 97, 210, 211, 213, 214, 216, 217, 219, 220, 282, 2136, 2325,
18601, 18602, 18761, 18762, 18764, 18765, 22646, 22647, 22648, 22650, 22651,
22653, 22654, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep47[] = {
11, 12, 13, 14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 213, 215,
216, 218, 219, 221, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173, 2325, 4135,
16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep48[] = {
16, 97, 213, 214, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828, 22831,
22832, 22835, 22836,
};
static const unsigned short dep49[] = {
12, 19, 20, 40, 41, 97, 158, 162, 175, 185, 213, 215, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep50[] = {
17, 97, 216, 217, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828, 22831,
22832, 22835, 22836,
};
static const unsigned short dep51[] = {
13, 19, 20, 40, 41, 97, 158, 162, 175, 185, 216, 218, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep52[] = {
18, 97, 219, 220, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828, 22831,
22832, 22835, 22836,
};
static const unsigned short dep53[] = {
14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 219, 221, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep54[] = {
15, 97, 210, 211, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep55[] = {
11, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766,
};
static const unsigned short dep56[] = {
15, 16, 17, 18, 97, 210, 211, 213, 214, 216, 217, 219, 220, 282, 2136, 2325,
18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep57[] = {
11, 12, 13, 14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 213, 215,
216, 218, 219, 221, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173, 2325, 4135,
16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766,
};
static const unsigned short dep58[] = {
16, 97, 213, 214, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep59[] = {
12, 19, 20, 40, 41, 97, 158, 162, 175, 185, 213, 215, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766,
};
static const unsigned short dep60[] = {
17, 97, 216, 217, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep61[] = {
13, 19, 20, 40, 41, 97, 158, 162, 175, 185, 216, 218, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766,
};
static const unsigned short dep62[] = {
18, 97, 219, 220, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep63[] = {
14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 219, 221, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763,
18764, 18766,
};
static const unsigned short dep64[] = {
97, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep65[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173,
2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766,
};
static const unsigned short dep66[] = {
11, 97, 206, 282,
};
static const unsigned short dep67[] = {
11, 40, 41, 97, 158, 162, 175, 185, 206, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep68[] = {
11, 40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep69[] = {
12, 97, 207, 282,
};
static const unsigned short dep70[] = {
11, 40, 41, 97, 158, 162, 175, 185, 207, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep71[] = {
13, 97, 208, 282,
};
static const unsigned short dep72[] = {
11, 40, 41, 97, 158, 162, 175, 185, 208, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep73[] = {
14, 97, 209, 282,
};
static const unsigned short dep74[] = {
11, 40, 41, 97, 158, 162, 175, 185, 209, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep75[] = {
15, 97, 211, 212, 282,
};
static const unsigned short dep76[] = {
40, 41, 97, 158, 162, 175, 185, 211, 212, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep77[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep78[] = {
16, 97, 214, 215, 282,
};
static const unsigned short dep79[] = {
40, 41, 97, 158, 162, 175, 185, 214, 215, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep80[] = {
17, 97, 217, 218, 282,
};
static const unsigned short dep81[] = {
40, 41, 97, 158, 162, 175, 185, 217, 218, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep82[] = {
18, 97, 220, 221, 282,
};
static const unsigned short dep83[] = {
40, 41, 97, 158, 162, 175, 185, 220, 221, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep84[] = {
15, 19, 20, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166, 2167,
2170, 2173, 4135,
};
static const unsigned short dep85[] = {
15, 16, 19, 20, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166,
2167, 2170, 2173, 4135,
};
static const unsigned short dep86[] = {
15, 17, 19, 20, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166,
2167, 2170, 2173, 4135,
};
static const unsigned short dep87[] = {
15, 18, 19, 20, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166,
2167, 2170, 2173, 4135,
};
static const unsigned short dep88[] = {
15, 97, 210, 211, 282,
};
static const unsigned short dep89[] = {
11, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 282, 2166, 2167, 2170,
2173, 4135,
};
static const unsigned short dep90[] = {
15, 16, 17, 18, 97, 210, 211, 213, 214, 216, 217, 219, 220, 282,
};
static const unsigned short dep91[] = {
11, 12, 13, 14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 213, 215,
216, 218, 219, 221, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep92[] = {
16, 97, 213, 214, 282,
};
static const unsigned short dep93[] = {
12, 19, 20, 40, 41, 97, 158, 162, 175, 185, 213, 215, 282, 2166, 2167, 2170,
2173, 4135,
};
static const unsigned short dep94[] = {
17, 97, 216, 217, 282,
};
static const unsigned short dep95[] = {
13, 19, 20, 40, 41, 97, 158, 162, 175, 185, 216, 218, 282, 2166, 2167, 2170,
2173, 4135,
};
static const unsigned short dep96[] = {
18, 97, 219, 220, 282,
};
static const unsigned short dep97[] = {
14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 219, 221, 282, 2166, 2167, 2170,
2173, 4135,
};
static const unsigned short dep98[] = {
15, 97, 210, 211, 282, 2166, 2167, 2168, 2170, 2171, 2173, 2174, 2344, 2347,
2348, 2351, 2352, 2355, 2356,
};
static const unsigned short dep99[] = {
11, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 16528,
16530, 16531, 16533,
};
static const unsigned short dep100[] = {
15, 16, 17, 18, 97, 210, 211, 213, 214, 216, 217, 219, 220, 282, 2166, 2167,
2168, 2170, 2171, 2173, 2174, 2344, 2347, 2348, 2351, 2352, 2355, 2356,
};
static const unsigned short dep101[] = {
11, 12, 13, 14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 213, 215,
216, 218, 219, 221, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173, 2344, 2347,
2348, 2351, 2352, 2355, 2356, 4135, 16528, 16530, 16531, 16533,
};
static const unsigned short dep102[] = {
16, 97, 213, 214, 282, 2166, 2167, 2168, 2170, 2171, 2173, 2174, 2344, 2347,
2348, 2351, 2352, 2355, 2356,
};
static const unsigned short dep103[] = {
12, 19, 20, 40, 41, 97, 158, 162, 175, 185, 213, 215, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 16528,
16530, 16531, 16533,
};
static const unsigned short dep104[] = {
17, 97, 216, 217, 282, 2166, 2167, 2168, 2170, 2171, 2173, 2174, 2344, 2347,
2348, 2351, 2352, 2355, 2356,
};
static const unsigned short dep105[] = {
13, 19, 20, 40, 41, 97, 158, 162, 175, 185, 216, 218, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 16528,
16530, 16531, 16533,
};
static const unsigned short dep106[] = {
18, 97, 219, 220, 282, 2166, 2167, 2168, 2170, 2171, 2173, 2174, 2344, 2347,
2348, 2351, 2352, 2355, 2356,
};
static const unsigned short dep107[] = {
14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 219, 221, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 16528,
16530, 16531, 16533,
};
static const unsigned short dep108[] = {
15, 97, 210, 211, 282, 22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824,
22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep109[] = {
11, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 4135, 16528, 16530, 16531, 16533, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep110[] = {
15, 16, 17, 18, 97, 210, 211, 213, 214, 216, 217, 219, 220, 282, 22646, 22647,
22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828, 22831, 22832, 22835,
22836,
};
static const unsigned short dep111[] = {
11, 12, 13, 14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 210, 212, 213, 215,
216, 218, 219, 221, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173, 4135, 16528,
16530, 16531, 16533, 22824, 22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep112[] = {
16, 97, 213, 214, 282, 22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824,
22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep113[] = {
12, 19, 20, 40, 41, 97, 158, 162, 175, 185, 213, 215, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 4135, 16528, 16530, 16531, 16533, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep114[] = {
17, 97, 216, 217, 282, 22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824,
22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep115[] = {
13, 19, 20, 40, 41, 97, 158, 162, 175, 185, 216, 218, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 4135, 16528, 16530, 16531, 16533, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep116[] = {
18, 97, 219, 220, 282, 22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824,
22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep117[] = {
14, 19, 20, 40, 41, 97, 158, 162, 175, 185, 219, 221, 282, 2135, 2136, 2137,
2166, 2167, 2170, 2173, 4135, 16528, 16530, 16531, 16533, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep118[] = {
97, 282, 2166, 2167, 2168, 2170, 2171, 2173, 2174, 2344, 2347, 2348, 2351,
2352, 2355, 2356,
};
static const unsigned short dep119[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173,
2344, 2347, 2348, 2351, 2352, 2355, 2356, 4135, 16528, 16530, 16531, 16533,
};
static const unsigned short dep120[] = {
97, 282, 22646, 22647, 22648, 22650, 22651, 22653, 22654, 22824, 22827, 22828,
22831, 22832, 22835, 22836,
};
static const unsigned short dep121[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173,
4135, 16528, 16530, 16531, 16533, 22824, 22827, 22828, 22831, 22832, 22835,
22836,
};
static const unsigned short dep122[] = {
19, 20, 40, 41, 97, 158, 162, 175, 185, 282, 2135, 2136, 2137, 2166, 2167,
2170, 2173, 2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766,
};
static const unsigned short dep123[] = {
40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep124[] = {
97, 282, 2083, 2084, 2286, 2287,
};
static const unsigned short dep125[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2285, 2287, 4135, 20616,
};
static const unsigned short dep126[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2082, 2084, 2166, 2167, 2170, 2173, 2327,
4135, 20616,
};
static const unsigned short dep127[] = {
97, 282, 14455, 14457, 14458, 14460, 14461, 14463, 14635, 14636, 14639, 14640,
14643, 14644,
};
static const unsigned short dep128[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 4135, 14635, 14636,
14639, 14640, 14643, 14644, 20616, 24694, 24695, 24698, 24701,
};
static const unsigned short dep129[] = {
97, 122, 124, 125, 127, 282, 303, 304, 307, 308,
};
static const unsigned short dep130[] = {
40, 41, 97, 158, 162, 175, 185, 282, 303, 304, 307, 308, 4135, 24694, 24695,
24698, 24701,
};
static const unsigned short dep131[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep132[] = {
40, 41, 97, 119, 122, 125, 158, 162, 175, 185, 282, 2327, 4135, 20616, 24694,
};
static const unsigned short dep133[] = {
6, 24, 26, 27, 97, 201, 227, 230, 282, 2081, 2284,
};
static const unsigned short dep134[] = {
40, 41, 97, 158, 162, 175, 185, 201, 227, 229, 282, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 2284, 4135, 20616,
};
static const unsigned short dep135[] = {
6, 24, 25, 26, 40, 41, 97, 158, 162, 175, 185, 282, 2081, 2166, 2167, 2170,
2173, 2327, 4135, 20616,
};
static const unsigned short dep136[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 2344, 2347, 2348,
2351, 2352, 2355, 2356, 4135,
};
static const unsigned short dep137[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 4135, 22824,
22827, 22828, 22831, 22832, 22835, 22836,
};
static const unsigned short dep138[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 2344, 2345, 2348,
2349, 2352, 2353, 2356, 4135,
};
static const unsigned short dep139[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 2344, 2346, 2347,
2350, 2351, 2354, 2355, 4135,
};
static const unsigned short dep140[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2166, 2167, 2170, 2173, 2344, 2345, 2346,
2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 4135,
};
static const unsigned short dep141[] = {
0, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2166, 2167, 2170, 2173,
4135,
};
static const unsigned short dep142[] = {
0, 97, 195, 282,
};
static const unsigned short dep143[] = {
0, 40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 195, 282, 2166, 2167, 2170,
2173, 4135,
};
static const unsigned short dep144[] = {
40, 41, 97, 158, 162, 175, 185, 195, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep145[] = {
2, 28, 97, 197, 231, 282, 28866, 29018,
};
static const unsigned short dep146[] = {
1, 2, 28, 29, 97, 158, 162, 175, 177, 178, 185, 197, 231, 282, 28866, 29018,
};
static const unsigned short dep147[] = {
1, 28, 29, 38, 40, 41, 97, 158, 162, 175, 177, 178, 185, 197, 231, 282, 4135,
28866, 29018,
};
static const unsigned short dep148[] = {
0, 40, 41, 97, 158, 162, 175, 185, 195, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep149[] = {
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
28, 29, 30, 31, 97, 196, 197, 198, 199, 200, 202, 203, 204, 205, 206, 207,
208, 209, 211, 212, 214, 215, 217, 218, 220, 221, 222, 223, 224, 225, 231,
232, 233, 234, 282, 2071, 2081, 2274, 2284, 28866, 29018,
};
static const unsigned short dep150[] = {
29, 40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 196, 197, 198, 199,
200, 202, 203, 204, 205, 206, 207, 208, 209, 211, 212, 214, 215, 217, 218,
220, 221, 222, 223, 224, 225, 231, 232, 233, 234, 282, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 2274, 2284, 4135, 20616, 28866, 29018,
};
static const unsigned short dep151[] = {
97, 282, 14464, 14466, 14468, 14470, 14505, 14506, 14525, 14645, 14646, 14666,
14667, 14669, 14670, 14679,
};
static const unsigned short dep152[] = {
40, 41, 97, 158, 162, 175, 183, 184, 185, 282, 2166, 2167, 2170, 2173, 4135,
14645, 14646, 14666, 14667, 14669, 14670, 14679,
};
static const unsigned short dep153[] = {
14464, 14466, 14468, 14470, 14505, 14506, 14525, 14645, 14646, 14666, 14667,
14669, 14670, 14679,
};
static const unsigned short dep154[] = {
183, 184, 14645, 14646, 14666, 14667, 14669, 14670, 14679,
};
static const unsigned short dep155[] = {
97, 282, 14465, 14466, 14469, 14470, 14480, 14481, 14483, 14484, 14486, 14487,
14489, 14490, 14493, 14495, 14496, 14505, 14506, 14507, 14508, 14510, 14515,
14516, 14518, 14519, 14525, 14645, 14646, 14652, 14653, 14654, 14655, 14657,
14659, 14666, 14667, 14669, 14670, 14671, 14672, 14675, 14676, 14679,
};
static const unsigned short dep156[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2166, 2167, 2170,
2173, 4135, 14645, 14646, 14652, 14653, 14654, 14655, 14657, 14659, 14666,
14667, 14669, 14670, 14671, 14672, 14675, 14676, 14679, 34888,
};
static const unsigned short dep157[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2166, 2167, 2170,
2173, 4135, 14645, 14646, 14652, 14653, 14654, 14655, 14657, 14659, 14666,
14667, 14669, 14670, 14671, 14672, 14675, 14676, 14679,
};
static const unsigned short dep158[] = {
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
28, 29, 30, 31, 40, 41, 97, 137, 138, 158, 162, 175, 180, 181, 185, 190, 191,
282, 2071, 2081, 2166, 2167, 2170, 2173, 2327, 4135, 20616, 28866,
};
static const unsigned short dep159[] = {
43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63,
64, 65, 67, 69, 70, 71, 72, 73, 94, 96, 97, 243, 244, 245, 246, 247, 248,
249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261, 263, 264, 265, 281,
282, 2116, 2310,
};
static const unsigned short dep160[] = {
40, 41, 96, 97, 137, 138, 158, 160, 161, 162, 175, 185, 190, 191, 243, 244,
245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261,
263, 264, 265, 281, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2310, 4135,
20616,
};
static const unsigned short dep161[] = {
59, 95, 97, 254, 281, 282, 2140, 2327,
};
static const unsigned short dep162[] = {
40, 41, 43, 44, 46, 48, 49, 51, 52, 53, 54, 56, 57, 60, 61, 63, 64, 65, 66,
67, 69, 70, 71, 94, 95, 97, 137, 138, 158, 160, 161, 162, 175, 185, 190, 191,
254, 281, 282, 2107, 2116, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep163[] = {
2, 28, 41, 97, 197, 231, 241, 282, 2140, 2327, 28866, 29018,
};
static const unsigned short dep164[] = {
2, 25, 26, 28, 29, 38, 40, 41, 97, 158, 162, 175, 177, 178, 185, 197, 231,
241, 282, 2327, 4135, 20616, 28866, 29018,
};
static const unsigned short dep165[] = {
97, 129, 130, 133, 134, 140, 141, 144, 145, 147, 148, 150, 151, 153, 154,
157, 159, 160, 165, 166, 169, 170, 171, 172, 174, 176, 177, 179, 180, 182,
183, 186, 187, 189, 282, 309, 310, 314, 316, 317, 318, 319, 321, 323, 327,
330, 331, 333, 334, 335, 336, 338, 339, 340, 342, 343,
};
static const unsigned short dep166[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 309, 310, 314, 316,
317, 318, 319, 321, 323, 327, 330, 331, 333, 334, 335, 336, 338, 339, 340,
342, 343, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616, 34888,
};
static const unsigned short dep167[] = {
97, 128, 130, 132, 134, 169, 170, 189, 282, 309, 310, 330, 331, 333, 334,
343,
};
static const unsigned short dep168[] = {
40, 41, 97, 158, 162, 175, 183, 184, 185, 282, 309, 310, 330, 331, 333, 334,
343, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep169[] = {
40, 41, 97, 130, 131, 134, 135, 137, 138, 141, 142, 145, 146, 148, 149, 151,
152, 154, 155, 157, 158, 159, 161, 162, 164, 165, 167, 168, 169, 170, 172,
173, 174, 175, 176, 178, 179, 181, 182, 184, 185, 187, 188, 189, 190, 191,
282, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep170[] = {
40, 41, 97, 130, 131, 134, 135, 158, 162, 169, 170, 175, 185, 189, 282, 2166,
2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep171[] = {
40, 41, 70, 76, 77, 82, 84, 97, 111, 137, 138, 153, 155, 158, 162, 171, 173,
175, 185, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep172[] = {
40, 41, 70, 76, 77, 82, 84, 97, 111, 137, 138, 139, 140, 142, 143, 153, 155,
158, 162, 171, 173, 175, 185, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 4135, 20616,
};
static const unsigned short dep173[] = {
77, 78, 97, 101, 102, 269, 270, 282, 284, 285,
};
static const unsigned short dep174[] = {
40, 41, 47, 62, 78, 80, 86, 97, 99, 102, 137, 138, 158, 160, 161, 162, 175,
185, 190, 191, 192, 269, 270, 282, 284, 285, 2138, 2139, 2140, 2166, 2167,
2170, 2173, 4135, 20616,
};
static const unsigned short dep175[] = {
40, 41, 47, 62, 78, 80, 97, 99, 102, 104, 106, 137, 138, 158, 160, 161, 162,
175, 185, 190, 191, 192, 269, 270, 282, 284, 285, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep176[] = {
97, 282, 12480, 12481, 12633,
};
static const unsigned short dep177[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 12633, 20616,
};
static const unsigned short dep178[] = {
97, 282, 6219, 6220, 6411,
};
static const unsigned short dep179[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 6411, 20616,
};
static const unsigned short dep180[] = {
97, 282, 6237, 6424,
};
static const unsigned short dep181[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 6424, 20616,
};
static const unsigned short dep182[] = {
97, 282, 6255, 6256, 6257, 6258, 6435, 6437, 8484,
};
static const unsigned short dep183[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 6258, 6436, 6437, 8304, 8483, 20616,
};
static const unsigned short dep184[] = {
97, 282, 6259, 6260, 6438,
};
static const unsigned short dep185[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 6438, 20616,
};
static const unsigned short dep186[] = {
97, 282, 6261, 6439,
};
static const unsigned short dep187[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 6439, 20616,
};
static const unsigned short dep188[] = {
97, 282, 10350, 10530,
};
static const unsigned short dep189[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 10530, 20616,
};
static const unsigned short dep190[] = {
77, 78, 82, 83, 97, 101, 102, 269, 270, 272, 273, 282, 284, 285,
};
static const unsigned short dep191[] = {
40, 41, 47, 62, 78, 80, 83, 86, 97, 99, 102, 137, 138, 158, 160, 161, 162,
175, 185, 190, 191, 192, 269, 270, 272, 274, 282, 284, 285, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep192[] = {
77, 78, 97, 101, 102, 104, 105, 269, 270, 282, 284, 285, 286, 287,
};
static const unsigned short dep193[] = {
40, 41, 47, 62, 78, 80, 97, 99, 102, 104, 106, 137, 138, 158, 160, 161, 162,
175, 185, 190, 191, 192, 269, 270, 282, 284, 285, 286, 287, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep194[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 12481, 20616,
};
static const unsigned short dep195[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 6219, 20616,
};
static const unsigned short dep196[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 6237, 20616,
};
static const unsigned short dep197[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 6257, 8303, 20616,
};
static const unsigned short dep198[] = {
40, 41, 97, 137, 138, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 6259, 20616,
};
static const unsigned short dep199[] = {
40, 41, 97, 137, 138, 158, 162, 175, 183, 184, 185, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 6260, 6261, 20616,
};
static const unsigned short dep200[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2327, 4135, 10350, 20616,
};
static const unsigned short dep201[] = {
40, 41, 97, 158, 162, 175, 185, 190, 191, 282, 2138, 2139, 2140, 2166, 2167,
2170, 2173, 2327, 4135, 6186, 20616,
};
static const unsigned short dep202[] = {
77, 79, 80, 97, 98, 99, 100, 268, 269, 282, 283, 284,
};
static const unsigned short dep203[] = {
40, 41, 78, 79, 83, 85, 97, 100, 102, 104, 107, 137, 138, 158, 162, 175, 185,
190, 191, 192, 268, 270, 282, 283, 285, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 4135, 20616,
};
static const unsigned short dep204[] = {
77, 79, 80, 81, 97, 98, 99, 100, 103, 268, 269, 271, 282, 283, 284,
};
static const unsigned short dep205[] = {
40, 41, 78, 79, 81, 83, 85, 97, 100, 102, 103, 104, 107, 137, 138, 158, 162,
175, 185, 190, 191, 192, 268, 270, 271, 282, 283, 285, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep206[] = {
77, 79, 80, 84, 85, 86, 97, 98, 99, 100, 268, 269, 274, 275, 282, 283, 284,
};
static const unsigned short dep207[] = {
40, 41, 78, 79, 83, 85, 97, 100, 102, 137, 138, 158, 162, 175, 185, 190, 191,
192, 268, 270, 273, 275, 282, 283, 285, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 4135, 20616,
};
static const unsigned short dep208[] = {
77, 79, 80, 97, 98, 99, 100, 106, 107, 108, 268, 269, 282, 283, 284, 287,
288,
};
static const unsigned short dep209[] = {
40, 41, 78, 79, 97, 100, 102, 104, 107, 137, 138, 158, 162, 175, 185, 190,
191, 192, 268, 270, 282, 283, 285, 286, 288, 2138, 2139, 2140, 2166, 2167,
2170, 2173, 4135, 20616,
};
static const unsigned short dep210[] = {
40, 41, 46, 70, 97, 158, 162, 175, 185, 190, 191, 192, 282, 2138, 2139, 2140,
2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep211[] = {
40, 41, 97, 158, 162, 175, 185, 190, 191, 192, 282, 2138, 2139, 2140, 2166,
2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep212[] = {
40, 41, 70, 77, 82, 84, 97, 137, 138, 153, 155, 158, 162, 175, 185, 190, 191,
192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep213[] = {
40, 41, 97, 158, 162, 164, 175, 185, 186, 188, 282, 2135, 2136, 2137, 2138,
2139, 2140, 2166, 2167, 2170, 2173, 4135, 16528, 16530, 16531, 16533, 20616,
};
static const unsigned short dep214[] = {
40, 41, 70, 77, 82, 84, 97, 153, 155, 158, 162, 175, 185, 192, 282, 2138,
2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep215[] = {
40, 41, 78, 79, 97, 100, 137, 138, 158, 162, 175, 185, 190, 191, 268, 270,
282, 283, 285, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep216[] = {
40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep217[] = {
5, 97, 200, 282, 2140, 2327,
};
static const unsigned short dep218[] = {
40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 200, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep219[] = {
40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175, 185,
190, 191, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep220[] = {
0, 97, 195, 282, 2140, 2327,
};
static const unsigned short dep221[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep222[] = {
0, 40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133,
135, 137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175,
185, 190, 191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327,
4135, 20616,
};
static const unsigned short dep223[] = {
31, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135, 20616,
};
static const unsigned short dep224[] = {
0, 97, 195, 282, 2327, 26715,
};
static const unsigned short dep225[] = {
0, 97, 109, 195, 282, 289,
};
static const unsigned short dep226[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep227[] = {
0, 5, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep228[] = {
0, 31, 97, 109, 195, 234, 282, 289,
};
static const unsigned short dep229[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 234, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 4135, 20616,
};
static const unsigned short dep230[] = {
0, 97, 109, 195, 282, 289, 2140, 2327,
};
static const unsigned short dep231[] = {
0, 3, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep232[] = {
0, 3, 5, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133,
135, 137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185,
190, 191, 192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327,
4135, 20616,
};
static const unsigned short dep233[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep234[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2135, 2136, 2137, 2166, 2167, 2170, 2173,
2327, 4135, 16528, 16530, 16531, 16533, 20616,
};
static const unsigned short dep235[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep236[] = {
0, 31, 97, 109, 195, 234, 282, 289, 2140, 2327,
};
static const unsigned short dep237[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 234, 282, 289, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2327, 4135,
20616,
};
static const unsigned short dep238[] = {
40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 4135, 16528, 16530,
16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep239[] = {
40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175, 185,
190, 191, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 4135,
16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep240[] = {
0, 97, 195, 282, 2136, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep241[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 4135,
16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep242[] = {
0, 40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133,
135, 137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175,
185, 190, 191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325,
4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep243[] = {
0, 97, 195, 282, 2137, 2325, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep244[] = {
97, 282, 2136, 2140, 2325, 2327, 18601, 18602, 18761, 18762, 18764, 18765,
};
static const unsigned short dep245[] = {
40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 2327, 4135, 16528,
16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep246[] = {
40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175, 185,
190, 191, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 2327,
4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep247[] = {
0, 97, 195, 282, 2136, 2140, 2325, 2327, 18601, 18602, 18761, 18762, 18764,
18765,
};
static const unsigned short dep248[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133, 135,
137, 138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190,
191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325, 2327,
4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep249[] = {
0, 40, 41, 44, 70, 76, 77, 82, 84, 97, 109, 111, 128, 129, 131, 132, 133,
135, 137, 138, 139, 140, 142, 143, 153, 155, 156, 158, 162, 171, 173, 175,
185, 190, 191, 192, 195, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173, 2325,
2327, 4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep250[] = {
0, 97, 195, 282, 2137, 2140, 2325, 2327, 18601, 18602, 18761, 18762, 18764,
18765,
};
static const unsigned short dep251[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 282, 289, 2135, 2136, 2137, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 4135, 16528, 16530, 16531, 16533, 20616,
};
static const unsigned short dep252[] = {
40, 41, 70, 76, 77, 82, 84, 97, 137, 138, 139, 140, 142, 143, 153, 155, 156,
158, 162, 171, 173, 175, 185, 192, 282, 2166, 2167, 2170, 2173, 4135,
};
static const unsigned short dep253[] = {
40, 41, 70, 76, 77, 82, 84, 97, 137, 138, 139, 140, 142, 143, 153, 155, 156,
158, 162, 171, 173, 175, 185, 192, 282, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 2327, 4135, 20616,
};
static const unsigned short dep254[] = {
40, 41, 97, 158, 162, 175, 185, 282, 2138, 2139, 2140, 2166, 2167, 2170, 2173,
2325, 4135, 16528, 16530, 16531, 16533, 18761, 18763, 18764, 18766, 20616,
};
static const unsigned short dep255[] = {
0, 40, 41, 70, 76, 77, 82, 84, 97, 111, 128, 129, 131, 132, 133, 135, 137,
138, 139, 140, 142, 143, 153, 155, 158, 162, 171, 173, 175, 185, 190, 191,
192, 195, 282, 289, 2135, 2136, 2137, 2138, 2139, 2140, 2166, 2167, 2170,
2173, 2327, 4135, 16528, 16530, 16531, 16533, 20616,
};
static const unsigned short dep256[] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 24, 26, 27, 28, 29, 30, 31, 97, 196, 197, 198, 199, 200, 201, 202, 203,
204, 205, 206, 207, 208, 209, 211, 212, 214, 215, 217, 218, 220, 221, 222,
223, 224, 225, 227, 230, 231, 232, 233, 234, 282, 2071, 2081, 2140, 2274,
2284, 2327, 28866, 29018,
};
static const unsigned short dep257[] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 24, 25, 26, 28, 29, 30, 31, 40, 41, 97, 137, 138, 158, 162, 175, 180,
181, 185, 190, 191, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206,
207, 208, 209, 211, 212, 214, 215, 217, 218, 220, 221, 222, 223, 224, 225,
227, 229, 231, 232, 233, 234, 282, 2071, 2081, 2138, 2139, 2140, 2166, 2167,
2170, 2173, 2274, 2284, 2327, 4135, 20616, 28866, 29018,
};
#define NELS(X) (sizeof(X)/sizeof(X[0]))
static const struct ia64_opcode_dependency
op_dependencies[] = {
{ NELS(dep1), dep1, NELS(dep0), dep0, },
{ NELS(dep3), dep3, NELS(dep2), dep2, },
{ NELS(dep5), dep5, NELS(dep4), dep4, },
{ NELS(dep7), dep7, NELS(dep6), dep6, },
{ NELS(dep9), dep9, NELS(dep8), dep8, },
{ NELS(dep11), dep11, NELS(dep10), dep10, },
{ NELS(dep13), dep13, NELS(dep12), dep12, },
{ NELS(dep15), dep15, NELS(dep14), dep14, },
{ NELS(dep17), dep17, NELS(dep16), dep16, },
{ NELS(dep19), dep19, NELS(dep18), dep18, },
{ NELS(dep21), dep21, NELS(dep20), dep20, },
{ NELS(dep23), dep23, NELS(dep22), dep22, },
{ NELS(dep25), dep25, NELS(dep24), dep24, },
{ NELS(dep27), dep27, NELS(dep26), dep26, },
{ NELS(dep29), dep29, NELS(dep28), dep28, },
{ NELS(dep30), dep30, NELS(dep12), dep12, },
{ NELS(dep32), dep32, NELS(dep31), dep31, },
{ NELS(dep34), dep34, NELS(dep33), dep33, },
{ NELS(dep35), dep35, NELS(dep12), dep12, },
{ NELS(dep37), dep37, NELS(dep36), dep36, },
{ NELS(dep39), dep39, NELS(dep38), dep38, },
{ NELS(dep41), dep41, NELS(dep40), dep40, },
{ NELS(dep42), dep42, NELS(dep31), dep31, },
{ NELS(dep43), dep43, NELS(dep33), dep33, },
{ NELS(dep45), dep45, NELS(dep44), dep44, },
{ NELS(dep47), dep47, NELS(dep46), dep46, },
{ NELS(dep49), dep49, NELS(dep48), dep48, },
{ NELS(dep51), dep51, NELS(dep50), dep50, },
{ NELS(dep53), dep53, NELS(dep52), dep52, },
{ NELS(dep55), dep55, NELS(dep54), dep54, },
{ NELS(dep57), dep57, NELS(dep56), dep56, },
{ NELS(dep59), dep59, NELS(dep58), dep58, },
{ NELS(dep61), dep61, NELS(dep60), dep60, },
{ NELS(dep63), dep63, NELS(dep62), dep62, },
{ NELS(dep65), dep65, NELS(dep64), dep64, },
{ NELS(dep67), dep67, NELS(dep66), dep66, },
{ NELS(dep68), dep68, NELS(dep33), dep33, },
{ NELS(dep70), dep70, NELS(dep69), dep69, },
{ NELS(dep72), dep72, NELS(dep71), dep71, },
{ NELS(dep74), dep74, NELS(dep73), dep73, },
{ NELS(dep76), dep76, NELS(dep75), dep75, },
{ NELS(dep77), dep77, NELS(dep33), dep33, },
{ NELS(dep79), dep79, NELS(dep78), dep78, },
{ NELS(dep81), dep81, NELS(dep80), dep80, },
{ NELS(dep83), dep83, NELS(dep82), dep82, },
{ NELS(dep84), dep84, NELS(dep33), dep33, },
{ NELS(dep85), dep85, NELS(dep33), dep33, },
{ NELS(dep86), dep86, NELS(dep33), dep33, },
{ NELS(dep87), dep87, NELS(dep33), dep33, },
{ NELS(dep89), dep89, NELS(dep88), dep88, },
{ NELS(dep91), dep91, NELS(dep90), dep90, },
{ NELS(dep93), dep93, NELS(dep92), dep92, },
{ NELS(dep95), dep95, NELS(dep94), dep94, },
{ NELS(dep97), dep97, NELS(dep96), dep96, },
{ NELS(dep99), dep99, NELS(dep98), dep98, },
{ NELS(dep101), dep101, NELS(dep100), dep100, },
{ NELS(dep103), dep103, NELS(dep102), dep102, },
{ NELS(dep105), dep105, NELS(dep104), dep104, },
{ NELS(dep107), dep107, NELS(dep106), dep106, },
{ NELS(dep109), dep109, NELS(dep108), dep108, },
{ NELS(dep111), dep111, NELS(dep110), dep110, },
{ NELS(dep113), dep113, NELS(dep112), dep112, },
{ NELS(dep115), dep115, NELS(dep114), dep114, },
{ NELS(dep117), dep117, NELS(dep116), dep116, },
{ NELS(dep119), dep119, NELS(dep118), dep118, },
{ NELS(dep121), dep121, NELS(dep120), dep120, },
{ NELS(dep122), dep122, NELS(dep64), dep64, },
{ NELS(dep123), dep123, NELS(dep33), dep33, },
{ NELS(dep125), dep125, NELS(dep124), dep124, },
{ NELS(dep126), dep126, NELS(dep0), dep0, },
{ NELS(dep128), dep128, NELS(dep127), dep127, },
{ NELS(dep130), dep130, NELS(dep129), dep129, },
{ NELS(dep131), dep131, NELS(dep0), dep0, },
{ NELS(dep132), dep132, NELS(dep0), dep0, },
{ NELS(dep134), dep134, NELS(dep133), dep133, },
{ NELS(dep135), dep135, NELS(dep0), dep0, },
{ NELS(dep136), dep136, NELS(dep2), dep2, },
{ NELS(dep137), dep137, NELS(dep4), dep4, },
{ NELS(dep138), dep138, NELS(dep6), dep6, },
{ NELS(dep139), dep139, NELS(dep8), dep8, },
{ NELS(dep140), dep140, NELS(dep10), dep10, },
{ NELS(dep141), dep141, NELS(dep33), dep33, },
{ NELS(dep143), dep143, NELS(dep142), dep142, },
{ NELS(dep144), dep144, NELS(dep142), dep142, },
{ NELS(dep146), dep146, NELS(dep145), dep145, },
{ NELS(dep147), dep147, NELS(dep145), dep145, },
{ NELS(dep148), dep148, NELS(dep142), dep142, },
{ NELS(dep150), dep150, NELS(dep149), dep149, },
{ NELS(dep152), dep152, NELS(dep151), dep151, },
{ NELS(dep154), dep154, NELS(dep153), dep153, },
{ NELS(dep156), dep156, NELS(dep155), dep155, },
{ NELS(dep157), dep157, NELS(dep155), dep155, },
{ NELS(dep158), dep158, NELS(dep0), dep0, },
{ NELS(dep160), dep160, NELS(dep159), dep159, },
{ NELS(dep162), dep162, NELS(dep161), dep161, },
{ NELS(dep164), dep164, NELS(dep163), dep163, },
{ NELS(dep166), dep166, NELS(dep165), dep165, },
{ NELS(dep168), dep168, NELS(dep167), dep167, },
{ NELS(dep169), dep169, NELS(dep0), dep0, },
{ NELS(dep170), dep170, NELS(dep0), dep0, },
{ NELS(dep171), dep171, NELS(dep0), dep0, },
{ NELS(dep172), dep172, NELS(dep33), dep33, },
{ NELS(dep174), dep174, NELS(dep173), dep173, },
{ NELS(dep175), dep175, NELS(dep173), dep173, },
{ NELS(dep177), dep177, NELS(dep176), dep176, },
{ NELS(dep179), dep179, NELS(dep178), dep178, },
{ NELS(dep181), dep181, NELS(dep180), dep180, },
{ NELS(dep183), dep183, NELS(dep182), dep182, },
{ NELS(dep185), dep185, NELS(dep184), dep184, },
{ NELS(dep187), dep187, NELS(dep186), dep186, },
{ NELS(dep189), dep189, NELS(dep188), dep188, },
{ NELS(dep191), dep191, NELS(dep190), dep190, },
{ NELS(dep193), dep193, NELS(dep192), dep192, },
{ NELS(dep194), dep194, NELS(dep0), dep0, },
{ NELS(dep195), dep195, NELS(dep0), dep0, },
{ NELS(dep196), dep196, NELS(dep0), dep0, },
{ NELS(dep197), dep197, NELS(dep0), dep0, },
{ NELS(dep198), dep198, NELS(dep0), dep0, },
{ NELS(dep199), dep199, NELS(dep0), dep0, },
{ NELS(dep200), dep200, NELS(dep0), dep0, },
{ NELS(dep201), dep201, NELS(dep0), dep0, },
{ NELS(dep203), dep203, NELS(dep202), dep202, },
{ NELS(dep205), dep205, NELS(dep204), dep204, },
{ NELS(dep207), dep207, NELS(dep206), dep206, },
{ NELS(dep209), dep209, NELS(dep208), dep208, },
{ NELS(dep210), dep210, NELS(dep0), dep0, },
{ NELS(dep211), dep211, NELS(dep0), dep0, },
{ NELS(dep212), dep212, NELS(dep0), dep0, },
{ NELS(dep213), dep213, NELS(dep33), dep33, },
{ NELS(dep214), dep214, NELS(dep33), dep33, },
{ NELS(dep215), dep215, NELS(dep202), dep202, },
{ NELS(dep216), dep216, NELS(dep0), dep0, },
{ NELS(dep218), dep218, NELS(dep217), dep217, },
{ NELS(dep219), dep219, NELS(dep0), dep0, },
{ NELS(dep221), dep221, NELS(dep220), dep220, },
{ NELS(dep222), dep222, NELS(dep220), dep220, },
{ NELS(dep223), dep223, NELS(dep0), dep0, },
{ NELS(dep221), dep221, NELS(dep224), dep224, },
{ NELS(dep226), dep226, NELS(dep225), dep225, },
{ NELS(dep227), dep227, NELS(dep225), dep225, },
{ NELS(dep229), dep229, NELS(dep228), dep228, },
{ NELS(dep231), dep231, NELS(dep230), dep230, },
{ NELS(dep232), dep232, NELS(dep230), dep230, },
{ NELS(dep233), dep233, NELS(dep230), dep230, },
{ NELS(dep234), dep234, NELS(dep0), dep0, },
{ NELS(dep235), dep235, NELS(dep230), dep230, },
{ NELS(dep237), dep237, NELS(dep236), dep236, },
{ NELS(dep238), dep238, NELS(dep64), dep64, },
{ NELS(dep239), dep239, NELS(dep64), dep64, },
{ NELS(dep241), dep241, NELS(dep240), dep240, },
{ NELS(dep242), dep242, NELS(dep240), dep240, },
{ NELS(dep241), dep241, NELS(dep243), dep243, },
{ NELS(dep245), dep245, NELS(dep244), dep244, },
{ NELS(dep246), dep246, NELS(dep244), dep244, },
{ NELS(dep248), dep248, NELS(dep247), dep247, },
{ NELS(dep249), dep249, NELS(dep247), dep247, },
{ NELS(dep248), dep248, NELS(dep250), dep250, },
{ NELS(dep251), dep251, NELS(dep225), dep225, },
{ NELS(dep252), dep252, NELS(dep33), dep33, },
{ NELS(dep253), dep253, NELS(dep0), dep0, },
{ NELS(dep254), dep254, NELS(dep64), dep64, },
{ NELS(dep255), dep255, NELS(dep230), dep230, },
{ 0, NULL, 0, NULL, },
{ NELS(dep257), dep257, NELS(dep256), dep256, },
};
static const struct ia64_completer_table
completer_table[] = {
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 95 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 95 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 594, -1, 0, 1, 6 },
{ 0x0, 0x0, 0, 657, -1, 0, 1, 18 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 162 },
{ 0x0, 0x0, 0, 756, -1, 0, 1, 18 },
{ 0x0, 0x0, 0, 2198, -1, 0, 1, 10 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 9 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 13 },
{ 0x1, 0x1, 0, -1, -1, 13, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, 2406, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, 1140, -1, 0, 1, 129 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 45 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 84 },
{ 0x0, 0x0, 0, 2246, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2473, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2250, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, 2252, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2482, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2485, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2507, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 2510, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 25 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 25 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 25 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 25 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 36 },
{ 0x0, 0x0, 0, 2518, -1, 0, 1, 30 },
{ 0x0, 0x0, 0, 1409, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 162 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 83 },
{ 0x0, 0x0, 0, 1457, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1466, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1475, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1477, -1, 0, 1, 132 },
{ 0x0, 0x0, 0, 1479, -1, 0, 1, 132 },
{ 0x0, 0x0, 0, 1488, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1497, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1506, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1515, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1524, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1533, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1543, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1553, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1563, -1, 0, 1, 131 },
{ 0x0, 0x0, 0, 1572, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1578, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1584, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1590, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1596, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1602, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1608, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1614, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1620, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1626, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1632, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1638, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1644, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1650, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1656, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1662, -1, 0, 1, 147 },
{ 0x0, 0x0, 0, 1668, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1674, -1, 0, 1, 152 },
{ 0x0, 0x0, 0, 1678, -1, 0, 1, 158 },
{ 0x0, 0x0, 0, 1682, -1, 0, 1, 159 },
{ 0x0, 0x0, 0, 1686, -1, 0, 1, 159 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 85 },
{ 0x0, 0x0, 0, 258, -1, 0, 1, 41 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 68 },
{ 0x1, 0x1, 0, 1166, -1, 20, 1, 68 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 69 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 70 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 70 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 71 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 72 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 73 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 93 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 94 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 96 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 97 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 98 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 99 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 104 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 105 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 106 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 107 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 108 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 109 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 110 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 113 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 114 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 115 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 116 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 117 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 118 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 119 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 120 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 163 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 163 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 163 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 72 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 162 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2858, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2859, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2210, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2211, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2873, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2874, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2875, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2876, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2877, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2860, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, 2861, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 11 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 91 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 89 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x1, 0x1, 0, -1, -1, 13, 1, 0 },
{ 0x0, 0x0, 0, 2879, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 90 },
{ 0x0, 0x0, 0, 1966, -1, 0, 1, 138 },
{ 0x0, 0x0, 0, 1968, -1, 0, 1, 145 },
{ 0x0, 0x0, 0, 1970, -1, 0, 1, 139 },
{ 0x0, 0x0, 0, 1972, -1, 0, 1, 139 },
{ 0x0, 0x0, 0, 1974, -1, 0, 1, 138 },
{ 0x0, 0x0, 0, 1976, -1, 0, 1, 145 },
{ 0x0, 0x0, 0, 1978, -1, 0, 1, 138 },
{ 0x0, 0x0, 0, 1980, -1, 0, 1, 145 },
{ 0x0, 0x0, 0, 1983, -1, 0, 1, 138 },
{ 0x0, 0x0, 0, 1986, -1, 0, 1, 145 },
{ 0x0, 0x0, 0, 1989, -1, 0, 1, 157 },
{ 0x0, 0x0, 0, 1990, -1, 0, 1, 161 },
{ 0x0, 0x0, 0, 1991, -1, 0, 1, 157 },
{ 0x0, 0x0, 0, 1992, -1, 0, 1, 161 },
{ 0x0, 0x0, 0, 1993, -1, 0, 1, 157 },
{ 0x0, 0x0, 0, 1994, -1, 0, 1, 161 },
{ 0x0, 0x0, 0, 1995, -1, 0, 1, 157 },
{ 0x0, 0x0, 0, 1996, -1, 0, 1, 161 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 88 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 127 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 125 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 127 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 126 },
{ 0x0, 0x0, 0, 1687, -1, 0, 1, 143 },
{ 0x0, 0x0, 0, 1688, -1, 0, 1, 143 },
{ 0x0, 0x0, 0, 1689, -1, 0, 1, 143 },
{ 0x0, 0x0, 0, 1690, -1, 0, 1, 143 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 0, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 1, 224, -1, 0, 1, 12 },
{ 0x0, 0x0, 1, 225, -1, 0, 1, 14 },
{ 0x1, 0x1, 2, -1, -1, 27, 1, 12 },
{ 0x1, 0x1, 2, -1, -1, 27, 1, 14 },
{ 0x0, 0x0, 3, -1, 1340, 0, 0, -1 },
{ 0x0, 0x0, 3, -1, 1341, 0, 0, -1 },
{ 0x1, 0x1, 3, 2749, 1450, 33, 1, 134 },
{ 0x1, 0x1, 3, 2750, 1459, 33, 1, 134 },
{ 0x1, 0x1, 3, 2751, 1468, 33, 1, 134 },
{ 0x1, 0x1, 3, 2752, 1481, 33, 1, 134 },
{ 0x1, 0x1, 3, 2753, 1490, 33, 1, 134 },
{ 0x1, 0x1, 3, 2754, 1499, 33, 1, 134 },
{ 0x1, 0x1, 3, 2755, 1508, 33, 1, 134 },
{ 0x1, 0x1, 3, 2756, 1517, 33, 1, 134 },
{ 0x1, 0x1, 3, 2757, 1526, 33, 1, 134 },
{ 0x1, 0x1, 3, 2758, 1535, 33, 1, 134 },
{ 0x1, 0x1, 3, 2759, 1545, 33, 1, 134 },
{ 0x1, 0x1, 3, 2760, 1555, 33, 1, 134 },
{ 0x1, 0x1, 3, 2761, 1568, 33, 1, 149 },
{ 0x1, 0x1, 3, 2762, 1574, 33, 1, 154 },
{ 0x1, 0x1, 3, 2763, 1580, 33, 1, 154 },
{ 0x1, 0x1, 3, 2764, 1586, 33, 1, 149 },
{ 0x1, 0x1, 3, 2765, 1592, 33, 1, 154 },
{ 0x1, 0x1, 3, 2766, 1598, 33, 1, 154 },
{ 0x1, 0x1, 3, 2767, 1604, 33, 1, 149 },
{ 0x1, 0x1, 3, 2768, 1610, 33, 1, 154 },
{ 0x1, 0x1, 3, 2769, 1616, 33, 1, 154 },
{ 0x1, 0x1, 3, 2770, 1622, 33, 1, 149 },
{ 0x1, 0x1, 3, 2771, 1628, 33, 1, 154 },
{ 0x1, 0x1, 3, 2772, 1634, 33, 1, 149 },
{ 0x1, 0x1, 3, 2773, 1640, 33, 1, 154 },
{ 0x1, 0x1, 3, 2774, 1646, 33, 1, 149 },
{ 0x1, 0x1, 3, 2775, 1652, 33, 1, 154 },
{ 0x1, 0x1, 3, 2776, 1658, 33, 1, 149 },
{ 0x1, 0x1, 3, 2777, 1664, 33, 1, 154 },
{ 0x1, 0x1, 3, 2778, 1670, 33, 1, 154 },
{ 0x1, 0x1, 3, -1, -1, 27, 1, 41 },
{ 0x0, 0x0, 4, 2212, 1425, 0, 1, 142 },
{ 0x0, 0x0, 4, 2213, 1427, 0, 1, 142 },
{ 0x0, 0x0, 4, 2214, 1429, 0, 1, 141 },
{ 0x0, 0x0, 4, 2215, 1431, 0, 1, 141 },
{ 0x0, 0x0, 4, 2216, 1433, 0, 1, 141 },
{ 0x0, 0x0, 4, 2217, 1435, 0, 1, 141 },
{ 0x0, 0x0, 4, 2218, 1437, 0, 1, 141 },
{ 0x0, 0x0, 4, 2219, 1439, 0, 1, 141 },
{ 0x0, 0x0, 4, 2220, 1441, 0, 1, 141 },
{ 0x0, 0x0, 4, 2221, 1443, 0, 1, 141 },
{ 0x0, 0x0, 4, 2222, 1445, 0, 1, 143 },
{ 0x0, 0x0, 4, 2223, 1447, 0, 1, 143 },
{ 0x1, 0x1, 4, -1, 1454, 33, 1, 137 },
{ 0x5, 0x5, 4, 552, 1453, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1463, 33, 1, 137 },
{ 0x5, 0x5, 4, 553, 1462, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1472, 33, 1, 137 },
{ 0x5, 0x5, 4, 554, 1471, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1476, 32, 1, 132 },
{ 0x1, 0x1, 4, -1, 1478, 32, 1, 132 },
{ 0x1, 0x1, 4, -1, 1485, 33, 1, 137 },
{ 0x5, 0x5, 4, 555, 1484, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1494, 33, 1, 137 },
{ 0x5, 0x5, 4, 556, 1493, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1503, 33, 1, 137 },
{ 0x5, 0x5, 4, 557, 1502, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1512, 33, 1, 137 },
{ 0x5, 0x5, 4, 558, 1511, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1521, 33, 1, 137 },
{ 0x5, 0x5, 4, 559, 1520, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1530, 33, 1, 137 },
{ 0x5, 0x5, 4, 560, 1529, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1540, 33, 1, 137 },
{ 0x5, 0x5, 4, 1036, 1538, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1550, 33, 1, 137 },
{ 0x5, 0x5, 4, 1037, 1548, 32, 1, 131 },
{ 0x1, 0x1, 4, -1, 1560, 33, 1, 137 },
{ 0x5, 0x5, 4, 1038, 1558, 32, 1, 131 },
{ 0x1, 0x21, 10, 2013, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2014, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 420, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2074, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2075, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2076, 0, 0, -1 },
{ 0x0, 0x0, 10, 2017, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2018, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 2019, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2020, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 430, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2080, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 434, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2082, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 438, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2084, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 442, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2086, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 446, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2088, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 450, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2090, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 2033, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2034, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 460, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2096, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2097, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2098, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2101, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2102, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2103, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2104, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2105, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2106, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2107, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2108, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2109, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2110, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2111, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2112, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2113, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2114, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2115, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2116, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2117, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2118, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2119, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2120, 0, 0, -1 },
{ 0x1, 0x21, 10, 2037, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2038, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 468, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2122, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2123, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2124, 0, 0, -1 },
{ 0x0, 0x0, 10, 2041, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2042, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 2043, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2044, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 478, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2128, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 482, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2130, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 486, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2132, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 490, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2134, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, 494, -1, 0, 1, 3 },
{ 0x1, 0x1, 10, 2136, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 498, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2138, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 2057, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2058, -1, 12, 1, 3 },
{ 0x1, 0x21, 10, 508, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 10, 2144, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2145, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2146, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2149, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2150, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2151, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2152, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2153, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2154, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2155, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2156, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2157, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2158, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2159, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2160, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2161, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2162, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2163, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2164, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2165, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2166, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2167, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2168, 0, 0, -1 },
{ 0x1, 0x1, 10, 2061, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 10, 2062, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 2063, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 10, 2064, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2169, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2171, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2173, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2175, 0, 0, -1 },
{ 0x1, 0x1, 10, 2065, -1, 36, 1, 78 },
{ 0x1000001, 0x1000001, 10, 2066, -1, 12, 1, 78 },
{ 0x1, 0x1, 10, 2067, -1, 36, 1, 78 },
{ 0x1000001, 0x1000001, 10, 2068, -1, 12, 1, 78 },
{ 0x0, 0x0, 10, -1, 2177, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2179, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2181, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2183, 0, 0, -1 },
{ 0x1, 0x1, 10, 2069, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 10, 2070, -1, 12, 1, 3 },
{ 0x1, 0x1, 10, 2071, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 10, 2072, -1, 12, 1, 3 },
{ 0x0, 0x0, 10, -1, 2185, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2187, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2189, 0, 0, -1 },
{ 0x0, 0x0, 10, -1, 2191, 0, 0, -1 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x4200001, 11, 2015, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 300, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2077, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2078, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2021, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 308, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2023, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 310, -1, 33, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2025, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 312, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2027, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 314, -1, 33, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2029, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 316, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2031, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 318, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2091, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2092, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, 2093, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 11, 2094, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x4200001, 11, 2035, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 322, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2099, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2100, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x4200001, 11, 2039, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 348, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2125, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2126, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2045, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 356, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2047, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 358, -1, 33, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2049, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 360, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2051, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 362, -1, 33, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 2053, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x0, 0x0, 11, 364, -1, 0, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x200001, 11, 2055, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 366, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2139, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2140, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, 2141, -1, 33, 1, 3 },
{ 0x200001, 0x200001, 11, 2142, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x200001, 0x4200001, 11, 2059, -1, 12, 1, 3 },
{ 0x2, 0x3, 11, -1, -1, 37, 1, 5 },
{ 0x1, 0x1, 11, 370, -1, 33, 1, 3 },
{ 0x0, 0x0, 11, 2147, -1, 0, 1, 3 },
{ 0x1, 0x1, 11, 2148, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, 2170, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 11, 2172, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, 2174, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 11, 2176, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 80 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 80 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 80 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 80 },
{ 0x1, 0x1, 11, 2178, -1, 36, 1, 78 },
{ 0x1000001, 0x1000001, 11, 2180, -1, 12, 1, 78 },
{ 0x1, 0x1, 11, 2182, -1, 36, 1, 78 },
{ 0x1000001, 0x1000001, 11, 2184, -1, 12, 1, 78 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, -1, -1, 36, 1, 5 },
{ 0x1, 0x1, 11, 2186, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 11, 2188, -1, 12, 1, 3 },
{ 0x1, 0x1, 11, 2190, -1, 36, 1, 3 },
{ 0x1000001, 0x1000001, 11, 2192, -1, 12, 1, 3 },
{ 0x0, 0x0, 12, -1, -1, 0, 1, 15 },
{ 0x0, 0x0, 12, -1, -1, 0, 1, 15 },
{ 0x0, 0x0, 12, -1, -1, 0, 1, 15 },
{ 0x1, 0x1, 13, 272, 1452, 34, 1, 131 },
{ 0x1, 0x1, 13, 274, 1461, 34, 1, 131 },
{ 0x1, 0x1, 13, 276, 1470, 34, 1, 131 },
{ 0x1, 0x1, 13, 280, 1483, 34, 1, 131 },
{ 0x1, 0x1, 13, 282, 1492, 34, 1, 131 },
{ 0x1, 0x1, 13, 284, 1501, 34, 1, 131 },
{ 0x1, 0x1, 13, 286, 1510, 34, 1, 131 },
{ 0x1, 0x1, 13, 288, 1519, 34, 1, 131 },
{ 0x1, 0x1, 13, 290, 1528, 34, 1, 131 },
{ 0x1, 0x1, 13, 292, 1537, 34, 1, 131 },
{ 0x1, 0x1, 13, 294, 1547, 34, 1, 131 },
{ 0x1, 0x1, 13, 296, 1557, 34, 1, 131 },
{ 0x0, 0x0, 19, -1, 795, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 796, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 797, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 798, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 799, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 800, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 801, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 802, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 803, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 804, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 805, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 806, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 807, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 808, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 809, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 810, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 811, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 812, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 813, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 814, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 815, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 816, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 817, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 818, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 819, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 820, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 821, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 822, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 823, 0, 0, -1 },
{ 0x0, 0x0, 19, -1, 824, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2827, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2828, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2843, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2844, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2849, 0, 0, -1 },
{ 0x0, 0x0, 20, -1, 2850, 0, 0, -1 },
{ 0x0, 0x0, 21, 831, 2839, 0, 0, -1 },
{ 0x0, 0x0, 21, 832, 2841, 0, 0, -1 },
{ 0x0, 0x0, 23, -1, 2837, 0, 0, -1 },
{ 0x0, 0x0, 23, -1, 2838, 0, 0, -1 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, 1272, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 6 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 7 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 8 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 16 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, 1293, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 19 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 20 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 21 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, 1326, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 18 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 35, 1, 22 },
{ 0x1, 0x1, 24, -1, -1, 33, 1, 82 },
{ 0x1, 0x1, 24, -1, -1, 33, 1, 82 },
{ 0x1, 0x1, 24, 1342, 1455, 35, 1, 137 },
{ 0x1, 0x1, 24, 1343, 1464, 35, 1, 137 },
{ 0x1, 0x1, 24, 1344, 1473, 35, 1, 137 },
{ 0x1, 0x1, 24, 1345, 1486, 35, 1, 137 },
{ 0x1, 0x1, 24, 1346, 1495, 35, 1, 137 },
{ 0x1, 0x1, 24, 1347, 1504, 35, 1, 137 },
{ 0x1, 0x1, 24, 1348, 1513, 35, 1, 137 },
{ 0x1, 0x1, 24, 1349, 1522, 35, 1, 137 },
{ 0x1, 0x1, 24, 1350, 1531, 35, 1, 137 },
{ 0x1, 0x1, 24, 1351, 1541, 35, 1, 137 },
{ 0x1, 0x1, 24, 1352, 1551, 35, 1, 137 },
{ 0x1, 0x1, 24, 1353, 1561, 35, 1, 137 },
{ 0x1, 0x1, 24, 1354, 1570, 35, 1, 151 },
{ 0x1, 0x1, 24, 1355, 1576, 35, 1, 156 },
{ 0x1, 0x1, 24, 1356, 1582, 35, 1, 156 },
{ 0x1, 0x1, 24, 1357, 1588, 35, 1, 151 },
{ 0x1, 0x1, 24, 1358, 1594, 35, 1, 156 },
{ 0x1, 0x1, 24, 1359, 1600, 35, 1, 156 },
{ 0x1, 0x1, 24, 1360, 1606, 35, 1, 151 },
{ 0x1, 0x1, 24, 1361, 1612, 35, 1, 156 },
{ 0x1, 0x1, 24, 1362, 1618, 35, 1, 156 },
{ 0x1, 0x1, 24, 1363, 1624, 35, 1, 151 },
{ 0x1, 0x1, 24, 1364, 1630, 35, 1, 156 },
{ 0x1, 0x1, 24, 1365, 1636, 35, 1, 151 },
{ 0x1, 0x1, 24, 1366, 1642, 35, 1, 156 },
{ 0x1, 0x1, 24, 1367, 1648, 35, 1, 151 },
{ 0x1, 0x1, 24, 1368, 1654, 35, 1, 156 },
{ 0x1, 0x1, 24, 1369, 1660, 35, 1, 151 },
{ 0x1, 0x1, 24, 1370, 1666, 35, 1, 156 },
{ 0x1, 0x1, 24, 1371, 1672, 35, 1, 156 },
{ 0x0, 0x0, 33, 2821, 2819, 0, 0, -1 },
{ 0x0, 0x0, 33, 2824, 2822, 0, 0, -1 },
{ 0x0, 0x0, 33, 2830, 2829, 0, 0, -1 },
{ 0x0, 0x0, 33, 2832, 2831, 0, 0, -1 },
{ 0x0, 0x0, 33, 2846, 2845, 0, 0, -1 },
{ 0x0, 0x0, 33, 2848, 2847, 0, 0, -1 },
{ 0x0, 0x0, 35, -1, 2840, 0, 0, -1 },
{ 0x0, 0x0, 35, -1, 2842, 0, 0, -1 },
{ 0x1, 0x1, 38, -1, 2290, 37, 1, 30 },
{ 0x1, 0x1, 38, -1, 2349, 37, 1, 30 },
{ 0x0, 0x0, 38, -1, 2352, 0, 0, -1 },
{ 0x1, 0x1, 38, -1, -1, 37, 1, 30 },
{ 0x1, 0x1, 38, -1, 2357, 37, 1, 30 },
{ 0x0, 0x0, 38, -1, 2360, 0, 0, -1 },
{ 0x1, 0x1, 38, -1, -1, 37, 1, 30 },
{ 0x0, 0x0, 38, -1, 2363, 0, 0, -1 },
{ 0x1, 0x1, 38, -1, -1, 37, 1, 30 },
{ 0x1, 0x1, 38, -1, 2366, 37, 1, 30 },
{ 0x1, 0x1, 38, -1, 2369, 37, 1, 30 },
{ 0x1, 0x1, 38, -1, 2402, 37, 1, 30 },
{ 0x3, 0x3, 38, -1, -1, 30, 1, 144 },
{ 0x0, 0x0, 38, 1142, -1, 0, 1, 102 },
{ 0x0, 0x0, 38, -1, -1, 0, 1, 111 },
{ 0x0, 0x0, 38, 1148, -1, 0, 1, 123 },
{ 0x3, 0x3, 38, -1, -1, 30, 1, 160 },
{ 0x0, 0x0, 38, 1149, -1, 0, 1, 41 },
{ 0x0, 0x0, 40, -1, 973, 0, 0, -1 },
{ 0x0, 0x0, 40, -1, 981, 0, 0, -1 },
{ 0x0, 0x0, 40, 1151, 977, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 622, 33, 1, 6 },
{ 0x18000001, 0x18000001, 40, -1, 630, 6, 1, 7 },
{ 0x3, 0x3, 40, 1152, 626, 33, 1, 6 },
{ 0x0, 0x0, 40, -1, 985, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 642, 33, 1, 8 },
{ 0x0, 0x0, 40, -1, 989, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 654, 33, 1, 16 },
{ 0x0, 0x0, 40, -1, 994, 0, 0, -1 },
{ 0x0, 0x0, 40, -1, 998, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 677, 33, 1, 18 },
{ 0x3, 0x3, 40, -1, 681, 33, 1, 18 },
{ 0x0, 0x0, 40, -1, 1002, 0, 0, -1 },
{ 0x0, 0x0, 40, -1, 1006, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 701, 33, 1, 19 },
{ 0x18000001, 0x18000001, 40, -1, 705, 6, 1, 19 },
{ 0x0, 0x0, 40, -1, 1010, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 717, 33, 1, 20 },
{ 0x0, 0x0, 40, -1, 1014, 0, 0, -1 },
{ 0x0, 0x0, 40, -1, 1018, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 737, 33, 1, 21 },
{ 0x18000001, 0x18000001, 40, -1, 741, 6, 1, 21 },
{ 0x0, 0x0, 40, -1, 1022, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 753, 33, 1, 22 },
{ 0x0, 0x0, 40, -1, 1027, 0, 0, -1 },
{ 0x0, 0x0, 40, -1, 1031, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 776, 33, 1, 18 },
{ 0x3, 0x3, 40, -1, 780, 33, 1, 18 },
{ 0x0, 0x0, 40, -1, 1035, 0, 0, -1 },
{ 0x3, 0x3, 40, -1, 792, 33, 1, 22 },
{ 0x0, 0x0, 41, 851, 972, 0, 0, -1 },
{ 0x0, 0x0, 41, 852, 980, 0, 0, -1 },
{ 0x0, 0x0, 41, 853, 976, 0, 0, -1 },
{ 0x1, 0x1, 41, 854, 621, 34, 1, 6 },
{ 0x10000001, 0x10000001, 41, 855, 629, 6, 1, 7 },
{ 0x1, 0x1, 41, 856, 625, 34, 1, 6 },
{ 0x0, 0x0, 41, 857, 984, 0, 0, -1 },
{ 0x1, 0x1, 41, 858, 641, 34, 1, 8 },
{ 0x0, 0x0, 41, 859, 988, 0, 0, -1 },
{ 0x1, 0x1, 41, 860, 653, 34, 1, 16 },
{ 0x0, 0x0, 41, 861, 993, 0, 0, -1 },
{ 0x0, 0x0, 41, 862, 997, 0, 0, -1 },
{ 0x1, 0x1, 41, 863, 676, 34, 1, 18 },
{ 0x1, 0x1, 41, 864, 680, 34, 1, 18 },
{ 0x0, 0x0, 41, 865, 1001, 0, 0, -1 },
{ 0x0, 0x0, 41, 866, 1005, 0, 0, -1 },
{ 0x1, 0x1, 41, 867, 700, 34, 1, 19 },
{ 0x10000001, 0x10000001, 41, 868, 704, 6, 1, 19 },
{ 0x0, 0x0, 41, 869, 1009, 0, 0, -1 },
{ 0x1, 0x1, 41, 870, 716, 34, 1, 20 },
{ 0x0, 0x0, 41, 871, 1013, 0, 0, -1 },
{ 0x0, 0x0, 41, 872, 1017, 0, 0, -1 },
{ 0x1, 0x1, 41, 873, 736, 34, 1, 21 },
{ 0x10000001, 0x10000001, 41, 874, 740, 6, 1, 21 },
{ 0x0, 0x0, 41, 875, 1021, 0, 0, -1 },
{ 0x1, 0x1, 41, 876, 752, 34, 1, 22 },
{ 0x0, 0x0, 41, 877, 1026, 0, 0, -1 },
{ 0x0, 0x0, 41, 878, 1030, 0, 0, -1 },
{ 0x1, 0x1, 41, 879, 775, 34, 1, 18 },
{ 0x1, 0x1, 41, 880, 779, 34, 1, 18 },
{ 0x0, 0x0, 41, 881, 1034, 0, 0, -1 },
{ 0x1, 0x1, 41, 882, 791, 34, 1, 22 },
{ 0x800001, 0x800001, 41, -1, 1156, 4, 1, 17 },
{ 0x1, 0x1, 41, 2236, 1154, 4, 1, 17 },
{ 0x1, 0x1, 41, 957, 1159, 4, 1, 23 },
{ 0x2, 0x3, 41, -1, 1164, 20, 1, 68 },
{ 0x1, 0x1, 41, 2237, 1162, 21, 1, 68 },
{ 0x0, 0x0, 42, -1, -1, 0, 1, 86 },
{ 0x0, 0x0, 42, -1, -1, 0, 1, 86 },
{ 0x0, 0x0, 42, -1, -1, 0, 1, 130 },
{ 0x1, 0x1, 44, 1372, 297, 38, 1, 1 },
{ 0x1, 0x1, 44, 1373, 299, 38, 1, 1 },
{ 0x0, 0x0, 44, -1, 302, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 424, 0, 0, -1 },
{ 0x1, 0x1, 44, 1377, 319, 38, 1, 1 },
{ 0x1, 0x1, 44, 1378, 321, 38, 1, 1 },
{ 0x0, 0x0, 44, -1, 324, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 464, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 326, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 344, 0, 0, -1 },
{ 0x1, 0x1, 44, 1384, 345, 38, 1, 1 },
{ 0x1, 0x1, 44, 1385, 347, 38, 1, 1 },
{ 0x0, 0x0, 44, -1, 350, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 472, 0, 0, -1 },
{ 0x1, 0x1, 44, 1389, 367, 38, 1, 1 },
{ 0x1, 0x1, 44, 1390, 369, 38, 1, 1 },
{ 0x0, 0x0, 44, -1, 372, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 512, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 374, 0, 0, -1 },
{ 0x0, 0x0, 44, -1, 392, 0, 0, -1 },
{ 0x0, 0x0, 44, 1248, 2297, 0, 0, -1 },
{ 0x0, 0x0, 44, 1249, 2305, 0, 1, 55 },
{ 0x0, 0x0, 44, 1250, 2972, 0, 1, 55 },
{ 0x0, 0x0, 44, 1251, 2373, 0, 0, -1 },
{ 0x0, 0x0, 44, 1252, -1, 0, 1, 50 },
{ 0x0, 0x0, 44, 1120, -1, 0, 1, 0 },
{ 0x0, 0x0, 44, 1121, -1, 0, 1, 0 },
{ 0x0, 0x0, 44, 1122, -1, 0, 1, 0 },
{ 0x1, 0x1, 45, -1, 1676, 30, 1, 158 },
{ 0x1, 0x1, 45, 963, 1675, 30, 1, 158 },
{ 0x1, 0x1, 45, -1, 1680, 30, 1, 159 },
{ 0x1, 0x1, 45, 964, 1679, 30, 1, 159 },
{ 0x1, 0x1, 45, -1, 1684, 30, 1, 159 },
{ 0x1, 0x1, 45, 965, 1683, 30, 1, 159 },
{ 0x3, 0x3, 46, -1, 1160, 3, 1, 23 },
{ 0x1, 0x1, 47, 2257, -1, 30, 1, 144 },
{ 0x1, 0x1, 47, 2288, -1, 30, 1, 160 },
{ 0x0, 0x0, 49, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 49, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 49, -1, -1, 0, 1, 41 },
{ 0x1, 0x1, 56, -1, 1677, 31, 1, 158 },
{ 0x1, 0x1, 56, -1, 1681, 31, 1, 159 },
{ 0x1, 0x1, 56, -1, 1685, 31, 1, 159 },
{ 0x0, 0x0, 56, -1, -1, 0, 1, 101 },
{ 0x2, 0x3, 56, -1, -1, 27, 1, 101 },
{ 0x1, 0x1, 56, -1, -1, 28, 1, 101 },
{ 0x0, 0x0, 65, 14, 592, 0, 1, 6 },
{ 0x0, 0x0, 65, 1273, 595, 0, 1, 6 },
{ 0x1, 0x1, 65, 1274, 597, 33, 1, 6 },
{ 0x1, 0x1, 65, 1275, 599, 34, 1, 6 },
{ 0x3, 0x3, 65, 1276, 601, 33, 1, 6 },
{ 0x0, 0x0, 65, 1277, 603, 0, 1, 6 },
{ 0x1, 0x1, 65, 1278, 605, 33, 1, 6 },
{ 0x1, 0x1, 65, 1279, 607, 34, 1, 6 },
{ 0x3, 0x3, 65, 1280, 609, 33, 1, 6 },
{ 0x1, 0x1, 65, 1281, 611, 6, 1, 7 },
{ 0x8000001, 0x8000001, 65, 1282, 613, 6, 1, 7 },
{ 0x10000001, 0x10000001, 65, 1283, 615, 6, 1, 7 },
{ 0x18000001, 0x18000001, 65, 1284, 617, 6, 1, 7 },
{ 0x0, 0x0, 65, 1285, 631, 0, 1, 8 },
{ 0x1, 0x1, 65, 1286, 633, 33, 1, 8 },
{ 0x1, 0x1, 65, 1287, 635, 34, 1, 8 },
{ 0x3, 0x3, 65, 1288, 637, 33, 1, 8 },
{ 0x0, 0x0, 65, 1289, 643, 0, 1, 16 },
{ 0x1, 0x1, 65, 1290, 645, 33, 1, 16 },
{ 0x1, 0x1, 65, 1291, 647, 34, 1, 16 },
{ 0x3, 0x3, 65, 1292, 649, 33, 1, 16 },
{ 0x0, 0x0, 65, 15, 655, 0, 1, 18 },
{ 0x0, 0x0, 65, 1294, 658, 0, 1, 18 },
{ 0x1, 0x1, 65, 1295, 660, 33, 1, 18 },
{ 0x1, 0x1, 65, 1296, 662, 34, 1, 18 },
{ 0x3, 0x3, 65, 1297, 664, 33, 1, 18 },
{ 0x0, 0x0, 65, 1298, 666, 0, 1, 18 },
{ 0x1, 0x1, 65, 1299, 668, 33, 1, 18 },
{ 0x1, 0x1, 65, 1300, 670, 34, 1, 18 },
{ 0x3, 0x3, 65, 1301, 672, 33, 1, 18 },
{ 0x0, 0x0, 65, 1302, 682, 0, 1, 19 },
{ 0x1, 0x1, 65, 1303, 684, 33, 1, 19 },
{ 0x1, 0x1, 65, 1304, 686, 34, 1, 19 },
{ 0x3, 0x3, 65, 1305, 688, 33, 1, 19 },
{ 0x1, 0x1, 65, 1306, 690, 6, 1, 19 },
{ 0x8000001, 0x8000001, 65, 1307, 692, 6, 1, 19 },
{ 0x10000001, 0x10000001, 65, 1308, 694, 6, 1, 19 },
{ 0x18000001, 0x18000001, 65, 1309, 696, 6, 1, 19 },
{ 0x0, 0x0, 65, 1310, 706, 0, 1, 20 },
{ 0x1, 0x1, 65, 1311, 708, 33, 1, 20 },
{ 0x1, 0x1, 65, 1312, 710, 34, 1, 20 },
{ 0x3, 0x3, 65, 1313, 712, 33, 1, 20 },
{ 0x0, 0x0, 65, 1314, 718, 0, 1, 21 },
{ 0x1, 0x1, 65, 1315, 720, 33, 1, 21 },
{ 0x1, 0x1, 65, 1316, 722, 34, 1, 21 },
{ 0x3, 0x3, 65, 1317, 724, 33, 1, 21 },
{ 0x1, 0x1, 65, 1318, 726, 6, 1, 21 },
{ 0x8000001, 0x8000001, 65, 1319, 728, 6, 1, 21 },
{ 0x10000001, 0x10000001, 65, 1320, 730, 6, 1, 21 },
{ 0x18000001, 0x18000001, 65, 1321, 732, 6, 1, 21 },
{ 0x0, 0x0, 65, 1322, 742, 0, 1, 22 },
{ 0x1, 0x1, 65, 1323, 744, 33, 1, 22 },
{ 0x1, 0x1, 65, 1324, 746, 34, 1, 22 },
{ 0x3, 0x3, 65, 1325, 748, 33, 1, 22 },
{ 0x0, 0x0, 65, 17, 754, 0, 1, 18 },
{ 0x0, 0x0, 65, 1327, 757, 0, 1, 18 },
{ 0x1, 0x1, 65, 1328, 759, 33, 1, 18 },
{ 0x1, 0x1, 65, 1329, 761, 34, 1, 18 },
{ 0x3, 0x3, 65, 1330, 763, 33, 1, 18 },
{ 0x0, 0x0, 65, 1331, 765, 0, 1, 18 },
{ 0x1, 0x1, 65, 1332, 767, 33, 1, 18 },
{ 0x1, 0x1, 65, 1333, 769, 34, 1, 18 },
{ 0x3, 0x3, 65, 1334, 771, 33, 1, 18 },
{ 0x0, 0x0, 65, 1335, 781, 0, 1, 22 },
{ 0x1, 0x1, 65, 1336, 783, 33, 1, 22 },
{ 0x1, 0x1, 65, 1337, 785, 34, 1, 22 },
{ 0x3, 0x3, 65, 1338, 787, 33, 1, 22 },
{ 0x3, 0x3, 66, 561, 1539, 33, 1, 136 },
{ 0x3, 0x3, 66, 562, 1549, 33, 1, 136 },
{ 0x3, 0x3, 66, 563, 1559, 33, 1, 136 },
{ 0x0, 0x0, 66, -1, 1564, 0, 1, 147 },
{ 0x0, 0x0, 66, -1, 1565, 0, 1, 152 },
{ 0x0, 0x0, 66, -1, 1566, 0, 1, 152 },
{ 0x0, 0x0, 107, 1046, 2345, 0, 0, -1 },
{ 0x0, 0x0, 107, 1047, 2864, 0, 1, 30 },
{ 0x0, 0x0, 107, 1048, 2386, 0, 0, -1 },
{ 0x0, 0x0, 107, 1049, 2868, 0, 1, 30 },
{ 0x0, 0x0, 109, -1, 2347, 0, 0, -1 },
{ 0x1, 0x1, 109, -1, 2865, 27, 1, 30 },
{ 0x0, 0x0, 109, -1, 2388, 0, 0, -1 },
{ 0x1, 0x1, 109, -1, 2869, 27, 1, 30 },
{ 0x0, 0x0, 110, 1051, -1, 0, 1, 122 },
{ 0x1, 0x1, 111, -1, -1, 27, 1, 122 },
{ 0x0, 0x0, 112, 1082, 2894, 0, 1, 1 },
{ 0x0, 0x0, 112, 1083, 2897, 0, 1, 1 },
{ 0x0, 0x0, 112, 1224, 305, 0, 0, -1 },
{ 0x0, 0x0, 112, 1225, 309, 0, 0, -1 },
{ 0x0, 0x0, 112, 1185, 440, 0, 0, -1 },
{ 0x0, 0x0, 112, 1186, 448, 0, 0, -1 },
{ 0x0, 0x0, 112, -1, 456, 0, 0, -1 },
{ 0x0, 0x0, 112, 1084, 2910, 0, 1, 1 },
{ 0x0, 0x0, 112, 1085, 2913, 0, 1, 1 },
{ 0x0, 0x0, 112, -1, 330, 0, 0, -1 },
{ 0x0, 0x0, 112, -1, 334, 0, 0, -1 },
{ 0x0, 0x0, 112, 1233, 335, 0, 0, -1 },
{ 0x0, 0x0, 112, 1234, 339, 0, 0, -1 },
{ 0x0, 0x0, 112, 1086, 2934, 0, 1, 1 },
{ 0x0, 0x0, 112, 1087, 2937, 0, 1, 1 },
{ 0x0, 0x0, 112, 1237, 353, 0, 0, -1 },
{ 0x0, 0x0, 112, 1238, 357, 0, 0, -1 },
{ 0x0, 0x0, 112, 1198, 488, 0, 0, -1 },
{ 0x0, 0x0, 112, 1199, 496, 0, 0, -1 },
{ 0x0, 0x0, 112, -1, 504, 0, 0, -1 },
{ 0x0, 0x0, 112, 1391, 2948, 0, 1, 1 },
{ 0x0, 0x0, 112, 1392, 2950, 0, 1, 1 },
{ 0x0, 0x0, 112, -1, 378, 0, 0, -1 },
{ 0x0, 0x0, 112, -1, 382, 0, 0, -1 },
{ 0x0, 0x0, 112, 1246, 383, 0, 0, -1 },
{ 0x0, 0x0, 112, 1247, 387, 0, 0, -1 },
{ 0x0, 0x0, 112, -1, 2315, 0, 0, -1 },
{ 0x1, 0x9, 112, -1, 2319, 33, 1, 55 },
{ 0x1, 0x9, 112, -1, 2981, 33, 1, 55 },
{ 0x2, 0x3, 112, 1408, 2382, 27, 1, 50 },
{ 0x1, 0x1, 114, 1374, 2895, 37, 1, 1 },
{ 0x1, 0x1, 114, 1375, 2898, 37, 1, 1 },
{ 0x1, 0x1, 114, 1379, 2911, 37, 1, 1 },
{ 0x1, 0x1, 114, 1380, 2914, 37, 1, 1 },
{ 0x1, 0x1, 114, 1386, 2935, 37, 1, 1 },
{ 0x1, 0x1, 114, 1387, 2938, 37, 1, 1 },
{ 0x0, 0x0, 114, -1, 2958, 0, 1, 1 },
{ 0x0, 0x0, 114, -1, 2959, 0, 1, 1 },
{ 0x0, 0x0, 115, 1123, 2890, 0, 1, 1 },
{ 0x0, 0x0, 115, 1124, 2892, 0, 1, 1 },
{ 0x0, 0x0, 115, 1183, 303, 0, 0, -1 },
{ 0x0, 0x0, 115, 1184, 307, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 444, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 452, 0, 0, -1 },
{ 0x0, 0x0, 115, 1228, 454, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 2908, 0, 1, 1 },
{ 0x0, 0x0, 115, -1, 2909, 0, 1, 1 },
{ 0x0, 0x0, 115, 1231, 328, 0, 0, -1 },
{ 0x0, 0x0, 115, 1232, 332, 0, 0, -1 },
{ 0x0, 0x0, 115, 1192, 337, 0, 0, -1 },
{ 0x0, 0x0, 115, 1193, 341, 0, 0, -1 },
{ 0x0, 0x0, 115, 1127, 2930, 0, 1, 1 },
{ 0x0, 0x0, 115, 1128, 2932, 0, 1, 1 },
{ 0x0, 0x0, 115, 1196, 351, 0, 0, -1 },
{ 0x0, 0x0, 115, 1197, 355, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 492, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 500, 0, 0, -1 },
{ 0x0, 0x0, 115, 1241, 502, 0, 0, -1 },
{ 0x0, 0x0, 115, -1, 2946, 0, 1, 1 },
{ 0x0, 0x0, 115, -1, 2947, 0, 1, 1 },
{ 0x0, 0x0, 115, 1244, 376, 0, 0, -1 },
{ 0x0, 0x0, 115, 1245, 380, 0, 0, -1 },
{ 0x0, 0x0, 115, 1205, 385, 0, 0, -1 },
{ 0x0, 0x0, 115, 1206, 389, 0, 0, -1 },
{ 0x0, 0x0, 115, 1078, 2313, 0, 0, -1 },
{ 0x0, 0x0, 115, 1079, 2317, 0, 1, 55 },
{ 0x0, 0x0, 115, 1080, 2980, 0, 1, 55 },
{ 0x0, 0x0, 115, 1081, 2381, 0, 1, 50 },
{ 0x1, 0x1, 115, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 115, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 115, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 116, -1, 2891, 37, 1, 1 },
{ 0x1, 0x1, 116, -1, 2893, 37, 1, 1 },
{ 0x0, 0x0, 116, -1, 2918, 0, 1, 1 },
{ 0x0, 0x0, 116, -1, 2919, 0, 1, 1 },
{ 0x1, 0x1, 116, -1, 2931, 37, 1, 1 },
{ 0x1, 0x1, 116, -1, 2933, 37, 1, 1 },
{ 0x0, 0x0, 116, -1, 2956, 0, 1, 1 },
{ 0x0, 0x0, 116, -1, 2957, 0, 1, 1 },
{ 0x0, 0x0, 117, 1176, -1, 0, 1, 0 },
{ 0x0, 0x0, 117, 1177, -1, 0, 1, 0 },
{ 0x0, 0x0, 117, 1178, -1, 0, 1, 0 },
{ 0x3, 0x3, 117, 1136, -1, 34, 1, 34 },
{ 0x3, 0x3, 117, 1137, -1, 34, 1, 41 },
{ 0x1, 0x1, 119, -1, -1, 35, 1, 34 },
{ 0x1, 0x1, 119, -1, -1, 35, 1, 41 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 67 },
{ 0x1, 0x1, 120, -1, -1, 36, 1, 129 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 41 },
{ 0x1, 0x1, 120, -1, -1, 27, 1, 103 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 112 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 74 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 74 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 75 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 41 },
{ 0x1, 0x1, 120, -1, -1, 27, 1, 124 },
{ 0x1, 0x1, 120, -1, -1, 27, 1, 41 },
{ 0x0, 0x0, 120, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 121, -1, 2820, 0, 0, -1 },
{ 0x0, 0x0, 121, -1, 2823, 0, 0, -1 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 17 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 17 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 17 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 17 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 23 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 23 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 23 },
{ 0x1, 0x1, 122, -1, -1, 35, 1, 23 },
{ 0x1, 0x1, 122, -1, -1, 23, 1, 68 },
{ 0x1, 0x1, 122, -1, -1, 23, 1, 68 },
{ 0x1, 0x1, 122, -1, -1, 23, 1, 68 },
{ 0x1, 0x1, 122, -1, -1, 23, 1, 68 },
{ 0x1, 0x1, 122, 918, -1, 23, 1, 68 },
{ 0x9, 0x9, 122, 919, -1, 20, 1, 68 },
{ 0x0, 0x0, 126, 2199, -1, 0, 1, 0 },
{ 0x0, 0x0, 126, 2200, -1, 0, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 28, 1, 34 },
{ 0x1, 0x1, 126, -1, -1, 27, 1, 34 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x0, 0x0, 126, -1, -1, 0, 1, 121 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 126, -1, -1, 29, 1, 0 },
{ 0x0, 0x0, 126, 1134, -1, 0, 1, 34 },
{ 0x0, 0x0, 126, 1262, -1, 0, 1, 41 },
{ 0x0, 0x0, 140, 1212, 2886, 0, 1, 1 },
{ 0x0, 0x0, 140, 1213, 2888, 0, 1, 1 },
{ 0x0, 0x0, 140, 1054, 304, 0, 0, -1 },
{ 0x0, 0x0, 140, 1055, 432, 0, 0, -1 },
{ 0x0, 0x0, 140, 1094, 313, 0, 0, -1 },
{ 0x0, 0x0, 140, 1095, 317, 0, 0, -1 },
{ 0x0, 0x0, 140, 1096, 453, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 2906, 0, 1, 1 },
{ 0x0, 0x0, 140, -1, 2907, 0, 1, 1 },
{ 0x0, 0x0, 140, 1099, 327, 0, 0, -1 },
{ 0x0, 0x0, 140, 1100, 331, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 338, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 342, 0, 0, -1 },
{ 0x0, 0x0, 140, 1216, 2926, 0, 1, 1 },
{ 0x0, 0x0, 140, 1217, 2928, 0, 1, 1 },
{ 0x0, 0x0, 140, 1067, 352, 0, 0, -1 },
{ 0x0, 0x0, 140, 1068, 480, 0, 0, -1 },
{ 0x0, 0x0, 140, 1107, 361, 0, 0, -1 },
{ 0x0, 0x0, 140, 1108, 365, 0, 0, -1 },
{ 0x0, 0x0, 140, 1109, 501, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 2944, 0, 1, 1 },
{ 0x0, 0x0, 140, -1, 2945, 0, 1, 1 },
{ 0x0, 0x0, 140, 1112, 375, 0, 0, -1 },
{ 0x0, 0x0, 140, 1113, 379, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 386, 0, 0, -1 },
{ 0x0, 0x0, 140, -1, 390, 0, 0, -1 },
{ 0x0, 0x0, 140, 3012, 2301, 0, 0, -1 },
{ 0x1, 0x1, 140, 3013, 2309, 33, 1, 55 },
{ 0x1, 0x1, 140, 3014, 2974, 33, 1, 55 },
{ 0x0, 0x0, 140, 3015, 2375, 0, 0, -1 },
{ 0x1, 0x1, 140, 3016, -1, 28, 1, 50 },
{ 0x1, 0x1, 141, -1, 2887, 37, 1, 1 },
{ 0x1, 0x1, 141, -1, 2889, 37, 1, 1 },
{ 0x0, 0x0, 141, -1, 2916, 0, 1, 1 },
{ 0x0, 0x0, 141, -1, 2917, 0, 1, 1 },
{ 0x1, 0x1, 141, -1, 2927, 37, 1, 1 },
{ 0x1, 0x1, 141, -1, 2929, 37, 1, 1 },
{ 0x0, 0x0, 141, -1, 2954, 0, 1, 1 },
{ 0x0, 0x0, 141, -1, 2955, 0, 1, 1 },
{ 0x1, 0x1, 144, 917, 1158, 3, 1, 23 },
{ 0x0, 0x0, 145, 2201, -1, 0, 1, 34 },
{ 0x0, 0x0, 146, 923, 2880, 0, 1, 1 },
{ 0x0, 0x0, 146, 924, 2883, 0, 1, 1 },
{ 0x0, 0x0, 146, -1, 306, 0, 0, -1 },
{ 0x0, 0x0, 146, -1, 436, 0, 0, -1 },
{ 0x0, 0x0, 146, 1056, 311, 0, 0, -1 },
{ 0x0, 0x0, 146, 1057, 315, 0, 0, -1 },
{ 0x0, 0x0, 146, 1058, 455, 0, 0, -1 },
{ 0x0, 0x0, 146, 927, 2900, 0, 1, 1 },
{ 0x0, 0x0, 146, 928, 2903, 0, 1, 1 },
{ 0x0, 0x0, 146, 1061, 329, 0, 0, -1 },
{ 0x0, 0x0, 146, 1062, 333, 0, 0, -1 },
{ 0x0, 0x0, 146, 1101, 336, 0, 0, -1 },
{ 0x0, 0x0, 146, 1102, 340, 0, 0, -1 },
{ 0x0, 0x0, 146, 933, 2920, 0, 1, 1 },
{ 0x0, 0x0, 146, 934, 2923, 0, 1, 1 },
{ 0x0, 0x0, 146, -1, 354, 0, 0, -1 },
{ 0x0, 0x0, 146, -1, 484, 0, 0, -1 },
{ 0x0, 0x0, 146, 1069, 359, 0, 0, -1 },
{ 0x0, 0x0, 146, 1070, 363, 0, 0, -1 },
{ 0x0, 0x0, 146, 1071, 503, 0, 0, -1 },
{ 0x0, 0x0, 146, 937, 2940, 0, 1, 1 },
{ 0x0, 0x0, 146, 938, 2942, 0, 1, 1 },
{ 0x0, 0x0, 146, 1074, 377, 0, 0, -1 },
{ 0x0, 0x0, 146, 1075, 381, 0, 0, -1 },
{ 0x0, 0x0, 146, 1114, 384, 0, 0, -1 },
{ 0x0, 0x0, 146, 1115, 388, 0, 0, -1 },
{ 0x0, 0x0, 146, 1207, 2299, 0, 0, -1 },
{ 0x1, 0x1, 146, 1208, 2307, 36, 1, 55 },
{ 0x1, 0x1, 146, 1209, 2973, 36, 1, 55 },
{ 0x0, 0x0, 146, 1210, 2374, 0, 0, -1 },
{ 0x1, 0x1, 146, 1211, -1, 27, 1, 50 },
{ 0x1, 0x1, 147, -1, 2882, 37, 1, 1 },
{ 0x1, 0x1, 147, -1, 2885, 37, 1, 1 },
{ 0x1, 0x1, 147, -1, 2902, 37, 1, 1 },
{ 0x1, 0x1, 147, -1, 2905, 37, 1, 1 },
{ 0x1, 0x1, 147, -1, 2922, 37, 1, 1 },
{ 0x1, 0x1, 147, -1, 2925, 37, 1, 1 },
{ 0x0, 0x0, 147, -1, 2952, 0, 1, 1 },
{ 0x0, 0x0, 147, -1, 2953, 0, 1, 1 },
{ 0x0, 0x0, 148, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 148, 1135, -1, 0, 1, 41 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 67 },
{ 0x0, 0x0, 149, -1, 2960, 0, 1, 64 },
{ 0x0, 0x0, 149, -1, 2961, 0, 1, 64 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 87 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 87 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 92 },
{ 0x0, 0x0, 149, -1, -1, 0, 1, 41 },
{ 0x1, 0x1, 150, -1, 593, 12, 1, 6 },
{ 0x1, 0x1, 150, -1, 596, 12, 1, 6 },
{ 0x200001, 0x200001, 150, -1, 598, 12, 1, 6 },
{ 0x400001, 0x400001, 150, -1, 600, 12, 1, 6 },
{ 0x600001, 0x600001, 150, -1, 602, 12, 1, 6 },
{ 0x1, 0x1, 150, -1, 604, 12, 1, 6 },
{ 0x200001, 0x200001, 150, -1, 606, 12, 1, 6 },
{ 0x400001, 0x400001, 150, -1, 608, 12, 1, 6 },
{ 0x600001, 0x600001, 150, -1, 610, 12, 1, 6 },
{ 0x41, 0x41, 150, -1, 612, 6, 1, 7 },
{ 0x8000041, 0x8000041, 150, -1, 614, 6, 1, 7 },
{ 0x10000041, 0x10000041, 150, -1, 616, 6, 1, 7 },
{ 0x18000041, 0x18000041, 150, -1, 618, 6, 1, 7 },
{ 0x1, 0x1, 150, -1, 632, 12, 1, 8 },
{ 0x200001, 0x200001, 150, -1, 634, 12, 1, 8 },
{ 0x400001, 0x400001, 150, -1, 636, 12, 1, 8 },
{ 0x600001, 0x600001, 150, -1, 638, 12, 1, 8 },
{ 0x1, 0x1, 150, -1, 644, 12, 1, 16 },
{ 0x200001, 0x200001, 150, -1, 646, 12, 1, 16 },
{ 0x400001, 0x400001, 150, -1, 648, 12, 1, 16 },
{ 0x600001, 0x600001, 150, -1, 650, 12, 1, 16 },
{ 0x1, 0x1, 150, -1, 656, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 659, 12, 1, 18 },
{ 0x200001, 0x200001, 150, -1, 661, 12, 1, 18 },
{ 0x400001, 0x400001, 150, -1, 663, 12, 1, 18 },
{ 0x600001, 0x600001, 150, -1, 665, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 667, 12, 1, 18 },
{ 0x200001, 0x200001, 150, -1, 669, 12, 1, 18 },
{ 0x400001, 0x400001, 150, -1, 671, 12, 1, 18 },
{ 0x600001, 0x600001, 150, -1, 673, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 683, 12, 1, 19 },
{ 0x200001, 0x200001, 150, -1, 685, 12, 1, 19 },
{ 0x400001, 0x400001, 150, -1, 687, 12, 1, 19 },
{ 0x600001, 0x600001, 150, -1, 689, 12, 1, 19 },
{ 0x41, 0x41, 150, -1, 691, 6, 1, 19 },
{ 0x8000041, 0x8000041, 150, -1, 693, 6, 1, 19 },
{ 0x10000041, 0x10000041, 150, -1, 695, 6, 1, 19 },
{ 0x18000041, 0x18000041, 150, -1, 697, 6, 1, 19 },
{ 0x1, 0x1, 150, -1, 707, 12, 1, 20 },
{ 0x200001, 0x200001, 150, -1, 709, 12, 1, 20 },
{ 0x400001, 0x400001, 150, -1, 711, 12, 1, 20 },
{ 0x600001, 0x600001, 150, -1, 713, 12, 1, 20 },
{ 0x1, 0x1, 150, -1, 719, 12, 1, 21 },
{ 0x200001, 0x200001, 150, -1, 721, 12, 1, 21 },
{ 0x400001, 0x400001, 150, -1, 723, 12, 1, 21 },
{ 0x600001, 0x600001, 150, -1, 725, 12, 1, 21 },
{ 0x41, 0x41, 150, -1, 727, 6, 1, 21 },
{ 0x8000041, 0x8000041, 150, -1, 729, 6, 1, 21 },
{ 0x10000041, 0x10000041, 150, -1, 731, 6, 1, 21 },
{ 0x18000041, 0x18000041, 150, -1, 733, 6, 1, 21 },
{ 0x1, 0x1, 150, -1, 743, 12, 1, 22 },
{ 0x200001, 0x200001, 150, -1, 745, 12, 1, 22 },
{ 0x400001, 0x400001, 150, -1, 747, 12, 1, 22 },
{ 0x600001, 0x600001, 150, -1, 749, 12, 1, 22 },
{ 0x1, 0x1, 150, -1, 755, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 758, 12, 1, 18 },
{ 0x200001, 0x200001, 150, -1, 760, 12, 1, 18 },
{ 0x400001, 0x400001, 150, -1, 762, 12, 1, 18 },
{ 0x600001, 0x600001, 150, -1, 764, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 766, 12, 1, 18 },
{ 0x200001, 0x200001, 150, -1, 768, 12, 1, 18 },
{ 0x400001, 0x400001, 150, -1, 770, 12, 1, 18 },
{ 0x600001, 0x600001, 150, -1, 772, 12, 1, 18 },
{ 0x1, 0x1, 150, -1, 782, 12, 1, 22 },
{ 0x200001, 0x200001, 150, -1, 784, 12, 1, 22 },
{ 0x400001, 0x400001, 150, -1, 786, 12, 1, 22 },
{ 0x600001, 0x600001, 150, -1, 788, 12, 1, 22 },
{ 0x0, 0x0, 155, -1, -1, 0, 1, 131 },
{ 0x0, 0x0, 159, 793, -1, 0, 1, 81 },
{ 0x0, 0x0, 159, 794, -1, 0, 1, 81 },
{ 0x9, 0x9, 159, -1, 1456, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1465, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1474, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1487, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1496, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1505, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1514, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1523, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1532, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1542, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1552, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1562, 32, 1, 137 },
{ 0x9, 0x9, 159, -1, 1571, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1577, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1583, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1589, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1595, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1601, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1607, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1613, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1619, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1625, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1631, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1637, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1643, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1649, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1655, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1661, 32, 1, 151 },
{ 0x9, 0x9, 159, -1, 1667, 32, 1, 156 },
{ 0x9, 0x9, 159, -1, 1673, 32, 1, 156 },
{ 0x0, 0x0, 160, 1253, 298, 0, 0, -1 },
{ 0x0, 0x0, 160, 1254, 422, 0, 0, -1 },
{ 0x1, 0x1, 160, -1, 2896, 38, 1, 1 },
{ 0x1, 0x1, 160, 925, 2899, 38, 1, 1 },
{ 0x0, 0x0, 160, 926, 423, 0, 0, -1 },
{ 0x0, 0x0, 160, 1255, 320, 0, 0, -1 },
{ 0x0, 0x0, 160, 1256, 462, 0, 0, -1 },
{ 0x1, 0x1, 160, -1, 2912, 38, 1, 1 },
{ 0x1, 0x1, 160, 929, 2915, 38, 1, 1 },
{ 0x0, 0x0, 160, 930, 463, 0, 0, -1 },
{ 0x0, 0x0, 160, 931, 325, 0, 0, -1 },
{ 0x0, 0x0, 160, 932, 343, 0, 0, -1 },
{ 0x0, 0x0, 160, 1257, 346, 0, 0, -1 },
{ 0x0, 0x0, 160, 1258, 470, 0, 0, -1 },
{ 0x1, 0x1, 160, -1, 2936, 38, 1, 1 },
{ 0x1, 0x1, 160, 935, 2939, 38, 1, 1 },
{ 0x0, 0x0, 160, 936, 471, 0, 0, -1 },
{ 0x0, 0x0, 160, -1, 368, 0, 0, -1 },
{ 0x0, 0x0, 160, -1, 510, 0, 0, -1 },
{ 0x1, 0x1, 160, -1, 2949, 38, 1, 1 },
{ 0x1, 0x1, 160, 939, 2951, 38, 1, 1 },
{ 0x0, 0x0, 160, 940, 511, 0, 0, -1 },
{ 0x0, 0x0, 160, 941, 373, 0, 0, -1 },
{ 0x0, 0x0, 160, 942, 391, 0, 0, -1 },
{ 0x0, 0x0, 161, 1415, 2321, 0, 0, -1 },
{ 0x0, 0x0, 161, 1416, 2329, 0, 1, 55 },
{ 0x0, 0x0, 161, 1417, 2990, 0, 1, 55 },
{ 0x0, 0x0, 161, 1418, 2377, 0, 0, -1 },
{ 0x1, 0x1, 161, 1419, -1, 29, 1, 50 },
{ 0x0, 0x0, 162, -1, 2339, 0, 0, -1 },
{ 0x1, 0x9, 162, -1, 2343, 33, 1, 55 },
{ 0x1, 0x9, 162, -1, 2999, 33, 1, 55 },
{ 0x6, 0x7, 162, -1, 2384, 27, 1, 50 },
{ 0x0, 0x0, 163, 1401, 2337, 0, 0, -1 },
{ 0x0, 0x0, 163, 1402, 2341, 0, 1, 55 },
{ 0x0, 0x0, 163, 1403, 2998, 0, 1, 55 },
{ 0x1, 0x1, 163, 1404, 2383, 29, 1, 50 },
{ 0x1, 0x1, 164, 1422, -1, 27, 1, 34 },
{ 0x0, 0x0, 165, 2193, 2325, 0, 0, -1 },
{ 0x1, 0x1, 165, 2194, 2333, 33, 1, 55 },
{ 0x1, 0x1, 165, 2195, 2992, 33, 1, 55 },
{ 0x0, 0x0, 165, 2196, 2379, 0, 0, -1 },
{ 0x3, 0x3, 165, 2197, -1, 28, 1, 50 },
{ 0x0, 0x0, 166, 1410, 2323, 0, 0, -1 },
{ 0x1, 0x1, 166, 1411, 2331, 36, 1, 55 },
{ 0x1, 0x1, 166, 1412, 2991, 36, 1, 55 },
{ 0x0, 0x0, 166, 1413, 2378, 0, 0, -1 },
{ 0x5, 0x5, 166, 1414, -1, 27, 1, 50 },
{ 0x0, 0x0, 167, -1, 2962, 0, 1, 64 },
{ 0x0, 0x0, 167, -1, 2963, 0, 1, 64 },
{ 0x1, 0x1, 169, -1, -1, 28, 1, 34 },
{ 0x1, 0x1, 170, 2779, -1, 27, 1, 34 },
{ 0x1, 0x1, 170, 2780, -1, 27, 1, 34 },
{ 0x1, 0x1, 171, 1703, -1, 28, 1, 142 },
{ 0x1, 0x1, 171, 1704, -1, 28, 1, 142 },
{ 0x1, 0x1, 171, 1705, -1, 28, 1, 142 },
{ 0x1, 0x1, 171, 1706, -1, 28, 1, 142 },
{ 0x1, 0x1, 171, 1707, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1708, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1709, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1710, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1711, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1712, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1713, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1714, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1715, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1716, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1717, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1718, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1719, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1720, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1721, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1722, -1, 28, 1, 141 },
{ 0x1, 0x1, 171, 1723, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1724, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1725, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1726, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1727, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1728, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1729, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1730, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1731, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1732, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1733, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1734, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1735, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1736, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1737, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1738, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1739, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1740, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1741, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1742, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1743, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1744, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1745, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1746, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1747, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1748, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1749, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1750, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1751, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1752, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1753, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1754, -1, 28, 1, 132 },
{ 0x1, 0x1, 171, 1755, -1, 28, 1, 132 },
{ 0x1, 0x1, 171, 1756, -1, 28, 1, 132 },
{ 0x1, 0x1, 171, 1757, -1, 28, 1, 132 },
{ 0x1, 0x1, 171, 1758, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1759, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1760, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1761, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1762, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1763, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1764, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1765, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1766, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1767, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1768, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1769, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1770, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1771, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1772, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1773, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1774, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1775, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1776, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1777, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1778, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1779, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1780, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1781, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1782, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1783, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1784, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1785, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1786, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1787, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1788, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1789, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1790, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1791, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1792, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1793, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1794, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1795, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1796, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1797, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1798, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1799, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1800, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1801, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1802, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1803, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1804, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1805, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1806, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1807, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1808, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1809, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1810, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1811, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1812, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1813, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1814, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1815, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1816, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1817, -1, 28, 1, 136 },
{ 0x1, 0x1, 171, 1818, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1819, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1820, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1821, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1822, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1823, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1824, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1825, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1826, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1827, -1, 28, 1, 136 },
{ 0x1, 0x1, 171, 1828, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1829, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1830, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1831, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1832, -1, 28, 1, 133 },
{ 0x1, 0x1, 171, 1833, -1, 28, 1, 134 },
{ 0x1, 0x1, 171, 1834, -1, 28, 1, 135 },
{ 0x1, 0x1, 171, 1835, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1836, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1837, -1, 28, 1, 136 },
{ 0x1, 0x1, 171, 1838, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1839, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1840, -1, 28, 1, 137 },
{ 0x1, 0x1, 171, 1841, -1, 28, 1, 131 },
{ 0x1, 0x1, 171, 1842, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1843, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1844, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1845, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1846, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1847, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1848, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1849, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1850, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1851, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1852, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1853, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1854, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1855, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1856, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1857, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1858, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1859, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1860, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1861, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1862, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1863, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1864, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1865, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1866, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1867, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1868, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1869, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1870, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1871, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1872, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1873, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1874, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1875, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1876, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1877, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1878, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1879, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1880, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1881, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1882, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1883, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1884, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1885, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1886, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1887, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1888, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1889, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1890, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1891, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1892, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1893, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1894, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1895, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1896, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1897, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1898, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1899, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1900, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1901, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1902, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1903, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1904, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1905, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1906, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1907, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1908, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1909, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1910, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1911, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1912, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1913, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1914, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1915, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1916, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1917, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1918, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1919, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1920, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1921, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1922, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1923, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1924, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1925, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1926, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1927, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1928, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1929, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1930, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1931, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1932, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1933, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1934, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1935, -1, 28, 1, 148 },
{ 0x1, 0x1, 171, 1936, -1, 28, 1, 149 },
{ 0x1, 0x1, 171, 1937, -1, 28, 1, 150 },
{ 0x1, 0x1, 171, 1938, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1939, -1, 28, 1, 151 },
{ 0x1, 0x1, 171, 1940, -1, 28, 1, 147 },
{ 0x1, 0x1, 171, 1941, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1942, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1943, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1944, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1945, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1946, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1947, -1, 28, 1, 153 },
{ 0x1, 0x1, 171, 1948, -1, 28, 1, 154 },
{ 0x1, 0x1, 171, 1949, -1, 28, 1, 155 },
{ 0x1, 0x1, 171, 1950, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1951, -1, 28, 1, 156 },
{ 0x1, 0x1, 171, 1952, -1, 28, 1, 152 },
{ 0x1, 0x1, 171, 1691, -1, 28, 1, 158 },
{ 0x1, 0x1, 171, 1692, -1, 28, 1, 158 },
{ 0x1, 0x1, 171, 1693, -1, 28, 1, 158 },
{ 0x1, 0x1, 171, 1694, -1, 28, 1, 158 },
{ 0x1, 0x1, 171, 1695, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1696, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1697, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1698, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1699, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1700, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1701, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1702, -1, 28, 1, 159 },
{ 0x1, 0x1, 171, 1997, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1998, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 1999, -1, 28, 1, 143 },
{ 0x1, 0x1, 171, 2000, -1, 28, 1, 143 },
{ 0x1, 0x1, 172, 1953, -1, 29, 1, 158 },
{ 0x1, 0x1, 172, 1954, -1, 29, 1, 158 },
{ 0x1, 0x1, 172, 1955, -1, 29, 1, 158 },
{ 0x1, 0x1, 172, 1956, -1, 29, 1, 158 },
{ 0x1, 0x1, 172, 1957, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1958, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1959, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1960, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1961, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1962, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1963, -1, 29, 1, 159 },
{ 0x1, 0x1, 172, 1964, -1, 29, 1, 159 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 142 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 142 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 142 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 142 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 141 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 271, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2258, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 273, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2259, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 275, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2260, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 132 },
{ 0x3, 0x3, 173, 277, -1, 28, 1, 132 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 132 },
{ 0x3, 0x3, 173, 278, -1, 28, 1, 132 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 279, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2261, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 281, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2262, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 283, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2263, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 285, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2264, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 287, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2265, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 289, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2266, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 136 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 291, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2267, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 136 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 293, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2268, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 133 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 134 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 135 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 136 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 295, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 137 },
{ 0x3, 0x3, 173, 2269, -1, 28, 1, 131 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2270, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2271, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2272, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2273, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2274, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2275, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2276, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2277, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2278, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2279, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2280, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2281, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2282, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2283, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2284, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 148 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 149 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 150 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 151 },
{ 0x3, 0x3, 173, 2285, -1, 28, 1, 147 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2286, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 153 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 154 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 155 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 156 },
{ 0x3, 0x3, 173, 2287, -1, 28, 1, 152 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 158 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 158 },
{ 0x3, 0x3, 173, 951, -1, 28, 1, 158 },
{ 0x3, 0x3, 173, 952, -1, 28, 1, 158 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, 953, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, 954, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, 955, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, 956, -1, 28, 1, 159 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, 2224, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, 2225, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 139 },
{ 0x3, 0x3, 173, 2226, -1, 28, 1, 139 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 139 },
{ 0x3, 0x3, 173, 2227, -1, 28, 1, 139 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, 2228, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, 2229, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, 2230, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, 2231, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 140 },
{ 0x3, 0x3, 173, 2232, -1, 28, 1, 138 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 146 },
{ 0x3, 0x3, 173, 2233, -1, 28, 1, 145 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 157 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 161 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 157 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 161 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 157 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 161 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 157 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 161 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 157 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 161 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x3, 0x3, 173, -1, -1, 28, 1, 143 },
{ 0x0, 0x0, 174, -1, 394, 0, 0, -1 },
{ 0x0, 0x0, 174, -1, 396, 0, 0, -1 },
{ 0x0, 0x0, 174, 3042, 3002, 0, 1, 1 },
{ 0x0, 0x0, 174, 3043, 3003, 0, 1, 1 },
{ 0x0, 0x0, 174, -1, 402, 0, 0, -1 },
{ 0x0, 0x0, 174, -1, 404, 0, 0, -1 },
{ 0x0, 0x0, 174, 3046, 3006, 0, 1, 76 },
{ 0x0, 0x0, 174, 3047, 3007, 0, 1, 76 },
{ 0x0, 0x0, 174, -1, 410, 0, 0, -1 },
{ 0x0, 0x0, 174, -1, 412, 0, 0, -1 },
{ 0x0, 0x0, 174, 3050, 3010, 0, 1, 1 },
{ 0x0, 0x0, 174, 3051, 3011, 0, 1, 1 },
{ 0x11, 0x31, 175, 2881, 417, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 418, 12, 1, 4 },
{ 0x11, 0x31, 175, 2073, 419, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 421, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 425, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 426, 12, 1, 4 },
{ 0x11, 0x11, 175, -1, 427, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 428, 12, 1, 4 },
{ 0x1, 0x1, 175, 2079, 429, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 431, 12, 1, 4 },
{ 0x11, 0x11, 175, 2081, 433, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 435, 12, 1, 4 },
{ 0x1, 0x1, 175, 2083, 437, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 439, 12, 1, 4 },
{ 0x11, 0x11, 175, 2085, 441, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 443, 12, 1, 4 },
{ 0x1, 0x1, 175, 2087, 445, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 447, 12, 1, 4 },
{ 0x11, 0x11, 175, 2089, 449, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 451, 12, 1, 4 },
{ 0x11, 0x31, 175, 2901, 457, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 458, 12, 1, 4 },
{ 0x11, 0x31, 175, 2095, 459, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 461, 12, 1, 4 },
{ 0x11, 0x31, 175, 2921, 465, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 466, 12, 1, 4 },
{ 0x11, 0x31, 175, 2121, 467, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 469, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 473, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 474, 12, 1, 4 },
{ 0x11, 0x11, 175, -1, 475, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 476, 12, 1, 4 },
{ 0x1, 0x1, 175, 2127, 477, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 479, 12, 1, 4 },
{ 0x11, 0x11, 175, 2129, 481, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 483, 12, 1, 4 },
{ 0x1, 0x1, 175, 2131, 485, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 487, 12, 1, 4 },
{ 0x11, 0x11, 175, 2133, 489, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 491, 12, 1, 4 },
{ 0x1, 0x1, 175, 2135, 493, 37, 1, 4 },
{ 0x2000001, 0x2000001, 175, -1, 495, 12, 1, 4 },
{ 0x11, 0x11, 175, 2137, 497, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 499, 12, 1, 4 },
{ 0x11, 0x31, 175, 2941, 505, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 506, 12, 1, 4 },
{ 0x11, 0x31, 175, 2143, 507, 33, 1, 4 },
{ 0x2200001, 0x2200001, 175, -1, 509, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 513, 33, 1, 4 },
{ 0x200001, 0x200001, 175, -1, 514, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 515, 33, 1, 4 },
{ 0x200001, 0x200001, 175, -1, 516, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 521, 33, 1, 79 },
{ 0x200001, 0x200001, 175, -1, 522, 12, 1, 79 },
{ 0x1, 0x1, 175, -1, 523, 33, 1, 79 },
{ 0x200001, 0x200001, 175, -1, 524, 12, 1, 79 },
{ 0x1, 0x1, 175, -1, 529, 33, 1, 4 },
{ 0x200001, 0x200001, 175, -1, 530, 12, 1, 4 },
{ 0x1, 0x1, 175, -1, 531, 33, 1, 4 },
{ 0x200001, 0x200001, 175, -1, 532, 12, 1, 4 },
{ 0x2200001, 0x6200001, 176, 2884, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2016, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x4200001, 0x4200001, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2022, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2024, -1, 33, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2026, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2028, -1, 33, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2030, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2032, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, -1, -1, 33, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x2200001, 0x6200001, 176, 2904, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2036, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x4200001, 0x4200001, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x2200001, 0x6200001, 176, 2924, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2040, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x4200001, 0x4200001, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2046, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2048, -1, 33, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2050, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2052, -1, 33, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x1, 0x1, 176, 2054, -1, 37, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2056, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, -1, -1, 33, 1, 4 },
{ 0x2200001, 0x2200001, 176, -1, -1, 12, 1, 4 },
{ 0x2200001, 0x6200001, 176, 2943, -1, 12, 1, 4 },
{ 0x11, 0x11, 176, 2060, -1, 33, 1, 4 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x4200001, 0x4200001, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 37, 1, 4 },
{ 0x2000001, 0x2000001, 176, -1, -1, 12, 1, 4 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 33, 1, 5 },
{ 0x200001, 0x200001, 176, -1, -1, 12, 1, 5 },
{ 0x0, 0x0, 176, -1, -1, 0, 1, 5 },
{ 0x1, 0x1, 176, -1, -1, 12, 1, 5 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 5 },
{ 0x1, 0x1, 176, 397, -1, 33, 1, 4 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 5 },
{ 0x200001, 0x200001, 176, 398, -1, 12, 1, 4 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 5 },
{ 0x1, 0x1, 176, 399, -1, 33, 1, 4 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 5 },
{ 0x200001, 0x200001, 176, 400, -1, 12, 1, 4 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 80 },
{ 0x1, 0x1, 176, 405, -1, 33, 1, 79 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 80 },
{ 0x200001, 0x200001, 176, 406, -1, 12, 1, 79 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 80 },
{ 0x1, 0x1, 176, 407, -1, 33, 1, 79 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 80 },
{ 0x200001, 0x200001, 176, 408, -1, 12, 1, 79 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 5 },
{ 0x1, 0x1, 176, 413, -1, 33, 1, 4 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 5 },
{ 0x200001, 0x200001, 176, 414, -1, 12, 1, 4 },
{ 0x9, 0x9, 176, -1, -1, 33, 1, 5 },
{ 0x1, 0x1, 176, 415, -1, 33, 1, 4 },
{ 0x1200001, 0x1200001, 176, -1, -1, 12, 1, 5 },
{ 0x200001, 0x200001, 176, 416, -1, 12, 1, 4 },
{ 0x0, 0x0, 177, -1, 2327, 0, 0, -1 },
{ 0x9, 0x9, 177, -1, 2335, 33, 1, 50 },
{ 0x9, 0x9, 177, -1, 2993, 33, 1, 50 },
{ 0x0, 0x0, 177, -1, 2380, 0, 0, -1 },
{ 0x7, 0x7, 177, -1, -1, 27, 1, 50 },
{ 0x1, 0x1, 197, -1, -1, 27, 1, 10 },
{ 0x1, 0x1, 211, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 211, -1, -1, 29, 1, 0 },
{ 0x2, 0x3, 211, 1169, -1, 27, 1, 34 },
{ 0x0, 0x0, 211, 1170, -1, 0, 1, 34 },
{ 0x0, 0x0, 211, 1171, -1, 0, 1, 0 },
{ 0x0, 0x0, 211, 1172, -1, 0, 1, 0 },
{ 0x0, 0x0, 211, 1173, -1, 0, 1, 0 },
{ 0x0, 0x0, 211, 1174, -1, 0, 1, 0 },
{ 0x0, 0x0, 211, 3026, -1, 0, 1, 100 },
{ 0x0, 0x0, 211, 3027, -1, 0, 1, 100 },
{ 0x0, 0x0, 211, 3028, 967, 0, 0, -1 },
{ 0x1, 0x1, 212, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 212, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 213, -1, 1426, 32, 1, 142 },
{ 0x1, 0x1, 213, -1, 1428, 32, 1, 142 },
{ 0x1, 0x1, 213, -1, 1430, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1432, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1434, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1436, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1438, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1440, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1442, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1444, 32, 1, 141 },
{ 0x1, 0x1, 213, -1, 1446, 32, 1, 143 },
{ 0x1, 0x1, 213, -1, 1448, 32, 1, 143 },
{ 0x1, 0x1, 213, -1, 1965, 32, 1, 138 },
{ 0x1, 0x1, 213, -1, 1967, 32, 1, 145 },
{ 0x1, 0x1, 213, -1, 1969, 32, 1, 139 },
{ 0x1, 0x1, 213, -1, 1971, 32, 1, 139 },
{ 0x1, 0x1, 213, -1, 1973, 32, 1, 138 },
{ 0x1, 0x1, 213, -1, 1975, 32, 1, 145 },
{ 0x1, 0x1, 213, -1, 1977, 32, 1, 138 },
{ 0x1, 0x1, 213, -1, 1979, 32, 1, 145 },
{ 0x1, 0x1, 213, 2783, 1981, 32, 1, 138 },
{ 0x1, 0x1, 213, 2784, 1984, 32, 1, 145 },
{ 0x0, 0x0, 214, -1, 2825, 0, 0, -1 },
{ 0x0, 0x0, 214, -1, 2826, 0, 0, -1 },
{ 0x0, 0x0, 214, -1, 2851, 0, 0, -1 },
{ 0x5, 0x5, 214, -1, 2854, 20, 1, 68 },
{ 0x0, 0x0, 218, 2209, 966, 0, 0, -1 },
{ 0x0, 0x0, 219, -1, 1139, 0, 0, -1 },
{ 0x0, 0x0, 219, -1, 1264, 0, 0, -1 },
{ 0x0, 0x0, 219, -1, -1, 0, 1, 128 },
{ 0x0, 0x0, 219, -1, -1, 0, 1, 67 },
{ 0x1, 0x1, 219, 833, 2289, 36, 1, 66 },
{ 0x1, 0x1, 219, 834, 2348, 36, 1, 66 },
{ 0x0, 0x0, 219, 835, 2351, 0, 0, -1 },
{ 0x1, 0x1, 219, 836, -1, 36, 1, 66 },
{ 0x0, 0x0, 219, 1423, -1, 0, 1, 34 },
{ 0x1, 0x1, 219, 837, 2356, 36, 1, 66 },
{ 0x0, 0x0, 219, 838, 2359, 0, 0, -1 },
{ 0x1, 0x1, 219, 839, -1, 36, 1, 66 },
{ 0x0, 0x0, 219, 840, 2362, 0, 0, -1 },
{ 0x1, 0x1, 219, 841, -1, 36, 1, 66 },
{ 0x1, 0x1, 219, 842, 2365, 36, 1, 66 },
{ 0x1, 0x1, 219, 843, 2368, 36, 1, 66 },
{ 0x0, 0x0, 219, 1424, -1, 0, 1, 34 },
{ 0x1, 0x1, 219, 844, 2401, 36, 1, 66 },
{ 0x1, 0x1, 219, 845, -1, 31, 1, 144 },
{ 0x1, 0x1, 219, 228, 1449, 32, 1, 133 },
{ 0x1, 0x1, 219, 229, 1458, 32, 1, 133 },
{ 0x1, 0x1, 219, 230, 1467, 32, 1, 133 },
{ 0x1, 0x1, 219, 231, 1480, 32, 1, 133 },
{ 0x1, 0x1, 219, 232, 1489, 32, 1, 133 },
{ 0x1, 0x1, 219, 233, 1498, 32, 1, 133 },
{ 0x1, 0x1, 219, 234, 1507, 32, 1, 133 },
{ 0x1, 0x1, 219, 235, 1516, 32, 1, 133 },
{ 0x1, 0x1, 219, 236, 1525, 32, 1, 133 },
{ 0x1, 0x1, 219, 237, 1534, 32, 1, 133 },
{ 0x1, 0x1, 219, 238, 1544, 32, 1, 133 },
{ 0x1, 0x1, 219, 239, 1554, 32, 1, 133 },
{ 0x1, 0x1, 219, 240, 1567, 32, 1, 148 },
{ 0x1, 0x1, 219, 241, 1573, 32, 1, 153 },
{ 0x1, 0x1, 219, 242, 1579, 32, 1, 153 },
{ 0x1, 0x1, 219, 243, 1585, 32, 1, 148 },
{ 0x1, 0x1, 219, 244, 1591, 32, 1, 153 },
{ 0x1, 0x1, 219, 245, 1597, 32, 1, 153 },
{ 0x1, 0x1, 219, 246, 1603, 32, 1, 148 },
{ 0x1, 0x1, 219, 247, 1609, 32, 1, 153 },
{ 0x1, 0x1, 219, 248, 1615, 32, 1, 153 },
{ 0x1, 0x1, 219, 249, 1621, 32, 1, 148 },
{ 0x1, 0x1, 219, 250, 1627, 32, 1, 153 },
{ 0x1, 0x1, 219, 251, 1633, 32, 1, 148 },
{ 0x1, 0x1, 219, 252, 1639, 32, 1, 153 },
{ 0x1, 0x1, 219, 253, 1645, 32, 1, 148 },
{ 0x1, 0x1, 219, 254, 1651, 32, 1, 153 },
{ 0x1, 0x1, 219, 255, 1657, 32, 1, 148 },
{ 0x1, 0x1, 219, 256, 1663, 32, 1, 153 },
{ 0x1, 0x1, 219, 257, 1669, 32, 1, 153 },
{ 0x1, 0x1, 219, 849, -1, 31, 1, 160 },
{ 0x0, 0x0, 220, 2404, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2405, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 25, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2407, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2408, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2409, -1, 0, 1, 45 },
{ 0x0, 0x0, 220, 2410, -1, 0, 1, 40 },
{ 0x1, 0x1, 220, 2411, -1, 12, 1, 59 },
{ 0x0, 0x0, 220, 2412, -1, 0, 1, 54 },
{ 0x1000001, 0x1000001, 220, 2413, -1, 12, 1, 59 },
{ 0x1, 0x1, 220, 2414, -1, 36, 1, 54 },
{ 0x200001, 0x200001, 220, 2415, -1, 12, 1, 59 },
{ 0x1, 0x1, 220, 2416, -1, 33, 1, 54 },
{ 0x1200001, 0x1200001, 220, 2417, -1, 12, 1, 49 },
{ 0x9, 0x9, 220, 2418, -1, 33, 1, 49 },
{ 0x0, 0x0, 220, 2419, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2420, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2421, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2422, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2423, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2424, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2425, -1, 0, 1, 49 },
{ 0x0, 0x0, 220, 2426, -1, 0, 1, 49 },
{ 0x1, 0x1, 220, 2427, -1, 12, 1, 59 },
{ 0x0, 0x0, 220, 2428, -1, 0, 1, 54 },
{ 0x200001, 0x1200001, 220, 2429, -1, 12, 1, 59 },
{ 0x1, 0x9, 220, 2430, -1, 33, 1, 54 },
{ 0x0, 0x0, 220, 2431, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2432, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2433, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2434, -1, 0, 1, 54 },
{ 0x1, 0x1, 220, 2435, -1, 12, 1, 59 },
{ 0x0, 0x0, 220, 2436, -1, 0, 1, 54 },
{ 0x1000001, 0x1000001, 220, 2437, -1, 12, 1, 59 },
{ 0x1, 0x1, 220, 2438, -1, 36, 1, 54 },
{ 0x200001, 0x200001, 220, 2439, -1, 12, 1, 59 },
{ 0x1, 0x1, 220, 2440, -1, 33, 1, 54 },
{ 0x1200001, 0x1200001, 220, 2441, -1, 12, 1, 49 },
{ 0x9, 0x9, 220, 2442, -1, 33, 1, 49 },
{ 0x0, 0x0, 220, 2443, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2444, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2445, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2446, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2447, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2448, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2449, -1, 0, 1, 49 },
{ 0x0, 0x0, 220, 2450, -1, 0, 1, 49 },
{ 0x1, 0x1, 220, 2451, -1, 12, 1, 59 },
{ 0x0, 0x0, 220, 2452, -1, 0, 1, 54 },
{ 0x200001, 0x1200001, 220, 2453, -1, 12, 1, 59 },
{ 0x1, 0x9, 220, 2454, -1, 33, 1, 54 },
{ 0x0, 0x0, 220, 2455, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2456, -1, 0, 1, 54 },
{ 0x0, 0x0, 220, 2457, -1, 0, 1, 59 },
{ 0x0, 0x0, 220, 2458, -1, 0, 1, 54 },
{ 0x1, 0x1, 220, 2459, -1, 28, 1, 29 },
{ 0x0, 0x0, 220, 2460, -1, 0, 1, 29 },
{ 0x3, 0x3, 220, 2461, -1, 27, 1, 29 },
{ 0x1, 0x1, 220, 2462, -1, 27, 1, 29 },
{ 0x0, 0x0, 220, 2463, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2464, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2465, -1, 0, 1, 29 },
{ 0x1, 0x1, 220, 2466, -1, 36, 1, 66 },
{ 0x1, 0x1, 220, 2467, -1, 37, 1, 29 },
{ 0x0, 0x0, 220, 2468, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2469, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2470, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2471, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2472, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 37, -1, 0, 1, 29 },
{ 0x1, 0x1, 220, 2474, -1, 36, 1, 66 },
{ 0x1, 0x1, 220, 2475, -1, 37, 1, 29 },
{ 0x0, 0x0, 220, 2476, -1, 0, 1, 29 },
{ 0x1, 0x1, 220, 2477, -1, 36, 1, 66 },
{ 0x1, 0x1, 220, 2478, -1, 37, 1, 29 },
{ 0x0, 0x0, 220, 2479, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2480, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2481, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 42, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2483, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2484, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 43, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2486, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2487, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2488, -1, 0, 1, 49 },
{ 0x1, 0x1, 220, 2489, -1, 27, 1, 49 },
{ 0x1, 0x1, 220, 2490, -1, 28, 1, 49 },
{ 0x3, 0x3, 220, 2491, -1, 27, 1, 49 },
{ 0x1, 0x1, 220, 2492, -1, 29, 1, 49 },
{ 0x5, 0x5, 220, 2493, -1, 27, 1, 49 },
{ 0x3, 0x3, 220, 2494, -1, 28, 1, 49 },
{ 0x7, 0x7, 220, 2495, -1, 27, 1, 49 },
{ 0x0, 0x0, 220, 2496, -1, 0, 1, 49 },
{ 0x0, 0x0, 220, 2497, -1, 0, 1, 49 },
{ 0x0, 0x0, 220, 2498, -1, 0, 1, 49 },
{ 0x0, 0x0, 220, 2499, -1, 0, 1, 49 },
{ 0x1, 0x1, 220, 2500, -1, 28, 1, 29 },
{ 0x0, 0x0, 220, 2501, -1, 0, 1, 29 },
{ 0x3, 0x3, 220, 2502, -1, 27, 1, 29 },
{ 0x1, 0x1, 220, 2503, -1, 27, 1, 29 },
{ 0x0, 0x0, 220, 2504, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2505, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2506, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 52, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2508, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2509, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 57, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 2511, -1, 0, 1, 24 },
{ 0x0, 0x0, 220, 2512, -1, 0, 1, 24 },
{ 0x0, 0x0, 220, 2513, -1, 0, 1, 24 },
{ 0x0, 0x0, 220, 2514, -1, 0, 1, 24 },
{ 0x0, 0x0, 220, 2515, -1, 0, 1, 35 },
{ 0x0, 0x0, 220, 2516, -1, 0, 1, 66 },
{ 0x0, 0x0, 220, 2517, -1, 0, 1, 29 },
{ 0x0, 0x0, 220, 64, -1, 0, 1, 29 },
{ 0x1, 0x1, 221, 2519, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2520, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2521, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2522, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2523, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2524, -1, 34, 1, 46 },
{ 0x1, 0x1, 221, 2525, -1, 34, 1, 42 },
{ 0x400001, 0x400001, 221, 2526, -1, 12, 1, 61 },
{ 0x1, 0x1, 221, 2527, -1, 34, 1, 56 },
{ 0x1400001, 0x1400001, 221, 2528, -1, 12, 1, 61 },
{ 0x5, 0x5, 221, 2529, -1, 34, 1, 56 },
{ 0x600001, 0x600001, 221, 2530, -1, 12, 1, 61 },
{ 0x3, 0x3, 221, 2531, -1, 33, 1, 56 },
{ 0x1600001, 0x1600001, 221, 2532, -1, 12, 1, 51 },
{ 0xb, 0xb, 221, 2533, -1, 33, 1, 51 },
{ 0x1, 0x1, 221, 2534, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2535, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2536, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2537, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2538, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2539, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2540, -1, 34, 1, 51 },
{ 0x1, 0x1, 221, 2541, -1, 34, 1, 51 },
{ 0x400001, 0x400001, 221, 2542, -1, 12, 1, 61 },
{ 0x1, 0x1, 221, 2543, -1, 34, 1, 56 },
{ 0x600001, 0x1600001, 221, 2544, -1, 12, 1, 61 },
{ 0x3, 0xb, 221, 2545, -1, 33, 1, 56 },
{ 0x1, 0x1, 221, 2546, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2547, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2548, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2549, -1, 34, 1, 56 },
{ 0x400001, 0x400001, 221, 2550, -1, 12, 1, 61 },
{ 0x1, 0x1, 221, 2551, -1, 34, 1, 56 },
{ 0x1400001, 0x1400001, 221, 2552, -1, 12, 1, 61 },
{ 0x5, 0x5, 221, 2553, -1, 34, 1, 56 },
{ 0x600001, 0x600001, 221, 2554, -1, 12, 1, 61 },
{ 0x3, 0x3, 221, 2555, -1, 33, 1, 56 },
{ 0x1600001, 0x1600001, 221, 2556, -1, 12, 1, 51 },
{ 0xb, 0xb, 221, 2557, -1, 33, 1, 51 },
{ 0x1, 0x1, 221, 2558, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2559, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2560, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2561, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2562, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2563, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2564, -1, 34, 1, 51 },
{ 0x1, 0x1, 221, 2565, -1, 34, 1, 51 },
{ 0x400001, 0x400001, 221, 2566, -1, 12, 1, 61 },
{ 0x1, 0x1, 221, 2567, -1, 34, 1, 56 },
{ 0x600001, 0x1600001, 221, 2568, -1, 12, 1, 61 },
{ 0x3, 0xb, 221, 2569, -1, 33, 1, 56 },
{ 0x1, 0x1, 221, 2570, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2571, -1, 34, 1, 56 },
{ 0x1, 0x1, 221, 2572, -1, 34, 1, 61 },
{ 0x1, 0x1, 221, 2573, -1, 34, 1, 56 },
{ 0x41, 0x41, 221, 2574, -1, 28, 1, 31 },
{ 0x1, 0x1, 221, 2575, -1, 34, 1, 31 },
{ 0x83, 0x83, 221, 2576, -1, 27, 1, 31 },
{ 0x81, 0x81, 221, 2577, -1, 27, 1, 31 },
{ 0x1, 0x1, 221, 2578, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2579, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2580, -1, 34, 1, 31 },
{ 0x5, 0x5, 221, 2581, -1, 34, 1, 66 },
{ 0x9, 0x9, 221, 2582, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2583, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2584, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2585, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2586, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2587, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2588, -1, 34, 1, 31 },
{ 0x5, 0x5, 221, 2589, -1, 34, 1, 66 },
{ 0x9, 0x9, 221, 2590, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2591, -1, 34, 1, 31 },
{ 0x5, 0x5, 221, 2592, -1, 34, 1, 66 },
{ 0x9, 0x9, 221, 2593, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2594, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2595, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2596, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2597, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2598, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2599, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2600, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2601, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2602, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2603, -1, 34, 1, 51 },
{ 0x81, 0x81, 221, 2604, -1, 27, 1, 51 },
{ 0x41, 0x41, 221, 2605, -1, 28, 1, 51 },
{ 0x83, 0x83, 221, 2606, -1, 27, 1, 51 },
{ 0x21, 0x21, 221, 2607, -1, 29, 1, 51 },
{ 0x85, 0x85, 221, 2608, -1, 27, 1, 51 },
{ 0x43, 0x43, 221, 2609, -1, 28, 1, 51 },
{ 0x87, 0x87, 221, 2610, -1, 27, 1, 51 },
{ 0x1, 0x1, 221, 2611, -1, 34, 1, 51 },
{ 0x1, 0x1, 221, 2612, -1, 34, 1, 51 },
{ 0x1, 0x1, 221, 2613, -1, 34, 1, 51 },
{ 0x1, 0x1, 221, 2614, -1, 34, 1, 51 },
{ 0x41, 0x41, 221, 2615, -1, 28, 1, 31 },
{ 0x1, 0x1, 221, 2616, -1, 34, 1, 31 },
{ 0x83, 0x83, 221, 2617, -1, 27, 1, 31 },
{ 0x81, 0x81, 221, 2618, -1, 27, 1, 31 },
{ 0x1, 0x1, 221, 2619, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2620, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2621, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2622, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2623, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2624, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2625, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2626, -1, 34, 1, 26 },
{ 0x1, 0x1, 221, 2627, -1, 34, 1, 26 },
{ 0x1, 0x1, 221, 2628, -1, 34, 1, 26 },
{ 0x1, 0x1, 221, 2629, -1, 34, 1, 26 },
{ 0x1, 0x1, 221, 2630, -1, 34, 1, 37 },
{ 0x1, 0x1, 221, 2631, -1, 34, 1, 66 },
{ 0x1, 0x1, 221, 2632, -1, 34, 1, 31 },
{ 0x1, 0x1, 221, 2633, -1, 34, 1, 31 },
{ 0x1, 0x1, 222, 2634, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2635, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2636, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2637, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2638, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2639, -1, 35, 1, 47 },
{ 0x1, 0x1, 222, 2640, -1, 35, 1, 43 },
{ 0x800001, 0x800001, 222, 2641, -1, 12, 1, 62 },
{ 0x1, 0x1, 222, 2642, -1, 35, 1, 57 },
{ 0x1800001, 0x1800001, 222, 2643, -1, 12, 1, 62 },
{ 0x3, 0x3, 222, 2644, -1, 35, 1, 57 },
{ 0xa00001, 0xa00001, 222, 2645, -1, 12, 1, 62 },
{ 0x5, 0x5, 222, 2646, -1, 33, 1, 57 },
{ 0x1a00001, 0x1a00001, 222, 2647, -1, 12, 1, 52 },
{ 0xd, 0xd, 222, 2648, -1, 33, 1, 52 },
{ 0x1, 0x1, 222, 2649, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2650, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2651, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2652, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2653, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2654, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2655, -1, 35, 1, 52 },
{ 0x1, 0x1, 222, 2656, -1, 35, 1, 52 },
{ 0x800001, 0x800001, 222, 2657, -1, 12, 1, 62 },
{ 0x1, 0x1, 222, 2658, -1, 35, 1, 57 },
{ 0xa00001, 0x1a00001, 222, 2659, -1, 12, 1, 62 },
{ 0x5, 0xd, 222, 2660, -1, 33, 1, 57 },
{ 0x1, 0x1, 222, 2661, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2662, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2663, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2664, -1, 35, 1, 57 },
{ 0x800001, 0x800001, 222, 2665, -1, 12, 1, 62 },
{ 0x1, 0x1, 222, 2666, -1, 35, 1, 57 },
{ 0x1800001, 0x1800001, 222, 2667, -1, 12, 1, 62 },
{ 0x3, 0x3, 222, 2668, -1, 35, 1, 57 },
{ 0xa00001, 0xa00001, 222, 2669, -1, 12, 1, 62 },
{ 0x5, 0x5, 222, 2670, -1, 33, 1, 57 },
{ 0x1a00001, 0x1a00001, 222, 2671, -1, 12, 1, 52 },
{ 0xd, 0xd, 222, 2672, -1, 33, 1, 52 },
{ 0x1, 0x1, 222, 2673, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2674, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2675, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2676, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2677, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2678, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2679, -1, 35, 1, 52 },
{ 0x1, 0x1, 222, 2680, -1, 35, 1, 52 },
{ 0x800001, 0x800001, 222, 2681, -1, 12, 1, 62 },
{ 0x1, 0x1, 222, 2682, -1, 35, 1, 57 },
{ 0xa00001, 0x1a00001, 222, 2683, -1, 12, 1, 62 },
{ 0x5, 0xd, 222, 2684, -1, 33, 1, 57 },
{ 0x1, 0x1, 222, 2685, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2686, -1, 35, 1, 57 },
{ 0x1, 0x1, 222, 2687, -1, 35, 1, 62 },
{ 0x1, 0x1, 222, 2688, -1, 35, 1, 57 },
{ 0x81, 0x81, 222, 2689, -1, 28, 1, 32 },
{ 0x1, 0x1, 222, 2690, -1, 35, 1, 32 },
{ 0x103, 0x103, 222, 2691, -1, 27, 1, 32 },
{ 0x101, 0x101, 222, 2692, -1, 27, 1, 32 },
{ 0x1, 0x1, 222, 2693, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2694, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2695, -1, 35, 1, 32 },
{ 0x3, 0x3, 222, 2696, -1, 35, 1, 66 },
{ 0x5, 0x5, 222, 2697, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2698, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2699, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2700, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2701, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2702, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2703, -1, 35, 1, 32 },
{ 0x3, 0x3, 222, 2704, -1, 35, 1, 66 },
{ 0x5, 0x5, 222, 2705, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2706, -1, 35, 1, 32 },
{ 0x3, 0x3, 222, 2707, -1, 35, 1, 66 },
{ 0x5, 0x5, 222, 2708, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2709, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2710, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2711, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2712, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2713, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2714, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2715, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2716, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2717, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2718, -1, 35, 1, 52 },
{ 0x101, 0x101, 222, 2719, -1, 27, 1, 52 },
{ 0x81, 0x81, 222, 2720, -1, 28, 1, 52 },
{ 0x103, 0x103, 222, 2721, -1, 27, 1, 52 },
{ 0x41, 0x41, 222, 2722, -1, 29, 1, 52 },
{ 0x105, 0x105, 222, 2723, -1, 27, 1, 52 },
{ 0x83, 0x83, 222, 2724, -1, 28, 1, 52 },
{ 0x107, 0x107, 222, 2725, -1, 27, 1, 52 },
{ 0x1, 0x1, 222, 2726, -1, 35, 1, 52 },
{ 0x1, 0x1, 222, 2727, -1, 35, 1, 52 },
{ 0x1, 0x1, 222, 2728, -1, 35, 1, 52 },
{ 0x1, 0x1, 222, 2729, -1, 35, 1, 52 },
{ 0x81, 0x81, 222, 2730, -1, 28, 1, 32 },
{ 0x1, 0x1, 222, 2731, -1, 35, 1, 32 },
{ 0x103, 0x103, 222, 2732, -1, 27, 1, 32 },
{ 0x101, 0x101, 222, 2733, -1, 27, 1, 32 },
{ 0x1, 0x1, 222, 2734, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2735, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2736, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2737, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2738, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2739, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2740, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2741, -1, 35, 1, 27 },
{ 0x1, 0x1, 222, 2742, -1, 35, 1, 27 },
{ 0x1, 0x1, 222, 2743, -1, 35, 1, 27 },
{ 0x1, 0x1, 222, 2744, -1, 35, 1, 27 },
{ 0x1, 0x1, 222, 2745, -1, 35, 1, 38 },
{ 0x1, 0x1, 222, 2746, -1, 35, 1, 66 },
{ 0x1, 0x1, 222, 2747, -1, 35, 1, 32 },
{ 0x1, 0x1, 222, 2748, -1, 35, 1, 32 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2243, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 48 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 44 },
{ 0xc00001, 0xc00001, 223, -1, -1, 12, 1, 63 },
{ 0x3, 0x3, 223, 2964, -1, 34, 1, 58 },
{ 0x1c00001, 0x1c00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0x7, 223, 2965, -1, 34, 1, 58 },
{ 0xe00001, 0xe00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0x7, 223, 2966, -1, 33, 1, 58 },
{ 0x1e00001, 0x1e00001, 223, -1, -1, 12, 1, 53 },
{ 0xf, 0xf, 223, 2967, -1, 33, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2968, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2969, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2970, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x3, 0x3, 223, 2971, -1, 34, 1, 53 },
{ 0xc00001, 0xc00001, 223, -1, -1, 12, 1, 63 },
{ 0x3, 0x3, 223, 2976, -1, 34, 1, 58 },
{ 0xe00001, 0x1e00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0xf, 223, 2977, -1, 33, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2978, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2979, -1, 34, 1, 58 },
{ 0xc00001, 0xc00001, 223, -1, -1, 12, 1, 63 },
{ 0x3, 0x3, 223, 2982, -1, 34, 1, 58 },
{ 0x1c00001, 0x1c00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0x7, 223, 2983, -1, 34, 1, 58 },
{ 0xe00001, 0xe00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0x7, 223, 2984, -1, 33, 1, 58 },
{ 0x1e00001, 0x1e00001, 223, -1, -1, 12, 1, 53 },
{ 0xf, 0xf, 223, 2985, -1, 33, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2986, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2987, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2988, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x3, 0x3, 223, 2989, -1, 34, 1, 53 },
{ 0xc00001, 0xc00001, 223, -1, -1, 12, 1, 63 },
{ 0x3, 0x3, 223, 2994, -1, 34, 1, 58 },
{ 0xe00001, 0x1e00001, 223, -1, -1, 12, 1, 63 },
{ 0x7, 0xf, 223, 2995, -1, 33, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2996, -1, 34, 1, 58 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 63 },
{ 0x3, 0x3, 223, 2997, -1, 34, 1, 58 },
{ 0xc1, 0xc1, 223, -1, -1, 28, 1, 33 },
{ 0x3, 0x3, 223, 2862, -1, 34, 1, 33 },
{ 0x183, 0x183, 223, -1, -1, 27, 1, 33 },
{ 0x181, 0x181, 223, 2863, -1, 27, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2244, -1, 34, 1, 33 },
{ 0x7, 0x7, 223, -1, -1, 34, 1, 66 },
{ 0xb, 0xb, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2245, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2248, -1, 34, 1, 33 },
{ 0x7, 0x7, 223, -1, -1, 34, 1, 66 },
{ 0xb, 0xb, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2249, -1, 34, 1, 33 },
{ 0x7, 0x7, 223, -1, -1, 34, 1, 66 },
{ 0xb, 0xb, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2251, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2253, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2254, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x181, 0x181, 223, -1, -1, 27, 1, 53 },
{ 0xc1, 0xc1, 223, -1, -1, 28, 1, 53 },
{ 0x183, 0x183, 223, -1, -1, 27, 1, 53 },
{ 0x61, 0x61, 223, -1, -1, 29, 1, 53 },
{ 0x185, 0x185, 223, -1, -1, 27, 1, 53 },
{ 0xc3, 0xc3, 223, -1, -1, 28, 1, 53 },
{ 0x187, 0x187, 223, -1, -1, 27, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 53 },
{ 0xc1, 0xc1, 223, -1, -1, 28, 1, 33 },
{ 0x3, 0x3, 223, 2866, -1, 34, 1, 33 },
{ 0x183, 0x183, 223, -1, -1, 27, 1, 33 },
{ 0x181, 0x181, 223, 2867, -1, 27, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 28 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 28 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 28 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 28 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 39 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 66 },
{ 0x3, 0x3, 223, -1, -1, 34, 1, 33 },
{ 0x3, 0x3, 223, 2256, -1, 34, 1, 33 },
{ 0x3, 0x3, 224, 540, 1451, 32, 1, 135 },
{ 0x3, 0x3, 224, 541, 1460, 32, 1, 135 },
{ 0x3, 0x3, 224, 542, 1469, 32, 1, 135 },
{ 0x3, 0x3, 224, 543, 1482, 32, 1, 135 },
{ 0x3, 0x3, 224, 544, 1491, 32, 1, 135 },
{ 0x3, 0x3, 224, 545, 1500, 32, 1, 135 },
{ 0x3, 0x3, 224, 546, 1509, 32, 1, 135 },
{ 0x3, 0x3, 224, 547, 1518, 32, 1, 135 },
{ 0x3, 0x3, 224, 548, 1527, 32, 1, 135 },
{ 0x3, 0x3, 224, 549, 1536, 32, 1, 135 },
{ 0x3, 0x3, 224, 550, 1546, 32, 1, 135 },
{ 0x3, 0x3, 224, 551, 1556, 32, 1, 135 },
{ 0x3, 0x3, 224, 564, 1569, 32, 1, 150 },
{ 0x3, 0x3, 224, 565, 1575, 32, 1, 155 },
{ 0x3, 0x3, 224, 566, 1581, 32, 1, 155 },
{ 0x3, 0x3, 224, 567, 1587, 32, 1, 150 },
{ 0x3, 0x3, 224, 568, 1593, 32, 1, 155 },
{ 0x3, 0x3, 224, 569, 1599, 32, 1, 155 },
{ 0x3, 0x3, 224, 570, 1605, 32, 1, 150 },
{ 0x3, 0x3, 224, 571, 1611, 32, 1, 155 },
{ 0x3, 0x3, 224, 572, 1617, 32, 1, 155 },
{ 0x3, 0x3, 224, 573, 1623, 32, 1, 150 },
{ 0x3, 0x3, 224, 574, 1629, 32, 1, 155 },
{ 0x3, 0x3, 224, 575, 1635, 32, 1, 150 },
{ 0x3, 0x3, 224, 576, 1641, 32, 1, 155 },
{ 0x3, 0x3, 224, 577, 1647, 32, 1, 150 },
{ 0x3, 0x3, 224, 578, 1653, 32, 1, 155 },
{ 0x3, 0x3, 224, 579, 1659, 32, 1, 150 },
{ 0x3, 0x3, 224, 580, 1665, 32, 1, 155 },
{ 0x3, 0x3, 224, 581, 1671, 32, 1, 155 },
{ 0x1, 0x1, 225, -1, -1, 28, 1, 34 },
{ 0x1, 0x1, 225, -1, -1, 28, 1, 34 },
{ 0x0, 0x0, 232, 958, -1, 0, 1, 144 },
{ 0x0, 0x0, 232, 959, -1, 0, 1, 160 },
{ 0x1, 0x1, 233, -1, 1982, 33, 1, 140 },
{ 0x1, 0x1, 233, -1, 1985, 33, 1, 146 },
{ 0x0, 0x0, 233, -1, 1987, 0, 1, 157 },
{ 0x0, 0x0, 233, -1, 1988, 0, 1, 161 },
{ 0x0, 0x0, 234, 883, 971, 0, 0, -1 },
{ 0x0, 0x0, 234, 884, 979, 0, 0, -1 },
{ 0x0, 0x0, 234, 885, 975, 0, 0, -1 },
{ 0x1, 0x1, 234, 886, 620, 33, 1, 6 },
{ 0x8000001, 0x8000001, 234, 887, 628, 6, 1, 7 },
{ 0x1, 0x1, 234, 888, 624, 33, 1, 6 },
{ 0x0, 0x0, 234, 889, 983, 0, 0, -1 },
{ 0x1, 0x1, 234, 890, 640, 33, 1, 8 },
{ 0x0, 0x0, 234, 891, 987, 0, 0, -1 },
{ 0x1, 0x1, 234, 892, 652, 33, 1, 16 },
{ 0x0, 0x0, 234, 893, 992, 0, 0, -1 },
{ 0x0, 0x0, 234, 894, 996, 0, 0, -1 },
{ 0x1, 0x1, 234, 895, 675, 33, 1, 18 },
{ 0x1, 0x1, 234, 896, 679, 33, 1, 18 },
{ 0x0, 0x0, 234, 897, 1000, 0, 0, -1 },
{ 0x0, 0x0, 234, 898, 1004, 0, 0, -1 },
{ 0x1, 0x1, 234, 899, 699, 33, 1, 19 },
{ 0x8000001, 0x8000001, 234, 900, 703, 6, 1, 19 },
{ 0x0, 0x0, 234, 901, 1008, 0, 0, -1 },
{ 0x1, 0x1, 234, 902, 715, 33, 1, 20 },
{ 0x0, 0x0, 234, 903, 1012, 0, 0, -1 },
{ 0x0, 0x0, 234, 904, 1016, 0, 0, -1 },
{ 0x1, 0x1, 234, 905, 735, 33, 1, 21 },
{ 0x8000001, 0x8000001, 234, 906, 739, 6, 1, 21 },
{ 0x0, 0x0, 234, 907, 1020, 0, 0, -1 },
{ 0x1, 0x1, 234, 908, 751, 33, 1, 22 },
{ 0x0, 0x0, 234, 909, 1025, 0, 0, -1 },
{ 0x0, 0x0, 234, 910, 1029, 0, 0, -1 },
{ 0x1, 0x1, 234, 911, 774, 33, 1, 18 },
{ 0x1, 0x1, 234, 912, 778, 33, 1, 18 },
{ 0x0, 0x0, 234, 913, 1033, 0, 0, -1 },
{ 0x1, 0x1, 234, 914, 790, 33, 1, 22 },
{ 0x0, 0x0, 235, 2787, 970, 0, 0, -1 },
{ 0x0, 0x0, 235, 2788, 978, 0, 0, -1 },
{ 0x0, 0x0, 235, 2789, 974, 0, 0, -1 },
{ 0x0, 0x0, 235, 2790, 619, 0, 1, 6 },
{ 0x1, 0x1, 235, 2791, 627, 6, 1, 7 },
{ 0x0, 0x0, 235, 2792, 623, 0, 1, 6 },
{ 0x0, 0x0, 235, 2793, 982, 0, 0, -1 },
{ 0x0, 0x0, 235, 2794, 639, 0, 1, 8 },
{ 0x0, 0x0, 235, 2795, 986, 0, 0, -1 },
{ 0x0, 0x0, 235, 2796, 651, 0, 1, 16 },
{ 0x0, 0x0, 235, 2797, 991, 0, 0, -1 },
{ 0x0, 0x0, 235, 2798, 995, 0, 0, -1 },
{ 0x0, 0x0, 235, 2799, 674, 0, 1, 18 },
{ 0x0, 0x0, 235, 2800, 678, 0, 1, 18 },
{ 0x0, 0x0, 235, 2801, 999, 0, 0, -1 },
{ 0x0, 0x0, 235, 2802, 1003, 0, 0, -1 },
{ 0x0, 0x0, 235, 2803, 698, 0, 1, 19 },
{ 0x1, 0x1, 235, 2804, 702, 6, 1, 19 },
{ 0x0, 0x0, 235, 2805, 1007, 0, 0, -1 },
{ 0x0, 0x0, 235, 2806, 714, 0, 1, 20 },
{ 0x0, 0x0, 235, 2807, 1011, 0, 0, -1 },
{ 0x0, 0x0, 235, 2808, 1015, 0, 0, -1 },
{ 0x0, 0x0, 235, 2809, 734, 0, 1, 21 },
{ 0x1, 0x1, 235, 2810, 738, 6, 1, 21 },
{ 0x0, 0x0, 235, 2811, 1019, 0, 0, -1 },
{ 0x0, 0x0, 235, 2812, 750, 0, 1, 22 },
{ 0x0, 0x0, 235, 2813, 1024, 0, 0, -1 },
{ 0x0, 0x0, 235, 2814, 1028, 0, 0, -1 },
{ 0x0, 0x0, 235, 2815, 773, 0, 1, 18 },
{ 0x0, 0x0, 235, 2816, 777, 0, 1, 18 },
{ 0x0, 0x0, 235, 2817, 1032, 0, 0, -1 },
{ 0x0, 0x0, 235, 2818, 789, 0, 1, 22 },
{ 0x1, 0x1, 235, 915, 1155, 27, 1, 17 },
{ 0x0, 0x0, 235, 916, 1153, 0, 1, 17 },
{ 0x0, 0x0, 235, 1220, 1157, 0, 1, 23 },
{ 0x0, 0x1, 235, 1165, 1163, 20, 1, 68 },
{ 0x0, 0x0, 235, 111, 1161, 0, 1, 68 },
{ 0x1, 0x1, 238, -1, -1, 29, 1, 0 },
{ 0x0, 0x0, 238, -1, -1, 0, 1, 0 },
{ 0x1, 0x1, 238, 3022, -1, 27, 1, 0 },
{ 0x1, 0x1, 238, 3023, -1, 27, 1, 0 },
{ 0x1, 0x1, 238, 3024, -1, 27, 1, 0 },
{ 0x1, 0x1, 238, 3025, -1, 27, 1, 0 },
{ 0x0, 0x0, 261, -1, 2344, 0, 0, -1 },
{ 0x0, 0x0, 261, -1, 2346, 0, 0, -1 },
{ 0x1, 0x1, 261, -1, -1, 28, 1, 30 },
{ 0x1, 0x1, 261, -1, -1, 28, 1, 30 },
{ 0x0, 0x0, 261, -1, 2385, 0, 0, -1 },
{ 0x0, 0x0, 261, -1, 2387, 0, 0, -1 },
{ 0x1, 0x1, 261, -1, -1, 28, 1, 30 },
{ 0x1, 0x1, 261, -1, -1, 28, 1, 30 },
{ 0x0, 0x0, 263, 23, -1, 0, 1, 0 },
{ 0x0, 0x0, 263, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 263, -1, -1, 0, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x0, 0x0, 263, 180, -1, 0, 1, 0 },
{ 0x0, 0x1, 263, -1, -1, 29, 1, 0 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 301, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 323, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 349, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 371, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 65 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 65 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 65 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 65 },
{ 0x0, 0x0, 264, -1, 2296, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2298, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2300, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2302, 0, 0, -1 },
{ 0x1, 0x1, 264, -1, 2304, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2306, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2308, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2310, 12, 1, 50 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 50 },
{ 0x0, 0x0, 264, -1, 2312, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2314, 0, 0, -1 },
{ 0x1, 0x1, 264, -1, 2316, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2318, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x0, 0x0, 264, -1, 2320, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2322, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2324, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2326, 0, 0, -1 },
{ 0x1, 0x1, 264, -1, 2328, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2330, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2332, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2334, 12, 1, 50 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 50 },
{ 0x0, 0x0, 264, -1, 2336, 0, 0, -1 },
{ 0x0, 0x0, 264, -1, 2338, 0, 0, -1 },
{ 0x1, 0x1, 264, -1, 2340, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, 2342, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, -1, -1, 12, 1, 60 },
{ 0x1, 0x1, 264, 393, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 395, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 517, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 519, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 401, -1, 12, 1, 77 },
{ 0x1, 0x1, 264, 403, -1, 12, 1, 77 },
{ 0x1, 0x1, 264, 525, -1, 12, 1, 77 },
{ 0x1, 0x1, 264, 527, -1, 12, 1, 77 },
{ 0x1, 0x1, 264, 409, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 411, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 533, -1, 12, 1, 2 },
{ 0x1, 0x1, 264, 535, -1, 12, 1, 2 },
{ 0x0, 0x0, 265, -1, 2303, 0, 0, -1 },
{ 0x9, 0x9, 265, -1, 2311, 33, 1, 50 },
{ 0x9, 0x9, 265, -1, 2975, 33, 1, 50 },
{ 0x0, 0x0, 265, 1399, 2376, 0, 0, -1 },
{ 0x3, 0x3, 265, 1400, -1, 27, 1, 50 },
{ 0x0, 0x0, 269, 2856, -1, 0, 1, 0 },
{ 0x3, 0x3, 270, -1, -1, 27, 1, 0 },
{ 0x3, 0x3, 270, -1, -1, 27, 1, 0 },
{ 0x3, 0x3, 270, -1, -1, 27, 1, 0 },
{ 0x3, 0x3, 270, -1, -1, 27, 1, 0 },
{ 0x1, 0x1, 271, 3018, -1, 28, 1, 0 },
{ 0x1, 0x1, 271, 3019, -1, 28, 1, 0 },
{ 0x1, 0x1, 271, 3020, -1, 28, 1, 0 },
{ 0x1, 0x1, 271, 3021, -1, 28, 1, 0 },
{ 0x1, 0x1, 273, -1, -1, 27, 1, 100 },
{ 0x1, 0x1, 273, -1, -1, 27, 1, 100 },
{ 0x0, 0x0, 273, -1, 968, 0, 0, -1 },
{ 0x0, 0x0, 274, 3031, 2833, 0, 0, -1 },
{ 0x0, 0x0, 274, 3032, 2835, 0, 0, -1 },
{ 0x0, 0x0, 275, -1, 2834, 0, 0, -1 },
{ 0x0, 0x0, 275, -1, 2836, 0, 0, -1 },
{ 0x0, 0x0, 276, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 276, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 276, -1, -1, 0, 1, 41 },
{ 0x0, 0x0, 281, -1, -1, 0, 1, 34 },
{ 0x0, 0x0, 285, -1, 2350, 0, 1, 30 },
{ 0x0, 0x0, 286, -1, -1, 0, 1, 0 },
{ 0x0, 0x0, 286, -1, -1, 0, 1, 72 },
{ 0x0, 0x0, 286, 2001, 3000, 0, 1, 1 },
{ 0x0, 0x0, 286, 2002, 3001, 0, 1, 1 },
{ 0x0, 0x0, 286, -1, 518, 0, 0, -1 },
{ 0x0, 0x0, 286, -1, 520, 0, 0, -1 },
{ 0x0, 0x0, 286, 2005, 3004, 0, 1, 76 },
{ 0x0, 0x0, 286, 2006, 3005, 0, 1, 76 },
{ 0x0, 0x0, 286, -1, 526, 0, 0, -1 },
{ 0x0, 0x0, 286, -1, 528, 0, 0, -1 },
{ 0x0, 0x0, 286, 2009, 3008, 0, 1, 1 },
{ 0x0, 0x0, 286, 2010, 3009, 0, 1, 1 },
{ 0x0, 0x0, 286, -1, 534, 0, 0, -1 },
{ 0x0, 0x0, 286, -1, 536, 0, 0, -1 },
};
static const struct ia64_main_table
main_table[] = {
{ 5, 1, 1, 0x0000010000000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 0, },
{ 5, 1, 1, 0x0000010008000000ull, 0x000001eff8000000ull, { 24, 25, 26, 4, 0 }, 0x0, 1, },
{ 5, 7, 1, 0x0000000000000000ull, 0x0000000000000000ull, { 24, 67, 27, 0, 0 }, 0x0, 2, },
{ 5, 7, 1, 0x0000000000000000ull, 0x0000000000000000ull, { 24, 64, 26, 0, 0 }, 0x0, 3, },
{ 6, 1, 1, 0x0000012000000000ull, 0x000001e000000000ull, { 24, 67, 27, 0, 0 }, 0x0, 4, },
{ 7, 1, 1, 0x0000010040000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 5, },
{ 7, 1, 1, 0x0000010c00000000ull, 0x000001ee00000000ull, { 24, 64, 26, 0, 0 }, 0x0, 6, },
{ 8, 1, 1, 0x0000010800000000ull, 0x000001ee00000000ull, { 24, 64, 26, 0, 0 }, 0x0, 7, },
{ 9, 3, 1, 0x0000002c00000000ull, 0x000001ee00000000ull, { 24, 3, 53, 54, 55 }, 0x221, 8, },
{ 9, 3, 1, 0x0000002c00000000ull, 0x000001ee00000000ull, { 24, 53, 54, 55, 0 }, 0x261, 9, },
{ 10, 1, 1, 0x0000010060000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 10, },
{ 10, 1, 1, 0x0000010160000000ull, 0x000001eff8000000ull, { 24, 56, 26, 0, 0 }, 0x0, 11, },
{ 11, 1, 1, 0x0000010068000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 12, },
{ 11, 1, 1, 0x0000010168000000ull, 0x000001eff8000000ull, { 24, 56, 26, 0, 0 }, 0x0, 13, },
{ 14, 4, 0, 0x0000000100000000ull, 0x000001eff80011ffull, { 16, 0, 0, 0, 0 }, 0x40, 969, },
{ 14, 4, 0, 0x0000000100000000ull, 0x000001eff80011c0ull, { 16, 0, 0, 0, 0 }, 0x0, 825, },
{ 14, 4, 0, 0x0000000100000000ull, 0x000001eff80011c0ull, { 16, 0, 0, 0, 0 }, 0x40, 826, },
{ 14, 4, 0, 0x0000000108000100ull, 0x000001eff80011c0ull, { 16, 0, 0, 0, 0 }, 0x200, 2234, },
{ 14, 4, 0, 0x0000000108000100ull, 0x000001eff80011c0ull, { 16, 0, 0, 0, 0 }, 0x240, 2235, },
{ 14, 4, 1, 0x0000002100000000ull, 0x000001ef00001000ull, { 15, 16, 0, 0, 0 }, 0x0, 582, },
{ 14, 4, 1, 0x0000002100000000ull, 0x000001ef00001000ull, { 15, 16, 0, 0, 0 }, 0x40, 583, },
{ 14, 4, 0, 0x0000008000000000ull, 0x000001ee000011ffull, { 82, 0, 0, 0, 0 }, 0x40, 990, },
{ 14, 4, 0, 0x0000008000000000ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x0, 827, },
{ 14, 4, 0, 0x0000008000000000ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x40, 828, },
{ 14, 4, 0, 0x0000008000000080ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x210, 3029, },
{ 14, 4, 0, 0x0000008000000080ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x250, 3030, },
{ 14, 4, 0, 0x0000008000000140ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x30, 590, },
{ 14, 4, 0, 0x0000008000000140ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x70, 591, },
{ 14, 4, 0, 0x0000008000000180ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x230, 588, },
{ 14, 4, 0, 0x0000008000000180ull, 0x000001ee000011c0ull, { 82, 0, 0, 0, 0 }, 0x270, 589, },
{ 14, 4, 1, 0x000000a000000000ull, 0x000001ee00001000ull, { 15, 82, 0, 0, 0 }, 0x0, 584, },
{ 14, 4, 1, 0x000000a000000000ull, 0x000001ee00001000ull, { 15, 82, 0, 0, 0 }, 0x40, 585, },
{ 15, 4, 0, 0x0000000000000000ull, 0x000001e1f8000000ull, { 66, 0, 0, 0, 0 }, 0x0, 537, },
{ 15, 5, 0, 0x0000000000000000ull, 0x000001e3f8000000ull, { 66, 0, 0, 0, 0 }, 0x0, 960, },
{ 15, 2, 0, 0x0000000000000000ull, 0x000001eff8000000ull, { 66, 0, 0, 0, 0 }, 0x2, 1138, },
{ 15, 3, 0, 0x0000000000000000ull, 0x000001eff8000000ull, { 66, 0, 0, 0, 0 }, 0x0, 1263, },
{ 15, 6, 0, 0x0000000000000000ull, 0x000001eff8000000ull, { 70, 0, 0, 0, 0 }, 0x0, 3033, },
{ 15, 7, 0, 0x0000000000000000ull, 0x0000000000000000ull, { 66, 0, 0, 0, 0 }, 0x0, 16, },
{ 16, 6, 0, 0x0000018000000000ull, 0x000001ee000011ffull, { 83, 0, 0, 0, 0 }, 0x40, 1023, },
{ 16, 6, 0, 0x0000018000000000ull, 0x000001ee000011c0ull, { 83, 0, 0, 0, 0 }, 0x0, 829, },
{ 16, 6, 0, 0x0000018000000000ull, 0x000001ee000011c0ull, { 83, 0, 0, 0, 0 }, 0x40, 830, },
{ 16, 6, 1, 0x000001a000000000ull, 0x000001ee00001000ull, { 15, 83, 0, 0, 0 }, 0x0, 586, },
{ 16, 6, 1, 0x000001a000000000ull, 0x000001ee00001000ull, { 15, 83, 0, 0, 0 }, 0x40, 587, },
{ 17, 4, 0, 0x0000004080000000ull, 0x000001e9f8000018ull, { 16, 78, 0, 0, 0 }, 0x20, 2852, },
{ 17, 4, 0, 0x000000e000000000ull, 0x000001e800000018ull, { 82, 78, 0, 0, 0 }, 0x20, 2853, },
{ 18, 4, 0, 0x0000000060000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x2c, 222, },
{ 22, 2, 0, 0x0000000200000000ull, 0x000001ee00000000ull, { 25, 81, 0, 0, 0 }, 0x0, 2239, },
{ 22, 3, 0, 0x0000000800000000ull, 0x000001ee00000000ull, { 24, 82, 0, 0, 0 }, 0x0, 226, },
{ 22, 3, 0, 0x0000000c00000000ull, 0x000001ee00000000ull, { 18, 82, 0, 0, 0 }, 0x0, 227, },
{ 22, 3, 0, 0x0000002200000000ull, 0x000001ee00000000ull, { 25, 81, 0, 0, 0 }, 0x0, 2240, },
{ 22, 3, 0, 0x0000002600000000ull, 0x000001ee00000000ull, { 19, 81, 0, 0, 0 }, 0x0, 2241, },
{ 22, 7, 0, 0x0000000000000000ull, 0x0000000000000000ull, { 25, 81, 0, 0, 0 }, 0x0, 2242, },
{ 25, 4, 0, 0x0000000020000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x224, 18, },
{ 26, 1, 2, 0x0000018000000000ull, 0x000001fe00001000ull, { 22, 23, 25, 26, 0 }, 0x0, 1222, },
{ 26, 1, 1, 0x0000018000000000ull, 0x000001fe00001000ull, { 22, 25, 26, 0, 0 }, 0x40, 1223, },
{ 26, 1, 2, 0x0000018000000000ull, 0x000001fe00001000ull, { 23, 22, 26, 25, 0 }, 0x0, 1181, },
{ 26, 1, 1, 0x0000018000000000ull, 0x000001fe00001000ull, { 23, 26, 25, 0, 0 }, 0x40, 1182, },
{ 26, 1, 2, 0x0000018000000000ull, 0x000001fe00001000ull, { 22, 23, 26, 25, 0 }, 0x0, 1090, },
{ 26, 1, 1, 0x0000018000000000ull, 0x000001fe00001000ull, { 22, 26, 25, 0, 0 }, 0x40, 1091, },
{ 26, 1, 2, 0x0000018000000000ull, 0x000001fe00001000ull, { 23, 22, 25, 26, 0 }, 0x0, 1052, },
{ 26, 1, 1, 0x0000018000000000ull, 0x000001fe00001000ull, { 23, 25, 26, 0, 0 }, 0x40, 1053, },
{ 26, 1, 2, 0x0000018200000000ull, 0x000001fe00001000ull, { 22, 23, 25, 26, 0 }, 0x40, 1376, },
{ 26, 1, 2, 0x0000019000000000ull, 0x000001fe00001000ull, { 22, 23, 7, 26, 0 }, 0x0, 1092, },
{ 26, 1, 1, 0x0000019000000000ull, 0x000001fe00001000ull, { 22, 7, 26, 0, 0 }, 0x40, 1093, },
{ 26, 1, 2, 0x0000019000000000ull, 0x000001fe00001000ull, { 22, 23, 26, 7, 0 }, 0x40, 1226, },
{ 26, 1, 1, 0x0000019000000000ull, 0x000001fe00001000ull, { 22, 26, 7, 0, 0 }, 0x40, 1227, },
{ 26, 1, 2, 0x0000019000000000ull, 0x000001fe00001000ull, { 22, 23, 7, 26, 0 }, 0x40, 1187, },
{ 26, 1, 2, 0x0000018800000000ull, 0x000001ee00001000ull, { 22, 23, 56, 26, 0 }, 0x0, 1229, },
{ 26, 1, 1, 0x0000018800000000ull, 0x000001ee00001000ull, { 22, 56, 26, 0, 0 }, 0x40, 1230, },
{ 26, 1, 2, 0x0000018800000000ull, 0x000001ee00001000ull, { 22, 23, 58, 26, 0 }, 0x0, 1188, },
{ 26, 1, 1, 0x0000018800000000ull, 0x000001ee00001000ull, { 22, 58, 26, 0, 0 }, 0x40, 1189, },
{ 26, 1, 2, 0x0000018800000000ull, 0x000001ee00001000ull, { 23, 22, 58, 26, 0 }, 0x0, 1097, },
{ 26, 1, 1, 0x0000018800000000ull, 0x000001ee00001000ull, { 23, 58, 26, 0, 0 }, 0x40, 1098, },
{ 26, 1, 2, 0x0000018800000000ull, 0x000001ee00001000ull, { 23, 22, 56, 26, 0 }, 0x0, 1059, },
{ 26, 1, 1, 0x0000018800000000ull, 0x000001ee00001000ull, { 23, 56, 26, 0, 0 }, 0x40, 1060, },
{ 26, 1, 2, 0x0000018a00000000ull, 0x000001ee00001000ull, { 22, 23, 56, 26, 0 }, 0x40, 1381, },
{ 26, 1, 2, 0x000001a800000000ull, 0x000001ee00001000ull, { 22, 23, 60, 26, 0 }, 0x0, 1214, },
{ 26, 1, 1, 0x000001a800000000ull, 0x000001ee00001000ull, { 22, 60, 26, 0, 0 }, 0x40, 1215, },
{ 26, 1, 2, 0x000001a800000000ull, 0x000001ee00001000ull, { 23, 22, 60, 26, 0 }, 0x0, 1125, },
{ 26, 1, 1, 0x000001a800000000ull, 0x000001ee00001000ull, { 23, 60, 26, 0, 0 }, 0x40, 1126, },
{ 26, 1, 2, 0x000001c200000000ull, 0x000001fe00001000ull, { 23, 22, 25, 26, 0 }, 0x40, 1382, },
{ 26, 1, 2, 0x000001d000000000ull, 0x000001fe00001000ull, { 23, 22, 7, 26, 0 }, 0x40, 1190, },
{ 26, 1, 1, 0x000001d000000000ull, 0x000001fe00001000ull, { 23, 7, 26, 0, 0 }, 0x40, 1191, },
{ 26, 1, 2, 0x000001d000000000ull, 0x000001fe00001000ull, { 23, 22, 26, 7, 0 }, 0x40, 1063, },
{ 26, 1, 1, 0x000001d000000000ull, 0x000001fe00001000ull, { 23, 26, 7, 0, 0 }, 0x40, 1064, },
{ 26, 1, 2, 0x000001ca00000000ull, 0x000001ee00001000ull, { 23, 22, 56, 26, 0 }, 0x40, 1383, },
{ 27, 1, 2, 0x0000018400000000ull, 0x000001fe00001000ull, { 22, 23, 25, 26, 0 }, 0x0, 1235, },
{ 27, 1, 1, 0x0000018400000000ull, 0x000001fe00001000ull, { 22, 25, 26, 0, 0 }, 0x40, 1236, },
{ 27, 1, 2, 0x0000018400000000ull, 0x000001fe00001000ull, { 23, 22, 26, 25, 0 }, 0x0, 1194, },
{ 27, 1, 1, 0x0000018400000000ull, 0x000001fe00001000ull, { 23, 26, 25, 0, 0 }, 0x40, 1195, },
{ 27, 1, 2, 0x0000018400000000ull, 0x000001fe00001000ull, { 22, 23, 26, 25, 0 }, 0x0, 1103, },
{ 27, 1, 1, 0x0000018400000000ull, 0x000001fe00001000ull, { 22, 26, 25, 0, 0 }, 0x40, 1104, },
{ 27, 1, 2, 0x0000018400000000ull, 0x000001fe00001000ull, { 23, 22, 25, 26, 0 }, 0x0, 1065, },
{ 27, 1, 1, 0x0000018400000000ull, 0x000001fe00001000ull, { 23, 25, 26, 0, 0 }, 0x40, 1066, },
{ 27, 1, 2, 0x0000018600000000ull, 0x000001fe00001000ull, { 22, 23, 25, 26, 0 }, 0x40, 1388, },
{ 27, 1, 2, 0x0000019400000000ull, 0x000001fe00001000ull, { 22, 23, 7, 26, 0 }, 0x0, 1105, },
{ 27, 1, 1, 0x0000019400000000ull, 0x000001fe00001000ull, { 22, 7, 26, 0, 0 }, 0x40, 1106, },
{ 27, 1, 2, 0x0000019400000000ull, 0x000001fe00001000ull, { 22, 23, 26, 7, 0 }, 0x40, 1239, },
{ 27, 1, 1, 0x0000019400000000ull, 0x000001fe00001000ull, { 22, 26, 7, 0, 0 }, 0x40, 1240, },
{ 27, 1, 2, 0x0000019400000000ull, 0x000001fe00001000ull, { 22, 23, 7, 26, 0 }, 0x40, 1200, },
{ 27, 1, 2, 0x0000018c00000000ull, 0x000001ee00001000ull, { 22, 23, 56, 26, 0 }, 0x0, 1242, },
{ 27, 1, 1, 0x0000018c00000000ull, 0x000001ee00001000ull, { 22, 56, 26, 0, 0 }, 0x40, 1243, },
{ 27, 1, 2, 0x0000018c00000000ull, 0x000001ee00001000ull, { 22, 23, 58, 26, 0 }, 0x0, 1201, },
{ 27, 1, 1, 0x0000018c00000000ull, 0x000001ee00001000ull, { 22, 58, 26, 0, 0 }, 0x40, 1202, },
{ 27, 1, 2, 0x0000018c00000000ull, 0x000001ee00001000ull, { 23, 22, 58, 26, 0 }, 0x0, 1110, },
{ 27, 1, 1, 0x0000018c00000000ull, 0x000001ee00001000ull, { 23, 58, 26, 0, 0 }, 0x40, 1111, },
{ 27, 1, 2, 0x0000018c00000000ull, 0x000001ee00001000ull, { 23, 22, 56, 26, 0 }, 0x0, 1072, },
{ 27, 1, 1, 0x0000018c00000000ull, 0x000001ee00001000ull, { 23, 56, 26, 0, 0 }, 0x40, 1073, },
{ 27, 1, 2, 0x0000018e00000000ull, 0x000001ee00001000ull, { 22, 23, 56, 26, 0 }, 0x40, 1393, },
{ 27, 1, 2, 0x000001ac00000000ull, 0x000001ee00001000ull, { 22, 23, 57, 26, 0 }, 0x0, 1259, },
{ 27, 1, 1, 0x000001ac00000000ull, 0x000001ee00001000ull, { 22, 57, 26, 0, 0 }, 0x40, 1260, },
{ 27, 1, 2, 0x000001ac00000000ull, 0x000001ee00001000ull, { 22, 23, 59, 26, 0 }, 0x0, 1218, },
{ 27, 1, 1, 0x000001ac00000000ull, 0x000001ee00001000ull, { 22, 59, 26, 0, 0 }, 0x40, 1219, },
{ 27, 1, 2, 0x000001ac00000000ull, 0x000001ee00001000ull, { 23, 22, 59, 26, 0 }, 0x0, 1129, },
{ 27, 1, 1, 0x000001ac00000000ull, 0x000001ee00001000ull, { 23, 59, 26, 0, 0 }, 0x40, 1130, },
{ 27, 1, 2, 0x000001ac00000000ull, 0x000001ee00001000ull, { 23, 22, 57, 26, 0 }, 0x0, 1088, },
{ 27, 1, 1, 0x000001ac00000000ull, 0x000001ee00001000ull, { 23, 57, 26, 0, 0 }, 0x40, 1089, },
{ 27, 1, 2, 0x000001c600000000ull, 0x000001fe00001000ull, { 23, 22, 25, 26, 0 }, 0x40, 1394, },
{ 27, 1, 2, 0x000001d400000000ull, 0x000001fe00001000ull, { 23, 22, 7, 26, 0 }, 0x40, 1203, },
{ 27, 1, 1, 0x000001d400000000ull, 0x000001fe00001000ull, { 23, 7, 26, 0, 0 }, 0x40, 1204, },
{ 27, 1, 2, 0x000001d400000000ull, 0x000001fe00001000ull, { 23, 22, 26, 7, 0 }, 0x40, 1076, },
{ 27, 1, 1, 0x000001d400000000ull, 0x000001fe00001000ull, { 23, 26, 7, 0, 0 }, 0x40, 1077, },
{ 27, 1, 2, 0x000001ce00000000ull, 0x000001ee00001000ull, { 23, 22, 56, 26, 0 }, 0x40, 1395, },
{ 28, 3, 1, 0x0000008808000000ull, 0x000001fff8000000ull, { 24, 28, 25, 1, 2 }, 0x0, 259, },
{ 28, 3, 1, 0x0000008808000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x40, 260, },
{ 29, 3, 1, 0x0000008008000000ull, 0x000001fff8000000ull, { 24, 28, 25, 2, 0 }, 0x0, 261, },
{ 29, 3, 1, 0x0000008008000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x40, 262, },
{ 30, 3, 1, 0x0000008048000000ull, 0x000001fff8000000ull, { 24, 28, 25, 2, 0 }, 0x0, 263, },
{ 30, 3, 1, 0x0000008048000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x40, 264, },
{ 31, 3, 1, 0x0000008088000000ull, 0x000001fff8000000ull, { 24, 28, 25, 2, 0 }, 0x0, 265, },
{ 31, 3, 1, 0x0000008088000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x40, 266, },
{ 32, 3, 1, 0x00000080c8000000ull, 0x000001fff8000000ull, { 24, 28, 25, 2, 0 }, 0x0, 267, },
{ 32, 3, 1, 0x00000080c8000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x40, 268, },
{ 34, 4, 0, 0x0000000010000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x224, 19, },
{ 36, 2, 1, 0x00000000c0000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 1167, },
{ 37, 2, 1, 0x00000000c8000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 1168, },
{ 39, 2, 1, 0x0000008000000000ull, 0x000001e000000000ull, { 24, 25, 26, 47, 73 }, 0x0, 20, },
{ 39, 2, 1, 0x000000a600000000ull, 0x000001ee04000000ull, { 24, 25, 45, 74, 0 }, 0x0, 3038, },
{ 39, 2, 1, 0x000000a604000000ull, 0x000001ee04000000ull, { 24, 56, 45, 74, 0 }, 0x0, 3039, },
{ 39, 2, 1, 0x000000ae00000000ull, 0x000001ee00000000ull, { 24, 48, 26, 46, 74 }, 0x0, 21, },
{ 43, 4, 0, 0x0000000080000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x20, 22, },
{ 48, 2, 1, 0x000000a400000000ull, 0x000001ee00002000ull, { 24, 26, 77, 74, 0 }, 0x0, 2870, },
{ 50, 5, 1, 0x0000000080000000ull, 0x000001e3f80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 24, },
{ 51, 5, 1, 0x0000010008000000ull, 0x000001fff8000000ull, { 18, 20, 19, 0, 0 }, 0x40, 2291, },
{ 52, 5, 1, 0x00000000b8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2292, },
{ 52, 5, 1, 0x00000000b8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 26, },
{ 53, 5, 1, 0x00000000b0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2293, },
{ 53, 5, 1, 0x00000000b0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 27, },
{ 54, 5, 1, 0x0000000160000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 28, },
{ 55, 5, 1, 0x0000000168000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 29, },
{ 57, 3, 0, 0x0000002180000000ull, 0x000001fff8000000ull, { 26, 0, 0, 0, 0 }, 0x0, 30, },
{ 58, 5, 0, 0x0000000040000000ull, 0x000001eff8000000ull, { 80, 0, 0, 0, 0 }, 0x0, 2294, },
{ 58, 5, 0, 0x0000000040000000ull, 0x000001eff8000000ull, { 80, 0, 0, 0, 0 }, 0x40, 31, },
{ 59, 5, 2, 0x000000a000000000ull, 0x000001e000001000ull, { 22, 23, 19, 61, 0 }, 0x0, 1265, },
{ 59, 5, 1, 0x000000a000000000ull, 0x000001e000001000ull, { 22, 19, 61, 0, 0 }, 0x40, 1266, },
{ 59, 5, 2, 0x000000a000000000ull, 0x000001e000001000ull, { 23, 22, 19, 61, 0 }, 0x40, 1420, },
{ 59, 5, 1, 0x000000a000000000ull, 0x000001e000001000ull, { 23, 19, 61, 0, 0 }, 0x40, 1421, },
{ 60, 5, 0, 0x0000000028000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 2295, },
{ 60, 5, 0, 0x0000000028000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x40, 32, },
{ 61, 5, 2, 0x0000008000000000ull, 0x000001fe00001000ull, { 22, 23, 19, 20, 0 }, 0x0, 943, },
{ 61, 5, 1, 0x0000008000000000ull, 0x000001fe00001000ull, { 22, 19, 20, 0, 0 }, 0x40, 944, },
{ 61, 5, 2, 0x0000008000000000ull, 0x000001fe00001000ull, { 22, 23, 19, 20, 0 }, 0x40, 945, },
{ 61, 5, 2, 0x0000009000000000ull, 0x000001fe00001000ull, { 22, 23, 20, 19, 0 }, 0x0, 1116, },
{ 61, 5, 1, 0x0000009000000000ull, 0x000001fe00001000ull, { 22, 20, 19, 0, 0 }, 0x40, 1117, },
{ 61, 5, 2, 0x0000009000000000ull, 0x000001fe00001000ull, { 22, 23, 20, 19, 0 }, 0x40, 1118, },
{ 61, 5, 2, 0x0000008000000000ull, 0x000001fe00001000ull, { 23, 22, 19, 20, 0 }, 0x0, 1396, },
{ 61, 5, 1, 0x0000008000000000ull, 0x000001fe00001000ull, { 23, 19, 20, 0, 0 }, 0x40, 1397, },
{ 61, 5, 2, 0x0000008000000000ull, 0x000001fe00001000ull, { 23, 22, 19, 20, 0 }, 0x40, 1398, },
{ 61, 5, 2, 0x0000009000000000ull, 0x000001fe00001000ull, { 23, 22, 20, 19, 0 }, 0x0, 1405, },
{ 61, 5, 1, 0x0000009000000000ull, 0x000001fe00001000ull, { 23, 20, 19, 0, 0 }, 0x40, 1406, },
{ 61, 5, 2, 0x0000009000000000ull, 0x000001fe00001000ull, { 23, 22, 20, 19, 0 }, 0x40, 1407, },
{ 62, 5, 1, 0x00000000c0000000ull, 0x000001eff8000000ull, { 18, 19, 0, 0, 0 }, 0x0, 1042, },
{ 62, 5, 1, 0x00000000c0000000ull, 0x000001eff8000000ull, { 18, 19, 0, 0, 0 }, 0x40, 1043, },
{ 62, 5, 1, 0x00000000e0000000ull, 0x000001e3f8000000ull, { 18, 19, 0, 0, 0 }, 0x0, 3036, },
{ 62, 5, 1, 0x0000010008000000ull, 0x000001fff80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 3037, },
{ 63, 3, 1, 0x0000008488000000ull, 0x000001fff8000000ull, { 24, 28, 72, 0, 0 }, 0x0, 269, },
{ 64, 3, 1, 0x00000084c8000000ull, 0x000001fff8000000ull, { 24, 28, 72, 0, 0 }, 0x0, 270, },
{ 67, 3, 0, 0x0000000060000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x21, 33, },
{ 68, 5, 1, 0x0000010000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2353, },
{ 68, 5, 1, 0x0000010000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 34, },
{ 69, 5, 1, 0x00000000a8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2354, },
{ 69, 5, 1, 0x00000000a8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 35, },
{ 70, 5, 1, 0x0000000080000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2247, },
{ 71, 5, 1, 0x00000000a0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2355, },
{ 71, 5, 1, 0x00000000a0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 36, },
{ 72, 5, 1, 0x00000001c8000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 1221, },
{ 73, 5, 1, 0x0000010000000000ull, 0x000001fc000fe000ull, { 18, 20, 21, 0, 0 }, 0x40, 2358, },
{ 74, 5, 1, 0x0000014000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2361, },
{ 74, 5, 1, 0x0000014000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 38, },
{ 75, 5, 1, 0x0000000088000000ull, 0x000001e3f8000000ull, { 18, 20, 0, 0, 0 }, 0xc0, 39, },
{ 76, 5, 1, 0x0000000088000000ull, 0x000001e3f80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 40, },
{ 77, 5, 1, 0x0000018000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2364, },
{ 77, 5, 1, 0x0000018000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 41, },
{ 78, 5, 1, 0x0000018000000000ull, 0x000001fc000fe000ull, { 18, 20, 21, 0, 0 }, 0x40, 2367, },
{ 79, 5, 1, 0x0000010008000000ull, 0x000001fff80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 2370, },
{ 80, 5, 1, 0x0000000170000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 44, },
{ 81, 5, 1, 0x0000002080000000ull, 0x000001e3f80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 45, },
{ 82, 5, 1, 0x0000000140000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 46, },
{ 83, 5, 1, 0x00000020b8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2371, },
{ 83, 5, 1, 0x00000020b8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 47, },
{ 84, 5, 1, 0x00000020b0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2372, },
{ 84, 5, 1, 0x00000020b0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 48, },
{ 85, 5, 1, 0x0000002180000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 946, },
{ 85, 5, 1, 0x0000002180000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 947, },
{ 85, 5, 1, 0x0000002188000000ull, 0x000001eff8000000ull, { 18, 20, 19, 0, 0 }, 0x40, 1119, },
{ 86, 5, 1, 0x00000020c0000000ull, 0x000001eff8000000ull, { 18, 19, 0, 0, 0 }, 0x0, 1044, },
{ 86, 5, 1, 0x00000020c0000000ull, 0x000001eff8000000ull, { 18, 19, 0, 0, 0 }, 0x40, 1045, },
{ 87, 5, 1, 0x0000013000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2389, },
{ 87, 5, 1, 0x0000013000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 49, },
{ 88, 5, 1, 0x00000020a8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2390, },
{ 88, 5, 1, 0x00000020a8000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 50, },
{ 89, 5, 1, 0x0000002080000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2255, },
{ 90, 5, 1, 0x00000020a0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2391, },
{ 90, 5, 1, 0x00000020a0000000ull, 0x000001eff8000000ull, { 18, 19, 20, 0, 0 }, 0x40, 51, },
{ 91, 5, 1, 0x0000013000000000ull, 0x000001fc000fe000ull, { 18, 20, 21, 0, 0 }, 0x40, 2392, },
{ 92, 5, 1, 0x0000017000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2393, },
{ 92, 5, 1, 0x0000017000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 53, },
{ 93, 5, 1, 0x0000002088000000ull, 0x000001e3f8000000ull, { 18, 20, 0, 0, 0 }, 0xc0, 54, },
{ 94, 5, 1, 0x0000002088000000ull, 0x000001e3f80fe000ull, { 18, 20, 0, 0, 0 }, 0x40, 55, },
{ 95, 5, 1, 0x000001b000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 2394, },
{ 95, 5, 1, 0x000001b000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 56, },
{ 96, 5, 1, 0x000001b000000000ull, 0x000001fc000fe000ull, { 18, 20, 21, 0, 0 }, 0x40, 2395, },
{ 97, 5, 2, 0x0000002200000000ull, 0x000001fe00000000ull, { 18, 23, 19, 20, 0 }, 0x0, 2396, },
{ 97, 5, 2, 0x0000002200000000ull, 0x000001fe00000000ull, { 18, 23, 19, 20, 0 }, 0x40, 58, },
{ 98, 5, 2, 0x0000003200000000ull, 0x000001fe00000000ull, { 18, 23, 20, 0, 0 }, 0x0, 2397, },
{ 98, 5, 2, 0x0000003200000000ull, 0x000001fe00000000ull, { 18, 23, 20, 0, 0 }, 0x40, 59, },
{ 99, 5, 2, 0x0000000200000000ull, 0x000001fe00000000ull, { 18, 23, 19, 20, 0 }, 0x0, 2398, },
{ 99, 5, 2, 0x0000000200000000ull, 0x000001fe00000000ull, { 18, 23, 19, 20, 0 }, 0x40, 60, },
{ 100, 5, 2, 0x0000001200000000ull, 0x000001fe00000000ull, { 18, 23, 20, 0, 0 }, 0x0, 2399, },
{ 100, 5, 2, 0x0000001200000000ull, 0x000001fe00000000ull, { 18, 23, 20, 0, 0 }, 0x40, 61, },
{ 101, 5, 1, 0x000001c000000000ull, 0x000001f000000000ull, { 18, 20, 21, 19, 0 }, 0x0, 62, },
{ 102, 5, 0, 0x0000000020000000ull, 0x000001eff8000000ull, { 51, 52, 0, 0, 0 }, 0x0, 2400, },
{ 102, 5, 0, 0x0000000020000000ull, 0x000001eff8000000ull, { 51, 52, 0, 0, 0 }, 0x40, 63, },
{ 103, 5, 1, 0x0000014008000000ull, 0x000001fff8000000ull, { 18, 20, 19, 0, 0 }, 0x40, 2403, },
{ 104, 5, 1, 0x00000001a0000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 65, },
{ 105, 5, 1, 0x00000001e0000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 2202, },
{ 106, 3, 0, 0x0000000100000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 66, },
{ 108, 5, 1, 0x0000000178000000ull, 0x000001e3f8000000ull, { 18, 19, 20, 0, 0 }, 0x0, 67, },
{ 113, 3, 1, 0x0000008708000000ull, 0x000001ffc8000000ull, { 24, 19, 0, 0, 0 }, 0x0, 2781, },
{ 118, 4, 0, 0x0000004008000000ull, 0x000001e1f8000000ull, { 66, 0, 0, 0, 0 }, 0x0, 538, },
{ 118, 5, 0, 0x000000000c000000ull, 0x000001e3fc000000ull, { 66, 0, 0, 0, 0 }, 0x0, 961, },
{ 118, 2, 0, 0x000000000c000000ull, 0x000001effc000000ull, { 66, 0, 0, 0, 0 }, 0x2, 1141, },
{ 118, 3, 0, 0x000000000c000000ull, 0x000001effc000000ull, { 66, 0, 0, 0, 0 }, 0x0, 1267, },
{ 118, 6, 0, 0x000000000c000000ull, 0x000001effc000000ull, { 70, 0, 0, 0, 0 }, 0x0, 3034, },
{ 118, 7, 0, 0x0000000000000000ull, 0x0000000000000000ull, { 66, 0, 0, 0, 0 }, 0x0, 68, },
{ 123, 3, 0, 0x0000000080000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 69, },
{ 123, 3, 0, 0x0000000090000000ull, 0x000001eff8000000ull, { 24, 0, 0, 0, 0 }, 0x0, 920, },
{ 123, 3, 0, 0x0000000098000000ull, 0x000001eff8000000ull, { 18, 0, 0, 0, 0 }, 0x0, 921, },
{ 124, 3, 0, 0x0000002170000000ull, 0x000001eff8000000ull, { 25, 0, 0, 0, 0 }, 0xc, 846, },
{ 125, 3, 1, 0x0000002070000000ull, 0x000001eff8000000ull, { 31, 25, 0, 0, 0 }, 0x8, 847, },
{ 125, 3, 1, 0x0000002078000000ull, 0x000001eff8000000ull, { 32, 25, 0, 0, 0 }, 0x8, 1143, },
{ 127, 3, 1, 0x0000008000000000ull, 0x000001fff8000000ull, { 24, 28, 0, 0, 0 }, 0x0, 70, },
{ 127, 3, 1, 0x0000009000000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x400, 71, },
{ 127, 3, 1, 0x000000a000000000ull, 0x000001eff0000000ull, { 24, 28, 63, 0, 0 }, 0x400, 72, },
{ 128, 3, 2, 0x0000008a08000000ull, 0x000001fff8000000ull, { 24, 1, 28, 0, 0 }, 0x0, 73, },
{ 128, 3, 1, 0x0000008a08000000ull, 0x000001fff8000000ull, { 24, 28, 0, 0, 0 }, 0x40, 74, },
{ 129, 3, 1, 0x0000008040000000ull, 0x000001fff8000000ull, { 24, 28, 0, 0, 0 }, 0x0, 75, },
{ 129, 3, 1, 0x0000009040000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x400, 76, },
{ 129, 3, 1, 0x000000a040000000ull, 0x000001eff0000000ull, { 24, 28, 63, 0, 0 }, 0x400, 77, },
{ 130, 3, 1, 0x0000008080000000ull, 0x000001fff8000000ull, { 24, 28, 0, 0, 0 }, 0x0, 78, },
{ 130, 3, 1, 0x0000009080000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x400, 79, },
{ 130, 3, 1, 0x000000a080000000ull, 0x000001eff0000000ull, { 24, 28, 63, 0, 0 }, 0x400, 80, },
{ 131, 3, 1, 0x00000080c0000000ull, 0x000001fff8000000ull, { 24, 28, 0, 0, 0 }, 0x0, 81, },
{ 131, 3, 1, 0x00000080c0000000ull, 0x000001fff8000000ull, { 24, 28, 84, 0, 0 }, 0x0, 1339, },
{ 131, 3, 1, 0x00000090c0000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x400, 82, },
{ 131, 3, 1, 0x000000a0c0000000ull, 0x000001eff0000000ull, { 24, 28, 63, 0, 0 }, 0x400, 83, },
{ 132, 3, 1, 0x000000c6c0000000ull, 0x000001fff8000000ull, { 18, 28, 0, 0, 0 }, 0x0, 1039, },
{ 132, 3, 1, 0x000000d6c0000000ull, 0x000001fff8000000ull, { 18, 28, 25, 0, 0 }, 0x400, 1040, },
{ 132, 3, 1, 0x000000e6c0000000ull, 0x000001eff0000000ull, { 18, 28, 63, 0, 0 }, 0x400, 1041, },
{ 133, 3, 1, 0x000000c040000000ull, 0x000001fff8000000ull, { 18, 28, 0, 0, 0 }, 0x0, 84, },
{ 133, 3, 1, 0x000000d040000000ull, 0x000001fff8000000ull, { 18, 28, 25, 0, 0 }, 0x400, 85, },
{ 133, 3, 1, 0x000000e040000000ull, 0x000001eff0000000ull, { 18, 28, 63, 0, 0 }, 0x400, 86, },
{ 134, 3, 1, 0x000000c0c0000000ull, 0x000001fff8000000ull, { 18, 28, 0, 0, 0 }, 0x0, 87, },
{ 134, 3, 1, 0x000000d0c0000000ull, 0x000001fff8000000ull, { 18, 28, 25, 0, 0 }, 0x400, 88, },
{ 134, 3, 1, 0x000000e0c0000000ull, 0x000001eff0000000ull, { 18, 28, 63, 0, 0 }, 0x400, 89, },
{ 135, 3, 1, 0x000000c000000000ull, 0x000001fff8000000ull, { 18, 28, 0, 0, 0 }, 0x0, 90, },
{ 135, 3, 1, 0x000000d000000000ull, 0x000001fff8000000ull, { 18, 28, 25, 0, 0 }, 0x400, 91, },
{ 135, 3, 1, 0x000000e000000000ull, 0x000001eff0000000ull, { 18, 28, 63, 0, 0 }, 0x400, 92, },
{ 136, 3, 2, 0x000000c048000000ull, 0x000001fff8000000ull, { 18, 19, 28, 0, 0 }, 0x0, 93, },
{ 136, 3, 2, 0x000000d048000000ull, 0x000001fff8000000ull, { 18, 19, 28, 6, 0 }, 0x400, 94, },
{ 137, 3, 2, 0x000000c0c8000000ull, 0x000001fff8000000ull, { 18, 19, 28, 0, 0 }, 0x0, 95, },
{ 137, 3, 2, 0x000000d0c8000000ull, 0x000001fff8000000ull, { 18, 19, 28, 6, 0 }, 0x400, 96, },
{ 138, 3, 2, 0x000000c088000000ull, 0x000001fff8000000ull, { 18, 19, 28, 0, 0 }, 0x0, 97, },
{ 138, 3, 2, 0x000000d088000000ull, 0x000001fff8000000ull, { 18, 19, 28, 5, 0 }, 0x400, 98, },
{ 139, 3, 1, 0x000000c080000000ull, 0x000001fff8000000ull, { 18, 28, 0, 0, 0 }, 0x0, 99, },
{ 139, 3, 1, 0x000000d080000000ull, 0x000001fff8000000ull, { 18, 28, 25, 0, 0 }, 0x400, 100, },
{ 139, 3, 1, 0x000000e080000000ull, 0x000001eff0000000ull, { 18, 28, 63, 0, 0 }, 0x400, 101, },
{ 142, 3, 0, 0x000000cb00000000ull, 0x000001fff8000000ull, { 28, 0, 0, 0, 0 }, 0x0, 102, },
{ 142, 3, 0, 0x000000db00000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x400, 103, },
{ 142, 3, 0, 0x000000eb00000000ull, 0x000001eff0000000ull, { 28, 63, 0, 0, 0 }, 0x400, 104, },
{ 143, 3, 0, 0x0000000050000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x21, 105, },
{ 151, 3, 0, 0x0000000110000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 106, },
{ 152, 2, 1, 0x000000e880000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2203, },
{ 153, 2, 1, 0x000000ea80000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2204, },
{ 154, 2, 1, 0x000000f880000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2205, },
{ 155, 1, 1, 0x0000010800000000ull, 0x000001fff80fe000ull, { 24, 26, 0, 0, 0 }, 0x0, 107, },
{ 155, 1, 1, 0x0000012000000000ull, 0x000001e000300000ull, { 24, 67, 0, 0, 0 }, 0x40, 108, },
{ 155, 5, 1, 0x0000000080000000ull, 0x000001e3f8000000ull, { 18, 20, 0, 0, 0 }, 0xc0, 109, },
{ 155, 2, 1, 0x0000000e00100000ull, 0x000001ee00f00000ull, { 15, 25, 0, 0, 0 }, 0x40, 110, },
{ 155, 2, 1, 0x0000000e00000000ull, 0x000001ee00f00000ull, { 15, 25, 79, 0, 0 }, 0x0, 2855, },
{ 155, 2, 1, 0x0000000188000000ull, 0x000001eff8000000ull, { 24, 16, 0, 0, 0 }, 0x0, 112, },
{ 155, 2, 1, 0x0000000600000000ull, 0x000001ee00000000ull, { 9, 25, 65, 0, 0 }, 0x0, 113, },
{ 155, 2, 1, 0x00000016ff001fc0ull, 0x000001feff001fc0ull, { 9, 25, 0, 0, 0 }, 0x40, 114, },
{ 155, 2, 1, 0x0000000400000000ull, 0x000001ee00000000ull, { 10, 69, 0, 0, 0 }, 0x0, 115, },
{ 155, 2, 1, 0x0000000180000000ull, 0x000001eff8000000ull, { 24, 8, 0, 0, 0 }, 0x0, 116, },
{ 155, 2, 1, 0x0000000198000000ull, 0x000001eff8000000ull, { 24, 9, 0, 0, 0 }, 0x0, 117, },
{ 155, 2, 1, 0x0000000150000000ull, 0x000001eff8000000ull, { 14, 25, 0, 0, 0 }, 0x0, 1144, },
{ 155, 2, 1, 0x0000000050000000ull, 0x000001eff8000000ull, { 14, 56, 0, 0, 0 }, 0x0, 1145, },
{ 155, 2, 1, 0x0000000190000000ull, 0x000001eff8000000ull, { 24, 14, 0, 0, 0 }, 0x0, 1146, },
{ 155, 3, 1, 0x0000000140000000ull, 0x000001eff8000000ull, { 14, 56, 0, 0, 0 }, 0x0, 1268, },
{ 155, 3, 1, 0x0000002150000000ull, 0x000001eff8000000ull, { 14, 25, 0, 0, 0 }, 0x0, 1269, },
{ 155, 3, 1, 0x0000002110000000ull, 0x000001eff8000000ull, { 24, 14, 0, 0, 0 }, 0x0, 1270, },
{ 155, 3, 1, 0x0000002160000000ull, 0x000001eff8000000ull, { 17, 25, 0, 0, 0 }, 0x8, 118, },
{ 155, 3, 1, 0x0000002120000000ull, 0x000001eff8000000ull, { 24, 17, 0, 0, 0 }, 0x8, 119, },
{ 155, 3, 1, 0x0000002168000000ull, 0x000001eff8000000ull, { 12, 25, 0, 0, 0 }, 0x8, 120, },
{ 155, 3, 1, 0x0000002148000000ull, 0x000001eff8000000ull, { 13, 25, 0, 0, 0 }, 0x0, 121, },
{ 155, 3, 1, 0x0000002128000000ull, 0x000001eff8000000ull, { 24, 11, 0, 0, 0 }, 0x8, 122, },
{ 155, 3, 1, 0x0000002108000000ull, 0x000001eff8000000ull, { 24, 13, 0, 0, 0 }, 0x0, 123, },
{ 155, 3, 1, 0x0000002000000000ull, 0x000001eff8000000ull, { 38, 25, 0, 0, 0 }, 0x8, 124, },
{ 155, 3, 1, 0x0000002008000000ull, 0x000001eff8000000ull, { 30, 25, 0, 0, 0 }, 0x8, 125, },
{ 155, 3, 1, 0x0000002010000000ull, 0x000001eff8000000ull, { 33, 25, 0, 0, 0 }, 0x8, 126, },
{ 155, 3, 1, 0x0000002018000000ull, 0x000001eff8000000ull, { 35, 25, 0, 0, 0 }, 0x8, 127, },
{ 155, 3, 1, 0x0000002020000000ull, 0x000001eff8000000ull, { 36, 25, 0, 0, 0 }, 0x8, 128, },
{ 155, 3, 1, 0x0000002028000000ull, 0x000001eff8000000ull, { 37, 25, 0, 0, 0 }, 0x8, 129, },
{ 155, 3, 1, 0x0000002030000000ull, 0x000001eff8000000ull, { 34, 25, 0, 0, 0 }, 0x8, 130, },
{ 155, 3, 1, 0x0000002080000000ull, 0x000001eff8000000ull, { 24, 38, 0, 0, 0 }, 0x8, 131, },
{ 155, 3, 1, 0x0000002088000000ull, 0x000001eff8000000ull, { 24, 30, 0, 0, 0 }, 0x8, 132, },
{ 155, 3, 1, 0x0000002090000000ull, 0x000001eff8000000ull, { 24, 33, 0, 0, 0 }, 0x8, 133, },
{ 155, 3, 1, 0x0000002098000000ull, 0x000001eff8000000ull, { 24, 35, 0, 0, 0 }, 0x8, 134, },
{ 155, 3, 1, 0x00000020a0000000ull, 0x000001eff8000000ull, { 24, 36, 0, 0, 0 }, 0x8, 135, },
{ 155, 3, 1, 0x00000020a8000000ull, 0x000001eff8000000ull, { 24, 37, 0, 0, 0 }, 0x0, 136, },
{ 155, 3, 1, 0x00000020b0000000ull, 0x000001eff8000000ull, { 24, 34, 0, 0, 0 }, 0x8, 137, },
{ 155, 3, 1, 0x00000020b8000000ull, 0x000001eff8000000ull, { 24, 29, 0, 0, 0 }, 0x0, 138, },
{ 155, 7, 1, 0x0000000000000000ull, 0x0000000000000000ull, { 24, 14, 0, 0, 0 }, 0x0, 139, },
{ 155, 7, 1, 0x0000000000000000ull, 0x0000000000000000ull, { 14, 56, 0, 0, 0 }, 0x0, 140, },
{ 155, 7, 1, 0x0000000000000000ull, 0x0000000000000000ull, { 14, 25, 0, 0, 0 }, 0x0, 141, },
{ 156, 6, 1, 0x000000c000000000ull, 0x000001e000100000ull, { 24, 71, 0, 0, 0 }, 0x0, 142, },
{ 157, 2, 1, 0x000000eca0000000ull, 0x000001fff0000000ull, { 24, 25, 75, 0, 0 }, 0x0, 143, },
{ 158, 2, 1, 0x000000eea0000000ull, 0x000001fff0000000ull, { 24, 25, 76, 0, 0 }, 0x0, 144, },
{ 168, 4, 0, 0x0000004000000000ull, 0x000001e1f8000000ull, { 66, 0, 0, 0, 0 }, 0x0, 539, },
{ 168, 5, 0, 0x0000000008000000ull, 0x000001e3fc000000ull, { 66, 0, 0, 0, 0 }, 0x0, 962, },
{ 168, 2, 0, 0x0000000008000000ull, 0x000001effc000000ull, { 66, 0, 0, 0, 0 }, 0x2, 1147, },
{ 168, 3, 0, 0x0000000008000000ull, 0x000001effc000000ull, { 66, 0, 0, 0, 0 }, 0x0, 1271, },
{ 168, 6, 0, 0x0000000008000000ull, 0x000001effc000000ull, { 70, 0, 0, 0, 0 }, 0x0, 3035, },
{ 168, 7, 0, 0x0000000000000000ull, 0x0000000000000000ull, { 66, 0, 0, 0, 0 }, 0x0, 145, },
{ 175, 1, 1, 0x0000010070000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 146, },
{ 175, 1, 1, 0x0000010170000000ull, 0x000001eff8000000ull, { 24, 56, 26, 0, 0 }, 0x0, 147, },
{ 178, 2, 1, 0x000000ea00000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 3017, },
{ 179, 2, 1, 0x000000f820000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2857, },
{ 180, 1, 1, 0x0000010400000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 148, },
{ 181, 1, 1, 0x0000010600000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 149, },
{ 182, 1, 1, 0x0000011400000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 150, },
{ 183, 1, 1, 0x0000010450000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 151, },
{ 184, 1, 1, 0x0000010650000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 152, },
{ 185, 1, 1, 0x0000010470000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 153, },
{ 186, 1, 1, 0x0000010670000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 154, },
{ 187, 1, 1, 0x0000010520000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 948, },
{ 188, 1, 1, 0x0000010720000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 949, },
{ 189, 1, 1, 0x0000011520000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 950, },
{ 190, 2, 1, 0x000000e850000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2871, },
{ 191, 2, 1, 0x000000ea70000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 155, },
{ 192, 2, 1, 0x000000e810000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2872, },
{ 193, 2, 1, 0x000000ea30000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 156, },
{ 194, 2, 1, 0x000000ead0000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 2206, },
{ 195, 2, 1, 0x000000e230000000ull, 0x000001ff30000000ull, { 24, 25, 26, 42, 0 }, 0x0, 157, },
{ 196, 2, 1, 0x000000e690000000ull, 0x000001fff0000000ull, { 24, 26, 0, 0, 0 }, 0x0, 158, },
{ 198, 3, 1, 0x00000021c0000000ull, 0x000001eff8000000ull, { 24, 26, 25, 0, 0 }, 0x0, 2207, },
{ 198, 3, 1, 0x00000020c0000000ull, 0x000001eff8000000ull, { 24, 26, 49, 0, 0 }, 0x0, 2208, },
{ 198, 3, 0, 0x0000002188000000ull, 0x000001eff8000000ull, { 26, 49, 0, 0, 0 }, 0x0, 2238, },
{ 199, 2, 1, 0x000000e8b0000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 159, },
{ 200, 2, 1, 0x000000e240000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 160, },
{ 200, 2, 1, 0x000000ee50000000ull, 0x000001fff0000000ull, { 24, 25, 39, 0, 0 }, 0x0, 161, },
{ 201, 2, 1, 0x000000f040000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 162, },
{ 201, 2, 1, 0x000000fc50000000ull, 0x000001fff0000000ull, { 24, 25, 39, 0, 0 }, 0x0, 163, },
{ 202, 1, 1, 0x0000010680000000ull, 0x000001ffe0000000ull, { 24, 25, 41, 26, 0 }, 0x0, 164, },
{ 203, 2, 1, 0x000000e220000000ull, 0x000001fff0000000ull, { 24, 26, 25, 0, 0 }, 0x0, 165, },
{ 203, 2, 1, 0x000000e630000000ull, 0x000001fff0000000ull, { 24, 26, 43, 0, 0 }, 0x0, 166, },
{ 204, 2, 1, 0x000000f020000000ull, 0x000001fff0000000ull, { 24, 26, 25, 0, 0 }, 0x0, 167, },
{ 204, 2, 1, 0x000000f430000000ull, 0x000001fff0000000ull, { 24, 26, 43, 0, 0 }, 0x0, 168, },
{ 205, 1, 1, 0x00000106c0000000ull, 0x000001ffe0000000ull, { 24, 25, 41, 26, 0 }, 0x0, 169, },
{ 206, 1, 1, 0x0000010420000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 170, },
{ 207, 1, 1, 0x0000010620000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 171, },
{ 208, 1, 1, 0x0000011420000000ull, 0x000001fff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 172, },
{ 209, 3, 0, 0x0000002048000000ull, 0x000001eff8000000ull, { 26, 25, 0, 0, 0 }, 0x8, 1175, },
{ 209, 3, 0, 0x0000002050000000ull, 0x000001eff8000000ull, { 26, 25, 0, 0, 0 }, 0xc, 1050, },
{ 209, 3, 0, 0x00000021a0000000ull, 0x000001eff8000000ull, { 26, 0, 0, 0, 0 }, 0x8, 922, },
{ 210, 3, 0, 0x0000002060000000ull, 0x000001eff8000000ull, { 26, 25, 0, 0, 0 }, 0x8, 848, },
{ 215, 4, 0, 0x0000000040000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x22c, 173, },
{ 216, 3, 0, 0x0000000038000000ull, 0x000001ee78000000ull, { 68, 0, 0, 0, 0 }, 0x8, 174, },
{ 217, 3, 0, 0x0000000028000000ull, 0x000001ee78000000ull, { 68, 0, 0, 0, 0 }, 0x0, 175, },
{ 226, 3, 1, 0x000000c708000000ull, 0x000001ffc8000000ull, { 18, 25, 0, 0, 0 }, 0x0, 2782, },
{ 227, 2, 1, 0x000000a600000000ull, 0x000001ee04000000ull, { 24, 25, 45, 0, 0 }, 0x140, 176, },
{ 227, 2, 1, 0x000000f240000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 177, },
{ 228, 1, 1, 0x0000010080000000ull, 0x000001efe0000000ull, { 24, 25, 40, 26, 0 }, 0x0, 178, },
{ 229, 1, 1, 0x00000100c0000000ull, 0x000001efe0000000ull, { 24, 25, 40, 26, 0 }, 0x0, 179, },
{ 230, 2, 1, 0x000000a400000000ull, 0x000001ee00002000ull, { 24, 26, 77, 0, 0 }, 0x140, 2878, },
{ 230, 2, 1, 0x000000f220000000ull, 0x000001fff0000000ull, { 24, 26, 25, 0, 0 }, 0x0, 181, },
{ 231, 2, 1, 0x000000ac00000000ull, 0x000001ee00000000ull, { 24, 25, 26, 44, 0 }, 0x0, 182, },
{ 236, 3, 0, 0x0000000180000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 850, },
{ 237, 3, 0, 0x0000000030000000ull, 0x000001ee78000000ull, { 68, 0, 0, 0, 0 }, 0x8, 183, },
{ 239, 3, 1, 0x0000008c00000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x0, 184, },
{ 239, 3, 1, 0x000000ac00000000ull, 0x000001eff0000000ull, { 28, 25, 62, 0, 0 }, 0x400, 185, },
{ 240, 3, 1, 0x0000008c08000000ull, 0x000001fff8000000ull, { 28, 25, 1, 0, 0 }, 0x0, 186, },
{ 240, 3, 1, 0x0000008c08000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x40, 187, },
{ 241, 3, 1, 0x0000008c40000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x0, 188, },
{ 241, 3, 1, 0x000000ac40000000ull, 0x000001eff0000000ull, { 28, 25, 62, 0, 0 }, 0x400, 189, },
{ 242, 3, 1, 0x0000008c80000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x0, 190, },
{ 242, 3, 1, 0x000000ac80000000ull, 0x000001eff0000000ull, { 28, 25, 62, 0, 0 }, 0x400, 191, },
{ 243, 3, 1, 0x0000008cc0000000ull, 0x000001fff8000000ull, { 28, 25, 0, 0, 0 }, 0x0, 192, },
{ 243, 3, 1, 0x000000acc0000000ull, 0x000001eff0000000ull, { 28, 25, 62, 0, 0 }, 0x400, 193, },
{ 244, 3, 1, 0x000000cec0000000ull, 0x000001fff8000000ull, { 28, 19, 0, 0, 0 }, 0x0, 2785, },
{ 244, 3, 1, 0x000000eec0000000ull, 0x000001eff0000000ull, { 28, 19, 62, 0, 0 }, 0x400, 2786, },
{ 245, 3, 1, 0x000000cc40000000ull, 0x000001fff8000000ull, { 28, 19, 0, 0, 0 }, 0x0, 194, },
{ 245, 3, 1, 0x000000ec40000000ull, 0x000001eff0000000ull, { 28, 19, 62, 0, 0 }, 0x400, 195, },
{ 246, 3, 1, 0x000000ccc0000000ull, 0x000001fff8000000ull, { 28, 19, 0, 0, 0 }, 0x0, 196, },
{ 246, 3, 1, 0x000000ecc0000000ull, 0x000001eff0000000ull, { 28, 19, 62, 0, 0 }, 0x400, 197, },
{ 247, 3, 1, 0x000000cc00000000ull, 0x000001fff8000000ull, { 28, 19, 0, 0, 0 }, 0x0, 198, },
{ 247, 3, 1, 0x000000ec00000000ull, 0x000001eff0000000ull, { 28, 19, 62, 0, 0 }, 0x400, 199, },
{ 248, 3, 1, 0x000000cc80000000ull, 0x000001fff8000000ull, { 28, 19, 0, 0, 0 }, 0x0, 200, },
{ 248, 3, 1, 0x000000ec80000000ull, 0x000001eff0000000ull, { 28, 19, 62, 0, 0 }, 0x400, 201, },
{ 249, 1, 1, 0x0000010028000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 202, },
{ 249, 1, 1, 0x0000010020000000ull, 0x000001eff8000000ull, { 24, 25, 26, 4, 0 }, 0x0, 203, },
{ 249, 1, 1, 0x0000010128000000ull, 0x000001eff8000000ull, { 24, 56, 26, 0, 0 }, 0x0, 204, },
{ 250, 3, 0, 0x0000000020000000ull, 0x000001ee78000000ull, { 68, 0, 0, 0, 0 }, 0x0, 205, },
{ 251, 2, 1, 0x00000000a0000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 206, },
{ 252, 2, 1, 0x00000000a8000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 207, },
{ 253, 2, 1, 0x00000000b0000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 208, },
{ 254, 3, 0, 0x0000000198000000ull, 0x000001eff8000000ull, { 0, 0, 0, 0, 0 }, 0x0, 1150, },
{ 255, 3, 1, 0x00000020f8000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x8, 209, },
{ 256, 2, 2, 0x000000a000000000ull, 0x000001fe00003000ull, { 22, 23, 26, 77, 0 }, 0x0, 3040, },
{ 256, 2, 1, 0x000000a000000000ull, 0x000001fe00003000ull, { 22, 26, 77, 0, 0 }, 0x40, 3041, },
{ 256, 2, 2, 0x000000a000000000ull, 0x000001fe00003000ull, { 23, 22, 26, 77, 0 }, 0x40, 2003, },
{ 256, 2, 1, 0x000000a000000000ull, 0x000001fe00003000ull, { 23, 26, 77, 0, 0 }, 0x40, 2004, },
{ 257, 2, 2, 0x000000a000082000ull, 0x000001fe00083000ull, { 22, 23, 50, 0, 0 }, 0x0, 3044, },
{ 257, 2, 1, 0x000000a000082000ull, 0x000001fe00083000ull, { 22, 50, 0, 0, 0 }, 0x40, 3045, },
{ 257, 2, 2, 0x000000a000082000ull, 0x000001fe00083000ull, { 23, 22, 50, 0, 0 }, 0x40, 2007, },
{ 257, 2, 1, 0x000000a000082000ull, 0x000001fe00083000ull, { 23, 50, 0, 0, 0 }, 0x40, 2008, },
{ 258, 3, 1, 0x00000020d0000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 210, },
{ 259, 2, 2, 0x000000a000002000ull, 0x000001fe00003000ull, { 22, 23, 26, 0, 0 }, 0x0, 3048, },
{ 259, 2, 1, 0x000000a000002000ull, 0x000001fe00003000ull, { 22, 26, 0, 0, 0 }, 0x40, 3049, },
{ 259, 2, 2, 0x000000a000002000ull, 0x000001fe00003000ull, { 23, 22, 26, 0, 0 }, 0x40, 2011, },
{ 259, 2, 1, 0x000000a000002000ull, 0x000001fe00003000ull, { 23, 26, 0, 0, 0 }, 0x40, 2012, },
{ 260, 3, 1, 0x00000020f0000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x8, 211, },
{ 262, 3, 1, 0x00000020d8000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 212, },
{ 266, 2, 1, 0x000000e840000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 1131, },
{ 267, 2, 1, 0x000000ea40000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 1132, },
{ 268, 2, 1, 0x000000f840000000ull, 0x000001fff0000000ull, { 24, 25, 26, 0, 0 }, 0x0, 1133, },
{ 272, 4, 0, 0x00000000c0000000ull, 0x000001e1f8000000ull, { 0, 0, 0, 0, 0 }, 0x28, 223, },
{ 277, 3, 1, 0x0000008208000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x0, 213, },
{ 278, 3, 1, 0x0000008248000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x0, 214, },
{ 279, 3, 1, 0x0000008288000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x0, 215, },
{ 280, 3, 1, 0x00000082c8000000ull, 0x000001fff8000000ull, { 24, 28, 25, 0, 0 }, 0x0, 216, },
{ 282, 5, 1, 0x000001d000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x0, 1179, },
{ 282, 5, 1, 0x000001d000000000ull, 0x000001fc00000000ull, { 18, 20, 21, 19, 0 }, 0x40, 1261, },
{ 283, 5, 1, 0x000001d000000000ull, 0x000001fc000fe000ull, { 18, 20, 21, 0, 0 }, 0x40, 1180, },
{ 284, 1, 1, 0x0000010078000000ull, 0x000001eff8000000ull, { 24, 25, 26, 0, 0 }, 0x0, 217, },
{ 284, 1, 1, 0x0000010178000000ull, 0x000001eff8000000ull, { 24, 56, 26, 0, 0 }, 0x0, 218, },
{ 287, 2, 1, 0x0000000080000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 219, },
{ 288, 2, 1, 0x0000000088000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 220, },
{ 289, 2, 1, 0x0000000090000000ull, 0x000001eff8000000ull, { 24, 26, 0, 0, 0 }, 0x0, 221, },
};
static const char dis_table[] = {
0xa0, 0xc7, 0xc8, 0xa0, 0x2e, 0xd8, 0xa0, 0x2c, 0xc0, 0xa0, 0x1c, 0x00,
0x98, 0xb0, 0x02, 0x50, 0x90, 0x50, 0x90, 0x28, 0x24, 0x39, 0x28, 0x24,
0x39, 0x20, 0x90, 0x28, 0x24, 0x39, 0x18, 0x24, 0x39, 0x10, 0x91, 0x60,
0x90, 0x28, 0x24, 0x39, 0x00, 0x10, 0x10, 0x58, 0x41, 0x61, 0xc7, 0xc0,
0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
0x10, 0x10, 0x52, 0xc0, 0xc0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
0x10, 0x10, 0x10, 0x24, 0x24, 0x70, 0x90, 0x28, 0x24, 0x38, 0xf0, 0x24,
0x38, 0xe8, 0xa8, 0x0b, 0x48, 0x15, 0x20, 0x97, 0x20, 0x95, 0xc8, 0x9a,
0xb8, 0x05, 0x38, 0x91, 0x18, 0x90, 0xa0, 0x90, 0x60, 0x80, 0x90, 0x20,
0x34, 0xa6, 0xa4, 0x25, 0x00, 0x34, 0xa3, 0x80, 0xa4, 0x36, 0xa0, 0x36,
0xd9, 0x90, 0x50, 0x90, 0x28, 0x80, 0x36, 0xcf, 0x80, 0x34, 0x86, 0x81,
0x33, 0xe2, 0x90, 0xe0, 0x90, 0x70, 0x90, 0x38, 0xa4, 0x24, 0x10, 0x34,
0x83, 0xa4, 0x1f, 0x08, 0x34, 0x80, 0x90, 0x38, 0xa4, 0x38, 0xa0, 0x37,
0x1a, 0xa4, 0x38, 0x48, 0x37, 0x0e, 0x90, 0x70, 0x90, 0x38, 0xa4, 0x37,
0x20, 0x36, 0xef, 0xa4, 0x36, 0xf8, 0x36, 0xea, 0x80, 0xa4, 0x23, 0xf0,
0x34, 0x7f, 0x92, 0x18, 0x91, 0xc0, 0x80, 0x91, 0x80, 0x90, 0xf8, 0xdb,
0x84, 0x60, 0xf9, 0x40, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x68, 0x8c, 0x43,
0xc8, 0x84, 0x38, 0x83, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x58, 0x8c, 0x43,
0xa8, 0x84, 0x38, 0x81, 0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0, 0x81, 0x38,
0x35, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x33, 0xa4, 0x1f, 0x18, 0x33, 0xe4,
0x80, 0x90, 0x28, 0x80, 0x33, 0xe0, 0x80, 0x34, 0x88, 0x81, 0x90, 0x38,
0xa4, 0x24, 0x80, 0x34, 0x8b, 0xa4, 0x24, 0x48, 0x34, 0x85, 0xc0, 0x40,
0x10, 0x10, 0x90, 0x38, 0xa4, 0x1e, 0xf0, 0x33, 0xdf, 0xa4, 0x1e, 0xe0,
0x33, 0xdd, 0x18, 0x24, 0x24, 0xf8, 0x83, 0x90, 0xa8, 0xd3, 0x82, 0xc0,
0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x38, 0x38, 0x6d, 0xc0, 0xc0, 0x80, 0xa4,
0x42, 0x28, 0x38, 0x69, 0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0, 0x81, 0x38,
0x2f, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x2d, 0x92, 0xb8, 0x99, 0x84, 0x24,
0x68, 0x90, 0x78, 0x90, 0x50, 0x10, 0x10, 0x80, 0xa4, 0x36, 0x98, 0x36,
0xd8, 0x82, 0x36, 0xce, 0x90, 0x80, 0x10, 0x10, 0x90, 0x38, 0xa4, 0x38,
0x98, 0x37, 0x19, 0xa4, 0x38, 0x40, 0x37, 0x0d, 0x80, 0x90, 0x38, 0xa4,
0x37, 0x18, 0x36, 0xee, 0xa4, 0x36, 0xf0, 0x36, 0xe9, 0x83, 0x90, 0xa8,
0xd3, 0x82, 0xc0, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x08, 0x38, 0x61, 0xc0,
0xc0, 0x80, 0xa4, 0x41, 0xf8, 0x38, 0x5d, 0xd3, 0x82, 0x40, 0x50, 0xc0,
0xc0, 0x81, 0x38, 0x29, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x27, 0x18, 0x24,
0x24, 0x78, 0x83, 0x90, 0xa8, 0xd3, 0x82, 0xc0, 0xc0, 0xc0, 0x80, 0xa4,
0x41, 0xd8, 0x38, 0x55, 0xc0, 0xc0, 0x80, 0xa4, 0x41, 0xc8, 0x38, 0x51,
0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x23, 0x50, 0xc0, 0xc0,
0x81, 0x38, 0x21, 0x94, 0x50, 0x92, 0xf8, 0x99, 0x84, 0x1f, 0x48, 0x90,
0x78, 0x90, 0x50, 0x10, 0x10, 0x80, 0xa4, 0x36, 0x90, 0x36, 0xd7, 0x82,
0x36, 0xcd, 0x90, 0x80, 0x10, 0x10, 0x90, 0x38, 0xa4, 0x38, 0x90, 0x37,
0x18, 0xa4, 0x38, 0x38, 0x37, 0x0c, 0x80, 0x90, 0x38, 0xa4, 0x37, 0x10,
0x36, 0xed, 0xa4, 0x36, 0xe8, 0x36, 0xe8, 0x83, 0x90, 0xe8, 0xd3, 0x83,
0xc0, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x78, 0x8c, 0x43, 0xe8, 0x84, 0x38,
0x85, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x60, 0x8c, 0x43, 0xb8, 0x84, 0x38,
0x82, 0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x37, 0x50, 0xc0,
0xc0, 0x81, 0x38, 0x34, 0x18, 0x24, 0x1f, 0x40, 0x83, 0x90, 0xa8, 0xd3,
0x82, 0xc0, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x48, 0x38, 0x71, 0xc0, 0xc0,
0x80, 0xa4, 0x42, 0x30, 0x38, 0x6b, 0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0,
0x81, 0x38, 0x31, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x2e, 0x92, 0xb8, 0x99,
0x84, 0x1f, 0x38, 0x90, 0x78, 0x90, 0x50, 0x10, 0x10, 0x80, 0xa4, 0x36,
0x88, 0x36, 0xd6, 0x82, 0x36, 0xcc, 0x90, 0x80, 0x10, 0x10, 0x90, 0x38,
0xa4, 0x38, 0x88, 0x37, 0x17, 0xa4, 0x38, 0x30, 0x37, 0x0b, 0x80, 0x90,
0x38, 0xa4, 0x37, 0x08, 0x36, 0xec, 0xa4, 0x36, 0xe0, 0x36, 0xe7, 0x83,
0x90, 0xa8, 0xd3, 0x82, 0xc0, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x18, 0x38,
0x65, 0xc0, 0xc0, 0x80, 0xa4, 0x42, 0x00, 0x38, 0x5f, 0xd3, 0x82, 0x40,
0x50, 0xc0, 0xc0, 0x81, 0x38, 0x2b, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x28,
0x18, 0x20, 0x01, 0x48, 0x83, 0x90, 0xa8, 0xd3, 0x82, 0xc0, 0xc0, 0xc0,
0x80, 0xa4, 0x41, 0xe8, 0x38, 0x59, 0xc0, 0xc0, 0x80, 0xa4, 0x41, 0xd0,
0x38, 0x53, 0xd3, 0x82, 0x40, 0x50, 0xc0, 0xc0, 0x81, 0x38, 0x25, 0x50,
0xc0, 0xc0, 0x81, 0x38, 0x22, 0xda, 0x06, 0xe0, 0xf9, 0x80, 0x90, 0x60,
0x90, 0x38, 0xa4, 0x24, 0xe8, 0x34, 0x9b, 0x80, 0x34, 0x98, 0x90, 0x38,
0xa4, 0x24, 0x90, 0x34, 0x96, 0x80, 0x34, 0x93, 0x90, 0x60, 0x90, 0x38,
0xa4, 0x24, 0xd0, 0x34, 0x9c, 0x80, 0x34, 0x99, 0x90, 0x38, 0xa4, 0x24,
0xa8, 0x34, 0x97, 0x80, 0x34, 0x94, 0xc8, 0x40, 0x19, 0x00, 0x91, 0x58,
0x90, 0x60, 0x82, 0x90, 0x20, 0x36, 0xcb, 0xa4, 0x36, 0x48, 0x36, 0xca,
0x90, 0xc0, 0x80, 0x90, 0x90, 0x90, 0x48, 0xc9, 0xe1, 0xc1, 0x00, 0x85,
0x37, 0x03, 0xc9, 0xe1, 0xc0, 0x40, 0x85, 0x37, 0x00,