From 6380f0bbcc3a90d83efe650d18fe45a6111485e2 Mon Sep 17 00:00:00 2001 From: Terncode Date: Sat, 21 Mar 2026 13:28:03 +0100 Subject: [PATCH] Fix sprite builder Fixes sprite builder to not rely on sprite.ts that is generating --- gulpfile.js | 8 +- src/ts/client/game.ts | 5 +- src/ts/client/ponyDraw.ts | 3 +- src/ts/client/spriteAnimations.ts | 4 +- src/ts/client/worldMap.ts | 3 +- src/ts/common/animationPlayer.ts | 29 +- src/ts/common/color.ts | 9 + src/ts/common/colors.ts | 6 +- src/ts/common/commonInterfaces.ts | 34 + src/ts/common/constants.ts | 2 +- src/ts/common/entities.ts | 7 +- src/ts/common/interfaces.ts | 80 +- src/ts/common/mixins.ts | 18 +- src/ts/common/ponyInfo.ts | 11 +- src/ts/common/tileUtils.ts | 5 +- src/ts/common/timeUtils.ts | 3 +- src/ts/common/utils.ts | 3 +- src/ts/components/services/audio.ts | 2 +- .../components/tools/tools-map/tools-map.ts | 3 +- src/ts/generated/sprites.ts | 3457 ----------------- src/ts/server/commands.ts | 3 +- src/ts/server/maps/caveMap.ts | 3 +- src/ts/server/maps/customMap.ts | 3 +- src/ts/server/maps/houseMap.ts | 3 +- src/ts/server/maps/islandMap.ts | 3 +- src/ts/server/maps/mainMap.ts | 3 +- src/ts/server/maps/paletteMap.ts | 3 +- src/ts/server/serverActions.ts | 3 +- src/ts/server/serverInterfaces.ts | 3 +- src/ts/server/serverMap.ts | 3 +- src/ts/server/world.ts | 3 +- src/ts/tests/client/clientActions.spec.ts | 3 +- src/ts/tests/common/timeUtils.spec.ts | 2 +- 33 files changed, 143 insertions(+), 3587 deletions(-) create mode 100644 src/ts/common/commonInterfaces.ts delete mode 100644 src/ts/generated/sprites.ts diff --git a/gulpfile.js b/gulpfile.js index 5ac6d36..5accd5a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -321,14 +321,8 @@ const setProd = cb => { cb(); }; -const warnAboutTscBeingDumb = cb => { - console.log("You're probably about to see some warnings from tsc about not being able to find certain files."); - console.log("Don't worry about these. It's a known issue regarding circular build dependencies. The build should continue despite these errors."); - cb(); -}; - const empty = cb => cb(); -const tsTools = gulp.series(warnAboutTscBeingDumb, npmScript('ts-tools')); +const tsTools = gulp.series(npmScript('ts-tools')); const spritesTask = argv.sprites ? sprites : empty; const buildSprites = gulp.series(tsTools, sprites); diff --git a/src/ts/client/game.ts b/src/ts/client/game.ts index 2bdc377..d522895 100644 --- a/src/ts/client/game.ts +++ b/src/ts/client/game.ts @@ -2,10 +2,10 @@ import { Injectable, NgZone } from '@angular/core'; import { Subject, BehaviorSubject } from 'rxjs'; import { debounce } from 'lodash'; import { - EntityState, Pony, Notification, TileType, Action, IServerActions, Season, WorldState, Holiday, + EntityState, Pony, Notification, TileType, Action, IServerActions, WorldState, TileSets, ChatMessage, PartyInfo, Entity, DrawOptions, Engine, defaultDrawOptions, PonyStateFlags, DoAction, ChatType, WorldStateFlags, DebugFlags, MessageType, AccountSettings, Matrix4, - FakeEntity, SelectFlags, WorldMap, MapType, MapFlags, EntityFlags, houseTiles, isValidTile, GraphicsQuality + FakeEntity, SelectFlags, WorldMap, EntityFlags, houseTiles, isValidTile, GraphicsQuality } from '../common/interfaces'; import { clamp, lengthOfXY, setFlag, hasFlag, boundsIntersect, point, toInt, lerpColor, distanceXY @@ -72,6 +72,7 @@ import { Model } from '../components/services/model'; import { filterEntityName } from './handlers'; import { isOutsideMap } from '../common/collision'; import { loadAndInitSpriteSheets } from './loadSprites'; +import { Holiday, MapFlags, MapType, Season } from '../common/commonInterfaces'; interface Minimap { width: number; diff --git a/src/ts/client/ponyDraw.ts b/src/ts/client/ponyDraw.ts index 4b22e1f..90d1bd0 100644 --- a/src/ts/client/ponyDraw.ts +++ b/src/ts/client/ponyDraw.ts @@ -18,7 +18,8 @@ import { } from '../common/ponyUtils'; import { HEAD_ACCESSORY_OFFSETS, EAR_ACCESSORY_OFFSETS, EXTRA_ACCESSORY_OFFSETS } from '../common/offsets'; import { createMat2D, identityMat2D, translateMat2D, copyMat2D, rotateMat2D, scaleMat2D } from '../common/mat2d'; -import { darkenForOutline } from '../common/ponyInfo'; +import { darkenForOutline } from '../common/color'; + type Batch = PaletteSpriteBatch; type Info = Readonly; diff --git a/src/ts/client/spriteAnimations.ts b/src/ts/client/spriteAnimations.ts index cf28cd6..14ed41f 100644 --- a/src/ts/client/spriteAnimations.ts +++ b/src/ts/client/spriteAnimations.ts @@ -1,7 +1,5 @@ import * as sprites from '../generated/sprites'; -import { SpriteAnimation } from '../common/animationPlayer'; -import { AnimatedRenderable } from '../common/mixins'; -import { Sprite } from '../common/interfaces'; +import { AnimatedRenderable, Sprite, SpriteAnimation } from '../common/interfaces'; export const zzzAnimation1 = createSpriteAnimation( sprites.emote_sleep1, 8, 8, 4, 7, true, sprites.emote_sleep1_flip.frames); diff --git a/src/ts/client/worldMap.ts b/src/ts/client/worldMap.ts index f3fd58c..ad5a9e1 100644 --- a/src/ts/client/worldMap.ts +++ b/src/ts/client/worldMap.ts @@ -1,6 +1,6 @@ import { Entity, Point, TileType, Rect, MapInfo, Camera, Region, MapState, defaultMapState, Pony, - MapType, EntityFlags, WorldMap, Weather, EntityState, MapFlags, + EntityFlags, WorldMap, EntityState, } from '../common/interfaces'; import { contains, removeItem, boundsIntersect, array, pushUniq, containsPoint, removeItemFast } from '../common/utils'; import { isBoundsVisible, } from '../common/camera'; @@ -22,6 +22,7 @@ import { PaletteManager } from '../graphics/paletteManager'; import { timeEnd, timeStart } from '../common/timing'; import { playEffect } from './handlers'; import { isFlyingDown } from '../common/ponyStates'; +import { MapFlags, MapType, Weather } from '../common/commonInterfaces'; const defaultMapInfo: MapInfo = { type: MapType.None, diff --git a/src/ts/common/animationPlayer.ts b/src/ts/common/animationPlayer.ts index a87c7c1..d627137 100644 --- a/src/ts/common/animationPlayer.ts +++ b/src/ts/common/animationPlayer.ts @@ -1,36 +1,9 @@ import { sample } from 'lodash'; -import { Sprite, Palette, PaletteSpriteBatch } from './interfaces'; +import { AnimationPhase, AnimationPlayer, Palette, PaletteSpriteBatch, SpriteAnimation } from './interfaces'; import { drawSpriteCropped } from '../graphics/graphicsUtils'; import { includes } from './utils'; import { WHITE } from './colors'; -const enum AnimationPhase { - Starting, - Playing, - Ending, -} - -export interface SpriteAnimation { - loop: boolean; - start: number; - middle: number; - end: number; - fps: number; - palette: Uint32Array; - frames: Sprite[]; - flipFrames?: Sprite[]; -} - -export interface AnimationPlayer { - nextAnimation: SpriteAnimation | undefined; - currentAnimation: SpriteAnimation | undefined; - time: number; - frame: number; - phase: AnimationPhase; - dirty: boolean; - palette: Palette; -} - export function createAnimationPlayer(palette: Palette): AnimationPlayer { return { nextAnimation: undefined, diff --git a/src/ts/common/color.ts b/src/ts/common/color.ts index a0b5944..3377b00 100644 --- a/src/ts/common/color.ts +++ b/src/ts/common/color.ts @@ -533,3 +533,12 @@ export function rgb2hsl(rgb: RGB): HSL { export function hsl2CSS(hsl: HSL) { return `hsl(${hsl.h},${hsl.s}%,${hsl.l}%)`; } + +export function darkenForOutline(color: number) { + const mult = (159 / 255); + const r = (mult * getR(color)) | 0; + const g = (mult * getG(color)) | 0; + const b = (mult * getB(color)) | 0; + const a = getAlpha(color); + return colorFromRGBA(r, g, b, a); +} diff --git a/src/ts/common/colors.ts b/src/ts/common/colors.ts index 1e2087d..d3236b9 100644 --- a/src/ts/common/colors.ts +++ b/src/ts/common/colors.ts @@ -1,7 +1,7 @@ -import { MessageType, Season, TileType } from './interfaces'; -import { colorFromHSVA, colorToHexRGB, parseColorFast, colorToHSVA, withAlphaFloat } from './color'; +import { MessageType, TileType } from './interfaces'; +import { colorFromHSVA, colorToHexRGB, parseColorFast, colorToHSVA, withAlphaFloat, darkenForOutline } from './color'; import { invalidEnum, invalidEnumReturn } from './utils'; -import { darkenForOutline } from './ponyInfo'; +import { Season } from './commonInterfaces'; // basic diff --git a/src/ts/common/commonInterfaces.ts b/src/ts/common/commonInterfaces.ts new file mode 100644 index 0000000..1875484 --- /dev/null +++ b/src/ts/common/commonInterfaces.ts @@ -0,0 +1,34 @@ +export const enum Season { + Summer = 1, + Autumn = 2, + Winter = 4, + Spring = 8, +} + +export const enum Holiday { + None, + Christmas, + Halloween, + StPatricks, + Easter, +} + +export const enum Weather { + None, + Rain, +} + +export const enum MapType { + None, + Island, + House, + Cave, +} + +export const enum MapFlags { + None = 0, + EditableWalls = 1, + EditableEntities = 2, + EditableTiles = 4, + EdibleGrass = 8, +} \ No newline at end of file diff --git a/src/ts/common/constants.ts b/src/ts/common/constants.ts index bf684b1..18057b2 100644 --- a/src/ts/common/constants.ts +++ b/src/ts/common/constants.ts @@ -1,4 +1,4 @@ -import { Season, Holiday } from './interfaces'; +import { Holiday, Season } from './commonInterfaces'; export const SEASON: Season = Season.Spring; export const HOLIDAY: Holiday = Holiday.None; diff --git a/src/ts/common/entities.ts b/src/ts/common/entities.ts index dcd625b..2609b9a 100644 --- a/src/ts/common/entities.ts +++ b/src/ts/common/entities.ts @@ -2,13 +2,14 @@ import { compact } from 'lodash'; import * as sprites from '../generated/sprites'; import { Entity, PaletteManager, Rect, ServerFlags, PaletteRenderable, ColorShadow, EntityDescriptor, EntityOptions, - CreateEntityMethod, CreateEntity, EntityFlags, MixinEntity, EntityWorldState, defaultWorldState, ColorExtra, InteractAction + CreateEntityMethod, CreateEntity, EntityFlags, MixinEntity, EntityWorldState, defaultWorldState, ColorExtra, InteractAction, + AnimatedRenderable1, + AnimatedRenderable } from './interfaces'; import { tileWidth, tileHeight, ENTITY_TYPE_LIMIT, WATER_FPS, PONY_TYPE, WATER_HEIGHT } from './constants'; import { CLOUD_SHADOW_COLOR, WHITE } from './colors'; import { - mixDrawSpider, setPaletteManager, AnimatedRenderable, - AnimatedRenderable1, collider, taperColliderSW, taperColliderNE, taperColliderSE, + mixDrawSpider, setPaletteManager, collider, taperColliderSW, taperColliderNE, taperColliderSE, taperColliderNW, skewColliderNE, ponyColliders, ponyCollidersBounds, mixTrigger, mixDraw, mixInteract, mixPickable, mixMinimap, mixColliderRect, mixColliderRounded, mixLight, mixLightSprite, mixColliders, mixDrawShadow, mixAnimation, mixBobbing, mixDrawWall, mixDrawRain, mixDrawSeasonal, mixDrawWindow, diff --git a/src/ts/common/interfaces.ts b/src/ts/common/interfaces.ts index 5e00b85..f4b1286 100644 --- a/src/ts/common/interfaces.ts +++ b/src/ts/common/interfaces.ts @@ -1,7 +1,7 @@ import { Texture2D } from '../graphics/webgl/texture2d'; import { WHITE, SHADOW_COLOR } from './colors'; -import { AnimationPlayer } from './animationPlayer'; import { Animator } from './animator'; +import { Holiday, MapFlags, MapType, Season, Weather } from './commonInterfaces'; export type Log = (...args: any[]) => void; export type Apply = (func: () => void) => void; @@ -12,41 +12,6 @@ export interface Dict { [key: string]: T; } -export const enum Season { - Summer = 1, - Autumn = 2, - Winter = 4, - Spring = 8, -} - -export const enum Holiday { - None, - Christmas, - Halloween, - StPatricks, - Easter, -} - -export const enum Weather { - None, - Rain, -} - -export const enum MapType { - None, - Island, - House, - Cave, -} - -export const enum MapFlags { - None = 0, - EditableWalls = 1, - EditableEntities = 2, - EditableTiles = 4, - EdibleGrass = 8, -} - export const enum NotificationFlags { None = 0, Ok = 1, @@ -1872,3 +1837,46 @@ if (typeof window !== 'undefined') { } export type PrimitiveValues = string | number | symbol | boolean; + +export interface Renderable { + color?: Sprite; + shadow?: Sprite; +} + +export interface AnimatedRenderable { + frames: Sprite[]; + shadow?: Sprite; + palette: Uint32Array; +} + +export interface AnimatedRenderable1 { + frames: (Sprite | undefined)[]; +} + +export const enum AnimationPhase { + Starting, + Playing, + Ending, +} + +export interface SpriteAnimation { + loop: boolean; + start: number; + middle: number; + end: number; + fps: number; + palette: Uint32Array; + frames: Sprite[]; + flipFrames?: Sprite[]; +} + +export interface AnimationPlayer { + nextAnimation: SpriteAnimation | undefined; + currentAnimation: SpriteAnimation | undefined; + time: number; + frame: number; + phase: AnimationPhase; + dirty: boolean; + palette: Palette; +} + diff --git a/src/ts/common/mixins.ts b/src/ts/common/mixins.ts index 09cb22e..437a40a 100644 --- a/src/ts/common/mixins.ts +++ b/src/ts/common/mixins.ts @@ -3,7 +3,7 @@ import * as sprites from '../generated/sprites'; import { EntityPart, Sprite, Rect, SpriteBatch, PaletteManager, Palette, PaletteRenderable, PaletteSpriteBatch, DrawOptions, getAnimationFromEntityState, EntityState, SignEntityOptions, EntityFlags, Collider, MixinEntity, - Season, + AnimatedRenderable1, Renderable, AnimatedRenderable, } from './interfaces'; import { at, att, hasFlag, invalidEnum } from './utils'; import { WHITE, BLACK, RED } from './colors'; @@ -12,21 +12,7 @@ import { rect, addRects, addRect } from './rect'; import { SECOND, LIGHT_VOLUME_SCALE } from './constants'; import { mockPaletteManager } from './ponyInfo'; import { releasePalette } from '../graphics/paletteManager'; - -interface Renderable { - color?: Sprite; - shadow?: Sprite; -} - -export interface AnimatedRenderable { - frames: Sprite[]; - shadow?: Sprite; - palette: Uint32Array; -} - -export interface AnimatedRenderable1 { - frames: (Sprite | undefined)[]; -} +import { Season } from './commonInterfaces'; const predefinedSteps = [ [], diff --git a/src/ts/common/ponyInfo.ts b/src/ts/common/ponyInfo.ts index 7b86dc2..c518968 100644 --- a/src/ts/common/ponyInfo.ts +++ b/src/ts/common/ponyInfo.ts @@ -6,7 +6,7 @@ import { } from './interfaces'; import { toInt, array, includes, att } from './utils'; import { CM_SIZE } from './constants'; -import { parseColorFast, getR, getAlpha, colorFromRGBA, getG, getB, colorToHexRGB } from './color'; +import { parseColorFast, colorToHexRGB, darkenForOutline } from './color'; import { BLACK, fillToOutline, fillToOutlineColor, WHITE, TRANSPARENT, fillToOutlineWithDarken } from './colors'; import { mergedManes, mergedBackManes, mergedFacialHair, mergedEarAccessories, mergedChestAccessories, @@ -344,15 +344,6 @@ export function toColorList(colors: (string | undefined)[]): Uint32Array { return result; } -export function darkenForOutline(color: number) { - const mult = (159 / 255); - const r = (mult * getR(color)) | 0; - const g = (mult * getG(color)) | 0; - const b = (mult * getB(color)) | 0; - const a = getAlpha(color); - return colorFromRGBA(r, g, b, a); -} - function getColorsGeneric( fillColors: Arr, outlineColors: Arr, defaultColor: string, length: number, darken: boolean ): string[] { diff --git a/src/ts/common/tileUtils.ts b/src/ts/common/tileUtils.ts index a1fd2c5..f60d1cb 100644 --- a/src/ts/common/tileUtils.ts +++ b/src/ts/common/tileUtils.ts @@ -1,6 +1,6 @@ import { - PaletteManager, Season, TileSets, Region, TileType, Camera, PaletteSpriteBatch, DrawOptions, WorldMap, IMap, - Sprite, MapType, + PaletteManager,TileSets, Region, TileType, Camera, PaletteSpriteBatch, DrawOptions, WorldMap, IMap, + Sprite, canWalk } from './interfaces'; import * as sprites from '../generated/sprites'; @@ -13,6 +13,7 @@ import { releasePalette } from '../graphics/paletteManager'; import { drawPixelText } from '../graphics/graphicsUtils'; import { toScreenX, toScreenY, toWorldZ } from './positionUtils'; import { setColliderDirty } from './collision'; +import { MapType, Season } from './commonInterfaces'; const TILE_COUNTS = [[0, 4], [2, 3], [4, 3], [6, 3], [8, 3], [13, 3], [14, 3], [47, 4]]; export const TILE_COUNT_MAP: number[] = []; diff --git a/src/ts/common/timeUtils.ts b/src/ts/common/timeUtils.ts index e93fa76..8a0f6cf 100644 --- a/src/ts/common/timeUtils.ts +++ b/src/ts/common/timeUtils.ts @@ -1,7 +1,8 @@ import { lerpColors, withAlphaFloat } from './color'; import { WHITE, SHADOW_COLOR, BLACK } from './colors'; +import { Season } from './commonInterfaces'; import { MINUTE } from './constants'; -import { Season } from './interfaces'; + const DAY_START = 4.75; // 04:45 const DAY_END = 20.25; // 20:15 diff --git a/src/ts/common/utils.ts b/src/ts/common/utils.ts index c69d478..f188621 100644 --- a/src/ts/common/utils.ts +++ b/src/ts/common/utils.ts @@ -1,8 +1,9 @@ import { HttpErrorResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; -import { Point, Rect, Entity, Dict, Holiday, Season, PrimitiveValues } from './interfaces'; +import { Point, Rect, Entity, Dict, PrimitiveValues } from './interfaces'; import { tileWidth, tileHeight, SECOND, MINUTE, HOUR, DAY } from './constants'; import { ACCESS_ERROR, NOT_FOUND_ERROR, OFFLINE_ERROR, PROTECTION_ERROR } from './errors'; +import { Season, Holiday } from './commonInterfaces'; // enum diff --git a/src/ts/components/services/audio.ts b/src/ts/components/services/audio.ts index 6d5737d..df99594 100644 --- a/src/ts/components/services/audio.ts +++ b/src/ts/components/services/audio.ts @@ -1,8 +1,8 @@ import { Injectable } from '@angular/core'; import { Howl } from 'howler'; import { random, sample } from 'lodash'; -import { Season, Holiday, MapType } from '../../common/interfaces'; import { getUrl } from '../../client/rev'; +import { Holiday, MapType, Season } from '../../common/commonInterfaces'; interface Track { name: string; diff --git a/src/ts/components/tools/tools-map/tools-map.ts b/src/ts/components/tools/tools-map/tools-map.ts index c96f488..116ca35 100644 --- a/src/ts/components/tools/tools-map/tools-map.ts +++ b/src/ts/components/tools/tools-map/tools-map.ts @@ -5,7 +5,7 @@ import { tileHeight, tileWidth, REGION_SIZE } from '../../../common/constants'; import { faHome } from '../../../client/icons'; import { updateMap, createWorldMap, setRegion } from '../../../client/worldMap'; import { - Season, DrawOptions, defaultDrawOptions, EntityFlags, Entity, WorldMap, MapType, MapFlags + DrawOptions, defaultDrawOptions, EntityFlags, Entity, WorldMap, } from '../../../common/interfaces'; import { drawCanvas } from '../../../graphics/contextSpriteBatch'; import { paletteSpriteSheet } from '../../../generated/sprites'; @@ -25,6 +25,7 @@ import { StorageService } from '../../services/storageService'; import { getTileColor } from '../../../common/colors'; import { colorToCSS } from '../../../common/color'; import { loadAndInitSpriteSheets } from '../../../client/loadSprites'; +import { MapFlags, MapType, Season } from '../../../common/commonInterfaces'; export interface ToolsMapOtherInfo { season: Season; diff --git a/src/ts/generated/sprites.ts b/src/ts/generated/sprites.ts deleted file mode 100644 index 1f15c0a..0000000 --- a/src/ts/generated/sprites.ts +++ /dev/null @@ -1,3457 +0,0 @@ -// generated file -/* tslint:disable */ - -import { - Sprite, SpriteBorder, PonyNose, PonyEye, ColorExtra, ColorExtraSets, Shadow, ColorShadow, TileSprites, SpriteSheet -} from '../common/interfaces'; -import { parseSpriteColor } from '../common/utils'; -import { bitReaderCustom } from '../common/bitUtils'; - -// [frame][type][pattern] -export type StaticSprites = (ColorExtra[] | undefined)[]; -export type AnimatedSprites = (StaticSprites | undefined)[]; -export type StaticSpritesExtra = (ColorExtra[] | undefined)[]; -export type AnimatedSpritesExtra = (StaticSprites | undefined)[]; -export type PonyEyes = ((PonyEye | undefined)[] | undefined)[]; - -const sprites = createSprites('3c506d00804040403f30f302008000003c506d00804000403be0ea01010000000440f102010000003be0ea01010000003c506d00804040003f30f302008000003c506d008040000035407c0080404040354078008080000035407c008040004034409301004000003c506d00804000003a706d010040000035407c008040400035407a008080000035407c008040000009d0a8a02a0000001dd000a02a00000009d000a02a0000003db0800200c0000031d04810060000003ee08906828000000970f10280c000003e60330b0580000035407c008044424035407c00804442403030cf01804301803a207f020043c2c03a207f02004403003a207f02004481003030cf018045410035407c008044424035407c00804442403a207f02004381c035407c00804442403a207f02004381c03a207f02004381c03a207f02004381c03180a802004381c03a207f02004381c03a207f02004381c00850f4018080c28038c0f30180c0c2403980f30180c0c2400850f4018080c2800790f1018100c2003fa0f3018080c28038c0f30180c0c2403c506b00808102801e90ba03020607801dd0ba03020607803d50b9038205c7803c20a8038245c74036a09f038285c70038309d0382c5c6c031b0de03818785003c8091090344848037a08409838404003a00910a0343c4403440940a82c384803670930a0303c4803670930a0303c4803670930a0303c4803670930a0303c4803670930a0303c4803670930a0303c4803670930a0303c4803b40910a0343c44031d0850a8383840031d0930a0343c4403ed09309030444c026b0de088185040036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c5044036e0c10881c504403d809f08824503c03d809f088245038031b0de03818504003d40e4098144c5802b90b1098204c4803670840983c4834038f07f098444420033007309848401c031d073098483818037c0720984834140369072098483018035607209848301c035607209848301c035607209848301c035607209848301c035607209848301c03e007109848241c03cd06e09848281c03b508009844302403a2080098443c2c03da09309830443c02fa0c10981c4c4c02f00ef098104c5c03840280283c405c03be02503048345c03bd05905048245c034307308848145c03ba06e09848005c03a706e09848045c03a706e09848045c03a706e09848045c03a706e09848045c03a706e09848045c03a706e09848045c03a706e09848045c03a706e09848045c034307308848145c03bd05905048245c03be02503048345c03810e402018445c03c10e4098144c5802cc0b1098204c480331093098344c380354084098404c2803c8080098444c18036e05e098504c08038105e098504808031d0600984c480c031d0600984c480c03300600984c4c0c03300600984c4c0c035b05e098504c0c035b05e098504c0c03430600984c500c03430600984c500c039406d0984850100397042098584800039705809854480403e604909854480803e604909854480803db08309840481c038d09009838482c039809e09828483c02df0b109820485003a70f30180c4864037b09d0402c000003f307d040300000038403704030000003f307d040300000035b04804834684c01f50ba03020705c035c09f038286c54039109e0382c6c50038a09e0382c6c5003f307104830685003ad00004094000003bd0000409400000395000040940000038d000040940000039d00004094000003a500004094000003b5000040940000037b0920602c000003ab09e06028000003590940582c000003470850602c0000034a0a9028240800037109f02828080003f9053028280800038709202828080003c20f30180c000003090b903020000803180b204020000803300b204020000801f20c20381c000801eb0c20381c000803a40b903820000803110a803824000400540f102010001003480b204020000802770e403018000c03870b204020000802b90b904020000802790ba02820000803e30b903020000803b10b104820000803270a004824000403db0dd0201c000803d70dd0201c000802510ba02820000802440de0181c0008020d0d00301c000802d10b904020000802f60f30300c0018021f0ba02820000803b90d60281c040803c30d60281c040802280e503814000c022f0e503814000c00240e703014000c01f60e504014000c03840ef038100010037d0ef03810001003fe0080081c000803820f30200c000803cd0d60281c000803f00d60281c0008025b0c20381c000802460c20381c000803d20f30100c000802590de0181c000802560de0181c000803660f30200c001002370ea02814000c03c506b00808002000910f402804001403c506d00804002001f60d70281c0008028c0d70281c000802be0d70281c000802c30d70281c000802c80d70281c000802d20d70281c000802eb0d70281c0008030a0d70281c000803190d70281c000803320d70281c000802af0c20281c000803fe02a00818000c03fe01d0081c000c03af0dd0201c0008000f0f102810001001ed0de0201c0008035e0d60281c000802cd0d00301c0008036d0d60281c0008038c0d60281c000803910d60281c000803960d60281c0008039b0d60281c000803a50d60281c000803aa0d60281c000803b40d60281c000803fc0cf0181c000802090de0201c000803c80d60281c000803fb08c0201c000803d70d60281c000803e60d60281c0008033f0d00301c000801e70d70281c000802070d00301c000802000d70281c000802280d70281c000802370d70281c0008023c0d70281c000802410d70281c0008024b0d70281c000802550d70281c0008025f0d70281c0008026e0d70281c000802410de0181c0008029b0d70281c0008024a0de0181c0008033a0f30280c000800910f402804002403d40f30100c000800710e702814001002e10d70281c0008006c0e702814001003050d70281c000800670e7028140010036a0dd0201c000803200e4028180010032d0d70281c000803fe00f0081c000802ba0c1020200008035a0dd0201c000803940660101c0008020f0ea028140010021e0ea02814001002690ea028140010035c0e4028180010031b0e402818001003310ea02814001003680ea02814001002260de0181c0008004e0e702814001002f00ea02814001002780ea028140010036d0ea02814001002cb0e402818001002c80ea02814001003520d70201c000803fe0160081c0008037b0d70201c000803dc0f303008001002c30ea02814001002b40b102824000403e10d60281c0008035a0ba02820000402b50c102820000403fa0d60281c000802330ba02820000402af0b102824000001fb0d70281c000c03140ba02820000402050d70281c000803280ba028200004023b0de0181c000802f10c101820000403aa04201020000402aa0b102824000002a50b102824000002a00b1028240000028c0ea02814001002c70d00301c000802560ba02820000402910d70281c000802600ba02820000402af0d70281c0008026a0ba02820000402ab0ba02820000803ed0a803024000002960b102824000002ad0e402818001002d70d70281c000802dc0d70281c000803a40f30180c001003190ba028200008031e0ba02820000403c7059010200004032d0ba02820000403320ba02820000403370ba02820000402910b102824000003370d70281c0008033c0d70281c000803410d70281c0008034d0de030180008034e0f30280c0014034a0d00281c0008034f0d00281c000803fe02400818000c00480e703014000c00420e703014000c036d0d60281c000800710e702814001002f60d60281c000802010ba028200004038c0d60281c000800780ec020140010038f0dd0201c000800990e701814001003e90b903020000803480e4028180010039b0d60281c000800670e702814001003400a902824000002050d70281c000802690c20381c0008024b0e503814001002c80d70281c000800840ec02014001003d20d60281c000800880ec02014001002780b102824000003cb0dd0201c000803c80d60281c000803f20ee02014001001dd0d70281c000800300ec02014001003a20c80381c000803d50e902814001003b40d60281c000803e20ee020140010033f0d00301c000802690ea02814001002190d70281c000800140ec02014001001e70d70281c0008035c0e402818001003910d60281c0008006c0e702814001002370d70281c000801f60ea02814001002500d70281c000802cb0e402818001002850c90381c000803c00b903820000802550d70281c0008036d0ea02814001003ef0b9030200008027d0e403018001002a50d70281c000803be0ee02014001002e70c90381c000802050ea02814001003280b204020000802710e403018001002cd0d70281c0008020a0ea02814001002250d00301c0008003c0e703014001003cf0dd0201c000803f60ee02014001003000d70281c000802660e502014001003550c90381c000800360e7030140010031e0d70281c000800180ec02014001003f50b903020000803760de03018001002730b1028240000034b0ba02820000401fb0ba03020000803530de03018001002640b1028240000035f0ba028200004025f0b102824000003640ba028200004025a0b102824000003850ba02820000402550b102824000003820d00281c000802190d00301c000802530de0181c000803c90a803024000002560ba028200004024b0b102824000003680d60281c000802130d00301c000803fd0cd01008001403d20f30100c000800280f1020100008020b0ba028200008036309f03828000002c90b904020000803af0d60281c000803670ef040100008023c0b102824000002370b102824000002240ba02820000403cf0a8030240000022e0ba028200004022d0b102824000002380ba02820000402280b102824000003da0c80381c000802230b102824000002470ba02820000403fb083018240000021e0b102824000002190b1028240000025b0ba02820000402140b102824000002650ba028200004020a0b1028240000026f0ba02820000402050b102824000003870dd0201c000802000b1028240000027e0ba02820000401fb0b102824000001f60b102824000401f10b102824000002920ba0282000040356060020240000037609f01824000002690d70281c000802680de0181c000801ec0b102824000002a60ba02820000401e70b102824000001dd0b102824000403fc0710182400000354073008140010038e0a902824000402b90d70281c000c03890a9028240000036d0a902824000003fc03c01824000003e10a803024000003630a9028240000035e0a9028240000021c0c20381c000802820b102824000002e60d70281c000802280d70281c000803fc0cf0181c000803930a901824000002090de0201c000803cc0c10401c0008024d0c20381c000802010d00301c0008026e0b102824000002410b102824000002320b102824000003500ba02820000803280ba02820000403590a902824000402be0c102020000400380ec02014001003680ea02814001003fe00f0081c0008023b0de0181c000802ba0c1020200008001e0e703014001000180e703014001003690ba02820000402da0c1020200004038a0ba02020000403270a902824000403110e4028180010033e0c20381c000802d70ea02814001003720d60281c000803870d60281c000803ea0cf0301c000802dc0ea028140010035a0c20381c000803770b903820000803a00d60281c000802e10ea02814001003f904903028000001e30ba03020000803870d60281c0008033c0ba02820000403be0d60281c000802b20e402818001002c60c102020000403910e402018000c03840a8028240000021a0ba02820000402a50b1028240000038f07201824000002a10ba02820000802e40e4028180010028d0ba02820000802f70c101820000802880ba02820000803020e402818001003cf0a8030240000022e0ba028200004029b0b102824000002740ba028200004020f0b1028240000020f0d70281c000801e20b102824000003fa0b102820000402f50ea02814000c02fa0ea02814000c01eb0c90381c000801f20c90381c000801f90c90381c000802000c90381c000802070c90381c0008020e0c90381c000802150c90381c0008021c0c90381c000800440f1020100010004c0f102010001002440e503814001002780d70281c0008027d0d70281c000803470ef040100014033f0ef040100014036f0ef03810001003120f30280c001403080f30280c001403db0dd0201c000803bb0dd0201c000802d40ef01814000c038903201814000c00120e703014000c03760ef03810001000970f10280c001403490f30280c001403d70dd0201c000801fd0de0201c0008023e0ef01814000c02410ef01814000c00060e703014000c01eb0c20381c000802af0c90381c000802b60c90381c000803600b2040200008030f0d70281c0008037c0ea02814000c02cb0c90381c000803580b204020000803810ea02814000c03380b204020000803200b204020000803f20b104020000803da0b104020000803d20b104020000803c20b104020000802ce0c102020000802ca0c102020000803570ef040100008034f0ef040100018039b0f30180c000c03860f30180c000c03c50f30180c001803bc0f30180c001803020f30300c000c00910f10300c0018035c0c90381c0008037d0c90381c000803840c90381c000802f50cf0381c000800280f102010001003630cf0381c0008036a0cf0381c000803710cf0381c0008038b0cf0381c000803920cf0381c000803990cf0381c000803a00cf0381c000803a70cf0381c000802b50a804824000402690c90381c0008025b0c90381c000802540c90381c000802380c90381c000802310c90381c0008022a0c90381c000801dd0c90381c000803cc0c80381c000803c50c80381c000803530c20381c0008034c0c20381c000803450c20381c0008030d0c20381c000802fa0ea02814000c02f50ea02814000c02a10c20381c000803fd0af01008002001e20d70281c0008034f0a902824000003400a902824000003930a901824000001f50d00301c000803450a9028240000035e0d002018000c036d0d60281c0008038c0d60281c0008038f0dd0201c0008027e0c20381c0008039b0d60281c0008026e0d70281c000803b40d60281c0008022b0d00301c000803fc0cf0181c000803c80d60281c000802d20c90381c000803d70d60281c000803e60d60281c000802460d70281c0008033f0d00301c000802190d70281c000801e70d70281c0008025a0d70281c000802370d70281c0008025f0d70281c000802850c90381c000802550d70281c0008035a0c20381c0008026d0d00301c000802500b102824000002820d70281c000801f50d00301c0008027f0d00301c000803360a902824000002960d70281c0008000c0e7030140010023d0ba02820000803340e402818001002aa0d70281c000800680ec02014001002de0c102020000802da0e402818001003a00d60281c000802ee0ef01014001003f20ee02014001002d50e402818000c02b70e402818001002f00ea02814001002d20c102020000802690ea02814001002600e503014001002d00e4028180010002a0e703014001002550ea02814001002140ea02814001003c00b903820000803140d70281c000c03770b9038200008021a0e503814001003680a902824000003280d70281c000803540a902824000002690b102824000402460b102824000002290ba02820000803550ba028200008027d0b102824000403f80a802824000003460ba02820000403b70c80381c000803030d00301c0008035606902024000002c20c102020000403fc07a01824000002350de0181c000803fc03301824000002ee0c101820000402f40c101820000803fd05d01020000802d60c102020000803fb0b9020200008038902801828000003720a901824000402100ba02820000802e20c102020000803f20ee020140010024c0ba02820000803aa04a01020000802730d70281c000802620de0181c000802830ba02820000803430e402818001002d20de03818000c03db0a803024000002640d70281c000803d50a803024000002970ba028200004024f0d00301c000800000e7030140010029c0ba028200008034d0e4028180010028c0b1028240000030f0ba028200004028d0ba02820000802f70c101820000802320d70281c000803ab0dd0201c0008029b0b102824000002740ba02820000403f30a802824000002230d70281c000803230ba02820000802a70e403018001003180a902824000002060ba02820000403220a9028240000032c0a9028240004033b0a9028240000023e0de0181c000801f10d70281c000803a90ea02814000c01ec0d70281c000803fe00000820000803030cf01804000802a10e403018000803100b103004000803f50d60281c000802320de0181c0008022c0de0181c000802290de0181c0008032f0e402818001001e50de0201c000803950ea02814001002ea0c1020200008031d0a902824000002470ba028200004039f0b104820000803960b104820000802f20b105020000803320c90381c0008032b0c90381c0008035e0d60281c0008035e0d60281c000802d90c90381c000802f80e402818001002c40c90381c000c02110de0201c000c02500de0181c000802b50ba0181c000802a80c90381c000802a10c90381c000802c10b904020000802e90b904020000803aa0c10481c000802af0c90381c000803bb0a8038240004027e0c90381c000c023d0e503814001001e60e504014001002770c90381c000803d40c10401c000802550d70281c0008025b0d00301c0008037c0de03018000c02620c90381c0008032c0ea02814001002af0de03818000c03570e402818000c03b40cf0301c000803520e402818000c03ba0cf0301c0008032a0e402818000c024d0c90381c000802460c90381c0008023f0c90381c000803c00cf0301c000803c60cf0301c000802870d70281c000803cc0cf0301c000802230c90381c000801e40c90381c0008033b0de03018000c03d20cf0301c000803d80cf0301c000803de0cf0301c000803eb0d60281c000803dc0d60281c0008038d0c80381c0008036f0c80381c000803010c80381c0008037f0c20381c000803e40cf0301c000803f00cf0301c000803370c20381c000803140c20381c000803f60cf0301c000801dd0d00301c000803b80ef028100014020c0e503814000c03220de03818000801e30d00301c000801e90d00301c000801ef0d00301c000801fb0d00301c000802770c20381c0008023f0c20381c000802070c20381c0008022a0c20381c000802bd0de03818000c01e40c20381c000803400c90381c000802e00c90381c000803760c80381c000803610c20381c000803300c20381c000803290c20381c000802a80c20381c000802850c20381c0008032b0ef05010000c00300e703014000802130e503814000802230c20381c0008039d0b903820000403ab0b903820000401ef0ba030200004034e0c90381c000803470c90381c000803390c90381c0008021f0d00301c000803be03703018000c03160c90381c000802bc0e402818000c030f0c90381c000802c60e402818000c02310d00301c000802370d00301c000802a00d70281c0008023d0d00301c000802930c90381c000802430d00301c000802890e403018000c03f60c80381c000803ef0c80381c000803e80c80381c000803e10c80381c000803d30c80381c000803dc0c10401c000802ff0de03818000c03680c202818000c021e0d70281c000802140d70281c000803ad0f30180c001802fc0dd0181c0008021d0de0181c000803f70f301808001c03fd0cd010080010038404303804000803d20f30100c000803990e402018001003f30e902814001002490d00301c000803ee0e902814001002550d00301c000803da0e9028140010038f0b20301c000803b30ef02810001402520e503814000c03d00e9028140010039b0c80381c000802610d00301c000802670d00301c000802730d00301c000802790d00301c000802850d00301c0008028b0d00301c000802700c20381c000802540c20381c000803290de03018000c02910d00301c000802150c20381c0008020e0c20381c000802970d00301c0008029d0d00301c000802b60de03818000c01dd0c20381c000802fc0cf0381c000803080c90381c000802a30d00301c000802a90d00301c000802af0d00301c000802b50d00301c000802700c90381c000803be0c80381c0008001e0f102810001402e70de03818000c03220c20381c0008031b0c20381c000802ee0c90381c000802f00dd0201c0008022d0d70281c000802310c20381c000802050e503814000c02d90d00301c000802000c20381c000802df0d00301c000802d90de03818000c031d0c90381c000802bd0c90381c000802e50d00301c000802eb0d00301c000803090d00301c000803350de03018000c030f0d00301c000803150d00301c000802590e503814000c02e00de03818000803060de03818000803940c80381c000803680c80381c000802fa0c80381c000802a80de03818000c02fb0d60281c000803860c20381c0008031b0d00301c000803210d00301c000802190ea02814001001f90c20381c000800230f102810001402360e503814000c03de0ee02014001003470de03018000c03270d00301c000803450d00281c000803b00c80381c000803230d70281c000802950e403018000c005d0e7028140010029b0e403018000c03a90c80381c000802210e503814000c032d0d00301c000803330d00301c0008028c0c90381c000800760e7028140010007b0e7028140010029a0c20381c000803ec0c10401c000802c40de03818000803960b903820000403fd0cd0100800100384043038040014032b0f30280c0010039d0ef03010000c02b40d70281c000803f70f301808001c03ad0f30180c001803820f30200c000803390d00301c000803af0dd0201c000801ed0de0201c000803fd0650101c000803c70610101c000803700b20201c000803e70dd0201c000803390e402818000c03df0e902814000c03dc0f303008001403760f30200c000803820f30200c0008008e0f401808001c03fe0160081c000801e90de0201c000802380c20381c0008031b0d00301c000803e20f302808000800000f102810000803070e402818000802d30d00301c0008038c04204008001402870d70281c000803cc0cf0301c000802df0d00301c000803bc0c10401c000801f90de0201c000800910f402804001400910f402804001403100b103004001400910f402804001403840430380400140384043038040014022f0de0181c0008030d0f30280c001c03d20f30100c000803d00f30100c000803d20f30100c001c03d40f30100c000803820f30200c0008037e0f30200c000803820f30200c001c03760f30200c000803fd0cd01008001403980c10481c000802c10d00301c000802bb0d00301c000803c109e04828000002870b102824000402420ba02820000403d309e02828000003e70e405014000c03ea0b104020000403500b204020000801dd0a8048240004034409f048280000038f0b9038200008037e0b903820000803b20b903820000803b90b903820000802f10d60281c0008020a0a8048240004037f0c1028040020003c0f1020100014030d0ef05010001401dd0e504814001002860de05018000c03170ef050100014034709005010001403210ef050100014027c0de05018000c03350ef05010001403fe0080081c000803820f30200c000803cd0d60281c000803f00d60281c0008025b0c20381c000802460c20381c000803d20f30100c000802590de0181c000802560de0181c000803660f30200c001002370ea02814000c03c506b00808002000910f402804001403c506d00804002001f60d70281c0008028c0d70281c000802be0d70281c000802c30d70281c000802c80d70281c000802d20d70281c000802eb0d70281c0008030a0d70281c000803190d70281c000803320d70281c000802af0c20281c000803fe02a00818000c03fe01d0081c000c03af0dd0201c0008000f0f102810001001ed0de0201c0008035e0d60281c000802cd0d00301c0008036d0d60281c0008038c0d60281c000803910d60281c000803960d60281c0008039b0d60281c000803a50d60281c000803aa0d60281c000803b40d60281c000803fc0cf0181c000802090de0201c000803c80d60281c000803fb08c0201c000803d70d60281c000803e60d60281c0008033f0d00301c000801e70d70281c000802070d00301c000802000d70281c000802280d70281c000802370d70281c0008023c0d70281c000802410d70281c0008024b0d70281c000802550d70281c0008025f0d70281c0008026e0d70281c000802410de0181c0008029b0d70281c0008024a0de0181c0008033a0f30280c000800910f402804002403d40f30100c000800710e702814001002e10d70281c0008006c0e702814001003050d70281c000800670e7028140010036a0dd0201c000803200e4028180010032d0d70281c000803fe00f0081c000802ba0c1020200008035a0dd0201c000803940660101c0008020f0ea028140010021e0ea02814001002690ea028140010035c0e4028180010031b0e402818001003310ea02814001003680ea02814001002260de0181c0008004e0e702814001002f00ea02814001002780ea028140010036d0ea02814001002cb0e402818001002c80ea02814001003520d70201c000803fe0160081c0008037b0d70201c000803dc0f303008001002c30ea02814001003030ef05010001403f10e404814001003e40c10401c0008038e0c10501c000c03ba0b104020000802e10b904020000802f10b904020000802f90b904020000803680b204020000803400b204020000803100b204020000803ca0b104020000802620c20381c000c02fc0b1050200008022e0a804824000403310a902824000403060b1050200008034d09f040280000031d0a0050240004035b05504824000402490a804824000402ac0a804824000402a30a8048240004029a0a804824000402910a804824000402880a8048240004027f0a804824000402760a8048240004026d0a804824000402640a804824000402d90b904020000803e20b104020000803ce0b903820000803b40a803824000403010b904020000803ae0cf0301c000802e10a804024000402e90a804024000401ef0a804824000403f309f05024000403e909f05024000403ad0a803824000403010a804024000403090a804024000403410ba02820000801f80a804824000403750b104820000803f40c10401c000802f90a804024000403700b903820000803c70b9038200008039405e01020000803c40c10401c000801ee0e5040140010037e0b104820000401e60a804824000403390a004824000402f10a804024000403e70a803024000403760a803824000403300a004824000402520a8048240004025b0a8048240004039f0a803824000403980a803824000402010a804824000402130a8048240004021c0a804824000402250a804824000402370a804824000402400a804824000402d90a804024000403a10c10481c000803a60a803824000402be0a804824000402900de04818000c02c70a804824000402d00a8048240004029a0c90381c0008037d0a803824000403a80b104820000803b30c10481c000803ca09e048280000035509f03828000003b709e05028000002990de04018000803ea0ee020140008005b0f101810000c033e0e4028180008039f0ea028140008038b0ea028140008030c0e402818000802ee0e402818000803fd0cd010080010004c0f102010000c00280f102010000c032f0de03018000803360ea02814000802f10d001818000802cb0ef01814000803220ea02814000802830e403018000802d40ef018140008023e0ef01814000803540d00281c0008028f0ef01814000803090ea02814000803890e402018000803f30f302008001403590d00281c000802ff0ea02814040802d20ea02814040802b90ea02814000802870ea02814000800380f102010000c01fe0e503814000803120f30280c001000970f10280c001003fe053008140008008e0f4018080008026e0ea02814000803460d70201c000402640ea028140008025a0ea02814000803c506b00808000803fd06c01014000802e00ef01014000803a40f30180c000803aa0f30180c000c03c506b00808001803f905d01804001003c506d00804001802320ea02814000803ea0ee02014000803fd0e901014000800000ec02014000803de0ee020140008000c0ec020140008008c0ec02014000800440ec020140008005c0ec020140008003c0ec02014000800500ec020140008039207700810000c03fe05800814000c02200ef01814000803b00f30180c000c02d10ef01814000803a90e401818000803410de03018000803c20ee02014000800780ec02014000803c60ee02014000803ca0ee02014000803ce0ee02014000803da0ee02014000803ae0ea02014000803e20ee02014000802a10ef01814000800040ec02014000803f20ee02014000803ba0ea02014000803130ea028140008002c0ec020140008006c0ec02014000800800ec020140008035e0ea02814000800280ec02014000800240ec02014000801f60ea02814000800200ec020140008001c0ec020140008031d0ea028140008036d0ea02814000803180ea02814000800100ec02014000802ea0ef010140008030e0ea02814000802e80ef010140008008b0f401808000803080c802004001803c506b00808000803b90f30180c0010028c0ef01814000803da0f30100c001002890ef01814000803fc04501810000c02e60ef01014000802800ef018140010027d0ef018140008039207200814000803aa0520101c000802710ef01814000802ee0ef010140008033f0f30280c0010039e0f30180c001003a10f30180c0010026e0ef018140010026b0ef01814001003d80f30100c0010035109001010000c02e40ef01014000803b30f30180c001003b60f30180c001003350f30280c001003a40f30180c0010025c0ef01814001000610f101810000c02590ef018140008035407300814000802560ef01814000803e70f302008000c03cb0f30180c001003a70dd0201c000802500ef01814000803a60e4018180004024a0ef018140008024d0ef018140008023b0ef018140008023b0ef01814000802380ef01814001003b20e401818000403be0e401818000403a60e4018180004022f0ef0181400080392072008140008039207200814000803620dd0201c0000035e0dd0201c000002f40dd0201c000003ae0ef02810000c02cd0ea028140008021d0ef018140008021a0ef01814000802170ef01814000802140ef01814000802110ef01814000802380de0181c000803560d70201c0000034a0d70201c000000580f101810001000980ec02014000800940ec02014000803a40f30180c000c02c50ef018140008023b0ef018140008039207200814000802170ef01814000802110ef01814000802c20ef01814000802190de0201c000002b60ef01814000802ad0ef01814000803b50e401818000802af0ea02814000800820f401808001402aa0ea02814000802a50ea0281400080392072008140008035d0f30280c000c03170f30280c000c03c20ee02014000803b90f30180c001000740ec02014000802860ef01814000800600ec02014000802740ef01814000c025f0ef01814000803d00f30100c001003480e402818000800700f101810001003ce0ee02014000803fc04501810000c037f0d70201c000003be0e4018180004029b0ea028140008007f0f101810000c00840ec02014000802470ef01814000c00880ec02014000803950f30180c001003cb0dd0201c000002350ef018140008004c0ec02014000803920f30180c001000300ec020140008038f0f30180c001003130ea02814000803580f30280c001003e20ee02014000803950f30180c0010006c0ec02014000803a10f30180c001000140ec02014000803890f30180c001000480ec020140008007c0f101810000c03c60ee02014000803da0f30100c001001f60ea02814000803c80f30180c0010020d0ef020140008025c0ef01814001002fd0e402818000803780d00281c0008036d0ea02814000803a40f30180c001002c10e4028180008038f07b02010001003be0ee02014000800670f101810000c02820ea02814000803440f30280c0010026b0e403018000803910ef03010001000080ec02014000800300f102010000c02730ea02814000800190f102810000c029e0ef01814000800640f101810000c03b60ea02014000802950ef01814000c00360e703014000803300f30280c001003b20ea02014000800760f101810000c03950e4020180008006d0f1018100010039b0dd0201c000003fd0c801014000803850e402018000802770ef01814000c03c70dd0201c000002290ef01814000803df0dd0201c000003fd09f01018000403f30dd0201c000003ac0e401818000403f30dd0201c000003ac0e401818000400900ec02014000802ce0ef01814000803fb0dd0201c000002170ef01814000801dd0de0201c000002140ef01814000802e90e402818000803fd0cd01008001003c506b00808000803a10f30180c000802980ef01814000802150ba02820000401e20ea02814000800400ec02014000803bd06b0400c000802050de0201c0000020d0de0201c000002260ef01814000801f10de0201c000002d70ef01814000801e10de0201c000003fd0a501014000803ef0dd0201c000003e40e902814000803d30dd0201c000003b20e401818000402b90ef01814000803c30dd0201c000003bf0dd0201c000002c80ef018140008039f0dd0201c000002e20ef01014000803930dd0201c000003c7068010180004020a0d70281c0000039d0e401818000401dd0de0201c000002140ef01814000802df0e402818000403fc0c10181c000803f70dd0201c000003b80e401818000403790e402018000403bb0e401818000403d60ee02014000802920ef01814000803eb0dd0201c000003fd0aa01014000803ae0ea02014000802800ef018140010024d0de0181c000003fe0300080c001003a30dd0201c000803af0e401818000c02f80dd0201c000003e30dd0201c0000024d0de0181c000003660dd0201c0000034e0d70201c000003e30dd0201c000003040ea02814000803770d70201c000000340ec02014000800240ec02014000802a10ef018140008025c0de0181c000000040ec020140008001e0e703014000803860ea02814000803e60ee020140008036e0dd0201c000003720dd0201c000003830dd0201c000003ee0ee02014000803a60e4018180004038b0dd0201c000802dd0ef018140008036409a01014000c035109001010000c0392072008140008022f0ef01814000802650de0181c000803970ef03010000c00140f102810000c03ee08302018000802b00ef01814000802a70ef01814000802470de0181c000802a40ef018140010000a0f102810001003350f30280c001003fa0ee02014000803690e402018000803a40ea028140008036a0f30200c0010039a0ea02814000803630d60281c000800940ec020140008027a0ef01814000802b00ba028200000036d0e402018000803710e402018000803710e402018000803d20ee02014000803d20ee02014000c03910e4020180004005e0f101810000c03c506b00808000801f50de0201c0000024a0ef01814000802150de0201c000002230de0181c0000037d0e402018000802ec0ef01014000c03250e40281800080364094010180008038d0e402018000800730f101810001002e60c1020200000021d0ef01814000c01dd0de0201c000002140ef01814000803970dd0201c0000024a0ef01814000801e10de0201c000003fd0a501014000803c20f30180c001003a10f30180c001002690ea02814000802eb0ea02814000802e60ea02814000802be0ea02814000802b40ea02814000802a00ea02814000802910ea02814000803fa0e402814000803c20f30180c001003a10f30180c0010031c0f30280c001002530ef01814000802320ef01814000803210f30280c001003260f30280c001003080f30280c001000850f401808001400850f401808001402d40ef018140008038903201814000803ce0f30100c001003ce0f30100c001003620f30200c001003490f30280c001000880f401808001400880f4018080014023e0ef01814000802410ef01814000803d60f30100c001003d60f30100c0010036e0f30200c000c038b0ea028140008025f0ea02814000802500ea02814000802410ea028140008022c0ef01814000800340f102010000c02000ea02814000802410ea02814000800540f102010000c01fb0ea02814000801f10ea02814000801ec0ea02814000801e70ea02814000801dd0ea02814000803f80e902814000802aa0ef01814000802230ef01814000803e006e0280c000803530f30280c00100394042010080008038a09c0100800080394042010080014038a09c01008001403ef0f302008000803eb0f302008001403e90e902814000803cb0e902814000803c60e902814000803c10e902814000803ad0f30180c001000940e7028140008008a0e702814000800620e702814000800580e702814000802be0ea02814000800530e702814000802960ea028140008027d0ea028140008028f0e403018000800800e702814000800850e7028140008008f0e702814000802230ea02814000802280ea028140008022d0ea028140008023c0ea02814000802460ea028140008024b0ea02814000803270ea028140008033b0ea02814000802fa0ea02814000802f50ea02814000803a10f30180c000c03c20f30180c000c03400ea02814000803fd0af01008001803450ea02814000803d30dd0201c0000037f0d70201c0000025c0de0181c000000540ec02014000801dd0de0201c0000038903201814000803c20ee02014000800780ec02014000800580ec020140008034a0ea02814000803ce0ee02014000800100ec02014000803e20ee02014000802410ea02814000802a10ef018140008004c0ec020140008034f0ea02814000803130ea028140008002c0ec02014000800640ec020140008006c0ec02014000800140ec02014000800800ec02014000800700ec02014000801f60ea02814000803180ea02814000802fd0e4028180008036d0ea02814000803540ea02814000803590ea028140008039b0dd0201c000003fd0c801014000800540ec020140008007c0ec02014000802010de0201c0000035a0d701818000402440ef01814000c038903201814000803d30dd0201c000003b20e401818000400050f102810000c03a90ef02810000c03a90ef02810000c02370ea02814000c03630ea02814000c03a30e401818000803a30e401818000803720ea02814000803770ea02814001002f30e402818000802620ef01814000802650ef01814000802680ef01814000800480e703014000800420e703014000803dc0b9038200004037d0d00281c000803870d001818000802200de0181c0008008a0f10380c001003900ea02814000803160e402818000802930c20381c0008028c0c20381c000802a10de03818000803140de038180008030d0de03818000802cb0de03818000802830ef01814000803240c90381c0008037f0c102804001803da0f30100c001002f00f30300c001003a30ef03010000c038b0ef03010000c00820f10400c001002f00f30300c0010035f0ef04010000c02fc0f30300c001003fe053008140008008e0f4018080008026e0ea02814000803460d70201c000402640ea028140008025a0ea02814000803c506b00808000803fd06c01014000802e00ef01014000803a40f30180c000803aa0f30180c000c03c506b00808001803f905d01804001003c506d00804001802320ea02814000803ea0ee02014000803fd0e901014000800000ec02014000803de0ee020140008000c0ec020140008008c0ec02014000800440ec020140008005c0ec020140008003c0ec02014000800500ec020140008039207700810000c03fe05800814000c02200ef01814000803b00f30180c000c02d10ef01814000803a90e401818000803410de03018000803c20ee02014000800780ec02014000803c60ee02014000803ca0ee02014000803ce0ee02014000803da0ee02014000803ae0ea02014000803e20ee02014000802a10ef01814000800040ec02014000803f20ee02014000803ba0ea02014000803130ea028140008002c0ec020140008006c0ec02014000800800ec020140008035e0ea02814000800280ec02014000800240ec02014000801f60ea02814000800200ec020140008001c0ec020140008031d0ea028140008036d0ea02814000803180ea02814000800100ec02014000802ea0ef010140008030e0ea02814000802e80ef010140008008b0f401808000803080c802004001803c506b00808000803b90f30180c0010028c0ef01814000803da0f30100c001002890ef01814000803fc04501810000c02e60ef01014000802800ef018140010027d0ef018140008039207200814000803aa0520101c000802710ef01814000802ee0ef010140008033f0f30280c0010039e0f30180c001003a10f30180c0010026e0ef018140010026b0ef01814001003d80f30100c0010035109001010000c02e40ef01014000803b30f30180c001003b60f30180c001003350f30280c001003a40f30180c0010025c0ef01814001000610f101810000c02590ef018140008035407300814000802560ef01814000803e70f302008000c03ea0ee020140008002c0f102010000c03650e4020180008006a0f101810040c029b0ef01814040803830d701818040803a00e401818040803fd0cd010080010004c0f102010000c00280f102010000c02f50c902018000801e10ef02014000802f10d001818000802cb0ef01814000801e50ef02014000803750e402018000802d40ef018140008023e0ef01814000803b70dd0201c0008028f0ef01814000801e90ef02014000803890e402018000803f30f302008001403b30dd0201c000802bc0ef01814040802bf0ef01814040801f10ef02014000801f50ef02014000800380f102010000c03ea0ee02014000803980f30180c041003bf0f30180c041003fe053008140008008e0f401808000801f90ef020140008025f0de0181c000400480f102010000c02050ef02014000803c506b00808000803fd06c01014000802e00ef01014000803a40f30180c000803aa0f30180c000c03c506b00808001803f905d01804001003c506d00804001800400f102010000c03ea0ee02014000802da0ef01814040800000ec02014000803de0ee020140008000c0ec020140008008c0ec02014000800440ec020140008005c0ec020140008003c0ec02014000800500ec020140008039207700810000c03fe05800814000c02200ef01814000803b00f30180c000c02d10ef01814000803630c902018000803610e402018000803c20ee02014000800780ec02014000803c60ee02014000803ca0ee02014000803ce0ee02014000803da0ee02014000803ae0ea02014000803e20ee02014000802a10ef01814000800040ec02014000803f20ee02014000803ba0ea02014000802090ef020140008002c0ec020140008006c0ec02014000800800ec02014000802010ef02014000800280ec02014000800240ec02014000801fd0ef02014000800200ec020140008001c0ec02014000801ed0ef02014000802b30ef01814040801dd0ef02014000800100ec02014000802ea0ef01014000800500f102010000c02e80ef010140008008b0f401808000803080c802004001803c506b00808000803b90f30180c0010028c0ef01814000803da0f30100c001002890ef01814000803fc04501810000c02e60ef01014000802800ef018140010027d0ef018140008039207200814000803aa0520101c000802710ef01814000802ee0ef010140008037a0f30200c0010039e0f30180c001003a10f30180c0010026e0ef018140010026b0ef01814001003d80f30100c0010035109001010000c02e40ef01014000803b30f30180c001003b60f30180c001003720f30200c001003a40f30180c0010025c0ef01814001000610f101810000c02590ef018140008035407300814000802560ef01814000803e70f302008000c03cb0f30180c0010032100420100000003ea01f08040000003c90040c0600000036900410080000000040044ab7c000003ce0410a04c000003ae05d05834000003910290c0540000036902c0b8500000034104c0b040000003c90240c854000003ce05c0a038000003b10410a850000003e90040884c000003ea0620782c00000369048150480000033608906818000003b102904840000003c30f40080400003'); - -const sprites2 = createSprites('2a81f4020186c8452db202020186c84500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488300c02f0080c7088304205000808748c304205000808749031e603f00818748432a81f4020186c84527e202028186884500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488300c02f0080c7088304205000808748c304205000808749031e603f00818748432a81f4020186c845196202028186884500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488300c02f0080c7088304205000808748c304205000808749031e603f00818748432a81f4020186c84511e1fb028186884500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488300c02f0080c7088304205000808748c304205000808749031e603f00818748430f8208020146c88500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484305a208028146888500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484303c203028146888500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484313b207028146888500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484308220d020106c8c5042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433c420c02810688c5042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433ce20c02810688c5042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433fa39002810688c4042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748431461270200c6c90400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748431d41870280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748431ca1870280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748430d91870280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f008187484310b10d020086c9442a81f4020186c8451e603f00818748431b20f802808689442a81f4020186c8451e603f00818748431b20f802808689442a81f4020186c8451e603f00818748431b20f802808689442a81f4020186c8451e603f00818748433ae10c020086c9442a81f4020186c8451e603f00818748431ad0f802808689442a81f4020186c8451e603f00818748431ad0f802808689442a81f4020186c8451e603f00818748431ad0f802808689442a81f4020186c8451e603f008187484328d202028186c84500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f00818748431e01c4030186884500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484305018f030186884500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f0081874843078167030186884500c02f0080c748c304205000808748c300c02f0080c748c300c02f0080c708c304205000808748c304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484331d207028146c885042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433762020301468885042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433e22020301468885042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f00818748433dc2020301468885042050008087490300d04300804749030420500080874903042050008087090300d043008047490300d043008047090300d043008047490304205000808749032a81f4020186c8451e603f008187484339c20c028106c8c500d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f008187484337c15203010688c400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748432b019703010688c500d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748432d816f03010688c500d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748430a019f0280c6c9042a81f4020186c8451e603f00818748431401270300c689042a81f4020186c8451e603f00818748431401270300c689042a81f4020186c8451e603f00818748431401270300c689042a81f4020186c8451e603f00818748430ca20d020106c8452cb093020046c9433fe04900810748430ca20d020106c84507b04e02804689433fe04900810748430ca20d020106c84507b04e02804689433fe04900810748430ca20d020106c84507b04e02804689433fe04900810748430ca20d020106c8453fb2cb020086c9033fe04900810748430ca20d020106c8451ac0e002808689033fe04900810748430ca20d020106c8451ac0e002808689033fe04900810748430ca20d020106c8451ac0e002808689033fe04900810748431901b70200c6c8441941b70200c6c8c400c02f0080c748431901b70200c6c8441a019f0280c688c400c02f0080c748431901b70200c6c8440af19f0280c688c400c02f0080c748431901b70200c6c8441a019f0280c688c400c02f0080c748433b420e020086c8430be20d020106c88504205000808748433b420e020086c84338320c028106888504205000808748433b420e020086c84339720c028106888504205000808748433b420e020086c84338320c028106888504205000808748430a81f4020186c84500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f00818748432481e0028186884500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f00818748431c93ba028186884300c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f00818748430001df028186884500c02f0080c748c300c02f0080c7488300c02f0080c748c300c02f0080c708c300c02f0080c7488304205000808708c304205000808748c304205000808749032a81f4020186c8451e603f008187484329e208020146c88500c02f0080c748c304205000808748c300c02f0080c748c3042050008087090304205000808748c300d043008047090304205000808748c304205000808749032a81f4020186c8451e603f008187484304b208028146888500c02f0080c748c304205000808748c300c02f0080c748c3042050008087090304205000808748c300d043008047090304205000808748c304205000808749032a81f4020186c8451e603f0081874843028208028146888500c02f0080c748c304205000808748c300c02f0080c748c3042050008087090304205000808748c300d043008047090304205000808748c304205000808749032a81f4020186c8451e603f00818748433c2207028146888500c02f0080c748c304205000808748c300c02f0080c748c3042050008087090304205000808748c300d043008047090304205000808748c304205000808749032a81f4020186c8451e603f008187484324b0de020106c8c3042050008087490300d0430080474903042050008087490300d043008047094300d043008047490300d043008047490304205000808749032a81f4020186c8451e603f00818748433d320c02810688c5042050008087490300d0430080474903042050008087490300d043008047094300d043008047490300d043008047490304205000808749032a81f4020186c8451e603f00818748433d320c02810688c5042050008087490300d0430080474903042050008087490300d043008047094300d043008047490300d043008047490304205000808749032a81f4020186c8451e603f00818748433d320c02810688c5042050008087490300d0430080474903042050008087490300d043008047094300d043008047490300d043008047490304205000808749032a81f4020186c8451e603f00818748431741cf0200c6c90400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748432001570280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748432001570280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f00818748432001570280c6890400d043008047494300d043008047494300d043008047094300d04300804749432a81f4020186c8451e603f0081874843110208020146c885042050008087490300d0430080474903042050008087490300c02f0080c708c300d043008047490304205000808708c300d043008047490304205000808749032a81f4020186c8451e603f00818748432382050281468885042050008087490300d0430080474903042050008087490300c02f0080c708c300d043008047490304205000808708c300d043008047490304205000808749032a81f4020186c8451e603f00818748431af2070281468885042050008087490300d0430080474903042050008087490300c02f0080c708c300d043008047490304205000808708c300d043008047490304205000808749032a81f4020186c8451e603f00818748432f02070281468885042050008087490300d0430080474903042050008087490300c02f0080c708c300d043008047490304205000808708c300d043008047490304205000808749032a81f4020186c8451e603f00818748433560bf020106c8c500d043008047494300d0430080474943042050008087090300d043008047090300d04300804749432a81f4020186c8451e603f00818748433fa22902810688c300d043008047494300d0430080474943042050008087090300d043008047090300d04300804749432a81f4020186c8451e603f008187484303c20d02810688c500d043008047494300d0430080474943042050008087090300d043008047090300d04300804749432a81f4020186c8451e603f008187484301e20d02810688c500d043008047494300d0430080474943042050008087090300d043008047090300d04300804749432a81f4020186c8451e603f0081874843089128018087090405e20d020106c8c500d043008047494308912801808709043f120c02810688c500d043008047494308912801808709043f120c02810688c500d043008047494308912801808709043f120c02810688c500d043008047494300d04300804789430741cf0200c6c90400d04300804789430cf1870280c6890400d04300804789430cf1870280c6890400d04300804789430cf1870280c6890400d043008046c9430701cf0200c6c90400d043008046c9431c01870280c6890400d043008046c9431c01870280c6890400d043008046c9431c01870280c6890400d043008046c9430581e70180c6c90400d043008046c94306c1cf0200c6890400d043008046c94306c1cf0200c6890400d043008046c94306c1cf0200c689042501d802818888450401dd02818888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c30640c00100c908830640c00100c8c883042050008088c8c3028144010088c9031e603f008188c8432501d802818888451f81ac03018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c30640c00100c908830640c00100c8c883042050008088c8c3028144010088c9031e603f008188c8432501d802818888451f01b403018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c30640c00100c908830640c00100c8c883042050008088c8c3028144010088c9031e603f008188c8432501d802818888452181ca03018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c30640c00100c908830640c00100c8c883042050008088c8c3028144010088c9031e603f008188c84323d20502814888850640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84300018c03014888850640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84300818403014888850640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84301817403014888850640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c8433a620c02810888c5028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432901b703010888c5028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432881bf03010888c5028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432801c703010888c5028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8430e016f0280c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84312613f0300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84312013f0300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84321a1270300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c8431c03fd02808889432501d802818888451e603f008188c84325730303008889432501d802818888451e603f008188c84325730303008889432501d802818888451e603f008188c84325730303008889432501d802818888451e603f008188c8431a80f802808889442501d802818888451e603f008188c84301504003008889432501d802818888451e603f008188c84301504003008889432501d802818888451e603f008188c84301504003008889432501d802818888451e603f008188c8430301af03018848450640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c8430b012f03818848450640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84327812c03818848450640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c8430b812703818848450640c00100c8c8c3028144010088c8c30640c00100c908c30640c00100c8c8c302814401008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84339a2020301484885028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8430900fc0381484885028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8430481440381484885028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8430c80c40381484885028144010088c90334803d010048c9030281440100890903028144010088c90334803d010049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432c817f03010848c534803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84332012703810848c534803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84332811f03810848c534803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84333011703810848c534803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84322f10f0300c849042501d802818888451e603f008188c8432440f70380c849042501d802818888451e603f008188c8432440f70380c849042501d802818888451e603f008188c8432440f70380c849042501d802818888451e603f008188c8433b020c028108884507b04e02804889433fe049008108c8433b020c02810888450d40cb03004889433fe049008108c8433b020c02810888450d40cb03004889433fe049008108c8433b020c02810888450d40cb03004889433fe049008108c8433b020c02810888451a30f802808889043fe049008108c8433b020c028108884501504003008889043fe049008108c8433b020c028108884501504003008889043fe049008108c8433b020c028108884501504003008889043fe049008108c8431e516f0280c888441f416f0280c888c400c02f0080c8c8431e516f0280c8884422910f0300c888c400c02f0080c8c8431e516f0280c8884422310f0300c888c400c02f0080c8c8431e516f0280c8884422910f0300c888c400c02f0080c8c843143087028088884303720d0281088885042050008088c843143087028088884336c20c0301088885042050008088c84314308702808888432a819f0301088885042050008088c843143087028088884336c20c0301088885042050008088c8432b81d402818888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c33310da0100c908830640c00100c8c883042050008088c8c3028144010088c9032501d802818888451e603f008188c84305818703018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c33310da0100c908830640c00100c8c883042050008088c8c3028144010088c9032501d802818888451e603f008188c84322018403018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c33310da0100c908830640c00100c8c883042050008088c8c3028144010088c9032501d802818888451e603f008188c84306017f03018888450640c00100c8c8c30640c00100c8c8830640c00100c908c30640c00100c8c8c33310da0100c908830640c00100c8c883042050008088c8c3028144010088c9032501d802818888451e603f008188c84305f20802814888850640c00100c8c8c3028144010088c8c33310da0100c908c30640c00100c8c8c33240a201008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84339420203014888850640c00100c8c8c3028144010088c8c33310da0100c908c30640c00100c8c8c33240a201008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c84301017c03014888850640c00100c8c8c3028144010088c8c33310da0100c908c30640c00100c8c8c33240a201008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c8433c420203014888850640c00100c8c8c3028144010088c8c33310da0100c908c30640c00100c8c8c33240a201008908c3028144010088c8c3042050008088c8c3028144010088c9032501d802818888451e603f008188c8433ab20c02810888c5028144010088c90334803d010048c9033240a20100890903028144010088c90300d043008049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432d017703010888c5028144010088c90334803d010048c9033240a20100890903028144010088c90300d043008049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432d017703010888c5028144010088c90334803d010048c9033240a20100890903028144010088c90300d043008049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8432d017703010888c5028144010088c90334803d010048c9033240a20100890903028144010088c90300d043008049090334803d010048c90300d043008048c903028144010088c9032501d802818888451e603f008188c8430b419f0280c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84315c0f70300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84315c0f70300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c84315c0f70300c8890434803d010048c94334803d010049094334803d010048c94334803d010048c9432501d802818888451e603f008188c8432ff20702814888853310d70100c8c8c3028142010088c8c30640c00100c908c33310d70100c8c8c302814401008908c3028142010088c8c300d043008048c903028144010088c9032501d802818888451e603f008188c84337c20203014888853310d70100c8c8c3028142010088c8c30640c00100c908c33310d70100c8c8c302814401008908c3028142010088c8c300d043008048c903028144010088c9032501d802818888451e603f008188c84338220203014888853310d70100c8c8c3028142010088c8c30640c00100c908c33310d70100c8c8c302814401008908c3028142010088c8c300d043008048c903028144010088c9032501d802818888451e603f008188c8433be20203014888853310d70100c8c8c3028142010088c8c30640c00100c908c33310d70100c8c8c302814401008908c3028142010088c8c300d043008048c903028144010088c9032501d802818888451e603f008188c84305020d02810888c5028142010088c90300d04300804909030281440100890903028142010088c90334803d010049090300d0430080490903028142010088c9032501d802818888451e603f008188c84337220c03010888c5028142010088c90300d04300804909030281440100890903028142010088c90334803d010049090300d0430080490903028142010088c9032501d802818888451e603f008188c8432a01a703010888c5028142010088c90300d04300804909030281440100890903028142010088c90334803d010049090300d0430080490903028142010088c9032501d802818888451e603f008188c8432b818f03010888c5028142010088c90300d04300804909030281440100890903028142010088c90334803d010049090300d0430080490903028142010088c9032501d802818888451e603f008188c84301c110018088890400520d02810888c500d043008048c94301c11001808889043e720c02810888c500d043008048c94301c11001808889043e720c02810888c500d043008048c94301c11001808889043e720c02810888c500d043008048c94300d04300804889431730df0280c8890400d04300804889431bc0df0280c8890400d04300804889431bc0df0280c8890400d04300804889431bc0df0280c889043530bb020088c9043bf20c02810848c500d043008048c9433530bb020088c90436620c03010848c500d043008048c9433530bb020088c90436620c03010848c500d043008048c9433530bb020088c90436620c03010848c500d043008048c943089128018089090410b1570280c8490408912801808909040200e00300c8490408912801808909040200e00300c8490408912801808909040200e00300c8490400d0430080484a4325f301028107498300d0430080484a432f0028028107498000d0430080484a4305520d028107498500d0430080480a83210205028147498500d0430080480a831e2049028147498000d0430080480a83041203028147498500d0430080480a8302d20d028107498500d0430080480a832f0028028107498100d0430080480a8301920d028107498500d0430080480a83037203028147498500d0430080480a831e2049028147498100d0430080480a8302d203028147498500d0430080484a4300b043010047ca8325f301028107498300d0430080484a4300b043010047ca832f0028028107498000d0430080484a4300b043010047ca8305520d028107498500d0430080484a430a0110018087ca4425f301028107498300d0430080484a430a0110018087ca442f0028028107498000d0430080484a430a0110018087ca4405520d028107498500d0430080484a833a120c028107498500d0430080484a832f0028028107498200d0430080484a8339220c028107498500d0430080484a4337e20c028107498500d0430080484a433ca093028107498000d0430080484a431830f4028107498400d0430080484a430a6110018087ca442681df030107498500d0430080484a430a6110018087ca4420a0de030107498000d0430080484a430a6110018087ca442701d7030107498500d0430080484a4339d2ca0180c7ca4325f301028107498300d0430080484a4339d2ca0180c7ca432f0028028107498000d0430080484a4339d2ca0180c7ca4305520d028107498500d0430080484a832371d3018087ca8309014f030187498500d0430080484a832371d3018087ca832320d8030187498000d0430080484a832371d3018087ca832c01cc030187498500d0430080484a832371d3018087ca833a120c028107498500d0430080484a832371d3018087ca832f0028028107498200d0430080484a832371d3018087ca8339220c028107498500d0430080484a431781cf0200c7ca4407011c038147498500d0430080484a431781cf0200c7ca443f8028038147498000d0430080484a431781cf0200c7ca4405013c038147498504620d02810749853ca093028107498104120d028107498500d0430080488a030a220d020107ca050d00bc038147498500d0430080488a030a220d020107ca053f8028038147498100d0430080488a030a220d020107ca050c00cc038147498500d0430080488a431841b70200c7ca440b80d4038147498500d0430080488a431841b70200c7ca443f8028038147498200d0430080488a431841b70200c7ca44088104038147498500d0430080484a0308620d020107ca050e80f7038187494500d0430080484a0308620d020107ca0521e0d8038187494000d0430080484a0308620d020107ca050d8107038187494503220d02810749853ca093028107498100f20d028107498500d0430080484a431801b70200c7ca0425f301028107498300d0430080484a431801b70200c7ca042f0028028107498000d0430080484a431801b70200c7ca0405520d028107498500d0430080488a433530bb020087ca432e815f038107498500d0430080488a433530bb020087ca43000083038107498000d0430080488a433530bb020087ca432f0157038107498500d0430080488a43004110020087ca442f814f038107498500d0430080488a43004110020087ca44000083038107498100d0430080488a43004110020087ca44300147038107498500d0430080484a43008110020087ca442681df030107498500d0430080484a43008110020087ca4420a0de030107498000d0430080484a43008110020087ca442701d7030107498500d0430080484a432f2185018107ca4325f301028107498300d0430080484a432f2185018107ca432f0028028107498000d0430080484a432f2185018107ca4305520d028107498500d0430080484a8319c1b70180c7ca843a120c028107498500d0430080484a8319c1b70180c7ca842f0028028107498200d0430080484a8319c1b70180c7ca8439220c028107498500d0430080480a830970c9010047ca83210205028147498500d0430080480a830970c9010047ca831e2049028147498000d0430080480a830970c9010047ca83041203028147498500d0430080484a8300b043010047ca833a120c028107498500d0430080484a8300b043010047ca832f0028028107498200d0430080484a8300b043010047ca8339220c02810749853d40de060046c9c31241fa1381c080852361f81401c0808520d1f81481c080850001f51501c080850c31951581c0808302a3d414824040440003d415024040443553d3158240404438a3d316024040443283d316824040441d220702814acc451c820702814acc4512d0bb040447cd8017c0ac040487cd001840ac0404884d402620aa0484c88d4031e0bb0484488d4018c0bd0484088d400000be0483c88d400b40be0403c88d403d90c00483884d402930be0403884d000f20cc0403480d402320cc0483078d403c60c00503874d0039c0bd0583c70d001e40ab0684868d402160ab060486cd403ad0ab0504874d4030f0bc0484078d802060cc060306cd8037c0cc0702864d800c10d6080245ccc02730cc0882c50bc00ee0bc0884050a401b20d7080205cd801660cc0683068d8034b0bb0404484dc00180bc0404488dc00200bc0404480d803420bb048447cd800c60ad0504474d802fa0bc0584070d402600bd0503c74d000ab0be0483c74cc00bc0be0403c78cc03d00c00483874cc02ab0cc0582c70d803800d60702468e003140d70781c68e000c40be0403c7ccc03550a40380c7d10032f0a404010790c01e70800582074fc004e0de05810750c03c10b9038107d0c00c51870280c7d1043550a40380c7d0c032f0a404010790801e70800582074f8004e0de05810750800cc081038107d0800c51870280c7d0c421e0de0400c851001790de04010810c02ae0d7058207cfc004e0de058107d0c00b508104010850c00c51870280c851040570d903814910c01940de04010891002b90d705820850000d10de05810851000ed0d903814910c01e20460280c91140283077020189d00022c0d803018950803070cc0402c8cf4032d0cc0382c90f40283077020189d0011140de020109d08002603101818a0fc019f0a40302094fc030f0cc0402c8cf0031f0cc0382c90f00283077020189cfc11a709c01810a104002603101818a0f8019f0a40302094f802fe0cc0482c8cf000ba0cd0382894f40283077020189cf811a709c01810a10003fc00d0181c9cf4019f0a40302090f400a80cd0482888f003e20cb0302894f003fb0640201c98f401a709c018109d0003fc00d0181c9cf0019f0a40302090ec00090cd0482888ec03bd0cc0382890ec03fb0640201c98f001a709c018109cfc02380d80281890f0019f0a4030208ce8018b0cd0482484e8019f0d7038248ce8024c0d80201894f002320de0280c90fc03fb0640201c90ec119f0a40302088e810a80d70482480e802e90d70382088ec03fb0640201c90ec01a709c0181094f800a3081030147cf000df0d90381478f000000cd0482878e402e10d7040207cec00a3081030147cf012370de0200c7cf801ec0de0301078f800df0d90381474f400b10cd0482870e802d80d70482070f000a30810301478f422f40a10280c74fc01f80de0301074fc00df0d90381470f800140d70502468ec01940d80501868f800d30810381070fc02f40a10280c7100034e0a40380c6910009b081040146508027f0d7060205cfc002b0de060105d0c00c508103810690c01e20460280c691013550a40380c6d10109b08104014690812730d70602060fc00370de06010610c00cc081038106d0c10c51870280c6d1043550a40380c751001810de04010710c01e7080058206cfc104e0de058106d0c00cc08103810750c00c51870280c751041c90de03810790800d80d903814790803e70d6058246cf402500d8058146d0400e60d9038147904028307d0200c790c00d3081038106cf810f40d9038146cf800120cd0482868e802050d80481868f800d3081038106cf8228307d0200c6cfc02cb08f0381064f001100d90381460ec00000d7050245ce001e70d8050185cec02cb08f0381064f0128307d0200c64f402620dd028145cd001610d80281c58cc012f0d80501c54cc03d90ce0401c54cc03180c7028145cd0005e0d9020145cd001c20d70201c50bc016b0d80281c50bc000a0d70502448bc00b10d70402448bc015c0d80281c50bc024020a0181450bc52f21770181c50a431360a50202050a4023b0cc04830489c00090be03030489c015b30e0201c50a4422b20a0181450a452f4098028185ce001420d80301c58dc00890d80581c58dc01fb0d80501858e002f4098028185ce01026037018145ce0027d0aa0300c68fc020e0d80401860f0001b0cd0482864e801390d80481c64f401f20de0301068f8028307d0200c68fc03550a40380c8514032f0a4040108110017b0a4058207d00004e0de058107d1000cc08103810851000c51870280c851443550a40380c8914032f0a4040108510017b0a4058208100004e0de05810811000cc08103810891000c51870280c891443550a40380c8110032f0a4040107d0c017b0a40582078fc104e0de05810790c00cc08103810810c00c51870280c811043550a40380c7d10032f0a404010790c01e70800582074fc204e0de05810750c00cc081038107d0c00c51870280c7d1043550a40380c7510032f0a404010710c02a30d7058206cfc004e0de058106d0c00cc08103810750c00c51870280c751043550a40380c7108110c0de040106d0401240d80581c68f8004e0de05810690400cc08103810710420c51870280c710843550a40380c750013270a40401070fc00940d80581c6cf0004e0de058106cfc00cc0810381074fc20c51870280c7500434e0a40380c74fc13270a40401070f810940d80581c6cec004e0de058106cf800c50810381074f811e20460280c74fc034e0a40380c78fc13270a40401074f811f20a40581c70ec004e0de0581070f800c50810381078f811e20460280c78fc03550a40380c74f801040de0401070f401f20a40581c6ce8104e0de058106cf400cc0810381074f400c51870280c74f843550a40380c70f8109b081040146cf023cd0d70581c68e8004e0de0581068f4033f0a40381070f400c51870280c70f842c70b90300c68f800ab0b90381468f001190d80581c60e8004e0de0581060f401e50de0381068f400c51870280c68f8403c0c90380c68f000370d90401468e801190d80581c60e0004e0de0581060ec03580a70381068ec00c51870280c68f0434e0a40380c7cfc13270a40401078f811f20a40581c74ec004e0de0581074f800c5081038107cf811e20460280c7cfc00b705d040387ce400b705d040387ce410b705d040387ce421bb097040387ce401bb097040387ce4127004e0403c7cdc027004e0403c7cdc127004e0403c7cdc23b20930403c7cdc03b20930403c7cdc128804e0403c84e0028804e0403c84e0128804e0403c84e023ba0930403c84e003ba0930403c84e013b803e0484088e003b803e0484088e013b803e0484088e021a20880484088e001a20880484088e013d605c0483888e003d605c0483888e013d605c0483888e0234f0960483888e0034f0960483888e0113306a0483488e0013306a0483488e0113306a0483488e020660980483488e000660980483488e010cb06b0483088e000cb06b0483088e010cb06b0483088e023de0980483088e003de0980483088e011de06a0403488dc01de06a0403488dc11de06a0403488dc21330980403488dc01330980403488dc10b006b0483084dc00b006b0483084dc10b006b0483084dc23d50980483084dc03d50980483084dc12880760403084d802880760403084d812880760403084d8211309b0403084d8011309b0403084d812a80760403080d802a80760403080d812a80760403080d8211b09b0403080d8011b09b0403080d813b40760402c78d803b40760402c78d813b40760402c78d8228e0a20402c78d8028e0a20402c78d812a00760403074d802a00760403074d812a00760403074d820dc09d0403074d800dc09d0403074d810a706b0483070dc00a706b0483070dc10a706b0483070dc23f00980483070dc03f00980483070dc11d904e0583c68e001d904e0583c68e011d904e0583c68e0215d0890583c68e0015d0890583c68e0124104e0503c6ce0024104e0503c6ce0124104e0503c6ce0239f0930503c6ce0039f0930503c6ce0133e03f0483c74e0033e03f0483c74e0133e03f0483c74e023a90930483c74e003a90930483c74e0105405d0483878e0005405d0483878e0105405d0483878e020940970483878e000940970483878e013610760582c6cdc03610760582c6cdc13610760582c6cdc20fd09d0582c6cdc00fd09d0582c6cdc11c00770682464dc01c00770682464dc11c00770682464dc21490a40682464dc01490a40682464dc11b2077070245ccc01b2077070245ccc11b2077070245ccc213b0a4070245ccc013b0a4070245ccc109a0770702850bc009a0770702850bc109a0770702850bc22ac0a20702850bc02ac0a20702850bc10f804e0683c50a400f804e0683c50a410f804e0683c50a421500890683c50a401500890683c50a412040800781c5cdc02040800781c5cdc12040800781c5cdc21c90a40781c5cdc01c90a40781c5cdc10e90770602868e000e90770602868e010e90770602868e0236a0a20602868e0036a0a20602868e010af05d0403884e800af05d0403884e810af05d0403884e820a60970403884e800a60970403884e8108f05d0403888e8008f05d0403888e8108f05d0403888e821b30970403888e801b30970403888e8108705d0403880e4008705d0403880e4108705d0403880e423580960403880e403580960403880e4104b05d048387ce4004b05d048387ce4104b05d048387ce4208b097048387ce4008b097048387ce413ae05c0503874e403ae05c0503874e413ae05c0503874e423270960503874e403270960503874e413b504e0583870dc03b504e0583870dc13b504e0583870dc20bd0960583870dc00bd0960583870dc111606a0503474d8011606a0503474d8111606a0503474d820530980503474d800530980503474d8117206a0483474d4017206a0483474d4117206a0483474d420780980483474d400780980483474d411c606a0403478d401c606a0403478d411c606a0403478d4212b0980403478d4012b0980403478d4100006e0483074d4000006e0483074d4100006e0483074d423e70980483074d403e70980483074d410f50770582870dc00f50770582870dc10f50770582870dc23760a20582870dc03760a20582870dc11880770702468e001880770702468e011880770702468e023b40a20702468e003b40a20702468e012130800781c68e002130800781c68e012130800781c68e021d80a40781c68e001d80a40781c68e0119606a040347cd4019606a040347cd4119606a040347cd42081098040347cd40081098040347cd4125806a0383480d8025806a0383480d8125806a0383480d8224306a0383480d8024306a0383480d8124306a0383480d8203c0bc0383480d801a606a0403480d801a606a0403480d811a606a0403480d821aa19f0280c88d441b419f0280c88d4401406c0281888d8001406c0281888d810e305d0383880d000e305d0383880d010e305d0383880d020150320383880d000150320383880d010150320383880d020dc0a90383880d0007705d0403880d0007705d0403880d0107705d0403880d021aa19f0280c88cc41b419f0280c88cc41430810281888d001430810281888d010ea05d0383888d400ea05d0383888d410ea05d0383888d420c705d0383888d400c705d0383888d410c705d0383888d423c10ab0383888d4009705d0403888d4009705d0403888d4109705d0403888d421aa19f0280c88d041b419f0280c88d041a52020281888d4525b2020281888d4529004e0403c88d4029004e0403c88d4129004e0403c88d4227804e0403c88d4027804e0403c88d4127804e0403c88d420cc0be0403c88d4025f04e0483c88d4025f04e0483c88d4125f04e0483c88d421aa19f0280c88d041b419f0280c88d040481970301888d4520819c0301888d450ce05d0383888d400ce05d0383888d410ce05d0383888d420d505d0383888d400d505d0383888d410d505d0383888d4230c0a90383888d403f105c0483888d403f105c0483888d413f105c0483888d421aa19f0280c88d041b419f0280c88d042652020281888d4526a2020281888d450f105d0383888d400f105d0383888d410f105d0383888d420dc05d0383888d400dc05d0383888d410dc05d0383888d423f80a40383888d4005d05d0483888d4005d05d0483888d4105d05d0483888d421aa19f0280c88d041b419f0280c88d042652020281888d4526a2020281888d4525106a0383488d4025106a0383488d4125106a0383488d4226606a0383488d4026606a0383488d4126606a0383488d420d40be0383488d401b606a0403488d401b606a0403488d411b606a0403488d421aa19f0280c88d041b419f0280c88d042f30a40301888d402f30a40301888d4101d0510303488d4001d0510303488d4101d0510303488d4228206a0303488d4028206a0303488d4128206a0303488d422c70ac0303488d4019e06a0403488d4019e06a0403488d4119e06a0403488d421aa19f0280c88d041b419f0280c88d042f30a40301888d402f30a40301888d412be0760383084d402be0760383084d412be0760383084d422c50760383084d402c50760383084d412c50760383084d4226c0cc0383084d400c206b0483084d400c206b0483084d410c206b0483084d421aa19f0280c88d041b419f0280c88d040af0810301488d400af0810301488d412b70760383084d002b70760383084d012b70760383084d022b00760383084d002b00760383084d012b00760383084d022650cc0383084d002980760403084d002980760403084d012980760403084d021aa19f0280c88cc41b419f0280c88cc40af0810301488d000af0810301488d013cb0760382c80d403cb0760382c80d413cb0760382c80d423c40760382c80d403c40760382c80d413c40760382c80d423260cc0382c80d403bc0760402c80d403bc0760402c80d413bc0760402c80d421aa19f0280c88d041b419f0280c88d0438d20c0281088d453420ef0281088d451520800482478d401520800482478d411520800482478d421490800482478d401490800482478d411490800482478d4218b0d60482478d400090780482478d400090780482478d410090780482478d4208a1b70280c88d041b919f0280c88d040140720281488d400140720281488d413820760502c74d003820760502c74d013820760502c74d0238c0760502c74d0038c0760502c74d0138c0760502c74d022ea0cc0502c74d003aa0760502c74d003aa0760502c74d013aa0760502c74d0208a1b70280c88d041b919f0280c88d040052030281488d050002030281488d0509106b0583070d0009106b0583070d0109106b0583070d0209c06b0583070d0009c06b0583070d0109c06b0583070d021800cc0583070d0008606b0583070d0008606b0583070d0108606b0583070d0208a1b70280c88d041b919f0280c88d042832020281888d052882020281888d051ac04e0603c6cd401ac04e0603c6cd411ac04e0603c6cd421a004e0603c6cd401a004e0603c6cd411a004e0603c6cd421950bd0603c6cd4019404e0603c6cd4019404e0603c6cd4119404e0603c6cd420200e00300c84d0323510f0300c84d042720a40381880d402720a40381880d411fa04e0583c70d401fa04e0583c70d411fa04e0583c70d421b804e0583c70d401b804e0583c70d411b804e0583c70d423a70bd0583c70d401e404e0583c70d401e404e0583c70d411e404e0583c70d4210639f0300c84d030f63bf0300c84d030a013f0381880d452601440381880d453df05c0483878d403df05c0483878d413df05c0483878d4204205d0483878d4004205d0483878d4104205d0483878d420970ca0483878d4006605d0483878d4006605d0483878d4106605d0483878d421ef16f0280c88d041ea16f0280c88d040a90810301484d400a90810301484d4118d06a0483478d8018d06a0483478d8118d06a0483478d8215706a0483478d8015706a0483478d8115706a0483478d8208d0cb0483478d8014e06a0483478d8014e06a0483478d8114e06a0483478d821aa19f0280c88d441b419f0280c88d440a90810301484d822560dd0301484d801f4077060246cd801f4077060246cd811f4077060246cd82218077060246cd80218077060246cd81218077060246cd823a70d6060246cd80224077060246cd80224077060246cd81224077060246cd821ef16f0280c88d441ea16f0280c88d443050a40301884d803050a40301884d8123e0800681c68d8023e0800681c68d8123e0800681c68d8224b0800681c68d8024b0800681c68d8124b0800681c68d820630d80681c68d801aa0800682068d801aa0800682068d811aa0800682068d821ef16f0280c88d441ea16f0280c88d442f90a40301884d802f90a40301884d811cd0770682468cc01cd0770682468cc11cd0770682468cc21e70770682468cc01e70770682468cc11e70770682468cc238e0d60682468cc01da0770682468cc01da0770682468cc11da0770682468cc21ef16f0280c88d441ea16f0280c88d442db0a40301884d802db0a40301884d810cf0770682860c000cf0770682860c010cf0770682860c020dc0770682860c000dc0770682860c010dc0770682860c023980cc0682860c000c20770682860c000c20770682860c010c20770682860c021881b70200c88d0418c1b70200c88d043fa0870281880d003fa0870281880d011ab05d070345cb001ab05d070345cb011ab05d070345cb0217305d070345cb0017305d070345cb0117305d070345cb020640cb070345cb00000053070385cac0000053070385cac1000053070385cac20a620d0201088d050c220d0201088d052360a40301c7cc802360a40301c7cc812220800701c64d802220800701c64d812220800701c64d822300800701c64d802300800701c64d812300800701c64d823bf0d70701c64d8018e0800702064d8018e0800702064d8118e0800702064d821a519f0280c88d440b919f0280c88d442e10a40301884d802e10a40301884d8120c077060246cd8020c077060246cd8120c077060246cd82200077060246cd80200077060246cd81200077060246cd8239b0d6060246cd802fa0760682c68d802fa0760682c68d812fa0760682c68d821aa19f0280c88d441b419f0280c88d442e70a40301884d802e70a40301884d8126d06a0383488dc026d06a0383488dc126d06a0383488dc225f06a0383488dc025f06a0383488dc125f06a0383488dc23f80b20383488dc021606a0403488dc021606a0403488dc121606a0403488dc21aa19f0280c88d841b419f0280c88d840af0810301488dc225c0dd0301488dc01f606a0403488dc01f606a0403488dc11f606a0403488dc21e606a0403488dc01e606a0403488dc11e606a0403488dc21020cc0403488dc018406a0483488dc018406a0483488dc118406a0483488dc21aa19f0280c88d841b419f0280c88d840af0810301488dc225c0dd0301488dc023506a0383484d8023506a0383484d8123506a0383484d8222e06a0383484d8022e06a0383484d8122e06a0383484d821120cc0383484d801ce06a0403484d801ce06a0403484d811ce06a0403484d821a519f0280c88d440b919f0280c88d4439f2070281488d853592070281488d8520e06a0403480d8020e06a0403480d8120e06a0403480d8222606a0403480d8022606a0403480d8122606a0403480d820fa0cc0403480d8021e06a0403480d8021e06a0403480d8121e06a0403480d821aa19f0280c8cd441b419f0280c8cd442ed0a40301888d802ed0a40301888d8116906a0483478d8016906a0483478d8116906a0483478d8216006a0483478d8016006a0483478d8116006a0483478d820e90cc0483478d8013c06a0483478d8013c06a0483478d8113c06a0483478d821aa19f0280c88d441b419f0280c88d4401406c0281888d8001406c0281888d8112006a0503474d4012006a0503474d4112006a0503474d4210c06a0503474d4010c06a0503474d4110c06a0503474d420590cc0503474d4010206a0503474d4010206a0503474d4110206a0503474d421aa19f0280c88d041b419f0280c88d042150a40381c80d402150a40381c80d410d406b0483078d000d406b0483078d010d406b0483078d020b906b0483078d000b906b0483078d010b906b0483078d022440cc0483078d000dd06b0483078d000dd06b0483078d010dd06b0483078d021ef16f0280c88d041ea16f0280c88d0422a0a40301c84d0022a0a40301c84d011ae06a0403478cc01ae06a0403478cc11ae06a0403478cc21ee06a0403478cc01ee06a0403478cc11ee06a0403478cc210a0cc0403478cc01fe06a0403478cc01fe06a0403478cc11fe06a0403478cc21ef16f0280c84cc41ea16f0280c84cc42551200301c80cc40d81450301c80cc524a06a038347ccc024a06a038347ccc124a06a038347ccc227406a038347ccc027406a038347ccc127406a038347ccc227b06a038347ccc020606a0403478cc020606a0403478cc120606a0403478cc21ef16f0280c84cc41ea16f0280c84cc415a0ad0281c84cc51540b50281c84cc50ef06b0403078cc00ef06b0403078cc10ef06b0403078cc22900760403078cc02900760403078cc12900760403078cc225d0cc0403078cc00e606b0483074cc00e606b0483074cc10e606b0483074cc21ef16f0280c84c841ea16f0280c84c8429c2020281884cc52972020281884cc52530770502474d802530770502474d812530770502474d8225d0770502474d8025d0770502474d8125d0770502474d823f20d60502474d802480770582470d802480770582470d812480770582470d820ca1870280c88d440d41870280c88d442ff0a40301884d802ff0a40301884d810b5077068286cd800b5077068286cd810b5077068286cd820a8077068286cd800a8077068286cd810a8077068286cd823a50cc068286cd8008c0770702868d8008c0770702868d8108c0770702868d820931b70200c8cd8408f1b70200c8cd842ce0a40381884d802ce0a40381884d8117a077070246cd8017a077070246cd8117a077070246cd821a4077070246cd801a4077070246cd811a4077070246cd823d90d5070246cd8017f0800782068d8017f0800782068d8117f0800782068d821ef16f0280c88d841ea16f0280c88d842230a40381c88d802230a40381c88d8127b06a0383480cc127b06a0383480cc223c06a0383480cc023c06a0383480cc123c06a0383480cc21680960383480cc01680960383480cc128f05d040347ccc028f05d040347ccc128f05d040347ccc21ef16f0280c84cc41ea16f0280c84cc42fa0e10281c88cc52ec0e20281c88cc50730ba06044a4d8015c0be08838a4c801a20b907044a4cc01fe0ab06048a4cc01600ac05048a4cc00d20ac05048a4cc03580ab05048a4cc024f0aa0504ca4cc01b80a505050a4cc03140a805050a4c801040a805850a4cc008e0a506054a4cc00800a507054a4cc00f60a807050a4cc03340a80784ca4cc024f0bd0883ca4cc014b0be08838a4cc028f0ad06844a4d802fe0aa07048a4d802ef0aa07848a4d801230bb05044a4d801190bb05044a0d002e20bc0604098c801580cc0703090d0038a0cc0702890cc02840cc0702c90c802f21700181ca0f831db2a70201c98ec42f40e90281c90e452f40e90281c90d852f40e90281c90d8521e0de0400cb51000da08103810b10c00b508104010b50c10c51870280cb51043fb06b02018d8e801520d80281cd4ec03fb06b02018d8e810270de02014d8ec00dc0960201cccf4030c0b703814c0fc01660d80281cc8f402150de02810c90002790a403818b8fc00470d904014b50002790a403818b8fc11e20460280cb90822040de03010b504004f0d904014ad0000c508103810b10420090ca0280cb50801fe0de03010b104032f0a404010a90412500dd03014b10002100de02810b10400d10d903814ad0000dc0b703814a50002250d803818acfc03480e702010ad0050dc0de04010a90800fb0d903814a50400270d904014a904026c0dd02014a90403460a40400ca91000da08103810a50c00bd08104010a90c030d3130200ca91033460a40400ca90c00da08103810a50800bd08104010a908030d3130200ca90c33460a40400cad1000da08103810a90c00bd08104010ad0c130d3130200cad1033370a404010b51001c20de03810b11003370a404010b51010c51870280cb514426c0d803014c50c01090d903814bd0c01d70de03810c110022d0de0280cc11401750d80201ccd0001020d903814c108014d0d80281cc900021a0de02010cd0c01870be0201cd0fc01570d80281cccfc023d0d802818cd0001a70a001810d50801870c50201cd8ec02f00d703020d4ec02420d802818d4f0002603c01814dcf401860d802018d8ec009f0d80301cd0ec02470d802818d4ec01a709801810dcf4021e0de0400cb91000da08103810b50c00b508104010b90c122d39c0200cb91030fc0de04010bd1000f40de04010b91002640d804014bd0c01e20460280cbd14003f0d904014c10c00ec0de04010bd1002160d804018c108028307d0200cc114121e0de0400cad1000da08103810a90c00b508104010ad0c130d3130200cad10321e0de0400ca10800da081038109d0400b508104010a104230d3130200ca10832260de0380c98fc00da0810381094f8133f0a40381098f810971b70200c98fc43460a40400c90f410da0810381090f021d00de0381090f000971b70200c90f440bd0810401090e420da0810381090e421d00de0381090e400971b70200c90e840bd0810401090e421de0de0381090e401d00de0381090e400971b70200c90e841341e40180ca10843fb071020109d0401931e40180ca10840431e70180ca108409b1b70200c98fc400f0430281094f8007e20d0201098f850971b70200c98fc41f916f0280c90f4400f0430281090f013ba20c0281090f050971b70200c90f443dd20c0281090e4500f0430281090e413ba20c0281090e450971b70200c90e843dd20c0281090e4500f0430281090e423ba20c0281090e450971b70200c90e8431f02e05844a8d8031f02e05844a8d8131f02e05844a8d823dd08705844a8d803dd08705844a8d8131c06a07030b0d0031c06a07030b0d0131c06a07030b0d0222a09807030b0d0022a09807030b0d0130d05c06038acd8030d05c06038acd8130d05c06038acd822b909406038acd802b909406038acd813cc05c05038acdc03cc05c05038acdc13cc05c05038acdc233b09605038acdc033b09605038acdc10bf05d04038acdc00bf05d04038acdc10bf05d04038acdc20ae09704038acdc00ae09704038acdc109f05d04038acdc009f05d04038acdc109f05d04038acdc206f05d04038acdc006f05d04038acdc106f05d04038acdc207f05d04038acdc007f05d04038acdc107f05d04038acdc20a00ca04038acdc03af03e04840a8d803af03e04840a8d813af03e04840a8d8219908804840a8d8019908804840a8d8108303e04844a8d8008303e04844a8d8108303e04844a8d8200c03204844a8d8000c03204844a8d8100c03204844a8d4201d03104844a8d4001d03104844a8d4101d03104844a8d423390bb04844a8d4033402e05044a8d8033402e05044a8d8133402e05044a8d820d608505044a8d800d608505044a8d8111302c05848a8d8011302c05848a8d8111302c05848a8d8229f08205848a8d8029f08205848a8d8119302c05848b0d8019302c05848b0d8119302c05848b0d822c008205848b0d802c008205848b0d8119e02c05848b0d4019e02c05848b0d4119e02c05848b0d422aa08205848b0d402aa08205848b0d4104602e06044b0d4004602e06044b0d4104602e06044b0d4226208706044b0d4026208706044b0d4100f05107038b0d0000f05107038b0d0100f05107038b0d0228509407038b0d0028509407038b0d0118105d07034b0d0018105d07034b0d0118105d07034b0d0230909707034b0d0030909707034b0d013cf02d06044a8d803cf02d06044a8d813cf02d06044a8d823d108706044a8d803d108706044a8d813db02d06044acdc03db02d06044acdc13db02d06044acdc226e08706044acdc026e08706044acdc139102d06844acdc039102d06844acdc139102d06844acdc222f08706844acdc022f08706844acdc109503e04844a8d8009503e04844a8d8109503e04844a8d823e808704844a8d803e808704844a8d8123704e0503ca0d8023704e0503ca0d8123704e0503ca0d823950930503ca0d803950930503ca0d8124705d0603498d4024705d0603498d4124705d0603498d420320980603498d400320980603498d4116c0770702490dc016c0770702490dc116c0770702490dc20b60a40702490dc00b60a40702490dc119c0800702090d4019c0800702090d4119c0800702090d4216d0a40702090d4016d0a40702090d411960770702490d001960770702490d011960770702490d020c40a40702490d000c40a40702490d012f21700181ca0f833353670181ca0f833353600181ca0f833353590181ca0f8333534b0181ca0f831db2a70201c98ec43300e00201c98ec52900c50201c98ec53960c40201c98ec533e0b80201c98ec52f40e90281c90e452a01880281c90e452681890281c90e4525818a0281c90e450081910281c90e452f40e90281c90d852501920281c90d852681890281c90d8525818a0281c90d850081910281c90d852f40e90281c90d852501920281c90d852681890281c90d8525818a0281c90d850081910281c90d8502609806034a4d8002609806034a4d8123809807030a4c8023809807030a4c8100009806834a4cc000009806834a4cc12c509405838a4cc02c509405838a4cc10d209605038a4cc00d209605038a4cc10c809605038a4cc00c809605038a4cc134509605038a4cc034509605038a4cc103a08805040a4cc003a08805040a4cc132a02e05044a4cc032a02e05044a4cc132a02e05044a4c820500bb05044a4c8027a08705844a4cc027a08705844a4cc125608706044a4cc025608706044a4cc128608206848a4cc028608206848a4cc101e08807040a4cc001e08807040a4cc117008807040a4cc017008807040a4cc120c09807830a4cc020c09807830a4cc121b09807830a4cc021b09807830a4cc11e10880683ca4d001e10880683ca4d0123c08706844a4d0023c08706844a4d0122108707044a4d0022108707044a4d0104909805034a4d8004909805034a4d8109d09704838a4d0009d09704838a4d0138b0930503ca0c8038b0930503ca0c812e80980603098d002e80980603098d012ba0a20602898cc02ba0a20602898cc10f109d0602c98c800f109d0602c98c813fd0d00100ca4f833fd0cd0100ca4f830a80ca0100ca0ec30970c60100ca0ec32631ef0181098e450d520d0181098e452631ef0181098d850d520d0181098d852631ef0181098d850d520d0181098d853770ac0a04478a401490ad098447ca8027d0ad0904484ac02ce0aa0904890b001360ad0984498bc026b0aa09048a0c003460a709050a0bc00e40a809050a0bc01240a709050a0bc01120a709050a0bc023c0aa0984c9cc0038b0ac0a04498c8029d0ac0a84494cc03620ac0a84494cc02b20ac0a84494cc01fb0800482098bc01fb0800482098bc11fb0800482098bc20f83d40602490bc43d20760b02888b403d20760b02888b413d20760b02888b423720d60702494c000680810481898bc00680810481898bc10680810481898bc22533e5070208cb843e80760a82890b403e80760a82890b413e80760a82890b420700d80681c98bc00680810481898bc00680810481898bc10680810481898bc21e23c80602890b042eb03f0983c94a802eb03f0983c94a812eb03f0983c94a8228b0d70602098b802d500005860a06802d500005860a06812d500005860a068205d3c005060a068300e000070809c4c000e000070809c4c100e000070809c4c23e90bf05838949402c900006060a06802c900006060a06812c900006060a068224037805064a0643000000070849c480000000070849c481000000070849c4821c70cc06830949c03210170685ca06c03210170685ca06c13210170685ca06c217d3dc05860a068301c0000787c9c50001c0000787c9c50101c0000787c9c50214a0cc0703094a4011001a06848a080011001a06848a080111001a06848a08021740fa06058a07042ba000078609c6c02ba000078609c6c12ba000078609c6c236c0760582ca0c0036c0760582ca0c0136c0760582ca0c023243f40582ca0c0330d06a078309cc0030d06a078309cc0130d06a078309cc021df01805058a0c001df01805058a0c011df01805058a0c020200e3050589cc0402b0000707898c0002b0000707898c0102b0000707898c0232e0170585c9cc0032e0170585c9cc0132e0170585c9cc023b30df0505c98c040390000707894c000390000707894c010390000707894c022e601805054a0b802e601805054a0b812e601805054a0b821890df0505c9cc04113000060689cb40113000060689cb41113000060689cb420f806a05034a0a800f806a05034a0a810f806a05034a0a821bf3c705034a0ac40de04e0683c9ca400de04e0683c9ca410de04e0683c9ca4217c01906850a078017c01906850a078117c01906850a07820a83ba05838a0904104000078689c640104000078689c641104000078689c64228d00007860bca4028d00007860bca4128d00007860bca4229c00007860bca4029c00007860bca4129c00007860bca421c203e06840bca401c203e06840bca411c203e06840bca422de03e06840bca402de03e06840bca412de03e06840bca4206e04e0683cb8a8006e04e0683cb8a8106e04e0683cb8a8210504e0683cb8a8010504e0683cb8a8110504e0683cb8a823db01707858b8a403db01707858b8a413db01707858b8a423cc01707858b8a403cc01707858b8a413cc01707858b8a4208e0000a868b8a4008e0000a868b8a4108e0000a868b8a420a30000a868b8a400a30000a868b8a410a30000a868b8a421b100008064b8a401b100008064b8a411b100008064b8a421c100008064b8a401c100008064b8a411c100008064b8a420000a508064b8a4026707705024bca4026707705024bca4126707705024bca421560a405024bca401560a405024bca412ab00007860bca402ab00007860bca412ab00007860bca4227e00007860bca4027e00007860bca4127e00007860bca423a901709058b8a403a901709058b8a413a901709058b8a4239701709058b8a4039701709058b8a4139701709058b8a420440a509058b8a400670000786cbca400670000786cbca410670000786cbca423e90a40786cbca402ce01806054bcac02ce01806054bcac12ce01806054bcac22da01806054bcac02da01806054bcac12da01806054bcac22be01808054bca802be01808054bca812be01808054bca8235108108054bca8035108108054bca8104404e0703cbcb8004404e0703cbcb8104404e0703cbcb823530bd0703cbcb8035f06a06830bcac035f06a06830bcac135f06a06830bcac224609806830bcac024609806830bcac10450870a844bcb800450870a844bcb8114107704028bca4014107704028bca4114107704028bca423150000f85cb4b803150000f85cb4b813150000f85cb4b822f60000f85cb4b802f60000f85cb4b812f60000f85cb4b823340000f85cb4b803340000f85cb4b813340000f85cb4b820100a50f85cb4b803b208109848b4b803b208109848b4b813050170705cb8a803050170705cb8a813050170705cb8a823130170705cb8a803130170705cb8a813130170705cb8a8215505d07834b8a4015505d07834b8a4115505d07834b8a4216405d07834b8a4016405d07834b8a4116405d07834b8a423ed0000785cb8a803ed0000785cb8a813ed0000785cb8a822f60170785cb8a802f60170785cb8a812f60170785cb8a822ae01808054b8a802ae01808054b8a812ae01808054b8a8229e01808054b8a8029e01808054b8a8129e01808054b8a8207601a0a04cb4b8007601a0a04cb4b8107601a0a04cb4b822220000d860b4b802220000d860b4b812220000d860b4b821d10000d860b4b801d10000d860b4b811d10000d860b4b821ec0000d860b4b801ec0000d860b4b811ec0000d860b4b822070000d860b4b802070000d860b4b812070000d860b4b823dd0000805cb8a803dd0000805cb8a813dd0000805cb8a822ea0810805cb8a802ea0810805cb8a811810000c064b4ac01810000c064b4ac11810000c064b4ac21690000c064b4ac01690000c064b4ac11690000c064b4ac21e902d0a044b4ac01e902d0a044b4ac11e902d0a044b4ac222502d0a044b4ac022502d0a044b4ac122502d0a044b4ac227107704824b8b8027107704824b8b8127107704824b8b8226707705024bca4026707705024bca4126707705024bca421560a405024bca401560a405024bca4114107704028bca0014107704028bca0114107704028bca0221102d0a044b4b4021102d0a044b4b4121102d0a044b4b4205a0870a044b4b4005a0870a044b4b4126102d0a044b4b4026102d0a044b4b4126102d0a044b4b4206e0870a044b4b4006e0870a044b4b413b208109848b4b403b208109848b4b4124d02d0a044b4b4024d02d0a044b4b4124d02d0a044b4b4223902d0a044b4b4023902d0a044b4b4123902d0a044b4b4204701c0a048b4b4004701c0a048b4b4104701c0a048b4b420fc01a0a048b4b400fc01a0a048b4b410fc01a0a048b4b421e902d0a044b4a801e902d0a044b4a811e902d0a044b4a8222502d0a044b4a8022502d0a044b4a8122502d0a044b4a8227107704824b8b4027107704824b8b4127107704824b8b4206e03f0983ca4a4006e03f0983ca4a4106e03f0983ca4a4205b03f0983ca4a4005b03f0983ca4a4105b03f0983ca4a4221803e07840b8a0021803e07840b8a0121803e07840b8a0222703e07840b8a0022703e07840b8a0122703e07840b8a0239004e09838a0a4039004e09838a0a4139004e09838a0a4237d04e09838a0a4037d04e09838a0a4137d04e09838a0a4220803e08040b0a0020803e08040b0a0120803e08040b0a021e803e08040b0a001e803e08040b0a011e803e08040b0a0226b0bc08040b0a0026707705024b89c026707705024b89c126707705024b89c21560a405024b89c01560a405024b89c103305007838b8a8003305007838b8a8103305007838b8a8202405007838b8a8002405007838b8a8102405007838b8a8213f03e0a040a4a0013f03e0a040a4a0113f03e0a040a4a0215303e0a040a4a0015303e0a040a4a0115303e0a040a4a020280bc0a040a4a001cf03f0983ca4a401cf03f0983ca4a411cf03f0983ca4a4223c0bd0983ca4a403a304e09038a4a803a304e09038a4a813a304e09038a4a8207b04f09038a4a8007b04f09038a4a8107b04f09038a4a823ef03e0783cb8a403ef03e0783cb8a413ef03e0783cb8a421c30880783cb8a401c30880783cb8a411b905d07034bcb001b905d07034bcb011b905d07034bcb020720cb07034bcb002fa09707834b8ac02fa09707834b8ac114107704028b8a0014107704028b8a0114107704028b8a0212a0cc08030acb0012a0cc08030acb0012a0cc08030acb0012a0cc08030acb0012a0cc08030acb001fc09808030acb001fc09808030acb001fc09808030acb001fc09808030acb011fc09808030acb0119709808030b4b0019709808030b4b010af04f08038b0a800af04f08038b0a810af04f08038b0a820bf04f08038b0a800bf04f08038b0a810bf04f08038b0a8209e04f08838a8a8009e04f08838a8a8109e04f08838a8a8208d04f08838a8a8008d04f08838a8a8108d04f08838a8a822fe03f0883cb8a402fe03f0883cb8a412fe03f0883cb8a4230f03f0883cb8a4030f03f0883cb8a4130f03f0883cb8a422ec06a08830b0b002ec06a08830b0b012ec06a08830b0b022fd06a08030acb002fd06a08030acb002fd06a08030acb002fd06a08030acb012fd06a08030acb0213a0cc08030acb0012005d09034acac012005d09034acac112005d09034acac212005d09034acac21d809709034acac01d809709034acac12d102d08044b49c02d102d08044b49c12d102d08044b49c20a308608044b49c00a308608044b49c119f03e09040b0a4019f03e09040b0a4119f03e09040b0a4218d03e09040b0a4018d03e09040b0a4118d03e09040b0a4216703e09840b0a0016703e09840b0a0116703e09840b0a0217a03e09840b0a0017a03e09840b0a0117a03e09840b0a0227107704824b4ac027107704824b4ac127107704824b4ac230b0a40481478b4030b0a40481478b410b003e0484478b000b003e0484478b010b003e0484478b0208c03e0484478b001d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb401be06a040347cb4126a0a4040187cb4026a0a4040187cb4129803e0704074a8029803e0704074a8129803e0704074a8228a03e0704074a8028a03e0704074a8111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb412c40d70502078ac00e40de040107cb4010702c0604878a8010702c0604878a8110702c0604878a8222e0ab0604878a801150770502874b401150770502874b411150770502874b4227b0800581c74b0027b0800581c74b012570a40501874b801dc0d80581874b4030b0a40481478b8030b0a40481478b810b003e048447cb400b003e048447cb410b003e048447cb4208c03e048447cb401d606a040347cb801d606a040347cb811d606a040347cb821be06a040347cb821be06a040347cb8126a0a4040187cb8026a0a4040187cb8128a03e0704078ac223603e0704078ac023603e0704078ac123603e0704078ac22c70bc0704078ac011f0770482878b8011f0770482878b8111f0770482878b8220d0a40401c7cb8020d0a40401c7cb811f2080048207cb000e40de040107cb800e302c0604878ac00e302c0604878ac10e302c0604878ac20fb02c0604878ac01150770502874b801150770502874b811150770502874b8227b0800581c78b422700800581c78b402570a40501874bc01dc0d80581878b8030b0a40481478b8030b0a40481478b810b003e0484478b400b003e0484478b410b003e0484478b4208c03e0484478b4012a06a0483478b8012a06a0483478b8112a06a0483478b8206f0980483478b8006f0980483478b8126a0a4040187cb8026a0a4040187cb8128a03e0704074ac223603e0704074ac023603e0704074ac123603e0704074ac22c70bc0704074ac03960760502c74b403960760502c74b413960760502c74b420d20a40482078b400d20a40482078b411f20800482078b000e40de040107cb800fb02c0604874ac10fb02c0604874ac22930820604874ac02930820604874ac11000770582870b801000770582870b811000770582870b822700800581c74b412700800581c74b421e70a40581c70b801d10d80581874b8030b0a4048147cb8030b0a4048147cb810b003e048447cb400b003e048447cb410b003e048447cb4208c03e048447cb4012a06a048347cb8012a06a048347cb8112a06a048347cb8206f098048347cb8006f098048347cb8126a0a40401880b8026a0a40401880b8128a03e0704078ac223603e0704078ac023603e0704078ac123603e0704078ac22c70bc0704078ac03960760502c78b403960760502c78b413960760502c78b420d20a4048207cb400d20a4048207cb411f2080048207cb000e40de0401080b800fb02c0604878ac10fb02c0604878ac22930820604878ac02930820604878ac11000770582874b801000770582874b811000770582874b8227b0800581c78b422700800581c78b401e70a40581c74b801d10d80581878b802610a4048187cb802610a4048187cb810b003e048447cb800b003e048447cb810b003e048447cb8208c03e048447cb803e805c048387cb803e805c048387cb813e805c048387cb82361095048387cb80361095048387cb811fd0a40401c80b801fd0a40401c80b8128a03e0704078b0223603e0704078b0023603e0704078b0123603e0704078b022c70bc0704078b003a00760502c78b803a00760502c78b813a00760502c78b820d20a4048207cb800d20a4048207cb811f2080048207cb4002f0d90401480b800d702c0604878b000d702c0604878b010d702c0604878b022220ab0604878b003770760582c74b803770760582c74b813770760582c74b8227b0800581c78b822700800581c78b801e70a40581c74b811d10d80581878b8030b0a40481478b4030b0a40481478b410b003e0484478b000b003e0484478b010b003e0484478b0208c03e0484478b0012a06a0483478b4012a06a0483478b4112a06a0483478b4206f0980483478b4006f0980483478b4126a0a4040187cb4026a0a4040187cb4128a03e0704074a8223603e0704074a8023603e0704074a8123603e0704074a822c70bc0704074a803960760502c74b003960760502c74b013960760502c74b020d20a40482078b000d20a40482078b011f20800482078ac00e40de040107cb4003b01e0584874a8003b01e0584874a8103b01e0584874a821a902c0584874a801000770582870b401000770582870b411000770582870b4227b0800581c74b022700800581c74b001c60d80581870b401f10d80501874b4030b0a40481478b8030b0a40481478b8108c03e048447cb4108c03e048447cb42082087048447cb40082087048447cb411d606a040347cb801d606a040347cb811d606a040347cb821be06a040347cb821be06a040347cb8126a0a4040187cb8026a0a4040187cb8106004e0703c74b0006004e0703c74b0106004e0703c74b0205204e0703c74b0005204e0703c74b0111f0770482878b8011f0770482878b8111f0770482878b8220d0a40401c7cb8020d0a40401c7cb812ce0d7050207cb000e40de040107cb801a902c0584878ac11a902c0584878ac22b50820584878ac02b50820584878ac11150770502874b801150770502874b811150770502874b8227b0800581c78b422700800581c78b402570a40501874b8124d0a40501878b8030b0a40481478b4030b0a40481478b4108c03e048447cb0108c03e048447cb02082087048447cb00082087048447cb011d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4106004e0703c74ac006004e0703c74ac106004e0703c74ac205204e0703c74ac005204e0703c74ac111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411f2080048207cac00e40de040107cb4005e02e0604478ac005e02e0604478ac105e02e0604478ac20670ba0604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b4124d0a40501878b4030b0a40481478b4030b0a40481478b410b003e048447cb000b003e048447cb010b003e048447cb0208c03e048447cb001d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4106004e0703c74ac006004e0703c74ac106004e0703c74ac205204e0703c74ac005204e0703c74ac111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411f2080048207cac10e40de040107cb4005202e0604478ac005202e0604478ac105202e0604478ac230702e0604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b4124d0a40501878b4030b0a40481478b4030b0a40481478b410b003e048447cb000b003e048447cb010b003e048447cb0208c03e048447cb001d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4105204e0703c74ac23d004d0703c74ac03d004d0703c74ac13d004d0703c74ac22ab0bd0703c74ac011f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411f2080048207cac20e40de040107cb4030702e0604478ac130702e0604478ac22fb02e0604478ac02fb02e0604478ac11150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b4124d0a40501878b4130b0a40481478b4030b0a40481478b410b003e048447cb000b003e048447cb010b003e048447cb0208c03e048447cb001d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4105204e0703c74ac23d004d0703c74ac03d004d0703c74ac13d004d0703c74ac22ab0bd0703c74ac011f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411f2080048207cac202f0d9040147cb001dc02e0604478ac01dc02e0604478ac11dc02e0604478ac208b0ba0604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b4124d0a40501878b4130b0a40481478b4030b0a40481478b410b003e048447cb000b003e048447cb010b003e048447cb0208c03e048447cb001d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4105204e0703c78a823d004d0703c78a803d004d0703c78a813d004d0703c78a822ab0bd0703c78a8011f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411f2080048207cb020e40de040107cb402fb02e0604478ac23b702d0604478ac03b702d0604478ac13b702d0604478ac21150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b4124d0a40501878b4130b0a40481478b4030b0a40481478b4108c03e048447cb0108c03e048447cb02082087048447cb00082087048447cb011d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4106004e0703c78a8006004e0703c78a8106004e0703c78a8205204e0703c78a8005204e0703c78a8111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411860a4050207cb000e40de040107cb403e702d0604478ac03e702d0604478ac13e702d0604478ac21bc0b90604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b411d10d80581878b4030b0a40481478b4030b0a40481478b4108c03e048447cb0108c03e048447cb02082087048447cb00082087048447cb011d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4106004e0703c74a8006004e0703c74a8106004e0703c74a8205204e0703c74a8005204e0703c74a8111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411860a40502078b010e40de040107cb4031302e0604478ac031302e0604478ac131302e0604478ac20440bb0604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b411dc0d80581874b0030b0a40481478b4030b0a40481478b4108c03e048447cb0108c03e048447cb02082087048447cb00082087048447cb011d606a040347cb401d606a040347cb411d606a040347cb421be06a040347cb421be06a040347cb4126a0a4040187cb4026a0a4040187cb4106004e0703c74a8006004e0703c74a8106004e0703c74a8205204e0703c74a8005204e0703c74a8111f0770482878b4011f0770482878b4111f0770482878b4220d0a40401c7cb4020d0a40401c7cb411860a40502078b000e40de040107cb4031302e0604478ac031302e0604478ac131302e0604478ac20440bb0604478ac01150770502874b401150770502874b411150770502874b4227b0800581c78b022700800581c78b002570a40501874b411dc0d80581874b002cc0760383074c402cc0760383074c402cc0760383074c412960a20382c74c402960a20382c74c402960a20382c74c412960a20382c74c402960a20382c74c402960a20382c74c412960a20382c74c402960a20382c74c402960a20382c74c412cc0760383074c002cc0760383074c002cc0760383074c012cc0760383074c002cc0760383074c002cc0760383074c012cc0760383074c402cc0760383074c402cc0760383074c411680890383474c001680890383474c001680890383474c011680890383474c001680890383474c001680890383474c011680890383474c001680890383474c001680890383474c011680890383474c801680890383474c801680890383474c812cc0760383074d002cc0760383074d002cc0760383074d012cc0760383078cc22cc0760383078cc02cc0760383078cc12cc0760383074c802cc0760383074c802cc0760383074c812cc0760383074c802cc0760383074c802cc0760383074c8137502d0704474b4037502d0704474b4137502d0704474b423ee06a0683078b803ee06a0683078b813ee06a0683078b823ad06a0683078b803ad06a0683078b813ad06a0683078b8233806a0683078b8033806a0683078b8133806a0683078b823e106a0683078b803e106a0683078b813e106a0683078b821e10cc0683078b803ec04d0703c78ac03ec04d0703c78ac13ec04d0703c78ac22530980683078b802530980683078b8139e02d0684474b0039e02d0684474b0139e02d0684474b0235206a0683078b8035206a0683078b8135206a0683078b823d406a0683078b803d406a0683078b813d406a0683078b8234506a0683078b8034506a0683078b8134506a0683078b823a006a0683078b803a006a0683078b813a006a0683078b821d40cc0683078b803de04d0703c78ac03de04d0703c78ac13de04d0703c78ac22600980683078b802600980683078b8139e02d0684474b0039e02d0684474b0139e02d0684474b0226b05d060347cb4026b05d060347cb4126b05d060347cb4227705d060347cb4027705d060347cb4127705d060347cb4201d05e060347cb4001d05e060347cb4101d05e060347cb4200e05f060347cb4000e05f060347cb4100e05f060347cb4203505e060347cb4012c04e0683c7cac012c04e0683c7cac112c04e0683c7cac202905e060347cb4002905e060347cb4139e02d0684474b0039e02d0684474b0139e02d0684474b0203505e060347cb4103505e060347cb4225305d060347cb4025305d060347cb4125305d060347cb4223b05d060347cb4023b05d060347cb4123b05d060347cb4228305d060347cb4028305d060347cb4128305d060347cb4201a098060347cb4001a098060347cb4112c04e0683c7cac012c04e0683c7cac112c04e0683c7cac202905e060347cb4204d0cc060347cb4039603e0684074b4039603e0684074b4139603e0684074b4206206b060307cb8006206b060307cb8106206b060307cb8207a06b060307cb8007a06b060307cb8107a06b060307cb8202606b060307cb8002606b060307cb8102606b060307cb8203e06b060307cb8003e06b060307cb8103e06b060307cb821fa0cc060307cb8014604e0683c7cac014604e0683c7cac114604e0683c7cac22dc098060307cb802dc098060307cb8138903e0684074b4038903e0684074b4138903e0684074b4203206b060307cb4003206b060307cb4103206b060307cb4205606b060307cb4005606b060307cb4105606b060307cb4206e06b060307cb4006e06b060307cb4106e06b060307cb4204a06b060307cb4004a06b060307cb4104a06b060307cb421ee0cc060307cb4015304e0683c7ca8015304e0683c7ca8115304e0683c7ca822d0098060307cb402d0098060307cb4124403e0704074b8024403e0704074b8124403e0704074b8221505d068347cb8021505d068347cb8121505d068347cb8220805d068347cb8020805d068347cb8120805d068347cb821ee05d068347cb801ee05d068347cb811ee05d068347cb821fb05d068347cb801fb05d068347cb811fb05d068347cb820280cc068347cb8037c03e068407cac037c03e068407cac137c03e068407cac2317097068347cb80317097068347cb812c203e0704074b802c203e0704074b812c203e0704074b822f305c068387cb402f305c068387cb412f305c068387cb422b205c068387cb402b205c068387cb412b205c068387cb4229805c068387cb4029805c068387cb4129805c068387cb422cc05c068387cb402cc05c068387cb412cc05c068387cb4217a0be068387cb4036f03e068407cac036f03e068407cac136f03e068407cac22a0094068387cb402a0094068387cb4126e03e0704074b8026e03e0704074b8126e03e0704074b8217a04e0683c7cb4017a04e0683c7cb4117a04e0683c7cb420d104e0683c7cb400d104e0683c7cb410d104e0683c7cb420eb04e0683c7cb400eb04e0683c7cb410eb04e0683c7cb4211204e0683c7cb4011204e0683c7cb4111204e0683c7cb423610bd0683c7cb4036203e068407cb0036203e068407cb0136203e068407cb021430890683c7cb401430890683c7cb412b403e0704074b802b403e0704074b812b403e0704074b8211f04e0683c7cb4011f04e0683c7cb4111f04e0683c7cb4216004e0683c7cb4016004e0683c7cb4116004e0683c7cb4216d04e0683c7cb4016d04e0683c7cb4116d04e0683c7cb4218704e0683c7cb4018704e0683c7cb4118704e0683c7cb4236e0bd0683c7cb4035503e068407cb0035503e068407cb0135503e068407cb021ee0880683c7cb401ee0880683c7cb4138302d0704474bc038302d0704474bc138302d0704474bc230005c068387cb8030005c068387cb8130005c068387cb822a505c068387cb802a505c068387cb812a505c068387cb822d905c068387cb802d905c068387cb812d905c068387cb822e605c068387cb802e605c068387cb812e605c068387cb8216d0be068387cb8013904e0683c7cb4013904e0683c7cb4113904e0683c7cb42293094068387cb80293094068387cb8136702d0704474c0036702d0704474c0136702d0704474c021e105d068347cbc01e105d068347cbc11e105d068347cbc21d405d068347cbc01d405d068347cbc11d405d068347cbc222205d068347cbc022205d068347cbc122205d068347cbc21c705d068347cbc01c705d068347cbc11c705d068347cbc20800cb068347cbc02bf05c068387cb802bf05c068387cb812bf05c068387cb8200d098068347cbc000d098068347cbc134b02d0704478bc034b02d0704478bc134b02d0704478bc22ed0760682c7cc002ed0760682c7cc012ed0760682c7cc0232e0760682c7cc0032e0760682c7cc0132e0760682c7cc0233b0760682c7cc0033b0760682c7cc0133b0760682c7cc022d30760682c7cc002d30760682c7cc012d30760682c7cc022e00760682c7cc0019d05d070347cb8019d05d070347cb8119d05d070347cb823070760682c7cc003070760682c7cc012e102d0704474b802e102d0704474b812e102d0704474b822e00760682c78bc12e00760682c78bc23140760682c78bc03140760682c78bc13140760682c78bc23210760682c78bc03210760682c78bc13210760682c78bc23480760682c78bc03480760682c78bc13480760682c78bc20e409d0682c78bc00e409d0682c78bc132a06a0703078b8032a06a0703078b8132a06a0703078b823070760682c78bc22920cc0682c78bc027c03e0704074bc027c03e0704074bc127c03e0704074bc23c706a0683078bc03c706a0683078bc13c706a0683078bc23ba06a0683078bc03ba06a0683078bc13ba06a0683078bc238606a0683078bc038606a0683078bc138606a0683078bc237906a0683078bc037906a0683078bc137906a0683078bc21730cc0683078bc018f05d0703478b8018f05d0703478b8118f05d0703478b8226d0980683078bc026d0980683078bc124d0cc04030b8a001d002e06044a0ac01d002e06044a0ac11d002e06044a0ac23c302d06044a0ac033e02e05044a0ac033e02e05044a0ac133e02e05044a0ac205a0bb05044a0ac031905c06038a0b8031905c06038a0b8131905c06038a0b8235505c06038a0b802280cc05030a0b802280cc05030a0b8024d0cc04030b8a003c302d06044a0ac13c302d06044a0ac23ab02d06044a0ac03ab02d06044a0ac106b01b05048a0ac006b01b05048a0ac106b01b05048a0ac23a30ab05048a0ac035505c06038a0b8135505c06038a0b8233d05c06038a0b8033d05c06038a0b810df0cc05034a0b800df0cc05034a0b8024d0cc04030bca403ab02d06044a4ac22ef02e06044a4ac02ef02e06044a4ac12ef02e06044a4ac21be02c05048a0ac01be02c05048a0ac11be02c05048a0ac23b70ab05048a0ac036105c06038a4b8036105c06038a4b8136105c06038a4b8227b0be06038a4b8005d09804834a4b8005d09804834a4b8024d0cc04030b8a003c302d06044a4ac13c302d06044a4ac23ab02d06044a4ac03ab02d06044a4ac133e02e05044a0b0033e02e05044a0b0133e02e05044a0b0205a0bb05044a0b0035505c06038a4b8135505c06038a4b8233d05c06038a4b8033d05c06038a4b8205d09804834a4b8105d09804834a4b8124d0cc04030bca401d002e06044a4ac01d002e06044a4ac11b00b906044a4ac03c302d06044a4ac033e02e05044a4ac033e02e05044a4ac133e02e05044a4ac205a0bb05044a4ac025f05d06034a4b8025f05d06034a4b8125f05d06034a4b820350cc06034a4b801950cc05030a4b801950cc05030a4b8024d0cc04030bcb802d003e07040a0b402d003e07040a0b412d003e07040a0b422a603e07040a0b401ce04e0583ca0b801ce04e0583ca0b811ce04e0583ca0b8237b0bd0583ca0b8022f05d060349cc0022f05d060349cc0122f05d060349cc020410cc060349cc002e00cc0502ca0c002e00cc0502ca0c0024d0cc04030bcb802a603e07040a0bc12a603e07040a0bc202c08807040a0bc002c08807040a0bc138505c05838a0bc038505c05838a0bc138505c05838a0bc236b09405838a0bc036d05c060389cc0036d05c060389cc0136d05c060389cc0237905c060389cc002d60cc0502ca0c002d60cc0502ca0c0024d0cc04030bcb8026003e07040a0bc026003e07040a0bc126003e07040a0bc225203e07040a0bc038505c05838a0bc038505c05838a0bc136b09405838a0bc136b09405838a0bc037905c060389cc0137905c060389cc022ad094060389cc002ad094060389cc012c10cc0582c9cc002c10cc0582c9cc0024d0cc04030bcb4025203e07040a0b8125203e07040a0b8217e08807040a0b8017e08807040a0b811ef04e0583ca0b801ef04e0583ca0b811ef04e0583ca0b823860bd0583ca0b8032505c060389cc0032505c060389cc0132505c060389cc0234905c060389cc0010809d0502ca0c0010809d0502ca0c0024d0cc04030bcb4025203e07040a0b8125203e07040a0b8217e08807040a0b8017e08807040a0b811ef04e0583ca0b801ef04e0583ca0b811ef04e0583ca0b823860bd0583ca0b8032505c060389cc0032505c060389cc0132505c060389cc0234905c060389cc0010809d0502ca0c0010809d0502ca0c0024d0cc04030bcb4034803e06840a0b8034803e06840a0b8134803e06840a0b822d50bc06840a0b8021904e0503ca0b8021904e0503ca0b8121904e0503ca0b823bc0bd0503ca0b8032505c060389cc0034905c060389cc0134905c060389cc022870be060389cc0010809d0502ca0c0110809d0502ca0c0124d0cc04030bcb403a303e06040a0b803a303e06040a0b813a303e06040a0b822ee0bc06040a0b803c205c05038a0bc03c205c05038a0bc13c205c05038a0bc23f40bf05038a0bc001a06b060309cc4001a06b060309cc4101a06b060309cc422120cc060309cc403b20cc058289cc403b20cc058289cc4024d0cc04030bcb403f302d060449cb803f302d060449cb813f302d060449cb8207f0ba060449cb8039005c05038a0bc039005c05038a0bc139005c05038a0bc239a05c05038a0bc03550760602c9cc403550760602c9cc413550760602c9cc4229f0cc0602c9cc402b60cc0582c9cc402b60cc0582c9cc4024d0cc04030bcb403f302d060449cb803f302d060449cb813f302d060449cb8207f0ba060449cb8039a05c05038a0bc139a05c05038a0bc233109605038a0bc033109605038a0bc13550760602c9cc403550760602c9cc413550760602c9cc4229f0cc0602c9cc402cc0cc0502ca0c402cc0cc0502ca0c4024d0cc04030bcb403f302d060449cb803f302d060449cb813f302d060449cb8207f0ba060449cb8039a05c05038a0bc139a05c05038a0bc233109605038a0bc033109605038a0bc13550760602c9cc403550760602c9cc413550760602c9cc4229f0cc0602c9cc402f40cc0502ca0c402f40cc0502ca0c402840a20502c98b801510980a83084bc020f04e0503c98b4027a0980503098b401c30970a83484b8020f04e0503c98b0127a098050309cb801c30970a83488bc120f04e0503ca0b422840a20502c9cbc01a10ca0a8348cbc022d04e0503ca0b002840a20502ca0bc01510980a8308cbc137609405038a0b402840a20502c98bc03340cc0a82888c003760940503898b802840a20502c9cc013340d60a82488c4025504e0503c9cbc02840a20502c9cc013340d60a82488c4025504e0503c9cbc12840a20502c9cbc13340cc0a82888c0025504e0503c9cb822840a20502c98bc03340cc0a82888c0025504e0503c9cb822840a20502c98c003c40ce0a82488c403b20bd0503c9cb802840a20502c9cc003490d60a82488c40376094050389cb812840a20502c9cbc03e80cd0a82488c0022d04e0503ca0b012840a20502c98bc03e80cd0a82484c0022d04e0503c9cb022840a20502c98bc03e80cd0a82484c0022d04e0503c9cb0227a0980503098b811510980a83084bc03050bc0504098a803c104d0783c687803c104d0783c687813c104d0783c687820000440783c687800000440783c687810000440783c687820150420783c687800150420783c687810150420783c687820350410783c687800350410783c687810350410783c687820260410783c687800260410783c687810260410783c6878232003f0783c6878032003f0783c6878132003f0783c687821d20880783c687801d20880783c687813213b80783c707842300a40301c686c02300a40301c686c13c20a203824686403c20a203824686413f909803030686803f909803030686811c20ac030346c6001c20ac030346c6000771f4030206c6c52781f4030206c6c50771f4030206c6c503f0810301c686c003f0810301c686c103f0810301c686c239d0a2030289c6c039d0a2030289c6c112309b038309c64012309b038309c6410b6097030309c6800b6097030309c6812cb082038349c6002cb082038349c60113107704028986c013107704028986c113107704028986c200007a04024986c000007a04024986c100007a04024986c23fc0030181c746403fc0030181c746413910a2030286c5803910a2030286c58112807704828685801280770482868581128077048286858233105c060386848033105c060386848133105c06038684821b103e08840504001b103e08840504011b103e08840504023fa05b02824745c03fa05b02824745c101d01f068486c60001d01f068486c60101d01f068486c6021d70ab068486c60027a077048246c5c027a077048246c5c127a077048246c5c201e0d7048246c5c010b077050286c58010b077050286c58110b077050286c5823ca09805830504c03ca09805830504c11c30a403020746401c30a403020746413fa08d02818786c03fa08d02818786c11980a4038206c6401980a4038206c64100f04a0201c9064000f04a0201c906413890a204028905803890a2040289058106d077080289058006d077080289058106d077080289058233e04e0a8388448033e04e0a8388448133e04e0a8388448212b03e0a0407440012b03e0a0407440112b03e0a040744021660a3038248c5c01660a3038248c5c100e020078488860000e020078488860100e02007848886022e00aa078488860014907709024885c014907709024885c114907709024885c20c10cd09024885c00140770a8288c5800140770a8288c5810140770a8288c5823fa04d02838844803fa04d02838844812c60a2040286c5c02c60a2040286c5c12f0018028245c8002f0018028245c8012f0018028245c8012f0018028245c8022f0018028245c8001ad0d7028245c80000b06c048306080000b06c048306080100b06c048306080100b06c048306080000b06c048306080200b06c04830608003ea017070584c7803ea017070584c7813ea017070584c782319081070584c780319081070584c7810000210604858740000021060485874100002106048587420ef02c06048587400ef02c06048587410ef02c06048587420000210604858740189019050505874018901905050587411890190505058742361081050505874036108105050587413390170485c586003390170485c586013390170485c586023420170485c586003420170485c586013420170485c586023cc0000885c487c03cc0000885c487c13cc0000885c487c23bb0000885c487c03bb0000885c487c13bb0000885c487c22ae02d09044507402ae02d09044507412ae02d090445074229c02d090445074029c02d090445074129c02d090445074227502d0a0444878027502d0a0444878127502d0a044487821fd02d0a044487801fd02d0a044487811fd02d0a0444878204508108818587c004508108818587c104508108818587c223c0a408818587c023c0a408818587c11cf08006020447c01cf08006020447c11cf08006020447c21db08006020447c01db08006020447c11db08006020447c22560000a0604c7c02560000a0604c7c12560000a0604c7c226a0000a0604c7c026a0000a0604c7c126a0000a0604c7c20ac01a0604c5c7800ac01a0604c5c7810ac01a0604c5c78236b0810604c5c78036b0810604c5c7810a705d04038948400a705d04038948410a705d04038948421ab09704038948401ab09704038948410a705d04038948401380000c864705401380000c864705411380000c8647054211f0000c8647054011f0000c8647054111f0000c8647054214506a048349c80014506a048349c80114506a048349c80217b06a048349c80017b06a048349c80117b06a048349c8020cb02c06048907000cb02c06048907010cb02c06048907023c508106048907003c5081060489070105b01c080487488005b01c080487488105b01c080487488202b01e080487488002b01e080487488102b01e080487488228004e0403c907c028004e0403c907c128004e0403c907c23c20930403c907c03c20930403c907c10a703e04844908000a703e04844908010a703e04844908023300bb04844908001b402c05048946c01b402c05048946c11b402c05048946c216a0ac05048946c026804e0403c947c026804e0403c947c126804e0403c947c21fb0880403c947c01fb0880403c947c13b805c05038947c03b805c05038947c13b805c05038947c23a405c05038947c03a405c05038947c13a405c05038947c20f200009068845400f200009068845410f200009068845420e000009068845400e000009068845410e0000090688454209d01a0784c8470009d01a0784c8470109d01a0784c847021bf0190784c847001bf0190784c847011bf0190784c847020cc0000a068648000cc0000a068648010cc0000a068648020b80000a068648000b80000a068648010b80000a068648020b903e04044688c00b903e04044688c10b903e04044688c20100bc04044688c03920000a85c608403920000a85c608413920000a85c6084237d0000a85c6084037d0000a85c6084137d0000a85c6084235902d070446c80035902d070446c80135902d070446c802213087070446c800213087070446c80100003304844947c000003304844947c100003304844947c23270bb04844947c00e601a0b048648400e601a0b048648410e601a0b0486484239c0810b0486484039c0810b0486484128a0180a0547460028a0180a0547460128a0180a0547460233d0810a0547460033d0810a054746013530000a85c745803530000a85c745813530000a85c745823680000a85c745803680000a85c745813680000a85c7458202f0a50a85c745801600a4020209c80022304e0503c9878022304e0503c9878122304e0503c987823810930503c987803810930503c987812f00210201c988c02f00210201c988c12f00210201c988c21e203f0201c988c01e203f0201c988c11e203f0201c988c21c802c04048908001c802c04048908011c802c040489080207302d040489080007302d040489080107302d04048908020c201a0484c908800c201a0484c908810c201a0484c908822590aa0484c908800b801a0504c907800b801a0504c907810b801a0504c907823770810504c907803770810504c9078107b02d040489480007b02d040489480107b02d04048948020b508504048948000b508504048948013f801703844948403f801703844948413f8017038449484203e030038449484003e030038449484103e03003844948420c103e04044948400c103e04044948410c103e04044948420c903e04044948400c903e04044948410c903e040449484213907704028947c013907704028947c013907704028947c113907704028947c23810a204028947c03810a204028947c108108103018949400810810301894941081081030189494108108103018949420810810301894940087081030189494008108103018949400870810301894941081081030189494008708103018949422d50a403018949402d50a4030189494106b02d040489888006b02d040489888106b02d04048988821740ac040489888039306a068309088039306a068309088139306a068309088236c06a068309088036c06a068309088136c06a068309088209e03e048449480009e03e048449480109e03e04844948023f108704844948003f108704844948010b402d0b044504c00b402d0b044504c10b402d0b044504c217a02d0b044504c017a02d0b044504c117a02d0b044504c20b402d0b044504c00b402d0b044504c108d0860b044504c008d0860b044504c117a02d0b044504c117a02d0b044504c22480180b054505802480180b054505812480180b054505822740180b054505802740180b054505812740180b0545058236804e0a8385458036804e0a8385458136804e0a8385458235304e0a8385458035304e0a8385458135304e0a8385458213205d090346050013205d090346050113205d09034605021ea09709034605001ea09709034605012ca04e0c8384c5002ca04e0c8384c5012ca04e0c8384c5022b104e0c8384c5002b104e0c8384c5012b104e0c8384c5022fc04e0b0386c4c02fc04e0b0386c4c12fc04e0b0386c4c231204e0b0386c4c031204e0b0386c4c131204e0b0386c4c21510000c064485401510000c064485411510000c064485421990000c064485401990000c064485411990000c0644854216402d0b0444c58016402d0b0444c58116402d0b0444c58016402d0b0444c58218c0ac0b0444c5801930190b04c505401930190b04c505411930190b04c505421a90190b04c505401a90190b04c505411a90190b04c5054231e0a80b04c5054032804e0b0385058032804e0b0385058132804e0b038505821350be0b0385058032804e0b0385058007d07707828685c007d07707828685c107d07707828685c229d0a207828685c029d0a207828685c107d07707828685c00cb01a0d848544c00cb01a0d848544c10cb01a0d848544c23810810d848544c03810810d848544c129e06a0a8305458029e06a0a8305458129e06a0a8305458216f0980a8305458016f0980a8305458128806a0b0305c58028806a0b0305c58128806a0b0305c58213b0980b0305c58013b0980b0305c5813600a3048205c6803600a3048205c6810e803e0b840505400e803e0b840505410e803e0b840505420d103e0b840505400d103e0b840505410d103e0b840505423c103e0c03c4c5803c103e0c03c4c5813c103e0c03c4c5821ab0880c03c4c5801ab0880c03c4c5813c103e0c03c4c5802c706a0a030585802c706a0a030585812c706a0a030585822b306a0a030585802b306a0a030585812b306a0a0305858229804e0c8384858029804e0c8384858129804e0c838485822e304e0c838485802e304e0c838485812e304e0c8384858213602d0b8445054013602d0b8445054113602d0b8445054214d02d0b8445054014d02d0b8445054114d02d0b844505421380190c850505001380190c850505011380190c8505050211f0190c8505050011f0190c8505050111f0190c8505050209a0a50c8505050034b0170d0584c48034b0170d0584c48134b0170d0584c4823650170d0584c4803650170d0584c4813650170d0584c48210c05d0a0345854010c05d0a0345854110c05d0a034585420f805d0a034585400f805d0a034585410f805d0a0345854208302d0c8445858008302d0c8445858108302d0c844585820bd0850c844585800bd0850c844585810ff03e0b0404c4c00ff03e0b0404c4c10ff03e0b0404c4c211503e0b0404c4c011503e0b0404c4c111503e0b0404c4c204503f0b03c4c50004503f0b03c4c50104503f0b03c4c5023d903e0b03c4c5003d903e0b03c4c5013d903e0b03c4c50211e02d0c0444454011e02d0c0444454111e02d0c0444454209c02d0c0444454009c02d0c0444454109c02d0c0444454221a0180b8544854021a0180b8544854121a0180b854485422310180b854485402310180b854485412310180b8544854225e0180b0544c58025e0180b0544c58125e0180b0544c5823270810b0544c5803270810b0544c58105c07708828645c005c07708828645c105c07708828645c204b07708828645c004b07708828645c104b07708828645c235a0cc08828645c01b708006020747001b708006020747011b708006020747021c308006020747001c308006020747011c308006020747021b708006020747001b708006020747012970d706020747001c308006020747001c308006020747011c3080060207470224b04e0503c8870024b04e0503c8870124b04e0503c8870220504e0503c8870020504e0503c8870120504e0503c8870223007706024786c023007706024786c123007706024786c223c07706024786c023c07706024786c123c07706024786c200f0470280c8874000f0470280c8874100f0470280c887422f409e0280c887402f409e0280c88741079081040187c700079081040187c701079081040187c702071081040187c700071081040187c701071081040187c7020100810401c7c7400100810401c7c7410100810401c7c7420200810401c7c7400200810401c7c7410200810401c7c7422580800601c707402580800601c707412580800601c707422640800601c707402640800601c707412640800601c7074207d0d80601c707401d1018070587c6801d1018070587c6811d1018070587c68230b081070587c68030b081070587c6812eb000058608c5c02eb000058608c5c12eb000058608c5c22e0000058608c5c02e0000058608c5c12e0000058608c5c20380810381c806c00380810381c806c10380810381c806c221c0a40381c806c021c0a40381c806c13f60800401c7c7003f60800401c7c7013f60800401c7c7020300810401c7c7000300810401c7c7010300810401c7c7023db0800481c787003db0800481c787013db0800481c787023d20800481c787003d20800481c787013d20800481c787020080810401c807400080810401c807400080810401c807410080810401c807422050a40401c807402050a40401c807410180810401c7c7400180810401c7c7410180810401c7c7420280810401c7c7400280810401c7c7410280810401c7c74202a030050448060002a030050448060102a030050448060203403005044806000340300504480601034030050448060210f0bb05044806003e40800481c806c03e40800481c806c13e40800481c806c23ed0800481c806c03ed0800481c806c13ed0800481c806c21c304e0583c886801c304e0583c886801c304e0583c886811c304e0583c886823910bd0583c88680056081048187c700056081048187c701056081048187c70205f081048187c70005f081048187c70105f081048187c70216208003824787001620800382478701162080038247870215b080038247870015b080038247870115b08003824787023fc0000180c887403fc0000180c887413fc0000180c887423fc0000180c887403fc0000180c887403fc00a0180c887403fc00a0180c8874103d39c0180c7cb033a30a208824649403a30a2088246494115b077088246494015b077088246494115b077088246494203d39c0180c7cb031bc1cc0180c7cb0403a077088286494003a077088286494103a077088286494203a077088286494003a07708828649413490cc088286494017008007820689801700800782068981170080078206898202907708828649400290770882864941029077088286494236b0cc08828649402db06a08830649402db06a08830649412db06a08830649421190cc088306494014405d088346494014405d088346494114405d08834649421b60ca088346494032f03f0783c6898032f03f0783c6898132f03f0783c6898229c0bd0783c689803bb01708858649403bb01708858649413bb01708858649420560a508858649402c002d08844649402c002d08844649412c002d088446494209a0b9088446494028902d098445c94028902d098445c94128902d098445c9420b30ad098445c9400430de05810689c031e0a4048106c9c031e0a4048106c9c031e0a4048106c9c00430de05810689c00430de05810689c03140a4050106c9c03140a4050106c9c03140a4050106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c125b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c00590de048106c9c00590de048106c9c00590de048106c9c00590de048106c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c025b0d8048146c9c031e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c131e0a4048106c9c135e0d60a024608801840980983060740184098098306074118409809830607411840980983060741184098098306074018409809830607411840980983060741184098098306074134803d01004ac7c30640c60100cac78302814401008ac78310f0b701010ac7832670dd02814a47c01900a404020947401900a404020947413fc13a01810a48840b90d703824a08800b620d02010ac745169080038249c740169080038249c741169080038249c7421a60d7038249c740000061058348c740000061058348c741000061058348c7420d40cc058348c74031820702814a48452fa08108858985c02fa08108858985c10470001007064500047000100706450104700010070645023c90a410070645000760000c0687c3c00760000c0687c3c10760000c0687c3c21130810c0687c3c01130810c0687c3c12d30810b85c805802d30810b85c805810fb0810c070685000fb0810c0706850123d0000c8606458023d0000c8606458123d0000c860645821510190b850786001510190b850786011510190b8507860237f0170c058745c037f0170c058745c137f0170c058745c21f803e08040885801f803e08040885811f803e0804088582000088080408858000008808040885811680190a050804401680190a050804411680190a0508044208a01a0984c8048008a01a0984c8048108a01a0984c80482010088070407854001008807040785413a70000a05c745003a70000a05c745013a70000a05c7450212b0810c05c6c50012b0810c05c6c5010e10810d070645000e10810d070645012040870784474500204087078447450118c088068407854018c08806840785411e90180c8546c5c01e90180c8546c5c11e90180c8546c5c20670a50c8546c5c02020180c054605002020180c054605012020180c05460502214204050046c98319d34c0600c6894330d3750600c689433193750600c6894302539c0600c689431fc09703804709830c00df0480c6c9442de2b90600c689032eb20207014648c530820c05010708851790d8068186c8400640c00100c8c9033e20c00302c888c000c02f0080c709033180bc0202c6c8c03050d70781c688401d83dc040247c7841d03dc040246c78408d08107014648c008d08107014648c108d08107014648c217220206018688453ef3b607020648032fc3ba06014688832f60d70781c648403230d70701c648403230d70701c6484000c110020089c9042f002c02008a08c00d220d018109c8c5010110020089c904010110020089c904010110020089c9043fb07102010a08813fa093028109c8803fa093028109c8811a50a5098506c18020a0ab06048742001700d80281c904401480d80281c904403970a203028904003363f40382c6c3430dc0bc09040682801c90ab07048742803970a203028904010d010f03818784450d010f03818784453b30d606024844002550cc040307828021e0cc050307c2801e60bd0e83c382c03170cc0402c803001c80bd0f03c342c01f10ab06848741c0249087068447420024908706844742012200bd0e03c3c2c003e098058347c2c003e098058347c2c12b90bd0683c702001303c803830903440ff0bc078406c1c02030bd0e83c382c00c02620784c000040183460380c104432de2300a89000003306202068141084534d3b80703c50f8423127a1a134000033a53941a05400f8434d3b80703c8d7c41ef205289d4000032403982888c016831c015a0c850adf841ca0e236a780000324d33f368bc01e0326b3bb11870eab030c30e2432cc247c3147243430dc269831d63c806028000041630df0400c082042de2980b0840000312a20c06010147851cf2e2138f0000033e13d30c82424dc40f83b90703c654843eb2550507868e031922e21e8f000003020317180c824e030801720c85079d041192390608c956033a12732d168000030202d7291000d6030003be11870fe5c33ba3be13070fe5c33eb22d090a11de03327193469f4340c32652bc4692435e0300028d4692835dc33513da17868de6033223da17868de6031041ea098a919dc33272103d1c8602833852cd3d12465e0308d28d3d12865dc31bd31e1a0b4001c313a3a21a07c005833113dd08820000040fa20208818000c524023f178c4000032993f117838009030722e2610f4000030563db4e064000031f318a0585000004149193532c0000031490e240ac4940031f727a1d148000030620df1d00c0140310f3f50f02800003329202048140000512a0a504808001043270df43ad0207c30002238c9a8000030c00d90381c000053613e504020000040f324a04840000043401ce10060000040cd3f40a82c000031373d2058280000402b0e24c2e80000330939f3e0803a6c33f53910502c000032a53e505020000042f03d70500c001833763161a0d00000313a3a21a07c005830620df19060080043852a90d0840000314b1fa0c01c046c5000349248b4000031f72cc30120000031e83dd2c820150442401cf10060000042601cf10060000040400fa05050000040dd3d4070240000411c20c07010001852a93b80a83c000042700df377741c20309c3f40e02c000033e50df0c85c0000409a3670d060000041fb20108018000052462c708014000833fb273020380000301411002008003440883d40a824000040803f40e02c000030233c00d06c000032312c70a8140c5c303c208028140000526321304094000033401e610060000043601e6100600000436f3f407828000032443951004c0000404137b14890000033a337614808008c304b0e20b0540000438637e178580000428d3dd16820043c41063c8048300000405d3d80480c0028316b3d2048280000405d3d80480c002031180df25860000041a920c24810045451191ea0713c000032de140029102c50314639524850040040fb39525850000443d422a0b904000033a12100c1040410310d34f258a4000032b837e2485c085843ec1de0713c00003018140029100c54304739f108840000328933c1080c008031cf39f108840000328933c1080c008031f039f108840000328933c1080c008032da34b1088c0000328933c1080c0088321139f108840000328933c1080c008030742b905018000043133d3038280000437230d09024000031ad1fc08814000c53813d2048280000431b20c04810001c51c93d2048280000431b20c04810001c51f53ed04020000843253750380c042032053ed04020040843253750380c042031300ed0381c080c514b10f0380c0420439f0b7018140c1440a3110018080c2440e41fb0481c000052863e505820000041273d4058240000412a0a505808001031613d205028000040542d105018001043813c805828000040c038e0581c000c405031f310c0000032523d404824000043b03d504814001031bd34b340b4000031573d205028000040342e905018001040bb3bf10070000031c01ff100600010438d3bf1186c0000330137e1185c001041401ba0c84c000043e63c70c830001043e03be0d870000030603c80b830085040db3bf0d870000030603c80b8300850419d31e100b80000332019f0f85c086043e02160f8600000428b3b80f03c082842a021610060000041ed3f20f83408303313202068140000516b0df0680c000c33a53a915040000840202da0a048000042030fa0b854040041a01720b850000040733aa0b0400000400012a0c854000043d63b90a038000042001720a850000041072cf0884c000030e23f40782c000032b83c705834000042643951004c000040233f41002c002432f91d802824000042ee27503050000033d40df112580000325f2e702844000031481bb0281c000051bd0a50281c000052f91cf02824000042de27703050000031b20df0700c000033dc2270700c0000337e2eb02844000032ee1c7030a00400335a202040140094525b1a2030cc0400335a2020401400c052ee189030f80400335a2020401400ec53ed3dc03824000040c90df0380c001c43e63dc03824000040c90df0380c001c43df3dc03824000040c90df0380c001c43d83dc03824000040c90df0380c001c43d13dc03824000040c90df0380c001c43ca3dc03824000040c90df0380c001c43c33dc03824000040c90df0380c001c43bc3dc03824000040c90df0380c001c43b53dc03824000040c90df0380c001c43ae3dc03824000040c90df0380c001c43a73dc03824000040c90df0380c001c43ec1d503824000030c90df0380c001c43993dc03824000040c90df0380c001c43923dc03824000040c90df0380c001c438b3dc03824000040c90df0380c001c43843dc03824000040c90df0380c001c437d3dc03824000040c90df0380c001c43763dc03824000040c90df0380c001c436f3dc03824000040c90df0380c001c43683dc03824000040c90df0380c001c43613dc03824000040c90df0380c001c435a3dc03824000040c90df0380c001c43533dc03824000040c90df0380c001c41e43b8068400000409c0df0580c043831d73b8068400000409c0df0580c043831ca3b8068400000409c0df0580c0438335e3a7068400000409c0df0580c0438326137e2b85c000c41180df2980c085c31cb37e4b05c000c40f32104900c085c50fb37e6805c000c420620f6600c085c52993d72b868000031180df2980c085c30f63c24b068000030f32104900c085c51c93d8680680000320620f6600c085c532f3e504820000041103d406024000041890df0500c0418300019c7c21c0000311927a6f1a00000316a3c806828000042323b7068100018315d3c806828000042f9202068140014513431e348c40000333934a350b80000316e3a211078000033720df10860041843663bf1386c000033d939413054041842f23030d84c0000320c3f20d034001833443a7068440000411324206014043443513a7068440000409325a06014003440b231f388bc000032700df38860006443272822f130000031342e22f0f00048315834f298a0000030683bf29870003833aa3161c8cc000032323bb1c874006033393161e8d0000032fc3bf1e86c006c33aa3491d8b4000032c43951d8480070438539f1a8800000333c3c71a830005443cd37614098000031d43951404c0054422534b130b4000033bf0de13060005c43e53370c87c0000312d3f50c828005c303d3da0c8680000312d3f50c828004832a01ff0b05c000042c83f10b038002c33e53560c87c000031463f50c828005c30003da0c868000031463f50c828004832c01e70b05c000041ab3b90b038002c409220d020100000501411002008000c40742aa0503c000042af3e505020002040542c20483c000042af3e505020002041653b90403c040042af3e5050200020416d3b90403c040042af3e505020002041753b90403c040042af3e505020002040981d20383c080042af3e505020002042ee2890383c080032af3e505020002043833ba068380000422239c0580c0430317d3c7068380000422239c0580c043030db39d110880000307d1f50d01c0c7053cd39c11088000031651f50d01c147050b43670c060000042fb3670881c044c30cc37e0c060000040001950881c184c311010d0381c00005194110018080010426010d0381c000050181e40180c100c43181100381c040050970c30100c000831f01130381c000050640c30100c18083332202040140000519411001808000c434a202040140000519711001808140c42893052b8dc0000306a39e2b884005831f63142b8dc0000306a39e2b8840058329139821888000030b73a721844004842d43981a888280032c43a71b044284843803da13864000032413b81303c042843a73da13864000032413b81303c042840773c80a830040043d426b0b020000831af3bf0d070000030803670d060000c41ca1801204c0000304e3aa12840000842913ba2a074000033270df25860100c41cf3782989c0000306a37b2a08c000830162b904018000042ea2b90400c001033e01fe0f8600004403d3c010068000032ba33c100a80400318c3da10864004830fd3a210080000030193db10064001c31e027710060000041b439510050001443e01e60f860040040f23dc10064000033e01ce0f8600404418c3c0100680000330d34b100a8000033ce3da10864004833e01b60f860000041123dc100640000324028e10060000042843951004c001843e01860f860040042a028e10060000043e019e0f860000042e028e100600000430028e10060000042a43951004c0018434028e10060000042601cf100600000410f3c8048300000405d3d80480c002832d53e5048200000405d3d80480c0018311d3a20e880000033803f327830000033903c715830000041743a915840000040fa3a927840000041d43a827840000042ee3c7270300000419f3a915840000042233a827840000041493a915840000042723a827840000040002aa0b048000842263f20b034002430802920b048000842263f20b034002430202920b048000842263f20b034002433401870f85c000040433f40f82c003832043c709834000040d620209818002051f13c709834000042481ff09818002452f60de0c864040442312c70a8140c5831643dc0c864040432312c70a8140c58314b3dc0c864040432312c70a8140c5831323dc0c864040432312c70a8140c5831ad3db0c864040432312c70a8140c5832e03162c8d40000300037620898000033393bf1686c0000315a202060180000514a3c809828000043852820d09c000031cd243100c40000300031f0f89c182432141d50f8bc180431ef1d5128c0000031af3a20b874001433a12510d888000033e33160d084000432e53ba0b8740014332d36704044000033722ce05080000030f81ea060d4000031c93c026060000032413dd260200044400039519054000040ff3fd19008005043ef39c070680000319e0e007008006432631ec0509c000032f03da190680000312331f08070000033b41de0509c000030be37b0e88c0000304027a0e84800484257305190e8000032ff3951904800a443e03360e8600000416e3c00e808005c30c139e0c07c000030c02020b0180468536637e1005c000041313fd100080058434637e1005c000041313fd10008005840db37b16088000031ab34c04070000031ac3d405024004c436d3a60c044000043852ca0c00c005033b921b02848000033b923f028480000336d3950c044000043852ca0c00c0050330334b04070000031ac3d405024004c424d31404070000031ac3d405024004c43b922d02848000030cb3960c044000043852ca0c00c005033f537504070000031ac3d405024004c42fa3a70c044000043852ca0c00c005032fb34b04070000031ac3d405024004c40602020c018000050a70e00c008005430801d20c058000040003460c00c005031a01ba0c04c000043852ca0c00c0058311329f028480000337c2ce04074000031ac3d4050240050411925c04074000031ac3d405024005043831270c05c000043852ca0c00c0058311328d028480000332d34b04070000431ac3d405024005040001d20c04c000043852ca0c00c0058312125c02848000031b334c04070000431ac3d405024005040a027a0c048000043852ca0c00c005431d91fa0c01c000050a70e00c008005832572e704070000431ac3d4050240050430f0de0c064000040003460c00c0058300d0430080404043018110020080000400d04300804000433430b7010100000307620d02010000053430b7010100000300d0430080404003018110020080000400d043008040000300d043008040404301304f008080000300d04300804000430240d601004000031e604500804000030a50de010040000300d0430080404003042054008080000300d04300804000031423d205828000442ee3d304828040841423d2058280004411c3d405824000442233951084c859843d937e10858857441903a20f878894c32223780f0908928302539f110848114300039c128887908303239512854790441fc3951384c750440003c813830750043100de0bf0c1c74323b0de0449c624032f60de0d774182033bf0de0ae54006c334803d010040c1032c018703010040c518620204018000452b01fb0401c0000529c1f403020607852a21f403020607851261f2038205c78533e3dc038245c7441743d2038285c70433d3f40382c5c6c33023f40982c000c33123b80783c080041373c809828001040ce3d407824081043ba39f090600c0032e10df09860080040402020a8580004406018a0a850001040e33960a044041c43123a709044081c40602620904c0c1440e012a090540c0c4243112090540c0c41c01a2090500c1042402470905c0c0443ef3da08060140033ee10e07860180043eb16e078601800422025f0785c18044386394080581408439c10f0805c1404422f25f0785c1804439639407858180840c014208054140c402e1ba0884c101440d014207854180c42002770785c1804426022f0905c0c0441601a2090500c10412333b070501c1030201ba070501c1041f4112070541c0c40a015a070541c0c423412a070541c0c40a015a070541c0c41f4112070541c0c40201ba070501c10412333b070501c1030c00df0780c145833e220c028100034528b3f206834000830bf3d407824080840c63b808840180440ee2d70b82c0420304a3ba090382000409d3d4088242c00401f18d0503c4408300b06701014503033713b709040100c40b43b809040100c40d73b808840140c41ab36808840140c335e3b7098400c0c409f3aa0a840040c40893aa0b040000c43853aa0a040080c42a81fb0401c0000532016c0301c0400525e1fb0401c0000526b1cb02064042433f5255030780010326b18c02080040832ee21003080000832ee1ef030840004325b1d5030880000326b1ac0207c040c313813f0300c0080401420d0281054bc51f73d40502454ac41e018a09850548040e437e0b860547043e313e0d860547043e028e0f0605070432437e1105c4c7443b537e120584c78418f395128504c8040283aa130404c9041c63f213834509c30003f41182c5ca8310b3e51382058b842ba3660f02054b431381cb0301860b450cf0550080460b830420520080860bc30420520080860c430962920483c000040162aa0483c000040142f20483c000040962920483c000040c037f0483c000041ca3a90483c000040162aa0483c0000424d3300483c0000331220c048100030530d3786009c0c14324b36e610a80408304934f620b00000310d378610a8040830273c810830342042673b81203c2c18421a3b81383c241840003aa14040201843cf3a914840241c41f13b81483c2420417d3b917038182840722d71682c143033b63d3158241c3840481fc15018184851bf1fa0d01c3448537820c03010884853270de040048454323b3c708834142843001b70e05c001042153c00e060000832e01cf0c85c080040483c80c0300c0043ae3b90a038000840383ba09038000841ac3c709834000842783f2098340008309814703818785052293c709034484840003ba098384040423c3f20a0343c4430b83f40a82c384833122c20a0303c4833122c20a0303c4833122c20a0303c4833122c20a0303c4833122c20a0303c4833122c20a0303c4833122c20a0303c4832503f20a0343c4433993b90a838384042643f20a0343c44309e3c809030444c40e920208818504051f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504451f11fa0881c504450ae3d408824503c40ae3d4088245038409814703818504051002320984c4c5841002320984c4c4841002320984c4834408024a0984c442040e024a0984c401c408024a0984c381841002320984c341441002320984c301841002320984c301c412021a0984c301c41402020984c301c412021a0984c301c41002320984c301c40a02320984c241c40a02320984c281c40c021a0984c302440e02020984c3c2c41801d20984c443c41601ea0984c4c4c41001ea0984c4c5c40602aa0a048445c40402c20a048345c40402c20a048245c40402c20a048145c40402c20a048005c40402c20a048045c43593950a048045c40002f20a048045c40b73950a048045c43313950a048045c43593950a048045c43453950a048045c40402c20a048045c40402c20a048145c40402c20a048245c40402c20a048345c40602aa0a048445c43ba3b70881c504c32423e508820504442423e508820503c418018a098504c5841e028f098584c4841e028f098584c3841e028f098584c2841e028f098584c1841e028f098584c0841e028f09858480841e028f09858480c41c02a709858480c41a02bf098584c0c4140307098584c0c4100337098584c0c40e034f098584c0c40cc36709858500c412031f09858500c41602ef09858501040002320985848004000232098584804400023209858480841802d709858480841802d709858481c41802d709858482c402021a09858483c423b0de09864484442802170985c484c426813c038185058526813c038185060507220d02010746c511016d0301c706452ce3c704834684c42ed1f403020705c53213d3038286c54432f3f40382c6c50317d3f40382c6c5030fd3c804830685042f73d303828644c420016d0301c604850581700301c5c44526b1cb02064082832ee2540308404083265292040840008331e2a104084000832e627604088000432de2540408c000032331d50308c0400313813f0300c0484400d043008048c70339f0ac0182c70543210194030187464516b0df0400c686441a0202028186c68521019403018786452b81700301c7450500d04300804785433443f4158281c28309f2d71582c1c2833bb3c7158301c2842ba3dd168201828419f3de14020202842e73dd150201c2840721fc150181c3051763de14820202c42661fc12818282452c81fc12818282453371fc128182824535c1fc12818282451881fc12818282452ed1fc12818282453121fc12818282451631fc12818282450f13f50f028100430623f40f02c100433cf3f30f030100431553e5100200c0442263e50e020100441ea3e50f0200c04413c2010f0180c0c52083e50f0200c0841e32010c0181c0051cb2010c0181c00528b1fc0c0181c0050482020c0181c0050782020c0181c0050482020c0181c0050902020c0181c0050a82020c0181c00524027012028040430ca2d71202c040431883f3120300404310b3dd130200004405031710820080431323e511820040443811fc11818040c51c73e5118200408422a1ff0f018100051cd2740f0181000320c1ff0f018100053e01fc0f018100053c21fc0f018100053a41fc0f0181000511e2010f018100051ad2010f018100053993aa0483c0000415c3b90483c000040362920483c000040342da0483c000043303b80783c000442f23b80803c000442e13b80883c000442d03b80883c000442df3c704034040042d73c704034040041a33c704838000042de28b03834040032be3b80903c080441042140a03c040433c23b90a038040440263ba09038080440133ba09838000043ea3b90a038000043023b80803c0800405c3ba088380400433f3b80703c100841503b90603c140841973c706038140840f334f0603c140842de3e504820182042e73e504820182042f03e504820182042f93e504820182041063b90683c100841133b90683c1008418a3c706838100841443b90603c140840e03c807830100c42853c707034140c42773c707034140c40ef3c807030140c43343a708044080043243a708044080040e83b808040080042e030508044080030181fc0401c1c1850081fc0401c1c1853023e504820181840d80c10381c1c1852933c706834141c42693c707034141c424c3c707834141c43ef3f207834141c33903ba04034181041283c804030181041203c804030181041183c8040301810406d3ba080380414409a3ba070380414408c3ba070380c14407d3ba078380814406023210060000041151570280c000041101570280c000040aa2080281400005091208028140000527a2410281400004073208028140000515e3dc040240000421e0e1060046c9830c13bd060086c9832aa33c0600c6c98313620c060106c9851383b90603c6c9843122a1060846c98314220c060106c98512c3b90603c6c9843722ee0607c6c98321e0e1060046c9830c13bd060086c9832aa33c0600c6c98324c20a060106c9851203b90603c6c98410728d060846c9830cf04f008086ca0308104a008146cc03042056008046d10300d043008049074300d04300804947030420500080898683042050008089864310b202068186c60510b20206818685c50c21fb0681c645450b51fb0681c604c50cf1fb0601c644852a03c706034644042c33c705834683c42ac3c7060346838425b3c707034643442de3f1088385c2c32173c7090345c28408c3c809030582841ac3f40a02c5424315f3f50a8285424320f277080585420425c0fa08854542040401a209850502041201d20a04c4c2040f212a068546c2440ae15a06854682041721a206850642041d21a20684c601c409324a06040642442a03c706034644042c33c705834683c42ac3c7060346838425b3c707034643442de3f1088385c2c32173c7090345c28408c3c809030582841ac3f40a02c5424315f3f50a828542431c93c806828542041043d4060245420426e3e506020502040a81fb0681c4c205037208028146c245037208028146c2053f620c028106c2051000df03818681c533a20204014682450b00cd0381c58a450073dd038244ca0421e0e1060046c98330b3e50482064a440eb3d4068245ca043153f40782c58a032ef3f40982c50a430733d40a8244ca840cf05300808448c3009042010083c88305b1e70180c348041080d703818307c52db1f403020307453b61f402820307053fb28a02024306832331f8038343060325511203038305c40b827a03838305840781ea03838305442331f8038343060301912a03028305c43053d303828305843f43dc038243054405a20d02010346051641cf0200c385c405b1e70180c4058419003c01008445430cf05300808448c3009042010083c88305b1e70180c348041080d703818307c52cf1f403020307453a21f402820307053fb28102024306832e73c703834306043a336803038305c33f83a903838305841c13b903838305442e73c7038343060401913403028305c42fe3d303828305840153dd038243054425e1f702010346051681cf0200c385c405b1e70180c4058419003c010084454322a0e1060046c9830cd3bd060086c98303139c0600c6c983166202060186c98502a1f50681c689852613e5068206898427a3e5060206c9840f335e060206c984113232060406c98423239c0606c6c9831072ae060846c9833f30f60605c6c9842572c7060806c9830cf0560080458a830cf0560080454a430cf0560080450a432e314201008489c32e314201008449c32e314201008409832e3142010083c94305b1e70180c388c405b1e70180c3888405b1e70180c3c84405a20d02010387c505a20d020103c78505a20d02010407453a334a0303c447033fb2640203c486c326b213020404c68337e2fc02844486030181d203848445c40d321a0484840584153202058483c5441931d2060483850407226206848384c41931d2060483c4841131ea06048384441e0142050503c38413321a04048403c4215172050504030405a20d02010486c505a20d020104c6853632070281448605363207028144c5c536320702814505853632070281454545363207028145450536320702814584c5363207028145848536320702814544450ac3dd02824503842581d0028184c3c52403910501c403030cf0560080458a830cf0560080454a430cf0560080450a432e314201008489c32e314201008449c32e314201008409832e3142010083c94305b1e70180c388c405b1e70180c3888405b1e70180c3c84425e1f702010387c525e1f7020103c78525e1f702010407453a33590303c447033fb2550203c486c326b223020404c6831132b102844486031b81ba03848445c407518a04848405841341d2058483c5441731ea06048385040cf26206848384c41731ea060483c4840f3202060483844422015a050503c3840b323204048403c4100112050504030425e1f702010486c525e1f7020104c68521f205028144860521f205028144c5c521f205028145058521f205028145454521f205028145450521f20502814584c521f205028145848521f20502814544450ac3dd02824503842581d0028184c3c52403910501c403032e618904154000032ee13402154000032de1de04148000c3138195041540000326b0e202154100030200e304154000033b4189041540000312819504154000033e41d504148000033d41d504154000032531a2041540000324b1a204154000032de18904154000033b60df04154000032e60df041540000326319704154000032071800c154000032de0df041840000321f1800c154000030f81950c154000031f328f04058000043fa20a02058000031b71720404c000c405520204058000043b920502058100032d61e7040580000436016f040580000436b157040580000422b1420404c000043f4156040580000416b11204058000041930e204058000043b03bf0405800003113337040580000413331f0405800004153307040580000421e0e10c0580000426527004088000033b613404154000032ee0df02154000032e61de04148000c33ae134041540000326b13702154100032e613404154000032431a2041540000314019504154000033dc1d5041480000313019504154000033f41890415400003263142041540000302013804154000033f613404154000033f60df04154000033ae0df04154000030001400c154000032430de04184000031ef1800c154000031101950c154000031b32bf04058000043fa1de02058000031eb12a0404c000c427222f04058000043fa1f4020581000329321704058000042b61ff040580000437413f040580000410b0fa0404c0000416012a04058000041732ef04058000041932d70405800004252247040580000403321a04058000041d32a7040580000401323204058000040601ea0c058000042e6254040880000313a1e40180c0000432025e100600000438025e100600000418025f10060000041c025f1006000004240276100600000426027610060000043c02761006000004120277100600000402027a100600000422028e100600000428028e10060000042c028e10060000042002a610060000041c02be10060000043002be10060000043402be10060000043602be10060000041e02d610060000042802d610060000040602d710060000040e02d710060000043402ee10060000043802ee10060000043a02ee10060000043c02ee10060000040202ef10060000040402ef10060000040602ef10060000040802ef10060000040a02ef10060000040c02ef10060000040e02ef10060000041402ef100600000416030610060000040403071006000004060307100600000408030710060000040a030710060000040c0307100600000438031e10060000043a031e10060000043c031e100600000400034f100600000402034f100600000404034f10060000040e03661006000004100366100600000412036610060000041c036610060000041e0366100600000420036610060000042a036610060000042e03661006000004040367100600000402036710060000043a03661006000004380366100600000436036610060000043403661006000004320366100600000430036610060000043c034e100600000436034e100600000434034e100600000432034e100600000430034e10060000042e034e10060000042c034e10060000042a034e100600000428034e100600000426034e100600000424034e100600000422034e100600000420034e10060000041e034e10060000041c034e10060000041a034e100600000418034e100600000416034e100600000414034e100600000412034e100600000410034e10060000040e033710060000040c033710060000040a03371006000004080337100600000406033710060000040403371006000004020337100600000400033710060000043c033610060000043a03361006000004380336100600000436033610060000043403361006000004320336100600000430033610060000042e033610060000042c033610060000042a03361006000004280336100600000426033610060000042403361006000004220336100600000420033610060000041e033610060000041c033610060000041a03361006000004180336100600000416033610060000041403361006000004120336100600000410031f10060000040e031f10060000040c031f10060000040a031f100600000408031f100600000406031f100600000404031f100600000402031f100600000400031f100600000436031e100600000434031e100600000432031e100600000430031e10060000042e031e10060000042c031e10060000042a031e100600000428031e100600000426031e100600000424031e10060000041a031e100600000418031e100600000418031e100600000418031e100600000418031e100600000416031e100600000414031e100600000414031e100600000414031e100600000410030710060000040e030710060000040e030710060000040e0307100600000402030710060000043803061006000004380306100600000438030610060000043603061006000004340306100600000434030610060000043403061006000004320306100600000430030610060000042e030610060000042c030610060000042a030610060000042a030610060000042a0306100600000428030610060000042803061006000004280306100600000426030610060000042403061006000004220306100600000420030610060000041e030610060000041c030610060000041a0306100600000418030610060000041202ef10060000041002ef10060000043602ee10060000043002ee10060000042e02ee10060000042c02ee10060000042a02ee10060000042202ee10060000042002ee10060000041e02ee10060000041c02ee10060000041a02ee10060000041802ee10060000040002da10060000041202d710060000041002d710060000040402d710060000043c02d610060000043a02d610060000043802d610060000043602d610060000043202d610060000042e02d610060000042c02d610060000042a02d610060000042a02d610060000042a02d610060000042a02d610060000042602d610060000042202d610060000042002d610060000042202d610060000041c02d610060000041a02d610060000040202c210060000041602bf10060000041402bf10060000041202bf10060000040e02bf10060000040a02bf10060000040802bf10060000040602bf10060000040002bf10060000043c02be10060000042e02be10060000042a02be10060000040402aa10060000041402a710060000043802a610060000042602a610060000042402a610060000042202a610060000041e02a61006000004060292100600000400029210060000041c028f10060000041a028f100600000418028f100600000416028f100600000414028f100600000412028f100600000410028f10060000040e028f10060000040c028f10060000040a028f100600000404028f10060000043c028e10060000043a028e100600000438028e100600000436028e100600000432028e100600000426028e100600000400027a10060000040c02771006000004060277100600000438027610060000043602761006000004340276100600000430027610060000042c027610060000040a026210060000040402621006000004020262100600000400026210060000041e025f10060000041a025f100600000416025f100600000412025f10060000040e025f10060000043c025e10060000043a025e10060000043a025e10060000043a025e10060000043a025e100600000430025e10060000042c025e100600000428025e100600000424025e10060000040c024a10060000041602471006000004140247100600000412024710060000041002471006000004320246100600000430024610060000042a0246100600000424022f100600000422022f100600000422022f100600000420022f10060000042402171006000004220217100600000422021710060000041c021710060000041a021710060000041802171006000004160217100600000414021710060000040e021710060000043c021610060000043a021610060000043602161006000004340216100600000430021610060000042e021610060000042c02161006000004120202100600000402020210060000042801ff10060000042401ff10060000042201ff10060000041801ff10060000040001ff10060000043c01fe10060000043a01fe10060000043601fe10060000043401fe10060000043201fe10060000043001fe10060000042401e710060000042201e710060000041a01e710060000041801e710060000043a01e610060000043801e610060000042e01e610060000041601d210060000041001d210060000040601d210060000042c01cf10060000042a01cf10060000042801cf10060000040201cf10060000043801ce10060000043601ce10060000043201ce10060000041201ba10060000041201ba10060000041201ba10060000041201ba10060000043201b610060000043201b610060000043201b610060000043201b610060000042c019f100600000426019f100600000426019f100600000426019f10060000041e019f100600000418019f100600000418019f100600000418019f100600000408019f100600000406019f100600000406019f100600000406019f100600000416018a100600000414018a100600000414018a100600000414018a100600000402018a1006000004240187100600000420018710060000041a018710060000040a018710060000040a018710060000040a018710060000043c018610060000043c018610060000043c0186100600000416015a1006000004140158100600000430b15710060000042eb15710060000042cb15710060000042ab157100600000428b157100600000426b157100600000424b157100600000422b15710060000041e015710060000040e015710060000040c0157100600000400015710060000043d415610060000043b415610060000043941561006000004374156100600000420b14210060000041c014210060000041a01421006000004180142100600000412014210060000040a01421006000004080142100600000406014210060000041601401006000004040140100600000435413f100600000433413f100600000431413f10060000042f413f10060000042d413f10060000042b413f100600000429413f100600000427413f10060000043201b610060000043201b610060000043201b610060000043201b6100600000425413f100600000423413f100600000423413f100600000423413f10060000041eb13f100600000410013f100600000410013f100600000410013f10060000040e013f100600000406019f100600000406019f100600000406019f100600000402013f100600000400013f100600000400013f100600000400013f10060000043c313e10060000043a313e100600000438313e100600000421412a10060000041cb12a10060000041cb12a10060000041cb12a10060000041ab12a10060000041ab12a10060000041ab12a100600000418b12a10060000043930df10060000040a012a100600000408012a100600000416b1281006000004060128100600000436312710060000043431271006000004323127100600000430312710060000042e312710060000042c312710060000042a312710060000042831271006000004263127100600000424312710060000041f4127100600000410012710060000043dc12610060000043bc12610060000041b41121006000004194112100600000414b11210060000040e011210060000040c011210060000040a0112100600000400011210060000041741101006000004080110100600000437c10f100600000435c10f100600000433c10f10060000042d413f10060000042b413f100600000429413f100600000427413f10060000043201b610060000043201b610060000043201b610060000043201b610060000042bc10f100600000429c10f100600000429c10f100600000429c10f100600000427c10f100600000425c10f100600000425c10f100600000425c10f100600000420310f100600000406019f100600000406019f100600000406019f100600000412b10f100600000410b10f100600000410b10f100600000410b10f10060000043ae10e100600000423c0fa10060000041e30fa10060000041c30fa10060000041a30fa10060000041a30fa10060000041a30fa10060000041540fa10060000041540fa10060000041540fa10060000040eb0fa10060000040cb0fa10060000040ab0fa10060000040200fa10060000041830f8100600000408b0f810060000040000f8100600000438e0f7100600000436e0f7100600000434e0f7100600000432e0f7100600000430e0f710060000042ee0f710060000042ce0f710060000042ae0f7100600000428e0f7100600000426e0f7100600000421c0f710060000041340f7100600000406b0f7100600000404b0f710060000043d30f610060000043b30f6100600000424e0e210060000041fc0e210060000041dc0e210060000041bc0e210060000041630e210060000040f40e210060000040d40e210060000040b40e2100600000419c0e010060000042d413f10060000042b413f100600000429413f100600000427413f10060000043201b610060000043201b610060000043201b610060000043201b6100600000400036710060000043c036610060000043c036610060000043c036610060000042c036610060000041c031e10060000041c031e10060000041c031e10060000043a0306100600000406019f100600000406019f100600000406019f10060000041602d710060000041402d710060000041402d710060000041402d710060000040c02d710060000040a02d710060000040802d710060000043402d610060000043002d610060000043002d610060000043002d610060000042402d610060000042402d610060000042402d610060000041802bf10060000041002bf10060000040c02bf10060000043a02be10060000043802be10060000043202be10060000042c02be10060000042802be10060000042402be10060000042202be10060000042002be10060000041e02be10060000041a02a710060000041802a710060000041602a710060000041202a710060000041002a710060000040e02a710060000040c02a710060000040a02a710060000040802a710060000040202a710060000043c02a610060000043a02a610060000043602a610060000043402a610060000043202a610060000043002a610060000042c02a610060000042a02a610060000042802a6100600000433c10f10060000042d413f10060000042b413f100600000429413f100600000427413f100600000408027a10060000041c027710060000041a027710060000041802771006000004160277100600000414027710060000041402771006000004140277100600000410027710060000040e027710060000040e027710060000040e0277100600000432027610060000042e027610060000042e027610060000042e027610060000042a02761006000004280276100600000428027610060000042802761006000004220276100600000436025e100600000434025e10060000042e025e10060000042a025e10060000042a025e10060000042a025e100600000426025e100600000426025e100600000426025e100600000406024a100600000404024a100600000402024a10060000040002481006000004220247100600000420024710060000041e024710060000041c024710060000041a0247100600000418024710060000040a024710060000043c024610060000043a024610060000043802461006000004360246100600000434024610060000042e024610060000042c0246100600000426024610060000040e02321006000004080232100600000402023010060000042c022e100600000428022e100600000410021a10060000040a021a100600000408021a100600000406021a100600000400021a10060000040402181006000004260217100600000420021710060000041e021710060000043201b61006000004380216100600000432021610060000040c020210060000040a02021006000004080202100600000406020010060000042601ff10060000042001ff10060000041e01ff100600000406037f10058000841601ff10060000043e02460f060000043801fe10060000042e01fe10060000042c01fe100600000405739510054000040e01ea10060000040c01ea10060000040a01ea10060000040401ea10060000043e031e0e8600c0043e02a60f0600800412015a0f0580808408037f10058000840c01a20e858000041001720e8580c0043e02ee0f060000043e03660e8600c0043e02d60f060080040001e71006000004097395100540000404037f10058000841401420f058080840a037f10058000840a01ba0e858000040e018a0e8580c00402037f10058000843e022e0f060000043e02760f060000043e034e0e8600c0043e025e0f060000041401cf10060000040401cf100600000400037f10058000843a01ce100600000407739510054000041801ba10060000041001ba10060000040e01ba10060000040801ba10060000043e03060e8600c0043e02be0f060080042e01b710060000042c01b710060000042a01b710060000042801b710060000042601b710060000042401b710060000042201b710060000042001b710060000041e01b710060000041c01b710060000041601b710060000040201120f854040841d81cc03018342851d81cc03018342051d81cc03018342451d81cc03018342850401b710060000043c01b610060000043a01b610060000043801b610060000043601b610060000043401b610060000041a01a210060000041401a210060000041201a210060000041001a210060000040a01a210060000040201a210060000040001a210060000040e01a0100600000430019f10060000042e019f10060000042a019f100600000428019f100600000424019f100600000422019f100600000420019f10060000043c019e10060000043a019e100600000438019e100600000436019e100600000434019e10060000041c018a100600000412018a10060000040c018a1006000004320187100600000430018710060000042e018710060000042c018710060000042a01871006000004280187100600000426018710060000042201871006000004380186100600000436018610060000041e017210060000041801721006000004160172100600000414017210060000040e017210060000040601721006000004040172100600000402017210060000041201701006000004000170100600000432016f100600000430016f10060000042e016f10060000042c016f10060000042a016f100600000428016f100600000426016f100600000424016f100600000422016f10060000041c016f10060000040c016f10060000040a016f10060000043cb16e10060000043ab16e100600000438b16e100600000436b16e100600000420015a10060000041a015a100600000410015a100600000408015a100600000406015a100600000404015a100600000412012710060000040401271006000004020127100600000402b0e210060000040940e010060000040000e010060000042a01e710060000042801e710060000042601e710060000042001e710060000041e01e710060000041c01e710060000041201e710060000040201e710060000043c01e610060000043201e610060000043001e610060000040e01d210060000040c01d210060000040a01d010060000042201cf10060000042001cf10060000041e01cf10060000041a01cf10060000040001ba10060000040c01b810060000040c012a10060000040601b7100600000406036710060000041c01cf10060000040801e810060000041401ea10060000041001ff10060000041a01ff100600000432b157100600000434b15710060000040201581006000004100188100600000400018a100600000404018a1006000004040232100600000420028e10060000042402ee10060000042602ee10060000042802ee10060000043202ee100600000406034f100600000408034f10060000040a034f10060000040c034f10060000041403661006000004160366100600000418036610060000041a0366100600000422036610060000042403661006000004260366100600000428036610060000043a034e100600000438034e1006000004120307100600000417b3d504824343442961f403020200c519318a05850300040b03c808030201840d03c8080301c1843a027610060000040533d4100240000420025f100600000401818403860000031c63a2040606000314025f100600000410025f100600000408025f100600000428024610060000041e022f10060000041c022f10060000041a022f100600000418022f100600000416022f100600000414022f100600000412022f10060000040c022f10060000043c022e10060000043a022e100600000438022e100600000436022e100600000434022e100600000432022e100600000430022e10060000042e022e10060000042370f90105c780432370e101060780032f210f0105c780032f21260105c000432f20f701060000030280fb0105c0000324314210180000032431f710120000032f22bb10120000033322ce10120000031271ea10120000030000e0101800000313b3dc04824343442901f403020200c50531a205850300043713c708030201840c03c8080301c184080187100600000422031e100600000420031e10060000041e031e100600000400030710060000043c030610060000043001ce10060000043c01ce10060000042a022e10060000042e02a610060000042602be10060000041140f710060000043ce10e100600000404010f100600000406010f10060000042dc10f10060000042fc10f100600000431c10f10060000041d41121006000004223112100600000439c126100600000414012a100600000418015a100600000434016f10060000043a018610060000040281290105c780432f20df01060780032371100105c780030281120105c000430280e301060000032371270105c000033d417510180000033122ce10120000033522ce101200000312723210120000030002d7101200000324b0e2101800000328a1f4030200008514811d040200008515011d04020000852180eb0381c000851a00ec0381c000853a41ec038200008501c3dd038240004408e20d02010001050b011f040200008521818c03018000c531011f040200008531811f040200008533e1f402820000853f93e503020000843263e504820000842133d4048240004401b2320201c0008429b2250201c000843341f4028200008523718d0181c000831181740301c000852f0120040200008520b13f0300c0018431b1f402820000850e019d0281c0408508019d0281c0408503815403814000c504014c03814000c53b220203014000c536220204014000c5310137038100010530813f03810001052f40210081c000830681cf0200c000840f019c0281c0008516819b0281c000852d810a0381c000851f810b0381c000851a20b60100c000833353520181c0008323717f0181c000830601cf0200c0010435420702814000c50cf05100808002033fa0970280400143042057008040020324819a0281c000852581990281c000850001990281c000852901980281c000850301980281c000851d81950281c000850e81950281c000850881950281c000852f81940281c000850f81940281c000851701930281c000853fe03e00818000c311d0220081c000c33fb3dc0201c000843c920c02810001053060aa0201c000852601910281c000853181740301c000852981900281c000850381900281c000851e018d0281c000850f018d0281c0008509018d0281c0008530018c0281c0008510018c0281c0008517818b0281c000852371780181c0008330e0b10201c000850101890281c000851c00b40201c000850401880281c000851e81850281c000850a81750301c000850f81850281c000851081750301c000853081840281c000851081840281c000851801830281c000852601820281c000852701810281c000850181810281c000852a81800281c000850481800281c000851f017d0281c000853fc1a50181c0008310017d0281c000852371a20181c000830ef16f0280c000843e00de02804002430b30aa0100c0008303220302814001050a017d0281c0008520b205028140010500017d0281c0008522e20502814001052300bb0201c000852da345028180010318817b0281c0008500c0280081c000833fb2ab020200008311b3450201c000843480360101c00083131207028140010513620702814001051aa20702814001050a81d502818001050481d502818001051cd20702814001051dc20702814001052f217e0181c000831f020702814001051f520702814001051ff2070281400105304207028140010526f202028180010532c20702814001051fb2960201c0008400c0210081c000831fb28f0201c000841880f6030080010434020702814001050d43dd02824000442840d50281c0008530c1f402820000452fd1f402820000451b40c40281c000850b00a502820000450d93dd028240000422a0c30281c000c53e31f402820000451ba0bc0281c000853981f402820000452371a90181c00083237169018200004319002d01020000430de3dd02824000040e33dd02824000040e83dd028240000406920802814001052b01780301c000853701f402820000452d01bc0281c0008535c1f402820000452281ba0281c000852f31f402820000453481f402820000851591c303024000040f23dd02824000042b40dc02818001051ac0bd0281c0008532a0e80281c0008514f1e70180c001043fa11402820000853111f4028200004500903301020000433251f402820000453431f402820000453751f402820000450f73dd02824000041d019d0281c000852881a00281c000850e81a40281c0008524016403018000852051570280c001441581ab0281c000850e01ac0281c0008508103f00818000c32f91e103014000c43ac20203014000c52981900281c0008503220302814001050d01bc0281c0008537f1f402820000450381900281c000852ca20802014001052360e80201c0008402603101814001052c91f403020000850081d7028180010509018d0281c0008522e20502814001050fc3dd02824000041ba0bc0281c000850a81200381c0008507811403814001050301980281c000852b620802014001050681b50281c000852b220802014001051013dd02824000041b80ad0201c000850101890281c000852aa20802014001052d81b40281c000852a220802014001053081200381c00085127207028140010517818b0281c0008529220802014001050a81750301c000851aa20702814001051501b30281c0008528a20802014001050f81850281c000850a81d502818001051e018d0281c0008520b20502814001051801830281c000853fa20202814001051c01ad0281c0008526f20202818001050781210381c000850771ec03820000852a81800281c0008530420702814001052e71f403020000850381a703018001050d01ad0281c0008525e20802014001053001280381c0008536d20702814001050e812d040200008504019f03018001052381aa0281c0008534f207028140010533015c0301c000853d0202030140010539e0ac0201c0008516d20802014001050201a80281c0008516920802014001052c81290381c000853d620203014001052e81a40281c0008516520802014001052d51f403020000850501cd03018001051063dd02824000043521f402820000452841f4030200008508015f03018001050ca3dd02824000043161f402820000450c03dd02824000043021f402820000450bb3dd02824000041600a4028200004509d3dd028240000411017c0281c000853381540301c000853fc1970181c0008337c14903024000043701f4028200004508e3dd028240000426817a0281c000852901520301c000850640c901008001431a20b60100c0008306e20d02010000853ed1f4028200008530c3d303828000042a813204020000850201790281c0008534420c04010000850843dd028240000407f3dd02824000043cf1f402820000451d916303024000043c51f402820000450753dd02824000043c01f402820000450703dd02824000040601390381c0008506b3dd02824000043b11f4028200004523715001824000030663dd02824000040613dd02824000043ac1f4028200004505c3dd028240000434d1f402820000450573dd02824000043071f402820000450523dd02824000041bb2bf0201c0008404d3dd02824000041ba1f402820000450483dd02824000040433dd028240004403e3dd02824000043fa0fc028200004526b23302024000030240cd01824000032f20da0281c0008523719b0181c000830393dd02824000043223dd02820000440343dd028240000402f3dd02824000443fc0d60182400003081045008140010302a3dd02824000442240cb0281c000c53fa3d302824000043fa37e028240000423713e0182400003099172030240000425a250028240000425a24702824000042b01410381c0008527a23802824000041b20b50281c000851081840281c000852371780181c000832f214f018240000330e0b10201c000850401fc0401c000850381450381c000850111950301c0008327a22f02824000040a23dd02824000040933dd02824000043201f402820000853981f402820000450893dd028240004430d30b02020000430e420802014001051dc207028140010500c0280081c000832371a90181c000833fb2ab02020000833f420203014001053e8202030140010536b1f402820000451f132602020000433fb293020200004307a3dd028240004411820202818001052a813a0381c0008523320502814001053240f00281c0008537c0fc0281c000850781500301c000852f520702814001051481350381c000850b61eb03820000852781790281c00085014203028140010537c13f03028000042401f0030200008537c0fc0281c000852f81f402820000452f019c0281c000851981d502818001051f132e02020000432c320202018000c53fa387028240000432a1f402820000450e33dd02824000042f215801824000033391f402820000850b81d402818001053661f40282000085237159018200008338e1f4028200008527420202818001051d916303024000043c51f402820000453fa16c02824000043e81f402820000451830eb02824000040781a50281c000851830e202824000043d91f402820000453e020702814000c503220802814000c52481250381c000851581250381c000850f81250381c000850581250381c000853681240381c000851681240381c000851e01230381c000852c01220381c0008506220d02010001050b220d020100010505813403814001050d81b40281c000851b81b50281c0008533420c040100014532c20c04010001452e016703810001051061570280c001440801b70280c0014401b2320201c000843fb0c40201c000852c50c401814000c515c0b801814000c43ee20203014000c531812f03810001050f916f0280c001441d916c0280c0014429b2250201c000842360e10201c000841140e201814000c43fc12b01814000c402016c03014000c51a00ec0381c000852d01120381c000852e01110381c0008531813c040200008528a0cd0281c0008538620702814000c50b81100381c0008533813c040200008524c20502814000c534813c040200008537813c040200008538013c040200008538813c040200008539013c040200008539813c04020000853fb2b302020000831f131e020200008332420c040100008533c20c04010001851961e40180c000c41991e40180c000c419c1e40180c001840401e70180c0018412c13f0300c000c413213f0300c001842e81090381c000850901090381c000850c01080381c000852681050381c000853fb20c02010001051781050381c000851181050381c000850781050381c000851881040381c000852001030381c000852e01020381c000850981010381c000850c81000381c0008529a3d404824000442700fd0381c000851800fd0381c000851200fd0381c000850800fd0381c000851900fc0381c000852080fb0381c000850a00f90381c000850d00f80381c000852780f50381c000851880f50381c000851280f50381c000850880f50381c000851980f40381c0008503220802814000c53e020702814000c50d80f00381c0008501d14401008002030281a00281c0008510738d02824000030fc3dd02824000042f214f01824000031901730301c0008510738402824000032df20202018000c52981900281c000850381900281c000852360e80201c000840e00e80381c0008509018d0281c000851f017d0281c0008517818b0281c000852701720301c000852371780181c000830101890281c000851a00dd0381c000850401880281c000851e81850281c000851c81a50281c000850a81750301c000851501b30281c000850f81850281c000852481a90281c000851801830281c000850481800281c000850781210381c000852a81800281c000851481350381c000852801710301c0008510737b02824000032e01ac0281c000851901730301c000850281710301c000852da33c02824000030181b00281c000853a020203014001053d41f402820000851c81dc02818001052381b90281c0008527e20802014001053fb2a302020000831301d302818001052781790281c000852d009301014001032aa20802014001052081da02818000c51281db02818001051f520702814001053fb29b02020000831aa207028140010538e20203014001051901dd02818001053882020301400105019203028140010501e20302814001050771ec03820000850c81c40281c000c50b61eb038200008506012c038140010525f2f802824000032c81c40281c000851132c2028240000312126e02824000433fa22002824000033f71f402820000853f21f402820000850ed3dd02824000440cf3dd02824000043fa17e02820000442b01320381c000850b016d0301c000853b420502024000033fb3be02020000432f213d01824000033fc1890181c00083237147018240000323716101820000432f216101820000831ce01901020000833fb2bb02020000833fb2c3020200008315c0ad01828000032f214601824000433ca1f4028200008526b1e402020000832aa20802014001053bb1f4028200008534802e01020000830581c50281c000853fc1c10181c000833a71f402820000852a6202028180010525814c03818000c509917b03024000041401c30281c000851591ba03024000043931f4028200004501016d0301c0008536a20203014001053841f402820000850b01dc02818001050b13dd028240000437a1f402820000453661f4028200008523715901820000832301c10281c000853ae1050201c000843fa16c02824000043e81f402820000450a73dd02824000042681c00281c000853611f402820000852281c903018001051773c802824000043571f402820000453fa17502824000041c03f402824000430c53dd02824000042371940181c000830081c00281c0008538b20702814000c51b01bd0281c0008511d01a00820000832eb03e01804000830201bf03018000853ca09703004000830c01bd0281c000853fc1c80181c000832371cc0181c000833fc1cf0181c000832201d102818001053fb3c60201c0008305520802814001051f133602020000830b63dd02824000043b11f402820000453143e5048200008431d3e504820000842b93e505020000841980e50381c000851380e50381c000852601910281c000852601910281c000850e80e00381c000852b01dc02818001050a00dd0381c000c511b3370201c000c42371b00181c000833fc1b30181c000830a80d50381c000850c80d10381c000851a014b04020000851a814b04020000850ed1fb0481c000852d01120381c000850003dd03824000440d00c90381c000c50a00ec038140010535220204014001050c00bd0381c000850201fc0401c000852a81800281c000852c01680301c0008525015403018000c53481440381c0008502820302814001052a80fc03818000c52ba0d402818000c50601680301c000850b01cd02818000c52081650301c000850101cf02818000c514013d0381c000850e013d0381c0008504013d0381c000851181650301c000850b81650301c000852301b20281c000850181650301c000852f01380381c000850901380381c000850c01cc03018000c53281640301c000851281640301c000851a01630301c000852401b10281c000852781b00281c000852c01310381c000850681310381c000852f81300381c000850981300381c000852801620301c000852901610301c0008515012d0381c000850f012d0381c000850381610301c000852c81600301c000853b520c02810001450a80e403814000c50f00ef03818000850681600301c0008521015d0301c0008512015d0301c000850c015d0301c0008525011d0381c0008516011d0381c0008510011d0381c0008506011d0381c000850f80e703818000c517011c0381c000851e811b0381c000852c811a0381c000852d81190381c000850801190381c000853101180381c000850b01180381c000852581150381c000851681150381c000851fc20c05010000c53ca202030140008508010c038140008517010d0381c000852b41f303820000452bb1f303820000453f90e403020000452100f30381c000850a80f10381c000851900ed0381c0008502015d0301c0008523816c03018000c50980e50381c0008519b20202818000c51400dd0381c0008526020202818000c513015c0301c000851a815b0301c000850d81a50281c0008528815a0301c000850c80b50381c000852981590301c0008508815703018000c50981e10381c000842632380381c000831481440381c000851c01430381c000852a01420381c000850381fc0401c000850c811703818000c529220202818000c52401a20281c000852501a10281c000853fc0140180c001832371710181c000832f21690181c0008308012801808001c401d14201008001033620ab03804000831a20b60100c000832c7202020180010501920802814001052d01580301c0008500020802814001050701580301c000853ef20702814001052181550301c0008533c0f7028100014503015c03814000c5041208028140010536012c0381c000851381450301c000852281450301c000850801480301c000852e01480301c000850501490301c000852a81490301c000852d01210381c0008537011c0381c000852001a403018000c529814a0301c000851781140381c000850881110381c000851b814b0301c0008514014c0301c0008528012403818000c50900ed0381c000850b00e90381c000851a80e40381c0008534014c0301c0008503014d0301c000850d014d0301c0008513014d0301c000850b80c50381c000851003ee0381c0008404b20d028100014528811c03818000c52e81400381c000850881400381c0008523013d0381c0008513b31f0201c000843820f40281c000851c813b0381c0008506812403814000c522014d0301c000850e81350381c000852d81500301c0008529011403818000c51581340381c000851d01330381c000850481510301c000852a01510301c000851b01530301c0008524815c03018000c51381540301c000850281550301c000850980f403814000c529810c03818000852a010403818000851081150381c000850681150381c0008507010d0381c000850e00ff03818000c50981850281c000850f00d80381c000850c81550301c000851281550301c0008538120702814001050b82880381c0008402320d028100014504137603814000c32da208020140010506817703018000c50401590301c000851601a30281c000853581340381c000850701ad0281c000851e81bc03018000c500a20302814001050181c703018000c51d812b0381c000850b00dc03814000c50301690301c000852881690301c0008518010c0381c0008515420702814001051b920702814001051000c80381c000850001fc0401c000851100cf03818000851491f2038200004501d142010080010300008703804001431212770280c0010336020c03010000c50c81b50281c0008508012801808001c43fc0140180c001830681cf0200c0008419816b0301c000853fb3dc0201c000843060aa0201c0008501a05f0101c0008300903b0101c000831323d40201c0008413b3260201c000842181d902818000c53cc20702814000c50ab0f803008001441b81cc0200c000840681cf0200c0008408612801808001c400c0210081c0008301b2400201c0008424012d0381c000850c81550301c00085143087028080008438820c02810000851a01cd028180008512016c0301c000850b40e004008001442301b20281c000850181650301c000852d81500301c000850fe1fb0401c000853fb0ac0201c000853fa09702804001433fa09702804001430b60a303004001433fa09702804001430000870380400143000087038040014315c0b70181c000831e016f0280c001c41a20b60100c000833fd0d30100c000830a50d80100c001c30b30aa0100c000830681cf0200c000841591cc0200c000841981b70200c001c41b81cc0200c000840640c901008001430ee1950481c000831f81750301c000850501780301c000851e43d2048280000410739602824000433891f402820000453ae18902828000030f325a05014000c432815c040200004535815c04020000852373d404824000441db3d204828000040071ed03820000850001ed03820000853f81ec03820000853f11ec038200008510c0a80281c0008522e3d4048240004421e204028040020306620d02010001452fe20c0501000145320202048140010509c1fc05018000c51f220c05010001450f821f05010001432f420c050100014501430105018000c414e20c050100014500008703804001430581410381c0008500815d040200004535013c0381c0008501815d04020000452c01fb0401c0008509015d040200004509815d04020000450a015d04020000450a815d04020000450b015d04020000450b815d040200004510815d040200004539d1ec038200004511815d04020000451f015d04020000451f815d04020000453961ec038200004520815d040200004507015f040200004507815f04020000452d015f04020000452d815f04020000452e015f0402000045040160040200004538f1ec0382000045050160040200004505816004020000453881ec038200004529816004020000453811ec038200004537a1ec03820000453731ec038200004536c1ec03820000452c01600402000045030161040200004528816104020000451a816204020000453651ec03820000451b8162040200004535e1ec03820000451c816204020000453571ec03820000451d816204020000453501ec0382000045248162040200004525016204020000453491ec03820000453421ec038200004526816204020000452701620402000045278162040200004513016304020000451381630402000045140163040200004514816304020000451501630402000045158163040200004533b1ec03820000451681630402000045170163040200004517816304020000453341ec0382000045188163040200004532d1ec038200004519816304020000452e816304020000453301630402000045338163040200004534016304020000453261ec038200004531f1ec03820000450c016404020000450c816404020000450962a104018000840d816404020000450e016404020000450e816404020000450f016404020000450f81640402000045120164040200004510e1fb0401c00085218164040200004522016404020000452281640402000045230164040200004523816404020000452f016404020000452f8164040200004530016404020000453031ec03820000452f51ec0382000045318164040200004532016404020000452ee1ec0382000045358164040200004536016404020000453681640402000045370164040200004537816404020000452e71ec03820000453881640402000045390164040200004539816404020000453a016404020000453a816404020000453b016404020000453b816404020000453c016404020000453c816404020000453d016404020000453d816404020000453e016404020000453e816404020000453f0164040200004500016504020000450081650402000045010165040200004508016504020000450881650402000045090165040200004509816504020000450a016504020000450a816504020000450b016504020000451001650402000045108165040200004511016504020000451e816504020000451f016504020000451f816504020000452001650402000045068167040200004507016704020000452c816704020000452d016704020000452d8167040200004503816804020000450401680402000045048168040200004505016804020000450581680402000045290168040200004529816804020000452a016804020000452a816804020000452b016804020000452b81680402000045028169040200004528016904020000451a016a04020000451a816a04020000451b016a04020000451b816a04020000451c016a04020000451c816a04020000451d016a04020000451d816a040200004524016a040200004524816a040200004525016a040200004525816a040200004526016a040200004526816a040200004527016a040200004512816b040200004513016b040200004513816b040200004514016b040200004514816b040200004515016b040200004515816b040200004516016b040200004516816b040200004517016b040200004517816b040200004518016b040200004518816b040200004519016b04020000452e016b040200004532816b040200004533016b040200004533816b040200004534016b040200004501816c04020000450b816c04020000450c016c04020000450c816c04020000450d016c04020000450d816c04020000450e016c04020000450e816c04020000450f016c040200004511816c040200004520816c040200004521016c040200004521816c040200004522016c040200004522816c040200004523016c04020000452e816c04020000452f016c04020000452f816c040200004530016c040200004530816c040200004531016c040200004531816c040200004534816c040200004535016c040200004535816c040200004536016c040200004536816c040200004537016c040200004537816c040200004538016c040200004538816c040200004539016c040200004539816c04020000453a016c04020000453a816c04020000453b016c04020000453b816c04020000453c016c04020000453c816c04020000453d016c04020000453d816c04020000453e016c04020000453e816c04020000453f016c040200004500016d040200004500816d040200004507816d040200004508016d040200004508816d040200004509016d040200004509816d04020000450a016d04020000450a816d04020000450f816d040200004510016d040200004510816d04020000451e016d04020000451e816d04020000451f016d04020000451f816d040200004506016f040200004506816f04020000452c016f04020000452c816f04020000452d016f0402000045030170040200004503817004020000450401700402000045048170040200004505017004020000452881700402000045290170040200004529817004020000452a017004020000452a817004020000452b017004020000450201710402000045278171040200004519817204020000451a017204020000451a817204020000451b017204020000451b817204020000451c017204020000451c817204020000451d0172040200004523817204020000452401720402000045248172040200004525017204020000452581720402000045260172040200004526817204020000451201730402000045128173040200004513017304020000451381730402000045140173040200004514817304020000451501730402000045250172040200004515817304020000451601730402000045168173040200004517017304020000451781730402000045180173040200004518817304020000452d81730402000045320173040200004532817304020000453301730402000045338173040200004501017404020000450b017404020000450b817404020000450c017404020000450c817404020000450d017404020000450d817404020000450e017404020000450e8174040200004511017404020000452001740402000045208174040200004521017404020000452181740402000045220174040200004522817404020000452e017404020000452e817404020000452f017404020000452f817404020000453001740402000045308174040200004531017404020000453401740402000045348174040200004535017404020000453581740402000045360174040200004536817404020000453701740402000045378174040200004538017404020000453881740402000045390174040200004539817404020000453a017404020000453a817404020000453b017404020000453b817404020000453c017404020000453c817404020000453d017404020000453d817404020000453e017404020000453e817404020000453f0174040200004500017504020000450701750402000045078175040200004508017504020000452e01ec038200004509017504020000452d91ec03820000450a017504020000450f017504020000450f8175040200004510017504020000452d21ec03820000451e017504020000451e817504020000451f01750402000045058177040200004506017704020000452b817704020000452c017704020000452c817704020000450281780402000045030178040200004503817804020000450401780402000045048178040200004528017804020000452881780402000045290178040200004529817804020000452a017804020000452a817804020000450181790402000045270179040200004519017a040200004519817a04020000451a017a04020000451a817a04020000451b017a04020000451b817a04020000451c017a04020000451c817a040200004523017a040200004523817a040200004524017a040200004524817a040200004525017a040200004525817a040200004526017a040200004511817b040200004512017b040200004512817b040200004513017b040200004513817b040200004514017b040200004514817b04020000450281fc0401c0008515817b04020000451061fb0401c0004529f1ec03820000452981ec038200004517817b040200004518017b04020000452911ec038200004528a1ec03820000452831ec038200004532817b040200004533017b040200004500817c04020000450a817c04020000450b017c04020000450b817c04020000450c017c04020000450c817c04020000450d017c04020000450d817c04020000450e017c040200004510817c04020000451f817c040200004520017c040200004520817c040200004521017c040200004521817c040200004522017c04020000452d817c04020000452e017c04020000452e817c04020000452f017c04020000452f817c040200004530017c040200004530817c040200004533817c040200004534017c040200004534817c040200004535017c040200004535817c040200004536017c040200004536817c040200004537017c040200004537817c040200004538017c040200004538817c040200004539017c040200004539817c04020000453a017c04020000453a817c04020000453b017c04020000453b817c04020000453c017c04020000453c817c04020000453d017c04020000453d817c04020000453e017c04020000453e817c04020000453f017c040200004506817d040200004507017d040200004507817d040200004527c1ec038200004508817d040200004509017d040200004509817d04020000450e817d04020000450f017d04020000452751ec03820000451d017d04020000451d817d04020000451e017d04020000451e817d040200004505017f040200004505817f04020000452b017f04020000452b817f04020000452c017f04020000450201800402000045028180040200004503018004020000450381800402000045040180040200004526e1ec038200004528018004020000452881800402000045290180040200004529818004020000452a01800402000045010181040200004526818104020000451881820402000045190182040200004519818204020000451a018204020000451a818204020000451b018204020000451b21ec03820000451c0182040200004522818204020000451ab1ec0382000045238182040200004524018204020000452481820402000045250182040200004525818204020000451f81f2030200004511818304020000451201830402000045128183040200004519d1ec038200004513818304020000451401830402000045148183040200004515018304020000451961ec038200004516018304020000451681830402000045170183040200004517818304020000452c81830402000045310183040200004531818304020000453201830402000045328183040200004518f1ec03820000450a018404020000450a818404020000450b018404020000450b818404020000450c018404020000450c818404020000450a61ec03820000450d8184040200004509f1ec03820000451f018404020000451f8184040200004530d30302020000430701ec0382000045210184040200004521818404020000450691ec03820000452d818404020000452e018404020000452e818404020000450621ec038200004505b1ec03820000453001840402000045330184040200004533818404020000453401840402000045348184040200004535018404020000453581840402000045360184040200004536818404020000453701840402000045378184040200004538018404020000453881840402000045390184040200004539818404020000453a018404020000453a818404020000453b018404020000453b818404020000453c018404020000453c818404020000453d018404020000453d818404020000453e018404020000453e818404020000450541ec0382000045060185040200004506818504020000452381350381c000850461ec0382000045080185040200004508818504020000450f61fb0401c000850e018504020000450e818504020000450f018504020000451c818504020000451d018504020000451d818504020000451e01850402000045048187040200004505018704020000452bd1eb03820000452b018704020000452b8187040200004501818804020000450880f50381c000852af1eb03820000452671eb038200004511f1eb0382000045270188040200004527818804020000451111eb0382000045288188040200004510a1eb03820000452981880402000045008189040200004526018904020000451031eb038200004518818a040200004519018a040200004519818a04020000451a018a04020000451a818a04020000450fc1eb03820000451b818a040200004522018a040200004522818a040200004523018a040200004523818a04020000450f51eb038200004524818a040200004525018a04020000450ee1eb03820000450e71eb03820000450d91eb03820000450d21eb038200004512818b04020000450cb1eb038200004513818b04020000450c41eb038200004514818b04020000450bd1eb038200004515818b040200004516018b040200004516818b040200004517018b04020000452c018b040200004530818b040200004531018b04020000450301fc0401c0008532018b040200004509818c04020000450a018c04020000450a818c04020000450b018c04020000450b818c04020000450c018c04020000450c818c04020000450d018c04020000450f818c04020000451e818c04020000451f018c04020000451f818c040200004520018c040200004520818c040200004521018c04020000450af1eb03820000452d018c04020000452d818c04020000451f81ea03820000452e818c04020000452f018c04020000452f818c040200004532818c040200004533018c04020000451f11ea038200004534018c040200004534818c040200004535018c040200004535818c040200004536018c040200004536818c040200004537018c040200004537818c040200004538018c040200004538818c040200004539018c040200004539818c04020000453a018c04020000453a818c04020000453b018c04020000453b818c04020000453c018c04020000453c818c04020000453d018c04020000453d818c04020000453e018c04020000453e818c04020000453f018c040200004505818d040200004506018d040200004506818d040200004507018d040200004507818d040200004508018d040200004508818d04020000450d818d04020000450e018d04020000450e818d04020000451c018d04020000451c818d04020000451d018d04020000451d818d040200004504018f040200004504818f04020000451ea1ea03820000452a818f04020000452b018f04020000450101900402000045018190040200004502019004020000450281900402000045030190040200004526819004020000452701900402000045278190040200004528019004020000452881900402000045290190040200004500019104020000452581910402000045178192040200004518019204020000451881920402000045190192040200004519819204020000451a019204020000451a819204020000451b0192040200004521819204020000452201920402000045228192040200004523019204020000452381920402000045240192040200004524819204020000451001930402000045108193040200004511019304020000451181930402000045120193040200004512819304020000451301930402000045138193040200004514019304020000451481930402000045150193040200004515819304020000451e31ea038200004516819304020000452b819304020000453001930402000045308193040200004531019304020000453181930402000045090194040200004509819404020000450a019404020000450a819404020000450b019404020000450b819404020000450c019404020000450c819404020000450f019404020000451dc1ea03820000451e819404020000451f019404020000451f81940402000045200194040200004520819404020000452c019404020000452c819404020000452d019404020000451d51ea03820000452e019404020000452e819404020000452f0194040200004532019404020000453281940402000045330194040200004533819404020000453401940402000045348194040200004535019404020000453581940402000045360194040200004536819404020000453701940402000045378194040200004538019404020000453881940402000045390194040200004539819404020000453a019404020000453a819404020000453b019404020000453b819404020000453c019404020000453c819404020000453d019404020000453d819404020000453e019404020000453e819404020000453f0194040200004505019504020000450581950402000045060195040200004506819504020000450701950402000045078195040200004508019504020000450d019504020000450d819504020000450e019504020000451b819504020000451c019504020000451c819504020000451d019504020000450381970402000045040197040200004529819704020000452a019704020000452a8197040200004500819804020000450101980402000045018198040200004502019804020000450281980402000045260198040200004526819804020000452701980402000045278198040200004528019804020000452881980402000045250199040200004517019a040200004517819a040200004518019a040200004518819a040200004519019a04020000451ce1ea03820000452b81390381c000851a819a04020000451c71ea03820000451581ea038200004522019a04020000451511ea038200004514a1ea03820000451431ea038200004524019a04020000450f819b040200004510019b040200004510819b040200004511019b040200004511819b040200004512019b040200004512819b040200004513c1ea038200004513819b040200004514019b040200004514819b040200004515019b040200004515819b040200004516019b04020000452b019b04020000452f819b040200004530019b040200004530819b040200004531019b040200004508819c040200004509019c040200004509819c04020000450a019c04020000450a819c04020000450b019c04020000450b819c04020000450c019c04020000450e819c04020000451d819c04020000451e019c04020000451e819c04020000451f019c04020000451f819c040200004520019c04020000452b819c04020000452c019c04020000452c819c04020000452d019c04020000452d819c04020000452e019c04020000452e819c040200004531819c040200004532019c040200004532819c040200004533019c040200004533819c040200004534019c040200004534819c040200004535019c040200004535819c040200004536019c040200004536819c040200004537019c040200004537819c040200004538019c040200004538819c040200004539019c040200004539819c04020000453a019c04020000453a819c04020000453b019c04020000453b819c04020000453c019c04020000453c819c04020000453d019c04020000453d819c04020000453e019c04020000453e819c04020000453f019c040200004504819d040200004505019d040200004505819d040200004506019d040200004506819d040200004507019d040200004507819d04020000450c819d04020000450d019d04020000450d819d04020000451b019d04020000451b819d04020000451c019d04020000451c819d040200004503019f040200004503819f040200004529019f040200004529819f04020000452a019f04020000450001a004020000450081a004020000450101a004020000450181a004020000450201a004020000452581a004020000452601a004020000452681a004020000452701a004020000452781a004020000452801a004020000452481a104020000451681a204020000451701a204020000451781a204020000451801a204020000451881a204020000451901a204020000451981a204020000451a01a204020000452081a204020000452101a204020000452181a204020000452201a204020000452281a204020000452301a204020000452381a204020000450f01a304020000451351ea03820000451001a304020000451081a304020000451101a304020000451181a304020000451201a304020000451281a304020000451301a304020000451381a304020000451401a304020000451481a304020000451501a304020000451581a304020000452a81a304020000452f01a304020000452f81a3040200004512e1ea03820000453081a304020000451271ea03820000450881a404020000450901a404020000450981a404020000450a01a404020000450a81a404020000450b01a404020000450b81a404020000450e01a404020000451d01a404020000451d81a404020000451e01a404020000451e81a404020000452081e903820000451f81a404020000452b01a404020000452b81a404020000452c01a404020000452c81a404020000452d01a404020000452401e803820000452e01a404020000453101a404020000453181a404020000453201a404020000453281a404020000453301a404020000453381a404020000453401a404020000453481a404020000453501a404020000453581a404020000452601e703820000453681a404020000453701a404020000453781a404020000453801a404020000453881a404020000453901a404020000453981a404020000453a01a404020000453a81a404020000453b01a404020000453b81a404020000453c01a404020000453c81a404020000453d01a404020000453d81a404020000453e01a404020000453e81a404020000453f01a404020000450401a504020000450481a504020000450501a504020000450581a504020000450601a504020000450681a504020000450701a504020000450c01a504020000450c81a504020000450d01a504020000451a81a504020000451b01a504020000451b81a504020000451c01a504020000450281a704020000450301a704020000452881a704020000452901a704020000452981a704020000450001a804020000450081a804020000450101a804020000451881e503820000452501a804020000452581a804020000452601a804020000452681a804020000452701a804020000452781a804020000452401a904020000451601aa04020000451681aa04020000451701aa04020000451781aa04020000451801aa04020000451881aa04020000451901aa04020000451981aa04020000452001aa04020000452081aa04020000452101aa04020000452181aa04020000452201aa04020000452281aa04020000452301aa04020000450e81ab04020000450f01ab04020000450f81ab04020000451001ab04020000451081ab04020000451101ab04020000451181ab04020000451201ab04020000451281ab04020000451301ab04020000451381ab04020000451401ab04020000451481ab04020000451501ab04020000452a01ab04020000452e81ab04020000452f01ab04020000452f81ab04020000453001ab04020000450781ac04020000450801ac04020000450881ac04020000450901ac04020000450981ac04020000450a01ac04020000450a81ac04020000450b01ac04020000450d81ac04020000451c81ac04020000451d01ac04020000451d81ac04020000450981e503820000451e81ac04020000451f01ac04020000452a81ac04020000452b01ac04020000452b81ac04020000450381e503820000452c81ac04020000452d01ac04020000452d81ac04020000453f81e403820000453101ac04020000453181ac04020000453201ac04020000453281ac04020000453301ac04020000453381ac04020000453401ac04020000453481ac04020000453501ac04020000453581ac04020000453601ac04020000453681ac04020000453701ac04020000453781ac04020000453801ac04020000453881ac04020000453901ac04020000453981ac04020000453a01ac04020000453a81ac04020000453b01ac04020000453b81ac04020000453c01ac04020000453c81ac04020000453d01ac04020000453d81ac04020000453e01ac04020000453e81ac04020000453f01ac04020000450381ad04020000452a81e403820000450481ad04020000450501ad04020000450581ad04020000450601ad04020000450681ad04020000451c01e403820000450a81e403820000450c81ad04020000451a01ad04020000451a81ad04020000451b01ad04020000451b81ad04020000450201af04020000450281af04020000452801af04020000451201e303820000452901af04020000450001b004020000450081b004020000453f81dc03820000452481b004020000452501b004020000452581b004020000452601b004020000452681b004020000452701b004020000452381b104020000451581b204020000451601b204020000451681b204020000451701b204020000451781b204020000451801b204020000451881b204020000453f81d403820000451f81b204020000452001b204020000452081b204020000452101b204020000452181b204020000452201b204020000452281b204020000450e01b304020000450e81b304020000450f01b304020000450f81b304020000451001b304020000451081b304020000451101b304020000451181b304020000451201b304020000451281b304020000451301b304020000451381b304020000451401b304020000451481b304020000452981b304020000452e01b304020000453f81cc03820000452f01b304020000453f81c403820000450701b404020000450781b404020000450801b404020000450881b404020000450901b404020000450981b404020000450a01b404020000450a81b404020000450d01b404020000451c01b404020000451c81b404020000451d01b404020000451d81b404020000451e01b404020000451e81b404020000452a01b404020000452a81b404020000452b01b404020000452b81b404020000452c01b404020000452c81b404020000452d01b404020000453001b404020000453081b404020000453101b404020000453181b404020000453201b404020000453281b404020000453301b404020000453381b404020000453401b404020000453481b404020000453f81b403820000453581b404020000453601b404020000453681b404020000453701b404020000453781b404020000453801b404020000453881b404020000453f81ac03820000453981b404020000453a01b404020000453a81b404020000453b01b404020000453b81b404020000453c01b404020000453c81b404020000453d01b404020000453d81b404020000453e01b404020000453e81b404020000453f01b404020000450301b504020000450381b504020000450401b504020000450481b504020000450501b504020000450581b504020000450601b504020000453f81a403820000450b81b504020000450c01b504020000451981b504020000451a01b504020000451a81b504020000451b01b504020000450181b704020000450201b704020000452781b704020000452801b704020000452881b704020000450001b804020000450081b804020000452401b804020000452481b804020000452501b804020000452581b804020000452601b804020000452681b804020000452301b904020000451501ba04020000451581ba04020000451601ba04020000451681ba040200004515013c0381c000851781ba04020000451801ba04020000453f819c03820000451f01ba04020000451f81ba04020000452001ba04020000453f819403820000452101ba04020000452181ba04020000452201ba04020000450d81bb04020000450e01bb04020000450e81bb04020000453f818c03820000453f818403820000451001bb04020000451081bb04020000451101bb04020000451181bb04020000451201bb04020000451281bb04020000451301bb04020000451381bb04020000451401bb04020000452901bb04020000452d81bb04020000453f817c03820000452e81bb04020000452f01bb04020000450681bc04020000450701bc04020000450781bc04020000450801bc04020000450881bc04020000450901bc04020000450981bc04020000450a01bc04020000450c81bc04020000451b81bc04020000451c01bc04020000453f817403820000451d01bc04020000451d81bc04020000451e01bc04020000452981bc04020000452a01bc04020000452a81bc04020000452b01bc04020000452b81bc04020000452c01bc04020000453f816c03820000452f81bc04020000453001bc04020000453f815403820000453101bc04020000453181bc04020000453201bc04020000453281bc04020000453301bc04020000453381bc04020000453401bc04020000453481bc04020000453501bc04020000453581bc04020000453601bc04020000453681bc04020000453701bc04020000453781bc04020000453801bc04020000453881bc04020000453901bc04020000453981bc04020000453a01bc04020000453a81bc04020000453b01bc04020000453b81bc04020000453c01bc04020000453c81bc04020000453d01bc04020000453d81bc04020000453e01bc04020000453e81bc04020000453f01bc04020000450281bd04020000450301bd04020000450381bd04020000450401bd04020000450481bd04020000450501bd04020000450581bd04020000450a81bd04020000450b01bd04020000450b81bd04020000451901bd04020000451981bd04020000451a01bd04020000451a81bd04020000450101bf04020000450181bf04020000452701bf04020000452781bf04020000452801bf04020000453f814c03820000452381c004020000452401c004020000452481c004020000453f814403820000452581c004020000453f813c03820000452281c104020000451481c204020000451501c204020000453f813403820000451601c204020000451681c204020000451701c204020000451781c204020000451801c204020000451e81c204020000451f01c204020000451f81c204020000452001c204020000452081c204020000452101c204020000452181c204020000450d01c304020000450d81c304020000450e01c304020000450e81c304020000453f812c03820000450f81c304020000451001c304020000451081c304020000451101c304020000451181c304020000451201c304020000451281c304020000451301c304020000451381c304020000452881c304020000452d01c304020000452d81c304020000452e01c304020000452e81c304020000450601c404020000450681c404020000450701c404020000450781c404020000450801c404020000450881c404020000450901c404020000450981c404020000450c01c404020000451b01c404020000451b81c404020000451c01c404020000451c81c404020000451d01c404020000451d81c404020000452901c404020000452981c404020000452a01c404020000452a81c404020000452b01c404020000452b81c404020000452c01c404020000452f01c404020000452f81c404020000453001c404020000453081c404020000453101c404020000453181c404020000453201c404020000453281c404020000453301c404020000453381c404020000453401c404020000453481c404020000453501c404020000453581c404020000453601c404020000453681c404020000453701c404020000453781c404020000453801c404020000453881c404020000453901c404020000453981c404020000453a01c404020000453a81c404020000453b01c404020000453b81c404020000453c01c404020000453c81c404020000453d01c404020000453d81c404020000453e01c404020000453e81c404020000453f01c404020000450201c504020000450281c504020000450301c504020000450381c504020000450401c504020000450481c504020000450501c504020000450a01c504020000450a81c504020000450b01c504020000451881c504020000451901c504020000451981c504020000451a01c504020000450081c704020000450101c704020000452681c704020000452701c704020000452781c704020000452301c804020000452381c804020000452401c804020000452481c804020000452501c804020000452581c804020000452201c904020000451401ca04020000451481ca04020000451501ca04020000451581ca04020000451601ca04020000451681ca04020000451701ca04020000451781ca04020000451e01ca04020000451e81ca04020000451f01ca04020000451f81ca04020000452001ca04020000452081ca04020000452101ca04020000450c81cb04020000450d01cb04020000450d81cb04020000450e01cb04020000450e81cb04020000450f01cb04020000450f81cb04020000451001cb04020000451081cb04020000451101cb04020000451181cb04020000451201cb04020000451281cb04020000451301cb04020000452801cb04020000452c81cb04020000452d01cb04020000452d81cb04020000452e01cb04020000450581cc04020000450601cc04020000450681cc04020000450701cc04020000450781cc04020000450801cc04020000450881cc04020000450901cc04020000450b81cc04020000451a81cc04020000451b01cc04020000451b81cc04020000451c01cc04020000451c81cc04020000451d01cc04020000452881cc04020000452901cc04020000452981cc04020000452a01cc04020000452a81cc04020000452b01cc04020000452b81cc04020000452e81cc04020000452f01cc04020000452f81cc04020000453001cc04020000453081cc04020000453101cc04020000453181cc04020000453201cc04020000453281cc04020000453301cc04020000453381cc04020000453401cc04020000453481cc04020000453501cc04020000453581cc04020000453601cc04020000453681cc04020000453701cc04020000453781cc04020000453801cc04020000453881cc04020000453901cc04020000453981cc04020000453a01cc04020000453a81cc04020000453b01cc04020000453b81cc04020000453c01cc04020000453c81cc04020000453d01cc04020000453d81cc04020000453e01cc04020000453e81cc04020000453f01cc04020000450181cd04020000450201cd04020000450281cd04020000450301cd04020000450381cd04020000450401cd04020000450481cd04020000450981cd04020000450a01cd04020000450a81cd04020000451801cd04020000451881cd04020000451901cd04020000451981cd04020000450001cf04020000450081cf04020000452601cf04020000452681cf04020000452701cf04020000452281d004020000452301d004020000452381d004020000452401d004020000452481d004020000452501d004020000452181d104020000451381d204020000451401d204020000451481d204020000451501d204020000451581d204020000451601d204020000451681d204020000451701d204020000451d81d204020000451e01d204020000451e81d204020000451f01d204020000451f81d204020000452001d204020000452081d204020000450c01d304020000450c81d304020000450d01d304020000450d81d304020000450e01d304020000450e81d304020000450f01d304020000450f81d304020000451001d304020000451081d304020000451101d304020000451181d304020000451201d304020000451281d304020000452781d304020000452c01d304020000452c81d304020000452d01d304020000453f811c03820000453f80f403820000450581d404020000450601d404020000450681d404020000450701d404020000450781d404020000450801d404020000450881d404020000450b01d404020000451a01d404020000451a81d404020000451b01d404020000451b81d404020000451c01d404020000451c81d404020000452801d404020000452881d404020000452901d404020000452981d404020000452a01d404020000452a81d404020000452b01d404020000452e01d404020000452e81d404020000452f01d404020000452f81d404020000453001d404020000453081d404020000453101d404020000453181d404020000453201d404020000453281d404020000453301d404020000453381d404020000453401d404020000453481d404020000453501d404020000453581d404020000453601d404020000453681d404020000453701d404020000453781d404020000453801d404020000453881d404020000453901d404020000453981d404020000453a01d404020000453a81d404020000453b01d404020000453b81d404020000453c01d404020000453c81d404020000453d01d404020000453d81d404020000453e01d404020000453e81d404020000453f01d404020000450101d504020000450181d504020000450201d504020000450281d504020000450301d504020000450381d504020000450401d504020000450901d504020000450981d504020000450a01d504020000451781d504020000451801d504020000451881d504020000451901d504020000450001d704020000452581d704020000452601d704020000452681d704020000452201d804020000452281d804020000452301d804020000452381d804020000452401d804020000452481d804020000452101d904020000451301da04020000451381da04020000451401da04020000451481da04020000451501da04020000451581da04020000451601da04020000451681da04020000451d01da04020000451d81da04020000451e01da04020000451e81da04020000451f01da04020000451f81da04020000452001da04020000450b81db04020000450c01db04020000450c81db04020000450d01db04020000450d81db04020000450e01db04020000450e81db04020000450f01db04020000450f81db04020000451001db04020000451081db04020000451101db04020000451181db04020000451201db04020000452701db04020000452b81db04020000452c01db04020000452c81db04020000452d01db04020000450481dc04020000450501dc04020000450581dc04020000450601dc04020000450681dc04020000450701dc04020000450781dc04020000450801dc04020000450a81dc04020000451981dc04020000451a01dc04020000451a81dc04020000451b01dc04020000451b81dc04020000451c01dc04020000452781dc04020000452801dc04020000452881dc04020000452901dc04020000452981dc04020000452a01dc04020000452a81dc04020000452d81dc04020000452e01dc04020000452e81dc04020000452f01dc04020000452f81dc04020000453001dc04020000453081dc04020000453101dc04020000453181dc04020000453201dc04020000453281dc04020000453301dc04020000453381dc04020000453401dc04020000453481dc04020000453501dc04020000453581dc04020000453601dc04020000453681dc04020000453701dc04020000453781dc04020000453801dc04020000453881dc04020000453901dc04020000453981dc04020000453a01dc04020000453a81dc04020000453b01dc04020000453b81dc04020000453c01dc04020000453c81dc04020000453d01dc04020000453d81dc04020000453e01dc04020000453e81dc04020000453f01dc04020000450081dd04020000450101dd04020000450181dd04020000450201dd04020000450281dd04020000450301dd04020000450381dd04020000450881dd04020000450901dd04020000450981dd04020000451701dd04020000451781dd04020000451801dd04020000451881dd04020000452501df04020000452581df04020000452601df04020000452181e004020000452201e004020000452281e004020000452301e004020000452381e004020000452401e004020000452081e104020000451281e204020000451301e204020000451381e204020000451401e204020000451481e204020000451501e204020000451581e204020000451601e204020000451c81e204020000451d01e204020000451d81e204020000451e01e204020000451e81e204020000451f01e204020000451f81e204020000450b01e304020000450b81e304020000450c01e304020000450c81e304020000450d01e304020000450d81e304020000450e01e304020000450e81e304020000450f01e304020000450f81e304020000451001e304020000451081e304020000451101e304020000451181e304020000452681e304020000452b01e304020000452b81e304020000452c01e304020000452c81e304020000450401e404020000450481e404020000450501e404020000450581e404020000450601e404020000450681e404020000450701e404020000450781e404020000450a01e404020000451901e404020000451981e404020000451a01e404020000451a81e404020000451b01e404020000451b81e404020000452701e404020000452781e404020000451b83f603820000442881e404020000452901e404020000452981e404020000452a01e404020000452d01e404020000451b31f403820000452e01e404020000452e81e404020000452f01e404020000452f81e404020000453001e404020000453081e404020000453101e404020000453181e404020000453201e404020000453281e404020000453301e404020000453381e404020000453401e404020000453481e404020000453501e404020000453581e404020000453601e404020000453681e404020000453701e404020000453781e404020000453801e404020000453881e404020000453901e404020000453981e404020000453a01e404020000453a81e404020000453b01e404020000453b81e404020000450481350381c000853c81e404020000453d01e404020000453d81e404020000453e01e404020000453e81e404020000453f01e404020000450001e504020000450081e504020000450101e504020000450181e504020000450201e504020000450281e504020000450301e504020000450801e504020000450881e504020000450901e504020000451681e504020000451701e504020000451781e504020000451801e504020000452481e704020000452501e704020000452581e704020000452101e804020000452181e804020000452201e804020000452281e804020000452301e804020000452381e804020000453c01e404020000450081750301c000852d81e404020000453f83f503820000440f83f603820000442801e404020000450501d404020000452d81d304020000453f812403820000450f01c304020000451581c204020000452601c004020000452501c004020000450001c004020000453081bc04020000453f815c03820000453f816403820000452c81bc04020000451c81bc04020000452e01bb04020000450f81bb04020000450f01bb04020000452081ba04020000451881ba04020000451701ba04020000450b01b504020000453901b404020000453501b404020000453f81bc03820000452f81b304020000452e81b304020000451901b204020000450101b004020000452881af04020000450c01ad04020000450b81ad04020000450401ad04020000453081ac04020000452c01ac04020000451e01ac04020000450181a804020000453601a404020000452d81a404020000451f01a404020000450801a404020000453001a304020000450f81a3040200004513019b040200004523819a040200004523019a040200004522819a040200004521819a040200004515f1ea038200004521019a04020000451a019a040200004519819a04020000452d819404020000451e0194040200004516019304020000452a018f040200004533818c04020000452e018c04020000452c818c040200004531818b040200004515018b040200004514018b040200004513018b040200004512018b040200004511818b04020000450e01eb038200004511018b040200004510818b040200004524018a04020000451b018a040200004518018a0402000045290188040200004528018804020000450a01280381c000851181eb038200004503818804020000450301880402000045028188040200004502018804020000452b61eb03820000452a818704020000452c41eb03820000450901850402000045078185040200004504d1ec038200004507018504020000453f018404020000452f818404020000452f018404020000452d018404020000452081840402000045200184040200004510018404020000450d01840402000045000184040200004505012d0381c0008515818304020000451301830402000045110183040200004523018204020000451b818204020000451b91ec038200004527818004020000450f817d040200004508017d040200004532017b040200004531817b04020000452d017b040200004517017b040200004516817b040200004516017b040200004515017b04020000451d81750402000045098175040200004508817504020000453801640402000045350164040200004531016404020000452fc1ec0382000045308164040200004530a1ec038200004521016404020000450d0164040200004502016404020000453481630402000045190163040200004518016304020000451601630402000045260162040200004525816204020000451e016204020000451d016204020000451c016204020000451b016204020000452b816004020000452b016004020000452a816004020000452a016004020000450601600402000045048160040200004520015d040200004511015d040200004508815d040200004501015d040200004500015d04020000453e815c04020000453e015c04020000453d815c04020000453d015c04020000453c815c04020000453c015c04020000453b815c04020000453b015c04020000453a815c040200004539015c040200004538815c040200004538015c040200004537815c040200004537015c040200004532015c040200004531015c040200004501c1ed03820000452f815c040200004524015c040200004523815c040200004522815c040200004522015c040200004521815c040200004512815c04020000450e015c04020000450d815c040200004533815b04020000452f015b04020000451a015b040200004519815b040200004519015b040200004518015b040200004517815b040200004517015b040200004516015b040200004525c1ef038200004515815b040200004515015b040200004514815b040200004513815b040200004528015a040200004527015a040200004526815a040200004526015a040200004525815a040200004525015a04020000451e815a04020000451e015a04020000451d815a04020000451d015a04020000451c815a04020000451b815a04020000451b015a040200004529015904020000452c015804020000452b815804020000452b015804020000452a815804020000452a01580402000045068158040200004506015804020000450581580402000045050158040200004504815804020000452e815704020000452e015704020000452d81570402000045080157040200004507815704020000452101550402000045208155040200004520015504020000451f815504020000451201550402000045118155040200004511015504020000450c015504020000450b815504020000450b015504020000450a815504020000450a0155040200004509815504020000450901550402000045020155040200004501815504020000450101550402000045008155040200004500015504020000453f015404020000453e815404020000453e015404020000453d815404020000453d015404020000453c815404020000453c015404020000453b815404020000453b015404020000453a815404020000453a015404020000453981540402000045390154040200004538815404020000453801540402000045378154040200004537015404020000453681540402000045360154040200004533015404020000453281540402000045320154040200004531815404020000453101540402000045308154040200004530015404020000452481540402000045240154040200004523815404020000452301540402000045228154040200004522015404020000451301540402000045108154040200004510015404020000450f815404020000450f015404020000450e815404020000450e015404020000450d815404020000450d01540402000045030154040200004535815304020000453501530402000045348153040200004534015304020000452f815304020000451a815304020000451a015304020000451981530402000045190153040200004518815304020000451801530402000045178153040200004517015304020000451681530402000045160153040200004528815204020000452801520402000045278152040200004527015204020000452681520402000045260152040200004525815204020000451f015204020000451e815204020000451e015204020000451d815204020000451d015204020000451c815204020000451c015204020000451b81520402000045298151040200004504015104020000452d015004020000452c815004020000452c015004020000452b815004020000452b015004020000452a81500402000045070150040200004506815004020000450601500402000045058150040200004505015004020000452f014f04020000452e814f04020000452e014f040200004508814f040200004508014f04020000452ad1f3038200004521814d040200004521014d040200004520814d040200004520014d040200004512814d040200004512014d040200004511814d04020000450c814d04020000450c014d04020000450b814d04020000450b014d04020000450a814d04020000450a014d040200004509814d040200004502814d040200004502014d040200004501814d040200004501014d040200004500814d040200004500014d04020000453f014c04020000453e814c04020000453e014c04020000453d814c04020000453d014c04020000453c814c04020000453c014c04020000453b814c04020000453b014c04020000453a814c04020000453a014c040200004539814c040200004539014c040200004538814c040200004538014c040200004537814c040200004537014c040200004536814c040200004533814c040200004533014c040200004532814c040200004532014c040200004531814c040200004531014c040200004530814c040200004525014c040200004524814c040200004524014c040200004523814c040200004523014c040200004522814c040200004513814c040200004511014c040200004510814c040200004510014c04020000450f814c04020000450f014c04020000450e814c04020000450e014c04020000450d814c04020000450fa1f3038200004503814c040200004536014b040200004535814b040200004535014b040200004530014b04020000451b014b040200004519814b040200004519014b040200004518814b040200004518014b040200004517814b040200004517014b040200004516814b040200004516014b040200004515814b040200004515014b040200004514814b040200004529014a040200004527014a040200004526014a04020000451f814a04020000451f014a04020000451e814a04020000451e014a04020000451d814a04020000451d014a04020000451c814a04020000452a014904020000452d814804020000452d014804020000452c814804020000452c014804020000452b81480402000045068148040200004505814804020000452f814704020000452f0147040200004509014704020000452201450402000045218145040200004521014504020000452081450402000045130145040200004512014504020000450d014504020000450c814504020000450c014504020000450b814504020000450a8145040200004503014504020000450281450402000045020145040200004501814504020000450101450402000045008145040200004500014504020000453f014404020000453e814404020000453e014404020000453c814404020000453c014404020000453b814404020000453b014404020000453a8144040200004539814404020000453881440402000045378144040200004537014404020000453401440402000045328144040200004532014404020000452501440402000045240144040200004523814404020000452301440402000045140144040200004511814404020000451101440402000045108144040200004510014404020000450f814404020000450f014404020000450e814404020000450e014404020000450401440402000045368143040200004536014304020000453581430402000045350143040200004530814304020000451b814304020000451b014304020000451a814304020000451a0143040200004519814304020000451901430402000045188143040200004517814304020000451701430402000045168143040200004515814304020000451501430402000045298142040200004529014204020000452881420402000045280142040200004527814204020000452701420402000045268142040200004520014204020000451f814204020000451f014204020000451e814204020000451e014204020000451d814204020000451d014204020000451c814204020000452a8141040200004505014104020000452e014004020000452d814004020000452d014004020000452c814004020000452c014004020000452b81400402000045078140040200004530013f04020000452f013f040200004509813f040200004509013f040200004522813d040200004522013d040200004521813d040200004521013d040200004513813d040200004513013d040200004512813d04020000450d813d04020000450d013d04020000450c813d04020000450c013d04020000450b813d04020000450b013d040200004503813d040200004503013d040200004502813d040200004502013d040200004501813d040200004501013d040200004500813d040200004500013d04020000453f013c04020000453e813c04020000453e013c04020000453d813c04020000453d013c04020000453c813c04020000453c013c04020000453b813c04020000453b013c04020000453a813c04020000453a013c040200004534013c040200004533013c040200004532813c040200004532013c040200004526013c040200004525813c040200004525013c040200004524813c040200004524013c040200004523813c040200004514813c040200004512013c040200004511813c040200004511013c040200004510813c040200004510013c04020000450f813c04020000450f013c04020000450e813c040200004504813c040200004537013b040200004536813b040200004536013b040200004535813b040200004531013b04020000451c013b04020000451b813b04020000451b013b04020000451a813b04020000451a013b040200004519813b040200004519013b040200004518813b040200004518013b040200004517813b040200004517013b040200004516813b040200004516013b040200004515813b04020000452a013a040200004529813a040200004528813a040200004527813a040200004520813a04020000451f813a04020000451f013a04020000451e813a04020000451e013a04020000451d813a04020000451d013a04020000452e813804020000452d813804020000452d013804020000452c813804020000452c013804020000450881380402000045080138040200004507813804020000450681380402000045308137040200004530013704020000452f813704020000450a0137040200004509813704020000452301350402000045228135040200004522013504020000452181350402000045140135040200004513013504020000450e013504020000450d813504020000450d013504020000450c813504020000450c013504020000450b813504020000450b01350402000045040135040200004503813504020000450301350402000045020135040200004501813504020000453f013404020000453e813404020000453e013404020000453d813404020000453c813404020000453c013404020000453b813404020000453a81340402000045348134040200004533813404020000452681340402000045258134040200004525013404020000451501340402000045110134040200004510013404020000450f01340402000045378133040200004536813304020000451c013304020000451b013304020000451a013304020000451901330402000045180133040200004516813304020000451601330402000045298132040200004529013204020000452781320402000045210132040200004520013204020000451f013204020000451e813204020000451e013204020000452b813104020000452f013004020000452e013004020000452d013004020000452c81300402000045090130040200004508013004020000450781300402000045070130040200004531012f040200004530812f040200004530012f04020000450a812f04020000450a012f040200004523812d040200004523012d040200004522812d040200004522012d040200004514812d040200004514012d040200004513812d04020000450e012d04020000450d812d04020000450d012d04020000450c812d04020000450c012d040200004503f1ec03820000450b812d040200004504812d040200004504012d040200004503812d040200004503012d040200004502812d040200004502012d040200004501812d040200004501012d040200004500812d040200004500012d04020000453f012c04020000453e812c04020000453e012c04020000453d812c04020000453d012c04020000453c812c04020000453c012c04020000453b812c04020000453b012c04020000453a812c04020000453a012c040200004539812c040200004539012c040200004538812c040200004535812c040200004534812c040200004534012c040200004533812c040200004533012c040200004532812c040200004527012c040200004526812c040200004525812c040200004525012c040200004524812c040200004515812c040200004513012c040200004512812c040200004512012c040200004511812c040200004511012c040200004510812c040200004510012c04020000450f812c040200004505812c040200004538012b040200004537812b040200004537012b040200004536812b040200004532012b04020000451d012b04020000451c812b04020000451c012b04020000451b812b04020000451a812b04020000451a012b040200004519812b040200004519012b040200004518812b040200004518012b040200004517812b040200004517012b040200004516812b04020000452a012a040200004529812a040200004529012a040200004528812a040200004528012a040200004521812a040200004521012a040200004520812a04020000451e812a04020000451e012a04020000452c0129040200004506812904020000452f812804020000452f012804020000452e812804020000452d812804020000452d012804020000451a41ec03820000450981280402000045090128040200004508812804020000450781280402000045310127040200004530812704020000450b012704020000450a8127040200004524012504020000452381250402000045230125040200004522812504020000451501250402000045148125040200004514012504020000450f012504020000450e812504020000450e012504020000450d812504020000450d012504020000450c812504020000450c01250402000045050125040200004504812504020000450401250402000045038125040200004503012504020000450281250402000045020125040200004501812504020000450101250402000045008125040200004500012504020000453e012404020000453d812404020000453d012404020000453c812404020000453c012404020000453b812404020000453b012404020000453a812404020000453a012404020000453981240402000045390124040200004536012404020000453581240402000045350124040200004534812404020000453401240402000045338124040200004533012404020000452781240402000045270124040200004526812404020000452601240402000045258124040200004525012404020000451601240402000045138124040200004513012404020000451281240402000045120124040200004511812404020000451101240402000045108124040200004510012404020000450601240402000045388123040200004538012304020000452a61ec038200004537812304020000452cb1ec0382000045370123040200004532812304020000451d812304020000451d012304020000451c812304020000451c012304020000451b812304020000451b012304020000451a812304020000451a012304020000451981230402000045178123040200004517012304020000452b812204020000452b012204020000452a01220402000045298122040200004529012204020000452881220402000045220122040200004521812204020000452101220402000045208122040200004520012204020000451f812204020000451f012204020000451e812204020000452c81210402000045070121040200004530012004020000452f812004020000452e812004020000453111ec03820000452e012004020000452d812004020000450a012004020000450981200402000045080120040200004532011f04020000450b811f040200004524811d040200004523811d040200004523011d040200004515811d04020000450f811d040200004526811c040200004521011a040200004532010f04020000450c810f04020000450c010f040200004525810d04020000450b80d9040200004532d0d8040200004531d0d804020000453150d8040200004530d0d804020000453050d804020000450e80d804020000450e00d804020000450d80d804020000450d00d804020000450c80d804020000453490d704020000451280d504020000451200d504020000451180d504020000450700d504020000450680d504020000450580d504020000450500d504020000450480d504020000450400d504020000450380d504020000450300d504020000450b80e10381c000850151ed038200004502a1ed03820000450851ed03820000450280d504020000450200d504020000450180d504020000450100d504020000453740d4040200004536c0d404020000453640d404020000451500d404020000450b00d404020000453ad0d3040200004508c1ed03820000453540d3040200004521b0d304020000451cb0d304020000451c30d304020000451bb0d304020000452e00d204020000452d80d2040200004522c0d204020000452240d204020000452fd0d104020000450e00d004020000450d80d004020000450d00d0040200004534c0cf04020000453440cf040200004533c0cf04020000451080cf04020000450300cd04020000450280cd04020000450200cd04020000450180cd04020000450100cd04020000453de0cc04020000453be0cc04020000453b60cc040200004536d0cc04020000452b80cc04020000452b00cc04020000452900cc04020000453413e504020000441ab0cc040200004518a0cc04020000451820cc040200004517a0cc04020000451720cc04020000452040cb04020000451f40cb04020000451ec0cb04020000452880c504020000452800c504020000452780c504020000452700c504020000451a30c5040200004519b0c504020000451930c5040200004514a0c5040200004513a0c504020000450a00c504020000450980c504020000450900c504020000450880c504020000450800c504020000450780c504020000450700c504020000450680c504020000450580c504020000450200c504020000450180c504020000450100c504020000450080c504020000450000c504020000453f30c404020000453eb0c404020000451661ed03820000453e30c404020000453d30c4040200004536e0c404020000453660c4040200004517b1ed038200004535e0c404020000452bd0c404020000452b50c4040200004529d0c404020000451630c4040200004515b0c4040200004539b0c304020000452220c3040200004517e202040180008521a0c304020000452120c3040200004520a0c304020000453350c004020000450780bd04020000450600bd04020000450580bd04020000450500bd04020000450480bd04020000450400bd04020000450380bd04020000450300bd04020000450280bd04020000450200bd04020000450180bd04020000450100bd04020000450080bd04020000450000bd04020000453f40bc04020000453ec0bc04020000453f90a403020000453e40bc04020000453dc0bc04020000452061f103820000453d40bc04020000453cc0bc04020000453c40bc04020000453bc0bc04020000451840bc040200004539c0bb040200004535b0bb04020000452280bb04020000452fc0ba04020000452450ba04020000450ea0b804020000450e20b804020000452810b504020000452790b504020000451aa0b5040200004511c0b504020000450880b504020000450800b5040200004517a0b404020000451720b4040200004516a0b404020000451620b4040200004515a0b404020000450d00b404020000452510b204020000452490b204020000452410b2040200004533b0b004020000453130b004020000451030b004020000453540af04020000452940ad04020000451520ad04020000451420ad040200004512a0ad04020000450c00ad04020000450a00ad04020000450680ad04020000450480ad04020000450000ad04020000453bb0ab040200004535e0ab04020000452290ab04020000452190ab04020000452090ab04020000451f90ab04020000451e90ab04020000451d90ab04020000453340a804020000453240a804020000450580a504020000450500a504020000451783f604020000441683f604020000440e83f604020000440e03f604020000440d83f604020000440d03f604020000440c03f604020000440b83f604020000440a83f604020000440983f604020000440883f604020000440783f604020000440683f604020000443d83f504020000442e03f504020000442d03f504020000442803f504020000442703f504020000442503f504020000442383f504020000442283f504020000442183f504020000442083f504020000441f83f504020000441e83f504020000441d83f504020000441c83f504020000441603f504020000441503f504020000441403f504020000441303f504020000441203f504020000441103f504020000441003f504020000441b03ee04020000441a03ee04020000441903ee04020000441803ee04020000441703ee04020000440f03ee04020000440e03ee04020000440d03ee04020000440c03ee04020000440b03ee04020000440a03ee04020000440903ee04020000440803ee04020000440703ee04020000440603ee04020000440503ee04020000440403ee04020000440303ee04020000440203ee04020000440103ee04020000440003ee04020000443e53ed04020000443dd3ed04020000443c53ed04020000443bd3ed040200004432d3ed04020000443253ed040200004429d3ed04020000442853ed040200004426d3ed040200004425d3ed04020000442353ed04020000442253ed040200004421d3ed04020000442153ed040200004420d3ed04020000441fd3ed04020000441ed3ed04020000441dd3ed04020000441cd3ed04020000441603ed04020000441583ed04020000441421f203820000451483ed04020000441383ed04020000441283ed04020000441571f203820000451183ed04020000441753e604020000440f83e604020000440e83e604020000440883e604020000440803e604020000440503e604020000440483e604020000440183e604020000443d13e504020000443a93e504020000443593e5040200004436815c040200004531815c0402000045078148040200004529013a040200004527013a04020000453981340402000045388134040200004515e1f203820000451c01f2038200004531813304020000451c8133040200004526012c04020000452a812a04020000451f012a0402000045080128040200004504811d040200004504011d040200004503811d040200004503011d040200004502011d040200004501811d040200004501011d04020000451c71f2038200004500811d04020000452b011a040200004520011a04020000451f011a040200004530011804020000450c011704020000450b81170402000045250115040200004524811504020000452401150402000045238115040200004516011504020000451581150402000045150115040200004510011504020000450f811504020000450f011504020000450e811504020000450e011504020000450d811504020000450d01150402000045060115040200004505811504020000450501150402000045040115040200004503811504020000450301150402000045020115040200004501811504020000450101150402000045008115040200004500011504020000453f211404020000453da11404020000453ca11404020000453c211404020000453ba11404020000453b211404020000451081f3038200004506010d04020000451500fc04020000451400fc04020000451300fc04020000450880fc04020000450180e504020000450100e504020000450080e504020000452740aa04020000451161f3038200004526c0aa040200004511d1f303820000452640aa040200004525c0aa040200004532c0a804020000453140a804020000451040a804020000451120a704020000451b50a504020000450800a504020000450780a504020000450700a504020000450680a504020000450600a504020000450480a504020000450080a504020000453f10a404020000453e90a404020000451903f604020000442631f303820000451883f604020000440403f604020000440383f604020000440303f604020000440283f604020000440203f604020000440183f604020000443c03f504020000443b03f504020000443a83f504020000443603f504020000443583f504020000443083f504020000443003f504020000442f83f504020000442f03f504020000442e83f504020000442d83f504020000442903f504020000442783f504020000442683f504020000441f03f504020000441e03f504020000441a83ee04020000441983ee04020000441883ee04020000441783ee04020000440f83ee04020000440e83ee04020000440683ee04020000440483ee04020000440383ee04020000443ad3ed04020000443a53ed04020000443553ed040200004434d3ed040200004433d3ed04020000443353ed040200004431d3ed04020000442dd3ed04020000442cd3ed04020000442c53ed04020000442653ed04020000442553ed04020000441203ed04020000441103ed04020000441083ed04020000441bd3e604020000441b53e604020000441ad3e604020000440f03e604020000440d83e604020000440d03e604020000440703e604020000440683e604020000443f13e504020000443e93e504020000443e13e504020000443d93e504020000443c93e504020000443c13e504020000443793e504020000443693e504020000443513e5040200004426814a04020000452b014804020000453a014404020000453901440402000045330144040200004531814404020000452c21f3038200004506814004020000450a813d040200004528013a04020000450081350402000045000135040200004532013404020000452601340402000045128134040200004512013404020000451a8133040200004520012a04020000451f812a040200004505011d04020000453f011c04020000453e811c04020000453d811c04020000453d011c040200004537811b040200004533011b04020000451e011b04020000451d811b040200004519811b040200004522011a040200004521811a040200004509011804020000450881180402000045370114040200004526011404020000451701140402000045392113040200004538a1130402000045382113040200004537a11304020000451a811304020000451981130402000045190113040200004529811204020000452301120402000045310110040200004530811004020000450381f403820000452b20f2040200004504d1f403820000450541f403820000452500f204020000452480f204020000450621f403820000451280ed04020000451200ed04020000451180ed04020000451100ed04020000451080ed04020000451000ed04020000453480eb04020000452100eb04020000452080eb04020000452000eb04020000451f80eb04020000451f00eb04020000451e80eb04020000451e00eb04020000450691f403820000451d80eb04020000451d00eb04020000451c80eb04020000451c00eb04020000451b80eb04020000451b00eb04020000451a80eb04020000452e30ea04020000452db0ea04020000452d30ea04020000452cb0ea04020000452c30ea04020000452bb0ea04020000452b30ea04020000452580ea04020000452500ea04020000452480ea04020000450c80e004020000450c00e0040200004533d0df04020000453350df04020000450f80df04020000450f00df040200004527b0dd04020000452730dd040200004526b0dd04020000451980dd04020000451900dd04020000451880dd04020000451300dd04020000451200dd04020000451180dd04020000451080dd04020000450980dd04020000450900dd04020000450880dd04020000450780dd04020000450580dd04020000450380dd04020000450280dd04020000450200dd04020000450180dd04020000450100dd04020000450080dd04020000450000dd04020000453d40dc04020000453b40dc04020000453890dc04020000453810dc04020000453790dc04020000452711f403820000453ac0db04020000453510db04020000452120db040200004520a0db04020000452020db04020000451fa0db04020000451f20db04020000451ea0db04020000451e20db04020000451d20db04020000452e20da04020000451a00d504020000451400d504020000451380d504020000451300d504020000450600d504020000450080d504020000450000d504020000451e30d304020000451db0d304020000451d30d304020000452d00d204020000453090d004020000450e80d004020000451280cd04020000451200cd04020000450500cd04020000450480cd04020000451620cc040200004515a0cc04020000451520cc04020000450b80cc04020000451dc0cb04020000451d40cb04020000451cc0cb04020000451c40cb040200004525a0ca04020000452520ca040200004524a0ca04020000452420ca04020000450f00c804020000450e80c804020000450b00c504020000450a80c504020000453bb0c4040200004538e0c404020000453860c4040200004537e0c404020000453a30c304020000453560c304020000452f90c204020000452f10c204020000452e90c204020000452e10c204020000452300c204020000453040c104020000450d00c1040200004532d0c004020000451120bf040200004510a0bf04020000451230bd040200004511b0bd04020000453830bc040200004537b0bc04020000451740bc040200004516c0bc04020000451f00bb04020000451e80bb04020000452650ba040200004523d0ba04020000453530b7040200004534b0b704020000451240b504020000450c00b504020000450480b504020000450400b504020000453d60b404020000453ce0b404020000452bc0b404020000452b40b404020000452ac0b404020000452a40b404020000452150b3040200004520d0b3040200004526a1f403820000450781f803820000441ac1f403820000451a51f403820000453230b004020000450fb0b004020000450f30b0040200004519e1f403820000451971f403820000450eb0b004020000451a00ad040200004514a0ad040200004513a0ad04020000451220ad04020000450500ad04020000451901f403820000450400ad04020000453c30ac04020000453960ac040200004538e0ac04020000453860ac04020000451891f403820000451900ac04020000451880ac04020000451800ac04020000451780ac04020000451e10ab04020000451d10ab04020000452440aa040200004523c0aa04020000450a11f4038200004530b0a904020000450db0a904020000451320a5040200004512a0a504020000450180a5040200004509a1f403820000450100a504020000450000a504020000453e10a404020000450803f604020000440703f604020000440603f604020000440583f604020000443a03f504020000443983f504020000443903f504020000443883f504020000443203f504020000443183f504020000443103f504020000442c83f504020000442203f504020000442103f504020000440b83ee04020000440a83ee04020000441f811a04020000452d0119040200004507811904020000450701f4038200004530811804020000452e011804020000450a811804020000450a011804020000453281170402000045320117040200004502811504020000453e2114040200004539a1140402000045360114040200004534811404020000453401140402000045288114040200004528011404020000452681140402000045148114040200004505b1f40382000045140114040200004513811404020000452e11f40302000045128114040200004512011404020000451181140402000045070114040200004533811304020000451d811304020000451d011304020000451c811304020000451b011304020000451a0113040200004518011304020000452b811204020000452b011204020000452a811204020000452a01120402000045220112040200004521811204020000452101120402000045208112040200004520011204020000450461f403820000452d8111040200004503f1f40382000045080111040200004530011004020000452f811004020000452f011004020000450b011004020000450a811004020000450a011004020000450981100402000045090110040200004532810f040200004525010d040200004524810d040200004524010d040200004516810d040200004515810d040200004510810d040200004510010d040200004503010d040200004502810d040200004500810d040200004500010d040200004539b10c040200004534a10c040200004513810c040200004513010c040200004512810c040200004507810c040200004539310b04020000451b810b040200004519810b04020000452b810a040200004521810a040200004521010a04020000452f810804020000450b810804020000450b010804020000450981080402000045332107040200004532a1070402000045260105040200004525010504020000452481050402000045160105040200004511010504020000451001050402000045010105040200004500010504020000453dc10404020000453cc10404020000453bc10404020000453b410404020000453ac10404020000452d810204020000452d01020402000045240102040200004523810204020000452301020402000045228102040200004510f1f3038200004522010204020000452101020402000045090101040200004530a10004020000452f210004020000450b010004020000453330ff04020000450d80ff04020000452680fd04020000452580fd04020000451780fd04020000451011f303820000451700fd04020000451180fd040200004527e1f403020000451100fd04020000451000fd04020000450f80fd04020000450e80fd04020000450f31f303820000450680fd04020000450500fd04020000450380fd04020000450080fd04020000450ec1f303820000453ea0fc04020000453ba0fc04020000453aa0fc04020000453a20fc04020000453740fc040200004536c0fc04020000453640fc040200004535c0fc04020000453540fc040200004534c0fc04020000453440fc04020000452a00fc04020000452980fc04020000452900fc04020000452880fc04020000452800fc04020000452780fc04020000451880fc04020000451580fc04020000450e51f303820000451480fc04020000451380fc04020000451280fc040200004539a0fb04020000453920fb04020000450de1f303820000450d71f3038200004538a0fb04020000453820fb04020000452000fb04020000451f80fb04020000451f00fb04020000450d01f303820000451e80fb04020000451e00fb04020000451d80fb04020000451d00fb04020000451c80fb04020000451b80fb04020000451b00fb04020000451a80fb04020000451a00fb04020000450c91f303820000450c21f303820000451980fb04020000452e00fa04020000450bb1f303820000452d00fa04020000452c80fa04020000452c00fa04020000452b80fa04020000452480fa04020000452400fa04020000452380fa04020000452300fa04020000450b41f303820000452280fa04020000452200fa04020000452180fa04020000452100fa04020000452ea0f904020000450980f9040200004531b0f804020000453130f8040200004530b0f804020000453030f804020000452fb0f804020000452f30f804020000450ad1f303820000451f11f203820000450c80f804020000450b80f804020000450b00f804020000450a80f804020000453340f7040200004532c0f704020000453240f704020000450e00f704020000450d80f704020000452700f504020000452680f504020000452600f504020000452580f504020000451800f504020000451780f504020000451200f504020000451180f504020000451100f504020000451080f504020000451000f504020000450f80f504020000450f00f504020000450780f504020000451ea1f203820000450700f504020000450680f504020000450600f504020000450580f504020000450480f504020000450400f504020000450380f504020000450300f504020000450280f504020000450200f504020000450180f504020000450100f504020000450080f504020000451e31f203820000450000f504020000453f00f404020000451dc1f203820000451d51f203820000453e80f404020000453e00f404020000453d80f404020000453d00f404020000453c80f404020000453c00f404020000453b80f404020000453b00f404020000453a80f4040200004537a0f404020000453720f4040200004536a0f4040200004535a0f404020000453520f4040200004534a0f404020000452a80f404020000452a00f404020000452900f404020000452880f404020000452800f404020000451900f404020000451680f404020000451ce1f203820000451580f404020000451500f404020000451480f404020000451400f404020000451380f404020000450c80f804020000450900f404020000453a00f304020000453980f304020000453900f304020000453880f304020000453420f304020000452080f304020000452000f304020000451f80f304020000451f00f304020000451e80f304020000451e00f304020000451d80f304020000451d00f304020000451c80f304020000451c00f304020000451b80f304020000451b00f304020000451a80f304020000451a00f304020000452e20f204020000452da0f204020000452d20f204020000452ca0f204020000452c20f204020000452ba0f204020000452400f204020000452380f204020000452300f204020000452280f204020000452200f204020000452180f204020000452eb0f104020000450a00f1040200004531c0f004020000453140f0040200004530c0f004020000453040f004020000452fc0f004020000452f40f004020000450d00f004020000450c80f004020000450c00f004020000450b80f004020000450b00f004020000452700ed04020000452680ed04020000452600ed04020000451780ed04020000450500ed04020000450480ed04020000450400ed04020000450000ed04020000453f50ec04020000453ed0ec04020000453ad0ec04020000453800ec04020000453780ec04020000453680ec04020000453500ec04020000452920ec040200004528a0ec04020000452820ec04020000451500ec04020000451380ec04020000450980ec04020000453a50eb040200004539d0eb040200004538d0eb04020000452400ea04020000452380ea04020000452300ea04020000452280ea04020000452ec0e904020000451ff1f103820000450a80e904020000453220e804020000450c00e804020000450b80e804020000453400e7040200004527a0e504020000452720e5040200004526a0e504020000451300e504020000451280e504020000451200e504020000451100e504020000450900e504020000450880e504020000450800e504020000450780e504020000450600e504020000450580e504020000450500e504020000450480e504020000450300e504020000453f10e404020000453e90e404020000453e10e404020000453d90e404020000453d10e404020000453c90e404020000453c10e404020000453b90e404020000453b10e404020000453850e4040200004537d0e404020000453750e4040200004536d0e404020000453650e4040200004535d0e404020000453550e404020000452ab0e404020000452a30e4040200004529b0e404020000452930e4040200004528b0e404020000452830e404020000451a00e404020000451780e404020000451700e404020000451680e404020000451600e404020000451580e404020000451500e404020000451480e404020000451400e404020000450a00e404020000453a90e304020000453a10e304020000453990e304020000453910e3040200004534d0e304020000452180e304020000452100e304020000452080e304020000452000e304020000451f80e304020000451f00e304020000451e80e304020000451e00e304020000451d80e304020000451d00e304020000451c80e304020000451c00e304020000451b80e304020000451b00e304020000452e40e204020000452dc0e204020000452d40e204020000452cc0e204020000452c40e204020000452bc0e204020000452b40e2040200004525a0e204020000452520e2040200004524a0e204020000452420e2040200004523a0e204020000452320e2040200004522a0e204020000452220e204020000452f20e104020000450b00e104020000453280e004020000453200e004020000453180e004020000453100e004020000453080e004020000453000e004020000450e00e004020000450d80e004020000450d00e004020000453450df04020000452630dd04020000451380dd04020000450000e504020000451280dd04020000451100dd04020000450800dd04020000450700dd04020000452391f003820000450680dd04020000450600dd04020000450500dd04020000450480dd04020000450400dd04020000450300dd04020000453f40dc04020000453ec0dc04020000453e40dc04020000453dc0dc04020000453cc0dc04020000453c40dc04020000453bc0dc04020000453710dc04020000452321f003820000453690dc04020000453610dc04020000453590dc04020000452ac0dc04020000452a40dc040200004529c0dc04020000452940dc040200004528c0dc04020000452840dc04020000451a80dc04020000451800dc04020000451780dc04020000451700dc04020000451680dc04020000451600dc04020000451580dc04020000451500dc04020000451480dc04020000450a80dc04020000453a40db040200004539c0db04020000453940db040200004521a0db04020000451da0db04020000451ca0db04020000451c20db04020000451ba0db04020000451b20db04020000452ea0da04020000452da0da04020000452d20da04020000452ca0da04020000452c20da04020000452ba0da040200004525b0da04020000452530da040200004524b0da04020000452430da040200004523b0da04020000452330da040200004522b0da04020000452230da04020000452f80d904020000453250d804020000453410d704020000453390d704020000451000d704020000450f80d7040200004527c0d504020000452740d5040200004526c0d504020000452640d504020000451980d504020000451900d504020000453f50d404020000453ed0d404020000453e50d404020000453dd0d404020000453d50d404020000453cd0d404020000453c50d404020000453bd0d404020000453b50d4040200004538c0d404020000453840d4040200004537c0d404020000451aa0d404020000451880d404020000451800d404020000451780d404020000451700d404020000451680d404020000451600d404020000451580d404020000452130d3040200004520b0d304020000452030d304020000451fb0d304020000451f30d304020000451eb0d304020000452c80d204020000452c00d2040200004525c0d204020000452540d2040200004524c0d204020000452440d2040200004523c0d204020000452340d204020000453290d004020000453210d004020000453190d004020000453110d004020000451000cf04020000452820cd040200004527a0cd04020000452720cd040200004526a0cd04020000451a20cd040200004519a0cd04020000451920cd04020000451480cd04020000451400cd04020000451380cd04020000451300cd04020000451180cd04020000450a80cd04020000450a00cd04020000450980cd04020000450900cd04020000450880cd04020000450800cd04020000450780cd04020000450700cd04020000450680cd04020000450600cd04020000450580cd04020000450400cd04020000450380cd04020000453ce0cc04020000453c60cc040200004537d0cc04020000453750cc04020000453650cc040200004535d0cc04020000452980cc040200004516a0cc04020000453ae0cb04020000453a60cb040200004539e0cb04020000453960cb04020000453550cb040200004521c0cb04020000452140cb040200004520c0cb04020000451fc0cb04020000451e40cb04020000451bc0cb04020000451b40cb04020000452f50ca04020000452ed0ca04020000452e50ca04020000452dd0ca04020000452d50ca04020000452cd0ca04020000452c50ca04020000452620ca040200004523a0ca04020000452320ca040200004522a0ca04020000453010c904020000450c80c904020000453340c8040200004532c0c804020000453240c8040200004531c0c804020000453140c8040200004530c0c804020000450f80c804020000450e00c804020000450d80c8040200004534d0c704020000453450c7040200004533d0c704020000451100c704020000451080c704020000451420c504020000451320c5040200004512a0c504020000451220c5040200004511a0c504020000450600c504020000450500c504020000450480c504020000450400c504020000450380c504020000450300c504020000450280c504020000453db0c404020000453cb0c404020000453c30c404020000452ad0c404020000452950c404020000451ac0c4040200004518b0c404020000451830c4040200004517b0c404020000451730c4040200004516b0c404020000451530c404020000450c00c404020000453b30c304020000453ab0c304020000452020c304020000451fa0c304020000451f20c304020000451ea0c304020000451e20c304020000451da0c304020000451d20c304020000451ca0c304020000451c20c304020000451ba0c304020000452d90c204020000452d10c204020000452c90c204020000452680c204020000452600c204020000452580c204020000452500c204020000452480c204020000452400c204020000452380c204020000453250c0040200004531d0c004020000453150c0040200004530d0c004020000451000c004020000450f80c004020000450f00c004020000450e80c004020000450e00c0040200004534e0bf04020000453460bf040200004533e0bf040200004528d0bd04020000452850bd040200004527d0bd04020000452750bd04020000451a40bd040200004519c0bd04020000451940bd040200004514b0bd04020000451430bd040200004513b0bd04020000451330bd040200004512b0bd04020000450b80bd04020000450b00bd04020000450a80bd04020000450a00bd04020000450980bd04020000450900bd04020000450880bd04020000450800bd04020000450700bd04020000450680bd04020000453930bc040200004538b0bc04020000453730bc040200004536b0bc04020000453630bc04020000452c10bc040200004522b1f003820000452b90bc04020000452241f0038200004521d1f003820000452b10bc04020000452161f003820000452a90bc04020000452a10bc04020000452990bc04020000451b20bc040200004518c0bc040200004517c0bc04020000451640bc040200004520f1f0038200004515c0bc04020000451540bc04020000450c80bc04020000452551ef03820000453b40bb04020000453ac0bb04020000452200bb040200004524e1ef03820000452180bb04020000452471ef03820000452100bb04020000452080bb04020000452000bb04020000451f80bb04020000451821ed03820000451e00bb04020000451d80bb04020000451d00bb04020000451c80bb04020000451c00bb04020000452f40ba04020000452ec0ba04020000452e40ba04020000452dc0ba04020000452d40ba04020000452cc0ba040200004526d0ba04020000452350ba04020000453050b904020000450d80b904020000453360b8040200004532e0b804020000453260b8040200004531e0b804020000453160b8040200004530e0b804020000451020b804020000450fa0b804020000450f20b804020000453430b704020000451130b7040200004510b0b704020000452910b504020000452890b504020000451a20b5040200004519a0b5040200004514c0b504020000451440b5040200004513c0b504020000451340b5040200004512c0b504020000450b80b504020000450b00b504020000450a80b504020000450a00b504020000450980b504020000450900b504020000450780b504020000450700b504020000450680b504020000450600b504020000450580b504020000450500b504020000450380b504020000450300b504020000450280b504020000450200b504020000450180b504020000450100b504020000450080b504020000450000b504020000453f60b404020000453ee0b404020000453e60b404020000453de0b404020000453c60b404020000453be0b404020000453940b4040200004538c0b404020000453840b4040200004537c0b404020000453740b4040200004536c0b404020000453640b404020000452c40b4040200004529c0b404020000451b80b404020000451920b4040200004518a0b404020000451820b404020000453ae0b304020000453a60b3040200004539e0b3040200004535c0b3040200004522d0b304020000452250b3040200004521d0b304020000452050b304020000451fd0b304020000451f50b304020000451ed0b304020000451e50b304020000451dd0b304020000451d50b304020000451cd0b304020000453330b0040200004532b0b004020000450e30b0040200004534c0af04020000453440af04020000451140af040200004510c0af040200004528c0ad04020000452840ad040200004527c0ad04020000451b00ad04020000451a80ad04020000450c80ad04020000450b80ad04020000450b00ad04020000450a80ad04020000450980ad04020000450900ad04020000450880ad04020000450800ad04020000450780ad04020000450700ad04020000450600ad04020000450580ad04020000450380ad04020000450300ad04020000450280ad04020000450180ad04020000450080ad04020000451741ed03820000453f30ac04020000453e30ac04020000453db0ac04020000453d30ac04020000453cb0ac040200004537e0ac040200004536e0ac04020000452c50ac04020000452bd0ac04020000452b50ac040200004516d1ed03820000452ad0ac04020000452a50ac040200004529d0ac04020000451bd0ac04020000451980ac04020000451700ac04020000451680ac04020000451600ac04020000450d20ac04020000453b30ab04020000450931ed03820000453ab0ab04020000453a30ab04020000452310ab04020000452210ab04020000452110ab04020000452010ab04020000451f10ab04020000451c90ab04020000452fe0aa04020000452f60aa04020000452ee0aa04020000452e60aa04020000452de0aa04020000452d60aa04020000452ce0aa04020000452540aa040200004524c0aa040200004533c0a8040200004531c0a804020000450fc0a804020000450f40a804020000450ec0a804020000450e40a804020000453560a7040200004534e0a704020000453460a7040200004511a0a704020000451ad0a504020000451a50a504020000450a80a504020000450a00a504020000450980a504020000450900a504020000450880a504020000450400a504020000450380a504020000450300a504020000450280a504020000450200a504020000453d90a404020000453d10a404020000453c90a404020000451b03f604020000441a83f604020000441a03f604020000441983f604020000440b03f604020000440a03f604020000440903f604020000440503f604020000440483f604020000440103f604020000440083f604020000440003f604020000443f03f504020000443e83f504020000443d03f504020000443c83f504020000443b83f504020000443803f504020000443783f504020000443703f504020000443683f504020000443503f504020000443483f504020000443403f504020000443383f504020000443303f504020000443283f504020000442c03f504020000442b83f504020000442b03f504020000442a83f504020000442a03f504020000442983f504020000442883f504020000442603f504020000442583f504020000442483f504020000442403f504020000442303f504020000442003f504020000441d03f504020000441c03f504020000441583f504020000441483f504020000441383f504020000441283f504020000441183f504020000441083f504020000441b83ee04020000440d83ee04020000440c83ee04020000440983ee04020000440883ee04020000440783ee04020000440583ee04020000440283ee04020000440183ee04020000440083ee04020000443f53ed04020000443ed3ed04020000443d53ed04020000443cd3ed04020000443b53ed040200004439d3ed04020000443953ed040200004438d3ed04020000443853ed040200004437d3ed04020000443753ed040200004436d3ed04020000443653ed040200004435d3ed04020000443453ed04020000443153ed040200004430d3ed04020000443053ed04020000442fd3ed04020000442f53ed04020000442ed3ed04020000442e53ed04020000442d53ed04020000442bd3ed04020000442b53ed04020000442ad3ed04020000442a53ed04020000442953ed040200004428d3ed040200004427d3ed04020000442753ed04020000442453ed040200004423d3ed04020000441e53ed04020000441d53ed04020000441c53ed04020000441683ed04020000441503ed04020000441403ed04020000441303ed04020000441a53e6040200004419d3e604020000441953e6040200004418d3e604020000441853e6040200004417d3e604020000441003e604020000440e03e604020000440c83e6040200004407e1ed03820000450b83e604020000440b03e604020000440a83e604020000440a03e604020000440983e604020000440903e604020000440783e604020000440583e604020000440403e604020000440383e604020000440303e604020000440283e604020000440203e604020000440103e604020000440083e604020000440003e604020000443b93e504020000443b13e504020000443a13e504020000443993e504020000443913e504020000443893e504020000443813e504020000443713e504020000443493e5040200004436015c040200004530815c040200004530015c040200004534814b040200004528814a040200004528014a040200004527814a0402000045070148040200004506014804020000452e81470402000045088147040200004512814504020000450b014504020000450a014504020000453d814404020000453d01440402000045380144040200004533814404020000453101440402000045258144040200004524814404020000451801430402000045160143040200004508014004020000450701400402000045060140040200004520013a04020000452b0139040200004505813904020000452e0138040200004507013804020000451381350402000045028135040200004501013504020000453d013404020000453b013404020000453a0134040200004539013404020000453801340402000045350134040200004534013404020000453301340402000045328134040200004524813404020000452401340402000045118134040200004510813404020000450f813404020000450501340402000045370133040200004536013304020000451b8133040200004519813304020000451881330402000045178133040200004517013304020000452a0132040200004520813204020000451f813204020000451d8132040200004506013104020000452e813004020000451b012b04020000452e012804020000450901200402000045088120040200004524011d04020000450f011d04020000450e811d04020000450e011d04020000450d811d04020000450c811d04020000453e011c04020000453c811c04020000453c011c04020000453b811c04020000453b011c04020000453a811c04020000453a011c040200004539811c040200004536811c040200004536011c040200004535811c040200004535011c040200004534811c040200004534011c040200004533811c040200004528011c040200004527811c040200004527011c040200004526011c040200004525811c040200004516811c040200004514011c040200004513811c040200004513011c040200004512811c040200004512011c040200004511811c040200004511011c040200004510811c040200004506811c040200004539011b040200004538811b040200004538011b04020000451d011b04020000451c811b04020000451c011b04020000451b811b04020000451b011b04020000451a811b04020000451a011b040200004519011b040200004518811b040200004518011b040200004517811b04020000450231ed03820000452c011a04020000452b811a04020000452a811a04020000452a011a040200004529811a040200004529011a040200004522811a040200004520811a04020000450981180402000045318117040200004504811504020000453ea11404020000453d2114040200004500e1ed03820000453aa11404020000453ea1ec03820000453a211404020000453e31ec03820000453dc1ec038200004536811404020000453581140402000045350114040200004527811404020000452701140402000045130114040200004511011404020000451e811304020000451e011304020000451c011304020000451b8113040200004518811304020000452c811204020000453d51ec03820000452c0112040200004522811204020000451f811204020000452e8110040200004533010f040200004516010d04020000450f810d04020000450f010d04020000450e810d04020000450e010d04020000450d810d040200004506810d040200004505810d040200004505010d040200004504810d040200004504010d040200004503810d040200004502010d040200004501810d040200004501010d04020000453f310c04020000453eb10c04020000453e310c04020000453db10c04020000453d310c04020000453cb10c04020000453c310c04020000453bb10c04020000453b310c04020000453ab10c04020000453a310c040200004537210c040200004536a10c040200004536210c040200004535a10c040200004535210c040200004534210c040200004529010c040200004528810c040200004528010c040200004527810c040200004527010c040200004526810c040200004517810c040200004515010c040200004514810c040200004514010c040200004512010c040200004511810c040200004538b10b040200004538310b040200004537b10b040200004533a10b04020000451f010b04020000451e810b04020000451e010b04020000451d810b04020000451d010b04020000451c810b04020000451c010b04020000451b010b04020000451a810b04020000451a010b040200004519010b04020000453ce1ec038200004518810b04020000452d010a04020000452c810a04020000452c010a04020000452b010a04020000452a810a04020000452a010a040200004523810a040200004523010a040200004522810a040200004522010a040200004520810a040200004520010a04020000452e01090402000045088109040200004531810804020000453101080402000045308108040200004530010804020000452f010804020000450a810804020000450a010804020000453c71ec038200004532210704020000450d010704020000450c8107040200004525810504020000451701050402000045168105040200004510810504020000450f810504020000450f010504020000450e810504020000450e0105040200004507010504020000450681050402000045060105040200004505810504020000450501050402000045048105040200004504010504020000453c01ec03820000450381050402000045030105040200004502810504020000450201050402000045018105040200004500810504020000453b91ec03820000453b21ec03820000453f410404020000453ec10404020000453e410404020000453d410404020000453c410404020000453a4104040200004539c1040402000045373104040200004536b1040402000045363104040200004535b10404020000453ab1ec0382000045353104040200004534b104040200004534310404020000452981040402000045290104040200004528810404020000452801040402000045278104040200004527010404020000451801040402000045158104040200004515010404020000451481040402000045140104040200004513810404020000451301040402000045128104040200004512010404020000450801040402000045394103040200004538c1030402000045384103040200004537c103040200004533b10304020000451f810304020000451f010304020000451e810304020000451e010304020000451d810304020000451d010304020000451c810304020000451c010304020000451b810304020000451b010304020000451a810304020000451a01030402000045198103040200004519010304020000452c810204020000452c010204020000452b810204020000452b010204020000452a810204020000450200fd04020000453d20fc04020000451600fc040200004533c0fb04020000451c00fb04020000452d80fa04020000452b00fa04020000450c00f804020000451700f504020000450800f504020000450500f504020000453620f404020000452980f404020000451600f404020000451300f404020000450700ed04020000450680ed04020000450600ed04020000450580ed04020000450380ed04020000450300ed04020000450280ed04020000450200ed04020000450180ed04020000450100ed04020000450080ed04020000453e50ec04020000453dd0ec04020000453d50ec04020000453cd0ec04020000453c50ec04020000453bd0ec04020000453600ec04020000452aa0ec04020000452a20ec040200004529a0ec04020000451980ec04020000451700ec04020000451680ec04020000451600ec04020000451580ec04020000451480ec04020000451400ec04020000453950eb04020000452200ea040200004531a0e804020000453120e8040200004530a0e804020000453020e804020000452fa0e804020000450d80e804020000450d00e804020000450c80e804020000453380e704020000453300e704020000450f00e704020000450e80e704020000452620e504020000451900e504020000451880e504020000451800e504020000451180e504020000451080e504020000451000e504020000450700e504020000453181ec03820000450680e504020000450400e504020000450380e504020000450280e504020000450200e504020000452001e904020000453f015c04020000453a015c040200004523015c040200004510015c04020000450f815c04020000450f015c04020000450e815c04020000450d015c04020000450c815c040200004502815c040200004535015b040200004534815b040200004534015b040200004518815b040200004516815b040200004514015b040200004527815a04020000451c015a040200004503815904020000452c8158040200004515815304020000451501530402000045148153040200004514015304020000451c014a040200004504814904020000452f813f04020000452881320402000045280132040200004531812704020000453f012404020000453e812404020000451901230402000045188123040200004518012304020000452a812204020000451100d504020000450a00d504020000450980d504020000450900d504020000450880d504020000450800d504020000450780d5040200004535c0d404020000452b20d404020000452aa0d404020000452a20d4040200004529a0d404020000452920d4040200004528a0d404020000453a50d3040200004539d0d304020000453950d304020000451b30d304020000452f00d204020000452e80d204020000450c00d104020000453310d004020000450f00d004020000450080cd04020000450000cd04020000453f60cc04020000453ee0cc04020000453e60cc04020000453d60cc040200004538d0cc04020000453850cc04020000452a80cc04020000452a00cc04020000453760c404020000452a50c404020000453a40bb040200004525d0ba04020000452550ba040200004524d0ba04020000453b60b304020000451c50b304020000452fd0b204020000452f50b204020000452ed0b204020000452e50b204020000452dd0b204020000452d50b204020000452cd0b204020000452710b204020000452690b204020000452610b204020000452590b204020000452390b204020000453060b104020000450da0b1040200004531b0b004020000451320ad04020000450200ad04020000450100ad04020000453eb0ac04020000453760ac04020000453660ac04020000451803f604020000441703f604020000440f03f6040200004413b1f203820000450c83f604020000443e03f5040200004424d3ed040200004422d3ed04020000440c03e604020000440603e6040200004439815c04020000452d81300402000045088130040200004535012c04020000452b012a04020000450d011d040200004505811d040200004502811d040200004500011d04020000452f811804020000452f011804020000452e811804020000450f80ed04020000450880ed04020000450800ed04020000450780ed0402000045218102040200004520810204020000452e8101040200004531a1000402000045312100040200004530210004020000452fa10004020000450c010004020000450b810004020000450a810004020000450a0100040200004532b0ff04020000453230ff04020000450d00ff04020000452600fd04020000452500fd04020000451680fd04020000451080fd04020000450f00fd04020000450780fd04020000450700fd04020000450600fd04020000450580fd04020000450480fd04020000450400fd04020000450300fd04020000450280fd04020000450180fd04020000450100fd04020000450000fd04020000453f20fc04020000453e20fc04020000453da0fc04020000453ca0fc04020000453c20fc04020000453b20fc04020000452f40210081c000830681cf0200c000840f019c0281c0008516819b0281c000852d810a0381c000851f810b0381c000851a20b60100c000833353520181c0008323717f0181c000830601cf0200c0010435420702814000c50cf05100808002033fa0970280400143042057008040020324819a0281c000852581990281c000850001990281c000852901980281c000850301980281c000851d81950281c000850e81950281c000850881950281c000852f81940281c000850f81940281c000851701930281c000853fe03e00818000c311d0220081c000c33fb3dc0201c000843c920c02810001053060aa0201c000852601910281c000853181740301c000852981900281c000850381900281c000851e018d0281c000850f018d0281c0008509018d0281c0008530018c0281c0008510018c0281c0008517818b0281c000852371780181c0008330e0b10201c000850101890281c000851c00b40201c000850401880281c000851e81850281c000850a81750301c000850f81850281c000851081750301c000853081840281c000851081840281c000851801830281c000852601820281c000852701810281c000850181810281c000852a81800281c000850481800281c000851f017d0281c000853fc1a50181c0008310017d0281c000852371a20181c000830ef16f0280c000843e00de02804002430b30aa0100c0008303220302814001050a017d0281c0008520b205028140010500017d0281c0008522e20502814001052300bb0201c000852da345028180010318817b0281c0008500c0280081c000833fb2ab020200008311b3450201c000843480360101c00083131207028140010513620702814001051aa20702814001050a81d502818001050481d502818001051cd20702814001051dc20702814001052f217e0181c000831f020702814001051f520702814001051ff2070281400105304207028140010526f202028180010532c20702814001051fb2960201c0008400c0210081c000831fb28f0201c000841880f6030080010434020702814001052ea20c05010001450fd39d04814001030101fc0401c000852021f90501c000c533a0ef04020000853320ef040200008532a0ef04020000850e80ef04020000850e00ef04020000852780ed04020000851880ed04020000851800ed04020000850f80d00381c000c529b3e5050200008420a3d404824000440983dd02824000442913e505020000841743f504028000032652b3050240004319f3d504824000441963d5048240004418d3d504824000441843d504824000442e23d404824000442d93d404824000442d03d404824000442c73d404824000442be3d404824000442b53d404824000442ac3d404824000443b50ec04020000853700ec04020000851501f203820000850233dd03824000443580ec040200008527816a0301c000851563dc04024000443283dc04024000442883d404824000441ed3d405024000441b63d405024000443453dc03824000441e03dc04024000441c03d4040240004432f1f402820000852493d404824000442cc3e504820000842b81fb0401c0008516e3dc04024000441341f2038200008512d1f203820000851ce02101020000831161fb0401c0008534220204014001052c33e504820000442253d4048240004421c3d404824000441663dc04024000441d915a030240004434c3dc03824000441443dc04824000441323dc04824000442a33d404824000443373dc03824000443303dc038240004427f3d404824000442763d4048240004426d3d404824000442643d4048240004425b3d404824000442403d404824000441c83dc04024000440db1fb0481c0008500e3dd03824000442013d404824000440362a104818000c414d3dc04824000442913d404824000440701290381c000853a03dc03824000443383e5048200008417f1f50481c000851d23d2048280000431a3d3038280000414d3d2050280000418e20204018000852ba208020140008534d0df01810000c50381ed0281800085345207028140008534a20702814000851c01ec02818000852001e2028180008501d14201008001030ba20d02010000c50ce20d02010000c507016f0301800085368207028140008515c0ad018180008423d20a01814000853772070281400085230174030180008524320a018140008524920a01814000850101b80281c000851a709d018140008539a20702814000852bb202020180008500011002008001442701b80281c000853a920702814040853ae20702814040853b320702814000853bd207028140008507a20d02010000c52de18403814000831d91870280c001041cf1870280c001043fe04400814000830bc0e001808000843db207028140008513b32d0201c000443f420702814000853f920702814000852f402c00808000833430b2010140008310f0b201014000830521e70180c0008404f1e70180c000c401b040008080018306701b01804001030cf056008040018300520802814000852ba20802014000853430a80101400083199208020140008519120802014000851892080201400085181208020140008517d208020140008517920802014000851752080201400085171208020140008502404c00810000c302404700814000c31843fa01814000832b633c0180c000c339f0b201814000841eb274018180008322817c0301800085161208020140008515d20802014000851592080201400085118208020140008511420802014000850fc20802014000850f020802014000850e820802014000850240cd01814000840d820802014000850cc20802014000850c820802014000850af208028140008525620502014000852ce20802014000851f134602014000830a520802814000850d020802014000850d420802014000850a020802814000850dc20802014000850e0208020140008509b208028140008508c208028140008508220802814000850f4208020140008510f0ad010140008307d20802814000853fd07b01014000832f22b901808000833bf0d602004001832f402c00808000833fc0140180c0010422e20a018140008519c0de0100c0010323120a01814000850f020d01810000c53430ad010140008323720a01814001053fc104018140008502404200814000831900350101c000831a709801814000850640bb01014000830c01870280c001041461e70180c001041401e70180c001040fc24f01814001043fc13501814001040d10d60100c001030970bf01010000c310f0a8010140008301b1e40180c0010417c1cf0180c001040e516f0280c0010414f1e70180c001043fc12601814001042800a901810000c51140e7018140008401304a00814000831140f1018140008410f10d02008000c40551e70180c0010417b2f60201c000843fc13001814000840393e701818000433fc16001814000843fc16501814000840dc21f01814000840dc21f018140008438c3cd01814001041883e8018180004339f0ac01818000440393e7018180004302603601814000850240420081400083024042008140008317b2ef0201c0000419b2e50201c0000419b2de0201c000041132cb02810000c339520702814000853050d101814000853fc0dc01814000850bc1c501814000853fc1f4018140008522820a01814000853fc19e0181c0008319b2d70201c000041bb2cd0201c000040ed20d0181000105296208020140008529a20802014000850461e70180c000c422520a01814000850dc21f018140008402404200814000830bc1c5018140008522820a01814000853fc0bc01814000851bb2c60201c000042350b301814000852800a401814000852800a40181800083336207028140008519a110018080014433120702814000853272070281400085024042008140008307519c0280c000c41c51870280c000c416120802014000853fc0140180c001042c220802014000853fc01201814000852d220802014000850dc27101814000c40dc26c01814000840a50db0100c0010327920202818000850e720d018100010511420802014000850f020d01810000c51db2b50201c0000439f0ac01818000441e120702814000850db20d01810000c521520a020140008515c0b301814000c421920a020140008531c1cb0180c001041db2ae0201c0000423a20a018140008522120a02014000851551e70180c0010421d20a02014000851521e70180c001040af20802814000851af19f0280c001040e8208020140008531c1cb0180c001042ce20802014000851401e70180c0010421120a02014000850491e70180c0010420d20a02014000851a83da01810000c4159208020140008519c0de0100c001030a0208028140008535c0a40180c0010320920a02014000853fc12601814001041891ed02818000850601bd0281c0008508c208028140008514f1e70180c001042101e1028180008509e20d02010001052e620802014000850ea20d01810000c508720802814000850ea16f0280c001040281b703018000852781cf03010001052e2208020140008509620d02010000c502d208028140008500020d02810000c50dc26201814000840e420d01810000c52de20802014000850dc26701814000c43b8202030140008511a1570280c001042d620802014000850e120d01810000c52bf20202018000850de20d01810001051fb29d0201c000041a20b101014000832ab202020180008538c3c801814000c40bb2400201c000041883ee01814000830bb2390201c0000400b061010180004301b2390201c000040393ed018180004301b2390201c000040393ed01818000432be208020140008502603b018140008513b2280201c000040bc1c5018140008503b2280201c000043fc1f401814000852a1202028180008501d14201008001032f402c00808000831431e70180c000841c50ac01814000853de1f402820000451eb20702814000852ae20802014000851540f70400c0008403b2210201c0000429b21e0201c000042950bd018140008513b21a0201c000042fd0ca018140008503b21a0201c000041a20ac010140008329b2170201c000041be20702814000850bb1680201c000041883e801818000431ac1c501814000850bb1610201c000043ae0fe0201c000042641c801814000853ae0f70201c0000432409d01014000832360ef0201c000043fd07501018000432201c20281c000051883e2018180004303b2280201c000043fc1f401814000852101d202818000453fc1ba0181c000830001c80201c000050393db01818000432cf20202018000453093980181800043286208020140008524620a01814000853fb3cd0201c0000301a06601014000830f0208020140008523720a01814001052371860181c0000311d0290080c001030bb15a0201c0008433536e01818000c313b2210201c000040bb2320201c000042371860181c0000317b2fd0201c0000415b3150201c000040bb2320201c000040b420802814000852601c80201c0000527a20802014000850d420802014000850240cd01814000843fc1d60181c000030d820802014000853a62020301400085078208028140008527220802014000851a81c50201c000053fb10c0201c000053880ec0201c0000526e20802014000850393e701818000433000d90201c000853fc00d01814000850970ba01014000c30970bf01010000c3024042008140008302603601814000852371b70181c000832981af03010000c53d820c02810000c52d720202018000850f739b01814000840f739601814000843fc1900181c000830fc25401814001043ec20c02810001050e516f0280c0010426220802014000852cb202020180008501420802814000851601cf0200c0010400a20802814000852801a80281c0008529a20802014000853fc15b018140008439d1f402820000052b320202018000852af20202018000852af202020180008519d208020140008519520802014000c52a31fc02018000453fc0db01810000c42f402c00808000830dc0960201c000053fc16001814000841c03ee0201c000042371c50181c0000309a1ed02018000850b30a501014000c31d01d4028180008532409701018000832c00cc02018000850d820d01810001051f133e02020000033fc0d601814000c403b2280201c000043fc1f4018140008511b33e0201c000043fc160018140008403b21a0201c000041a20ac01014000831491e70180c001041401e70180c001041c320702814000851b420702814000851452070281400085140207028140008512c20702814000852512050281400085247205028140008524220502814000851491e70180c001041401e70180c0010426a23c0280c001033fc15601814000840dc21a01814000840851b70280c001040aa19f0280c001040991840280c001040831280180800144083128018080014424320a01814000851a83d501814000841ce0290100c001031ce0290100c0010316c1cf0200c001040f416f0280c0010419d110018080014419d110018080014424920a018140008538d0e401814000853c60bd0100c001033c60bd0100c001031701cf0200c000c434a2070281400085023208028140008501e20802814000853ea20702814000850041c801814000850c620d02010000c53c720702814000853ea20702814000850ae20d02010000c5313207028140008530e207028140008511d20702814000852292050281400085224205028140008500f20802814000850fc24a01814000840dc22401814000840a519f0280c0008407a19c0280c001042e31400100800083028140010080008301d14001008001433310dd01008001431b70f8020080008418e0f60200800144096208028140008505020802814000852eb207028140008514f207028140008514c1e70180c001040c32080281400085322207028140008535e20702814000853e52070281400085140207028140008506420802814000850b9208028140008525a25902814000840493490301800083215205028140008521a205028140008514a20702814000851d720702814000851e620702814000851fa2070281400085309207028140008533b2070281400085372207028140008537c207028140008539020702814000853a420702814000853b8207028140008504c1e70180c000c41371e40180c000c43d120702814000852700dd01008001833d620702814000850bb1680201c000041db2b50201c000043fc1d60181c0000325a208020140008503b2280201c000041a83d50181400084161208020140008515d20802014000852662080201400085046208028140008511420802014000850f420802014000850e820802014000853ea20702814000850240cd018140008422120a02014000850be20802814000850af2080281400085256205020140008528e20802014000852ce208020140008521120a02014000851f134602014000832a620802014000850a0208028140008508220802814000851891ed028180008508c208028140008520420702814000852fa20702814000851fb29d0201c000041a20b1010140008325a20802014000852c6208020140008515b3070201c000042800a401818000440f73a001814000c41a83d501814000840bb1680201c000041883e8018180004302820d02810000c500a20d02810000c500a20d02810000c535420702814000c506e20802814000c51843f401818000831843f4018180008300f203028140008502320302814001050a01dd028180008531c1c6018140008431c1c1018140008431c1bc0181400084370202030140008502816403014000850311ed038200004531017c0281c0008539f0b701818000832371be0181c0008324313f0380c00103122207028140008511c0af028180008516012c0381c000852b812a0381c000851220a703818000850c011f038180008527013403818000850a813703818000850240d201814000841480d50381c000851a50a4028040018319c0de0100c001032141270300c0010435a20c03010000c535420c03010000c523c0f70400c001042141270300c0010434c20c04010000c51001570300c001043fe04400814000830bc0e001808000843db207028140008513b32d0201c000443f420702814000853f920702814000852f402c00808000833430b2010140008310f0b201014000830521e70180c0008404f1e70180c000c401b040008080018306701b01804001030cf056008040018300520802814000852ba20802014000853430a80101400083199208020140008519120802014000851892080201400085181208020140008517d208020140008517920802014000851752080201400085171208020140008502404c00810000c302404700814000c31843fa01814000832b633c0180c000c339f0b201814000841eb274018180008322817c0301800085161208020140008515d20802014000851592080201400085118208020140008511420802014000850fc20802014000850f020802014000850e820802014000850240cd01814000840d820802014000850cc20802014000850c820802014000850af208028140008525620502014000852ce20802014000851f134602014000830a520802814000850d020802014000850d420802014000850a020802814000850dc20802014000850e0208020140008509b208028140008508c208028140008508220802814000850f4208020140008510f0ad010140008307d20802814000853fd07b01014000832f22b901808000833bf0d602004001832f402c00808000833fc0140180c0010422e20a018140008519c0de0100c0010323120a01814000850f020d01810000c53430ad010140008323720a01814001053fc104018140008502404200814000831900350101c000831a709801814000850640bb01014000830c01870280c001041461e70180c001041401e70180c001040fc24f01814001043fc13501814001040d10d60100c001030970bf01010000c310f0a8010140008301b1e40180c0010417c1cf0180c001040e516f0280c0010414f1e70180c001043fc12601814001042800a901810000c51140e7018140008401304a00814000831140f1018140008410f10d02008000c42ba208020140008506a20d02010000c52e3202020180008533537401810040c323420a01814040850393e101818040831883dc018180408301d14201008001030ba20d02010000c50ce20d02010000c52d32020201800085282208020140008515c0ad018180008423d20a018140008527620802014000852b7202020180008524320a018140008524920a01814000850b81c50201c000851a709d018140008526a20802014000852bb202020180008500011002008001442f80d20201c000850dc229018140408431c1b701814040841a520802014000851a1208020140008507a20d02010000c52ba208020140008507c1cf0180c0410435c0a40180c041043fe04400814000830bc0e0018080008418d20802014000853fc1ac0181c000430aa20d02010000c518520802014000852f402c00808000833430b2010140008310f0b201014000830521e70180c0008404f1e70180c000c401b040008080018306701b01804001030cf056008040018309a20d02010000c52ba20802014000851140ec0181404084199208020140008519120802014000851892080201400085181208020140008517d208020140008517920802014000851752080201400085171208020140008502404c00810000c302404700814000c31843fa01814000832b633c0180c000c339f0b201814000843fb3d402018000832e72020201800085161208020140008515d20802014000851592080201400085118208020140008511420802014000850fc20802014000850f020802014000850e820802014000850240cd01814000840d820802014000850cc20802014000850c8208020140008510c208020140008525620502014000852ce20802014000851f1346020140008310820802014000850d020802014000850d4208020140008510420802014000850dc20802014000850e0208020140008510020802014000853350d801814040850ec20802014000850f4208020140008510f0ad010140008308a20d02010000c53fd07b01014000832f22b901808000833bf0d602004001832f402c00808000833fc0140180c0010422e20a018140008519c0de0100c0010323120a01814000850f020d01810000c53430ad010140008323720a01814001053fc104018140008502404200814000831900350101c000831a709801814000850640bb01014000830641cf0200c001041461e70180c001041401e70180c001040fc24f01814001043fc13501814001040d10d60100c001030970bf01010000c310f0a8010140008301b1e40180c0010417c1cf0180c001040781cf0200c0010414f1e70180c001043fc12601814001042800a901810000c51140e7018140008401304a00814000831140f1018140008410f10d02008000c40551e70180c0010413b1e50080400004'); - -export const font = createFont(sprites, [ - [0, [186]], - [32, [1180, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311]], - [161, [358, 776, 341, 777, 778, 779, 207, 780, 781, 351, 359, 355, 0, 354, 782, 450, 783, 785, 786, 449, 787, 206, 448, 654, 784, 352, 360, 357, 356, 655, 353, 495, 456, 550, 457, 327, 328, 331, 313, 496, 329, 656, 657, 497, 467, 551, 658, 659, 350, 498, 443, 444, 459, 338, 343, 342, 499, 468, 660, 339, 479, 661, 454, 318, 345, 316, 458, 317, 319, 330, 320, 323, 315, 321, 322, 326, 346, 325, 324, 788, 349, 334, 347, 332, 460, 333, 789, 340, 336, 348, 335, 314, 480, 790, 337, 562, 563, 548, 549, 427, 428, 429, 430, 564, 565, 686, 687, 461, 462, 463, 464, 688, 689, 690, 691, 791, 792, 716, 717, 431, 432, 465, 466, 718, 719, 489, 490, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 491, 492, 736, 737, 738, 739, 740, 741, 742, 483, 484, 743, 744, 485, 486, 745, 746, 441, 442, 433, 434, 747, 748, 469, 470, 749, 556, 557, 750, 751, 752, 753, 558, 559, 754, 755, 487, 488, 756, 757, 471, 472, 435, 436, 758, 759, 493, 494, 473, 474, 760, 761, 475, 476, 762, 763, 764, 765, 445, 446, 766, 767, 477, 478, 560, 561, 768, 769, 770, 771, 772, 773, 774, 437, 438, 439, 440, 481, 482, 775]], - [402, [344]], - [536, [552, 553, 554, 555]], - [714, [914]], - [913, [662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 0, 679, 680, 681, 682, 683, 684, 685]], - [945, [692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 915, 709, 710, 711, 712, 713, 714, 715]], - [991, [803]], - [1024, [500, 373, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 361, 363, 365, 367, 369, 371, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 395, 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 362, 364, 366, 368, 370, 372, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 515, 374, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535]], - [1136, [536, 537, 538, 539]], - [1162, [540, 541, 542, 543, 544, 545, 546, 547]], - [2960, [802]], - [4326, [801]], - [8208, [1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 0, 0, 193, 0, 0, 0, 1076, 1057]], - [8252, [205]], - [8263, [1058, 1059, 1060]], - [8364, [447]], - [8470, [810]], - [8482, [455]], - [8592, [213, 210, 212, 211, 215, 204]], - [8616, [209]], - [8735, [214]], - [8962, [312]], - [9632, [566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 208, 578, 579, 580, 581, 582, 216, 583, 584, 585, 586, 587, 588, 589, 202, 590, 217, 591, 592, 593, 594, 595, 596, 597, 203, 598, 599, 600, 601, 602, 603, 195, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 194, 196, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 1075, 0, 0, 0, 0, 793, 794]], - [9786, [187, 188, 201, 0, 0, 1062, 198, 1063, 197]], - [9812, [1070, 1071, 0, 0, 0, 0, 1072, 1073, 0, 0, 0, 0, 192, 453, 811, 191, 812, 189, 190, 813, 0, 0, 199, 200]], - [9890, [1067, 1068, 1069, 452, 1066, 1061, 1064, 1065]], - [9906, [451]], - [10003, [814, 815, 816, 817, 818, 819]], - [10022, [796, 797]], - [10032, [795]], - [10047, [808, 809]], - [10083, [1074, 0, 800]], - [12289, [1011, 1012, 1013, 0, 1014, 0, 0, 1015, 1016, 806, 807, 1017, 1018, 1019, 1020, 804, 805, 1021, 1022]], - [12316, [1023, 1024, 1025, 1026, 0, 1027, 1028, 1029, 1030, 0, 1031, 1032, 1033, 1034]], - [12336, [1035, 1036, 1037, 1038, 1039, 1040]], - [12353, [820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905]], - [12449, [916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010]], - [21325, [799, 0, 0, 798]], - [65281, [1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 906, 907, 908, 909, 910, 911, 912]], - [65507, [913]], - [128067, [1077]], - [128518, [1083]], - [128528, [1081, 1082]], - [128543, [1084, 1080]], - [128565, [1079]], - [128578, [1078, 1085]], -]); - -export const emoji = createFont(sprites, [ - [9752, [1257]], - [9800, [1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254]], - [9889, [1239]], - [9924, [1230]], - [9934, [1255, 1265]], - [10024, [1238]], - [10052, [1231]], - [10084, [1185]], - [11088, [1235]], - [127752, [1226]], - [127775, [1236, 1234]], - [127794, [1213]], - [127800, [1211]], - [127807, [1216, 1258]], - [127815, [1264, 0, 0, 1219, 0, 1266, 0, 1217, 1218, 1261, 0, 0, 0, 0, 1222]], - [127841, [1225]], - [127850, [1259, 0, 1223, 1224]], - [127873, [1229, 0, 1221, 1214, 1233]], - [127922, [1237, 0, 0, 1241, 1242]], - [127936, [1220]], - [128008, [1200]], - [128049, [1201]], - [128062, [1199]], - [128081, [1256]], - [128123, [1198, 0, 0, 0, 1183]], - [128142, [1227, 0, 1215, 0, 0, 0, 1191, 1194, 1192, 1193, 0, 1186, 1187, 1188, 1189]], - [128174, [1212]], - [128293, [1240]], - [128367, [1232]], - [128375, [1196]], - [128420, [1190]], - [128520, [1182, 0, 0, 0, 0, 1181]], - [128568, [1203, 1204, 1202, 1205, 1206, 1207, 1210, 1209, 1208]], - [129300, [1184]], - [129356, [1228]], - [129365, [1263, 0, 0, 0, 0, 1260]], - [129389, [1262]], - [129415, [1197, 0, 0, 0, 1195]], -]); - -export const fontSmall = createFont(sprites, [ - [0, [1267]], - [32, [1629, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392]], - [161, [1439, 0, 1422, 0, 0, 0, 1288, 0, 0, 1432, 1440, 1436, 0, 1435, 0, 1531, 0, 0, 0, 1530, 0, 1287, 1529, 1736, 0, 1433, 1441, 1438, 1437, 1737, 1434, 1576, 1537, 1632, 1538, 1408, 1409, 1412, 1394, 1577, 1410, 1738, 1739, 1578, 1548, 1633, 1740, 1741, 1431, 1579, 1524, 1525, 1540, 1419, 1424, 1423, 1580, 1549, 1742, 1420, 1560, 1743, 1535, 1399, 1426, 1397, 1539, 1398, 1400, 1411, 1401, 1404, 1396, 1402, 1403, 1407, 1427, 1406, 1405, 0, 1430, 1415, 1428, 1413, 1541, 1414, 1774, 1421, 1417, 1429, 1416, 1395, 1561, 1775, 1418, 1644, 1645, 1630, 1631, 1508, 1509, 1510, 1511, 1646, 1647, 1768, 1769, 1542, 1543, 1544, 1545, 1770, 1771, 1772, 1773, 1776, 1777, 0, 0, 1512, 1513, 1546, 1547, 0, 0, 1570, 1571]], - [304, [1572, 1573]], - [313, [1564, 1565, 0, 0, 1566, 1567, 0, 0, 1522, 1523, 1514, 1515, 0, 0, 1550, 1551, 0, 1638, 1639, 0, 0, 0, 0, 1640, 1641, 0, 0, 1568, 1569, 0, 0, 1552, 1553, 1516, 1517, 0, 0, 1574, 1575, 1554, 1555, 0, 0, 1556, 1557, 0, 0, 0, 0, 1526, 1527, 0, 0, 1558, 1559, 1642, 1643]], - [377, [1518, 1519, 1520, 1521, 1562, 1563]], - [402, [1425]], - [536, [1634, 1635, 1636, 1637]], - [913, [1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 0, 1761, 1762, 1763, 1764, 1765, 1766, 1767]], - [991, [1788]], - [1024, [1581, 1454, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1442, 1444, 1446, 1448, 1450, 1452, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1443, 1445, 1447, 1449, 1451, 1453, 1457, 1459, 1461, 1463, 1465, 1467, 1469, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1596, 1455, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616]], - [1136, [1617, 1618, 1619, 1620]], - [1162, [1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628]], - [2960, [1787]], - [4326, [1786]], - [8226, [1274, 0, 0, 0, 1808]], - [8252, [1286]], - [8364, [1528]], - [8482, [1536]], - [8592, [1294, 1291, 1293, 1292, 1296, 1285]], - [8616, [1290]], - [8735, [1295]], - [8962, [1393]], - [9632, [1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1289, 1660, 1661, 1662, 1663, 1664, 1297, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1283, 1672, 1298, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1284, 1680, 1681, 1682, 1683, 1684, 1685, 1276, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1275, 1277, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1807, 0, 0, 0, 0, 1778, 1779]], - [9786, [1268, 1269, 1282, 0, 0, 1794, 1279, 1795, 1278]], - [9812, [1802, 1803, 0, 0, 0, 0, 1804, 1805, 0, 0, 0, 0, 1273, 1534, 0, 1272, 0, 1270, 1271, 0, 0, 0, 1280, 1281]], - [9890, [1799, 1800, 1801, 1533, 1798, 1793, 1796, 1797]], - [9906, [1532]], - [10022, [1781, 1782]], - [10032, [1780]], - [10083, [1806, 0, 1785]], - [12298, [1791, 1792, 0, 0, 0, 0, 1789, 1790]], - [21325, [1784, 0, 0, 1783]], - [65281, [1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910]], - [128067, [1809]], - [128518, [1815]], - [128528, [1813, 1814]], - [128543, [1816, 1812]], - [128565, [1811]], - [128578, [1810]], -]); - -export const fontMono = createFont(sprites, [ - [0, [1911]], - [33, [1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036]], - [167, [1932]], - [182, [1931]], - [8226, [1918]], - [8252, [1930]], - [8592, [1938, 1935, 1937, 1936, 1940, 1929]], - [8616, [1934]], - [8735, [1939]], - [8962, [2037]], - [9644, [1933]], - [9650, [1941]], - [9658, [1927, 0, 1942]], - [9668, [1928]], - [9675, [1920]], - [9688, [1919, 1921]], - [9786, [1912, 1913, 1926, 0, 0, 0, 1923, 0, 1922]], - [9824, [1917, 0, 0, 1916, 0, 1914, 1915, 0, 0, 0, 1924, 1925]], -]); - -export const fontPal = createFont(sprites2, [ - [0, [7572]], - [32, [13771, 7604, 7605, 7606, 7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630, 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654, 7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, 7697]], - [161, [7744, 8162, 7727, 8163, 8164, 8165, 7593, 8166, 8167, 7737, 7745, 7741, 0, 7740, 8168, 7836, 8169, 8171, 8172, 7835, 8173, 7592, 7834, 8040, 8170, 7738, 7746, 7743, 7742, 8041, 7739, 7881, 7842, 7936, 7843, 7713, 7714, 7717, 7699, 7882, 7715, 8042, 8043, 7883, 7853, 7937, 8044, 8045, 7736, 7884, 7829, 7830, 7845, 7724, 7729, 7728, 7885, 7854, 8046, 7725, 7865, 8047, 7840, 7704, 7731, 7702, 7844, 7703, 7705, 7716, 7706, 7709, 7701, 7707, 7708, 7712, 7732, 7711, 7710, 8174, 7735, 7720, 7733, 7718, 7846, 7719, 8175, 7726, 7722, 7734, 7721, 7700, 7866, 8176, 7723, 7948, 7949, 7934, 7935, 7813, 7814, 7815, 7816, 7950, 7951, 8072, 8073, 7847, 7848, 7849, 7850, 8074, 8075, 8076, 8077, 8177, 8178, 8102, 8103, 7817, 7818, 7851, 7852, 8104, 8105, 7875, 7876, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, 8120, 8121, 7877, 7878, 8122, 8123, 8124, 8125, 8126, 8127, 8128, 7869, 7870, 8129, 8130, 7871, 7872, 8131, 8132, 7827, 7828, 7819, 7820, 8133, 8134, 7855, 7856, 8135, 7942, 7943, 8136, 8137, 8138, 8139, 7944, 7945, 8140, 8141, 7873, 7874, 8142, 8143, 7857, 7858, 7821, 7822, 8144, 8145, 7879, 7880, 7859, 7860, 8146, 8147, 7861, 7862, 8148, 8149, 8150, 8151, 7831, 7832, 8152, 8153, 7863, 7864, 7946, 7947, 8154, 8155, 8156, 8157, 8158, 8159, 8160, 7823, 7824, 7825, 7826, 7867, 7868, 8161]], - [402, [7730]], - [536, [7938, 7939, 7940, 7941]], - [714, [8300]], - [913, [8048, 8049, 8050, 8051, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 0, 8065, 8066, 8067, 8068, 8069, 8070, 8071]], - [945, [8078, 8079, 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8301, 8095, 8096, 8097, 8098, 8099, 8100, 8101]], - [991, [8189]], - [1024, [7886, 7759, 7887, 7888, 7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, 7747, 7749, 7751, 7753, 7755, 7757, 7761, 7763, 7765, 7767, 7769, 7771, 7773, 7775, 7777, 7779, 7781, 7783, 7785, 7787, 7789, 7791, 7793, 7795, 7797, 7799, 7801, 7803, 7805, 7807, 7809, 7811, 7748, 7750, 7752, 7754, 7756, 7758, 7762, 7764, 7766, 7768, 7770, 7772, 7774, 7776, 7778, 7780, 7782, 7784, 7786, 7788, 7790, 7792, 7794, 7796, 7798, 7800, 7802, 7804, 7806, 7808, 7810, 7812, 7901, 7760, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912, 7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921]], - [1136, [7922, 7923, 7924, 7925]], - [1162, [7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933]], - [2960, [8188]], - [4326, [8187]], - [8208, [8427, 8428, 8429, 8430, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 0, 0, 7579, 0, 0, 0, 8462, 8443]], - [8252, [7591]], - [8263, [8444, 8445, 8446]], - [8364, [7833]], - [8470, [8196]], - [8482, [7841]], - [8592, [7599, 7596, 7598, 7597, 7601, 7590]], - [8616, [7595]], - [8735, [7600]], - [8962, [7698]], - [9632, [7952, 7953, 7954, 7955, 7956, 7957, 7958, 7959, 7960, 7961, 7962, 7963, 7594, 7964, 7965, 7966, 7967, 7968, 7602, 7969, 7970, 7971, 7972, 7973, 7974, 7975, 7588, 7976, 7603, 7977, 7978, 7979, 7980, 7981, 7982, 7983, 7589, 7984, 7985, 7986, 7987, 7988, 7989, 7581, 7990, 7991, 7992, 7993, 7994, 7995, 7996, 7997, 7998, 7999, 8000, 8001, 7580, 7582, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010, 8011, 8012, 8013, 8014, 8015, 8016, 8017, 8018, 8019, 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8029, 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8461, 0, 0, 0, 0, 8179, 8180]], - [9786, [7573, 7574, 7587, 0, 0, 8448, 7584, 8449, 7583]], - [9812, [8456, 8457, 0, 0, 0, 0, 8458, 8459, 0, 0, 0, 0, 7578, 7839, 8197, 7577, 8198, 7575, 7576, 8199, 0, 0, 7585, 7586]], - [9890, [8453, 8454, 8455, 7838, 8452, 8447, 8450, 8451]], - [9906, [7837]], - [10003, [8200, 8201, 8202, 8203, 8204, 8205]], - [10022, [8182, 8183]], - [10032, [8181]], - [10047, [8194, 8195]], - [10083, [8460, 0, 8186]], - [12289, [8397, 8398, 8399, 0, 8400, 0, 0, 8401, 8402, 8192, 8193, 8403, 8404, 8405, 8406, 8190, 8191, 8407, 8408]], - [12316, [8409, 8410, 8411, 8412, 0, 8413, 8414, 8415, 8416, 0, 8417, 8418, 8419, 8420]], - [12336, [8421, 8422, 8423, 8424, 8425, 8426]], - [12353, [8206, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8265, 8266, 8267, 8268, 8269, 8270, 8271, 8272, 8273, 8274, 8275, 8276, 8277, 8278, 8279, 8280, 8281, 8282, 8283, 8284, 8285, 8286, 8287, 8288, 8289, 8290, 8291]], - [12449, [8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, 8320, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8332, 8333, 8334, 8335, 8336, 8337, 8338, 8339, 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, 8350, 8351, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8362, 8363, 8364, 8365, 8366, 8367, 8368, 8369, 8370, 8371, 8372, 8373, 8374, 8375, 8376, 8377, 8378, 8379, 8380, 8381, 8382, 8383, 8384, 8385, 8386, 8387, 8388, 8389, 8390, 8391, 8392, 8393, 8394, 8395, 8396]], - [19968, [8472, 8473, 0, 8474, 0, 0, 0, 8475, 8476, 8477, 8478, 8479, 0, 8480, 8481, 0, 8482, 8483, 0, 8484, 8485, 8486, 8487, 0, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 0, 0, 8495, 8496, 0, 8497, 8498, 8499, 8500, 0, 0, 8501, 8502, 0, 8503, 0, 0, 8504, 0, 8505, 0, 8506, 0, 0, 0, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 0, 0, 0, 0, 8514, 0, 8515, 0, 0, 8516, 8517, 0, 8518, 8519, 8520, 8521, 8522, 8523, 0, 8524, 8525, 8526, 0, 8527, 8528, 8529, 8530, 0, 0, 0, 8531, 8532, 8533, 8534, 8535, 0, 0, 0, 0, 8536]], - [20080, [8537, 8538, 0, 8539]], - [20094, [8540, 0, 8541]], - [20102, [8542, 0, 8543, 8544, 0, 8545, 8546, 0, 8547, 8548, 0, 8549, 8550, 0, 8551, 8552, 0, 0, 8553, 8554, 8555, 8556, 8557, 0, 8558, 8559, 0, 8560, 8561, 0, 8562, 8563, 8564, 8565, 8566, 8567, 0, 8568, 8569, 8570, 8571, 0, 0, 0, 8572, 0, 0, 8573, 0, 0, 0, 0, 8574, 0, 0, 0, 0, 8575, 8576, 8577, 0, 0, 0, 8578, 8579, 8580, 0, 0, 8581, 8582, 0, 8583, 8584, 8585, 0, 8586, 0, 8587, 8588, 8589, 8590, 8591, 8592, 8593]], - [20195, [8594, 8595, 8596, 0, 0, 0, 0, 8597, 0, 8598, 0, 8599, 0, 8600, 0, 8601, 0, 0, 0, 8602, 8603, 0, 0, 0, 8604, 0, 8605, 0, 8606, 0, 8607]], - [20234, [8608, 0, 0, 8609, 8610, 8611, 8612, 8613]], - [20247, [8614, 8615, 8616, 8617, 0, 0, 8618, 8619, 8620, 8621, 0, 8622, 0, 8623, 0, 8624, 0, 0, 0, 8625, 0, 0, 0, 0, 8626, 8627, 0, 0, 0, 8628, 0, 8629, 0, 8630, 0, 8631, 0, 8632, 8633]], - [20291, [8634, 0, 0, 8635]], - [20301, [8636, 8637, 8638, 8639, 8640, 0, 8641, 0, 8642, 0, 0, 0, 8643, 8644, 8645, 8646, 0, 0, 8647, 8648, 0, 0, 8649]], - [20329, [8650, 0, 0, 8651, 0, 0, 8652, 0, 0, 0, 8653, 0, 8654]], - [20348, [8655, 0, 0, 8656, 0, 0, 0, 8657, 8658, 0, 8659, 0, 8660, 0, 0, 8661, 0, 8662, 0, 8663, 0, 8664]], - [20379, [8665, 0, 8666, 0, 0, 8667, 8668, 0, 8669, 0, 8670, 8671, 8672, 8673, 0, 0, 0, 8674, 0, 8675, 8676]], - [20405, [8677, 8678]], - [20415, [8679, 0, 0, 8680, 8681, 8682]], - [20426, [8683, 0, 0, 0, 0, 8684, 8685]], - [20439, [8686, 8687, 0, 0, 0, 0, 8688, 8689, 8690, 8691, 8692, 0, 8693, 0, 0, 0, 0, 8694, 8695, 0, 0, 0, 8696, 8697, 8698, 0, 8699, 0, 8700, 0, 8701, 0, 0, 8702, 0, 8703, 0, 0, 0, 8704]], - [20489, [8705, 0, 8706, 0, 8707, 0, 8708, 0, 0, 8709, 0, 8710, 0, 8711, 0, 8712, 8713, 8714, 0, 0, 0, 0, 8715, 0, 8716, 0, 8717, 8718, 0, 8719, 0, 0, 8720, 8721, 8722, 0, 8723]], - [20534, [8724, 0, 0, 8725, 8726, 0, 8727, 0, 8728]], - [20551, [8729, 0, 8730, 0, 0, 8731, 0, 8732, 8733]], - [20565, [8734, 0, 0, 0, 0, 8735, 0, 8736]], - [20581, [8737]], - [20594, [8738, 0, 8739, 8740, 8741, 8742]], - [20605, [8743, 0, 8744, 8745, 0, 0, 0, 0, 8746]], - [20621, [8747, 0, 0, 0, 8748]], - [20632, [8749, 8750]], - [20643, [8751, 0, 0, 0, 0, 8752, 8753, 0, 0, 8754, 8755, 0, 0, 0, 0, 8756, 8757, 0, 8758, 0, 8759, 0, 0, 0, 8760, 0, 0, 8761]], - [20677, [8762]], - [20685, [8763, 0, 8764, 0, 8765, 0, 0, 0, 8766, 0, 0, 0, 0, 8767, 0, 0, 0, 8768]], - [20711, [8769]], - [20717, [8770]], - [20725, [8771, 0, 0, 0, 8772, 0, 8773, 0, 0, 0, 0, 8774, 0, 0, 0, 8775, 0, 0, 0, 0, 8776]], - [20754, [8777]], - [20767, [8778, 0, 8779]], - [20778, [8780]], - [20786, [8781]], - [20799, [8782, 8783, 8784, 0, 8785, 8786, 8787, 8788, 0, 8789, 8790, 0, 8791, 0, 8792, 8793, 0, 8794, 8795, 8796, 0, 8797]], - [20826, [8798, 0, 8799]], - [20834, [8800, 0, 0, 8801, 0, 0, 8802, 0, 0, 8803, 8804, 8805, 8806, 0, 8807, 8808, 0, 8809, 8810, 8811, 8812, 8813, 8814, 8815, 0, 8816, 8817, 8818, 0, 0, 8819, 0, 0, 0, 0, 8820, 8821, 0, 8822, 8823, 8824, 0, 8825, 8826, 0, 0, 0, 0, 8827, 0, 0, 8828, 0, 8829, 0, 8830, 0, 8831, 8832, 0, 0, 0, 8833, 0, 8834, 0, 8835, 8836, 0, 0, 8837, 0, 0, 0, 8838, 0, 0, 8839, 8840, 0, 8841, 8842, 8843, 8844, 8845, 8846, 0, 0, 0, 8847, 0, 0, 0, 0, 8848, 0, 0, 0, 8849, 0, 8850, 0, 0, 8851, 0, 8852, 8853, 8854, 0, 8855, 0, 8856]], - [20955, [8857, 8858, 8859, 0, 0, 8860, 8861, 0, 0, 8862, 0, 8863, 8864, 0, 0, 8865, 0, 0, 8866, 0, 8867, 8868, 8869, 0, 8870, 0, 0, 8871, 0, 8872, 8873, 8874, 8875, 0, 8876, 0, 8877, 8878, 8879, 0, 8880, 0, 0, 8881, 8882, 8883, 0, 8884]], - [21009, [8885, 8886, 0, 0, 0, 0, 8887, 8888, 8889, 8890, 8891, 0, 8892, 0, 0, 8893, 0, 0, 0, 8894, 8895, 0, 0, 8896, 8897, 0, 8898, 0, 0, 8899, 0, 8900]], - [21046, [8901, 8902, 8903, 8904, 8905, 8906, 0, 8907, 0, 0, 0, 0, 8908, 8909, 0, 0, 0, 8910, 0, 0, 8911, 0, 8912, 8913, 0, 0, 0, 8914, 0, 0, 8915, 0, 8916, 0, 0, 0, 0, 8917]], - [21091, [8918, 8919, 8920, 0, 8921, 0, 8922, 8923, 0, 0, 0, 0, 8924, 8925, 0, 8926, 0, 0, 8927]], - [21119, [8928]], - [21127, [8929, 8930, 8931, 0, 0, 0, 8932]], - [21147, [8933, 0, 8934, 8935, 8936, 8937, 8938, 0, 8939, 0, 0, 0, 0, 8940, 8941, 8942, 8943]], - [21169, [8944, 8945, 8946, 8947, 0, 0, 0, 0, 8948, 0, 0, 0, 0, 8949, 8950, 0, 8951, 0, 8952, 0, 8953, 0, 8954, 0, 8955, 0, 8956]], - [21202, [8957, 0, 0, 8958, 0, 0, 8959, 8960, 0, 0, 0, 8961, 0, 8962, 0, 0, 8963, 0, 8964, 0, 0, 8965]], - [21234, [8966, 8967]], - [21242, [8968, 0, 0, 0, 8969, 8970, 8971, 8972, 8973, 0, 0, 8974, 8975, 0, 8976]], - [21269, [8977, 8978, 8979, 0, 8980]], - [21280, [8981, 8982, 0, 8983]], - [21290, [8984, 0, 0, 0, 8985]], - [21305, [8986, 8987, 8988, 0, 0, 8989, 8990, 0, 8991, 0, 8992, 0, 0, 0, 8993, 8994, 8995, 8996, 0, 0, 8185, 8997, 8998, 8184, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 0, 9007, 0, 9008, 0, 0, 0, 9009, 9010, 9011, 0, 9012, 0, 9013, 9014, 0, 0, 0, 9015, 0, 0, 0, 9016, 9017, 9018, 0, 9019, 9020, 9021, 0, 9022, 9023]], - [21375, [9024, 0, 0, 9025, 0, 9026, 9027, 9028, 0, 0, 9029, 0, 9030, 9031]], - [21397, [9032, 0, 0, 9033, 0, 9034, 0, 0, 0, 0, 9035, 0, 0, 9036, 0, 0, 9037, 9038, 0, 9039, 9040, 0, 0, 0, 0, 9041, 0, 0, 0, 0, 9042]], - [21435, [9043, 0, 0, 0, 9044, 0, 0, 9045]], - [21448, [9046, 9047, 9048, 9049, 9050, 9051, 9052, 0, 0, 9053, 0, 0, 9054, 0, 9055, 9056, 9057, 9058, 0, 9059, 0, 0, 0, 9060, 9061, 9062, 9063, 9064, 9065, 9066, 9067, 0, 9068, 9069, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9078, 9079, 0, 0, 9080, 9081, 9082, 9083, 0, 0, 9084, 9085, 0, 0, 0, 9086, 0, 9087, 9088, 0, 9089, 0, 9090, 9091, 9092, 0, 9093, 9094, 9095, 9096, 9097, 9098, 0, 9099, 0, 9100, 0, 9101, 0, 0, 0, 9102, 0, 9103, 9104, 9105, 9106]], - [21542, [9107, 9108, 9109, 9110, 0, 9111, 9112, 9113, 9114, 9115, 0, 9116, 0, 0, 9117, 9118, 0, 0, 9119, 9120, 0, 9121, 9122, 0, 9123, 0, 9124, 0, 9125, 9126, 0, 0, 9127, 0, 9128, 9129, 9130]], - [21584, [9131, 0, 0, 0, 0, 9132, 0, 9133, 9134, 0, 0, 9135, 9136, 0, 0, 9137, 0, 0, 9138]], - [21608, [9139, 0, 9140]], - [21617, [9141, 0, 9142, 0, 9143, 0, 0, 9144, 0, 0, 9145, 9146, 9147, 0, 0, 9148, 0, 0, 0, 9149, 0, 9150, 0, 0, 0, 0, 9151, 9152, 0, 9153, 9154, 9155, 0, 9156, 0, 9157, 9158, 9159, 0, 0, 9160, 9161]], - [21670, [9162, 9163, 9164, 0, 9165, 0, 9166, 0, 0, 9167, 0, 9168, 9169, 9170, 0, 0, 0, 0, 9171, 0, 0, 0, 0, 9172, 0, 0, 9173, 9174, 0, 0, 9175, 0, 9176, 9177, 9178, 9179, 0, 0, 0, 9180, 9181, 0, 0, 9182, 9183, 0, 0, 0, 0, 9184]], - [21725, [9185, 0, 9186, 0, 9187, 0, 0, 0, 9188, 9189, 9190, 9191, 9192, 9193, 0, 0, 9194, 9195, 0, 0, 0, 9196]], - [21754, [9197, 0, 9198, 9199]], - [21764, [9200, 0, 9201, 9202, 0, 9203]], - [21776, [9204, 0, 0, 0, 9205]], - [21792, [9206, 0, 0, 0, 9207, 0, 0, 9208, 0, 0, 0, 0, 9209, 0, 9210, 9211, 0, 9212]], - [21815, [9213]], - [21822, [9214, 0, 0, 0, 0, 9215, 9216, 0, 9217, 0, 0, 0, 9218, 0, 0, 0, 0, 9219, 0, 0, 0, 9220]], - [21857, [9221, 0, 0, 9222, 9223, 9224, 9225, 0, 0, 9226, 0, 9227]], - [21880, [9228, 0, 0, 0, 9229, 0, 0, 0, 9230, 0, 9231, 9232, 9233, 0, 0, 9234, 0, 9235, 9236, 9237]], - [21908, [9238, 0, 0, 0, 9239, 9240, 9241, 0, 9242, 9243]], - [21927, [9244, 0, 9245, 9246, 9247, 9248, 0, 9249, 0, 9250, 0, 0, 9251, 0, 0, 9252, 9253, 0, 0, 0, 9254, 0, 9255]], - [21957, [9256]], - [21970, [9257, 9258, 9259, 0, 9260]], - [21980, [9261, 0, 0, 9262, 0, 9263, 0, 9264, 9265, 0, 9266, 0, 9267]], - [21999, [9268, 0, 0, 0, 9269]], - [22013, [9270, 0, 0, 9271]], - [22022, [9272, 0, 9273, 9274, 0, 0, 0, 0, 9275]], - [22039, [9276, 9277, 0, 0, 9278, 0, 0, 0, 9279]], - [22057, [9280]], - [22065, [9281, 9282, 0, 9283, 0, 9284, 0, 0, 0, 0, 9285, 0, 0, 0, 9286, 0, 0, 9287]], - [22092, [9288, 0, 9289]], - [22103, [9290, 0, 0, 0, 9291, 9292]], - [22114, [9293]], - [22120, [9294, 9295, 9296, 0, 9297]], - [22132, [9298, 0, 9299]], - [22151, [9300]], - [22158, [9301, 9302, 0, 0, 0, 9303]], - [22179, [9304]], - [22196, [9305, 0, 0, 9306, 0, 0, 0, 0, 9307]], - [22218, [9308]], - [22234, [9309, 9310, 0, 0, 9311, 0, 9312, 0, 9313, 9314]], - [22253, [9315, 0, 0, 9316, 9317, 9318, 9319, 9320]], - [22266, [9321, 0, 0, 9322, 9323, 0, 0, 0, 0, 9324, 0, 0, 9325, 0, 9326, 0, 0, 9327, 0, 0, 0, 9328, 0, 0, 9329, 9330, 0, 0, 0, 0, 9331]], - [22303, [9332, 0, 0, 0, 9333, 0, 0, 0, 9334, 9335, 0, 0, 0, 0, 9336, 0, 0, 9337, 0, 0, 9338]], - [22330, [9339, 0, 0, 0, 9340, 0, 9341, 0, 9342, 0, 0, 0, 0, 9343, 0, 0, 9344, 0, 0, 9345, 9346, 9347, 9348, 9349]], - [22359, [9350, 0, 0, 9351, 9352, 0, 9353, 9354, 9355, 9356, 9357, 0, 0, 9358, 0, 9359, 0, 0, 0, 9360, 0, 0, 0, 0, 9361]], - [22391, [9362]], - [22402, [9363, 9364, 9365]], - [22411, [9366]], - [22418, [9367]], - [22434, [9368, 9369, 0, 0, 9370, 0, 0, 0, 0, 9371, 0, 0, 9372]], - [22467, [9373]], - [22475, [9374, 0, 0, 9375]], - [22484, [9376]], - [22492, [9377, 0, 0, 9378, 9379]], - [22516, [9380, 0, 0, 9381, 0, 9382, 9383, 0, 9384, 0, 0, 0, 9385, 0, 9386, 0, 0, 9387, 9388]], - [22545, [9389, 0, 0, 0, 9390]], - [22561, [9391, 0, 0, 9392]], - [22570, [9393, 0, 0, 0, 0, 9394, 9395, 9396, 0, 0, 9397, 9398, 0, 0, 0, 0, 9399]], - [22592, [9400, 9401]], - [22602, [9402, 0, 9403, 0, 0, 0, 0, 9404, 0, 0, 9405, 0, 0, 9406, 9407, 9408, 9409, 0, 0, 0, 9410]], - [22633, [9411, 0, 9412]], - [22654, [9413, 0, 0, 0, 0, 9414, 0, 9415]], - [22675, [9416, 0, 0, 0, 9417, 0, 9418, 0, 0, 9419, 0, 9420, 9421]], - [22696, [9422, 9423]], - [22707, [9424]], - [22718, [9425, 0, 0, 9426]], - [22727, [9427, 0, 0, 9428, 0, 9429, 0, 0, 0, 0, 9430, 0, 0, 0, 9431, 0, 0, 9432]], - [22750, [9433]], - [22756, [9434]], - [22763, [9435, 9436, 0, 9437, 9438, 9439, 9440, 9441, 9442, 0, 0, 9443, 9444]], - [22781, [9445]], - [22788, [9446, 0, 0, 9447, 0, 9448, 0, 0, 0, 9449, 0, 9450]], - [22805, [9451, 9452, 0, 0, 0, 9453, 0, 9454, 0, 0, 9455, 0, 0, 9456, 0, 0, 0, 0, 9457, 0, 9458, 9459, 9460, 0, 9461, 9462, 0, 0, 9463, 0, 0, 9464, 0, 0, 9465, 9466, 9467, 9468]], - [22850, [9469, 0, 9470, 0, 0, 9471, 9472, 9473, 0, 9474, 0, 0, 9475, 9476, 0, 9477, 0, 0, 9478, 9479, 9480, 9481, 0, 0, 9482]], - [22880, [9483, 0, 9484, 0, 0, 9485, 0, 9486, 9487, 0, 9488, 0, 9489, 0, 9490, 0, 0, 0, 0, 9491, 9492, 0, 9493, 0, 9494, 9495, 0, 0, 0, 9496, 0, 0, 0, 0, 9497, 9498, 9499, 0, 9500, 9501, 9502, 0, 9503]], - [22930, [9504, 9505, 0, 0, 9506, 0, 0, 9507, 0, 0, 0, 0, 9508]], - [22949, [9509, 0, 0, 9510, 0, 0, 0, 9511, 0, 9512]], - [22969, [9513, 0, 9514, 0, 0, 9515]], - [22982, [9516, 0, 0, 9517, 9518, 9519, 0, 0, 0, 0, 9520, 9521, 0, 9522, 9523, 0, 0, 9524, 0, 0, 9525, 0, 9526]], - [23013, [9527, 9528, 0, 9529, 0, 9530, 9531, 9532]], - [23035, [9533, 0, 0, 0, 9534, 0, 9535, 0, 9536, 0, 9537, 0, 9538]], - [23059, [9539, 0, 0, 0, 0, 9540, 0, 0, 0, 9541, 0, 0, 9542, 9543, 0, 0, 0, 0, 9544, 0, 0, 0, 9545]], - [23087, [9546, 0, 9547, 0, 0, 9548, 0, 9549]], - [23100, [9550]], - [23110, [9551, 0, 0, 9552]], - [23130, [9553]], - [23138, [9554, 0, 0, 0, 9555, 0, 0, 0, 9556]], - [23156, [9557, 9558, 9559, 9560]], - [23167, [9561]], - [23186, [9562]], - [23194, [9563, 9564]], - [23218, [9565, 9566]], - [23233, [9567, 9568]], - [23241, [9569, 0, 0, 9570]], - [23252, [9571, 0, 9572]], - [23265, [9573, 0, 9574, 0, 0, 9575, 0, 0, 9576]], - [23305, [9577]], - [23330, [9578]], - [23363, [9579]], - [23376, [9580, 0, 0, 0, 9581, 9582, 0, 9583, 9584, 9585, 9586, 0, 9587, 9588, 0, 9589, 0, 0, 0, 9590, 9591, 0, 9592, 0, 0, 9593, 0, 9594, 0, 0, 0, 0, 9595, 0, 0, 0, 0, 9596]], - [23421, [9597, 0, 0, 0, 9598, 0, 9599, 0, 9600, 0, 9601, 9602, 9603, 0, 9604, 9605, 0, 0, 9606]], - [23445, [9607, 0, 9608, 9609, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, 9620, 9621, 9622, 9623, 0, 0, 0, 9624, 9625, 0, 0, 9626, 0, 9627, 0, 0, 9628, 9629, 9630, 9631, 0, 0, 9632, 0, 0, 0, 9633, 9634, 9635, 0, 0, 9636, 0, 9637, 9638, 9639, 9640, 0, 0, 0, 0, 9641, 0, 0, 0, 9642, 0, 9643, 9644]], - [23515, [9645, 0, 9646, 9647, 9648, 0, 9649, 9650, 0, 0, 9651, 9652, 9653, 9654, 9655, 0, 0, 0, 0, 9656, 0, 9657, 0, 0, 0, 0, 9658, 0, 0, 9659, 9660, 9661, 9662, 9663, 0, 9664, 9665, 0, 9666, 9667, 0, 9668, 0, 9669, 9670, 9671, 9672, 9673, 9674, 0, 0, 9675, 9676, 0, 9677, 0, 0, 9678, 0, 9679, 0, 9680, 0, 9681, 0, 0, 9682]], - [23588, [9683, 0, 0, 9684, 0, 0, 0, 0, 9685, 9686, 0, 0, 0, 9687, 0, 0, 9688, 0, 0, 0, 9689, 9690, 9691, 9692, 9693, 9694, 9695, 9696, 9697, 9698, 9699, 0, 0, 9700, 0, 0, 9701, 9702, 9703, 9704, 0, 0, 9705, 9706, 0, 9707, 0, 0, 0, 9708]], - [23646, [9709, 0, 9710, 9711, 0, 0, 9712, 9713]], - [23663, [9714, 0, 9715]], - [23673, [9716]], - [23679, [9717, 0, 9718, 9719]], - [23696, [9720, 9721, 0, 0, 9722, 0, 0, 9723, 0, 0, 9724, 9725]], - [23713, [9726]], - [23721, [9727, 0, 0, 9728, 9729]], - [23731, [9730, 0, 0, 0, 0, 9731]], - [23769, [9732]], - [23776, [9733, 9734, 0, 0, 0, 0, 9735, 0, 9736, 0, 0, 0, 0, 9737, 0, 9738, 9739]], - [23798, [9740, 0, 0, 0, 0, 9741, 0, 9742]], - [23815, [9743]], - [23822, [9744]], - [23828, [9745, 0, 9746, 0, 0, 0, 9747, 9748]], - [23849, [9749, 0, 0, 0, 9750]], - [23869, [9751]], - [23883, [9752, 9753, 0, 0, 0, 9754]], - [23913, [9755]], - [23919, [9756]], - [23947, [9757]], - [23994, [9758]], - [24005, [9759]], - [24012, [9760, 9761]], - [24022, [9762]], - [24029, [9763, 9764, 0, 0, 9765, 9766, 9767, 0, 9768, 9769, 9770, 9771, 9772, 0, 9773, 0, 0, 9774, 0, 0, 9775, 9776, 9777, 9778, 0, 0, 9779, 0, 0, 0, 9780, 0, 9781, 9782, 0, 0, 9783, 9784, 9785, 0, 9786, 9787, 0, 9788, 0, 0, 0, 9789, 0, 0, 0, 9790, 0, 0, 0, 0, 9791, 9792, 0, 9793, 0, 9794, 9795, 9796, 9797]], - [24101, [9798, 9799, 9800, 0, 0, 0, 9801, 0, 9802, 9803, 9804, 9805, 0, 0, 9806, 0, 0, 9807, 9808, 9809, 0, 0, 0, 0, 9810]], - [24133, [9811]], - [24140, [9812]], - [24148, [9813, 9814]], - [24161, [9815, 9816, 9817]], - [24178, [9818, 9819, 9820, 0, 9821, 0, 9822, 9823, 0, 9824, 9825, 9826, 9827, 9828, 0, 9829, 0, 9830, 9831, 0, 9832, 9833, 0, 0, 9834, 0, 0, 0, 0, 9835, 9836, 0, 0, 9837, 9838, 9839, 0, 9840, 0, 9841, 9842, 0, 9843, 0, 9844, 9845]], - [24230, [9846, 9847, 0, 0, 0, 9848, 0, 9849]], - [24245, [9850, 9851, 9852, 9853]], - [24259, [9854]], - [24265, [9855, 9856]], - [24275, [9857, 0, 0, 9858]], - [24287, [9859, 0, 0, 0, 9860]], - [24307, [9861, 0, 0, 9862, 9863, 0, 0, 9864, 9865, 0, 0, 0, 9866, 9867, 9868, 9869, 9870, 9871]], - [24330, [9872, 0, 0, 0, 0, 9873, 9874, 0, 0, 9875, 9876, 9877, 0, 9878, 9879, 0, 0, 9880, 0, 0, 0, 9881, 9882, 0, 0, 0, 0, 9883, 9884, 9885, 0, 9886]], - [24367, [9887, 0, 9888, 0, 0, 0, 9889, 0, 9890, 0, 9891, 9892, 0, 9893, 0, 9894]], - [24392, [9895, 0, 0, 0, 9896]], - [24402, [9897, 9898, 0, 9899, 0, 9900, 0, 9901, 0, 0, 0, 9902, 0, 0, 0, 0, 9903, 0, 0, 0, 9904, 0, 0, 9905, 9906, 9907, 9908, 9909, 0, 0, 9910, 9911]], - [24439, [9912, 0, 9913, 0, 9914, 9915, 0, 0, 0, 9916, 9917, 0, 0, 9918, 9919, 0, 0, 9920, 0, 9921, 9922, 9923, 0, 0, 0, 9924, 0, 9925, 9926, 0, 0, 0, 9927, 9928, 9929, 0, 0, 0, 0, 9930, 0, 9931, 9932]], - [24489, [9933, 9934, 0, 0, 0, 9935, 0, 0, 0, 0, 9936, 9937, 0, 0, 9938, 0, 9939, 0, 0, 0, 9940]], - [24515, [9941, 0, 9942, 9943]], - [24524, [9944, 9945, 0, 9946, 0, 0, 9947, 0, 0, 0, 9948, 9949, 9950, 9951, 0, 0, 9952, 0, 0, 0, 9953, 9954]], - [24551, [9955, 0, 0, 0, 9956]], - [24561, [9957, 0, 0, 0, 9958]], - [24573, [9959, 0, 9960, 9961, 9962, 9963, 0, 0, 9964]], - [24590, [9965, 0, 0, 0, 9966, 0, 9967, 9968, 9969]], - [24604, [9970, 9971, 0, 0, 9972, 9973, 0, 0, 0, 9974, 9975, 9976, 9977, 0, 9978, 0, 0, 0, 0, 9979]], - [24635, [9980]], - [24643, [9981, 0, 0, 9982, 0, 0, 0, 0, 9983, 0, 9984, 0, 0, 9985, 0, 9986, 0, 0, 9987, 0, 0, 0, 9988, 9989]], - [24674, [9990, 9991, 9992, 9993, 0, 0, 9994, 9995, 9996, 0, 9997, 9998, 0, 9999, 10000, 0, 0, 10001, 0, 10002, 10003, 0, 0, 0, 10004, 10005, 10006, 0, 0, 10007, 0, 0, 0, 0, 10008, 0, 0, 0, 0, 10009, 0, 0, 10010, 10011]], - [24724, [10012, 0, 10013, 0, 0, 0, 10014, 0, 0, 0, 0, 10015, 10016, 0, 0, 10017, 0, 0, 10018, 0, 10019, 10020, 10021, 0, 10022, 0, 0, 10023, 0, 0, 10024, 0, 10025, 0, 0, 0, 10026, 0, 0, 10027, 10028]], - [24773, [10029, 0, 10030, 0, 0, 10031, 10032]], - [24785, [10033, 0, 0, 0, 10034, 0, 0, 10035, 0, 10036, 0, 10037, 0, 0, 10038, 10039, 10040, 0, 10041, 0, 0, 10042, 10043, 10044, 10045, 0, 10046, 10047, 10048, 10049, 10050, 10051, 0, 0, 10052, 10053, 0, 10054, 0, 0, 10055, 10056]], - [24833, [10057]], - [24840, [10058, 10059]], - [24847, [10060]], - [24853, [10061, 0, 0, 0, 0, 10062, 10063, 0, 0, 0, 10064, 0, 0, 0, 10065, 10066, 0, 0, 10067, 0, 0, 0, 10068]], - [24892, [10069, 0, 0, 10070, 0, 0, 0, 0, 10071, 0, 0, 0, 10072, 0, 0, 10073, 10074, 0, 10075, 0, 0, 10076, 0, 0, 0, 10077]], - [24930, [10078, 10079, 0, 0, 0, 10080, 10081]], - [24942, [10082, 0, 10083]], - [24950, [10084, 10085]], - [24962, [10086]], - [24971, [10087, 0, 0, 10088, 0, 10089, 0, 0, 0, 10090]], - [24986, [10091]], - [24996, [10092, 0, 0, 10093, 10094, 10095, 0, 0, 10096]], - [25010, [10097, 0, 0, 0, 10098]], - [25022, [10099, 0, 0, 0, 10100, 0, 0, 0, 0, 10101, 10102, 10103, 10104]], - [25040, [10105, 0, 10106]], - [25062, [10107]], - [25074, [10108, 0, 0, 10109, 0, 10110, 10111]], - [25087, [10112]], - [25096, [10113, 0, 10114, 0, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 0, 0, 0, 10122, 0, 10123, 0, 10124, 0, 0, 0, 0, 10125]], - [25126, [10126, 0, 0, 0, 10127, 0, 0, 0, 10128, 10129, 10130, 0, 10131, 10132, 10133, 0, 0, 10134, 10135, 0, 0, 10136, 0, 0, 0, 10137, 10138, 10139]], - [25159, [10140, 10141, 10142, 0, 10143, 0, 10144, 10145, 0, 0, 10146, 10147, 10148, 10149, 10150, 0, 0, 10151, 0, 0, 10152]], - [25187, [10153, 0, 0, 0, 10154, 0, 10155, 0, 10156, 10157, 10158, 10159, 10160, 10161, 10162, 0, 10163, 0, 0, 10164, 0, 0, 10165, 0, 0, 10166, 0, 10167, 10168, 10169, 0, 0, 0, 10170, 0, 0, 0, 0, 10171, 10172]], - [25233, [10173, 10174, 10175, 0, 10176, 10177, 10178, 10179, 0, 10180, 10181, 10182, 0, 10183, 0, 0, 10184, 10185, 0, 10186, 10187, 0, 0, 10188, 0, 0, 10189, 10190, 0, 0, 0, 0, 10191, 0, 0, 0, 10192, 0, 0, 0, 10193, 0, 0, 10194, 10195, 0, 10196, 0, 0, 10197, 0, 0, 10198, 10199, 10200, 10201, 10202, 0, 0, 10203, 10204, 10205, 0, 10206, 0, 10207, 10208, 10209, 0, 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 0, 10218, 10219, 10220, 10221, 10222, 0, 10223, 10224, 10225, 10226, 10227, 0, 0, 10228, 10229, 0, 10230, 0, 10231, 0, 10232, 10233, 0, 10234, 10235, 0, 0, 0, 0, 10236, 10237, 10238, 10239, 0, 10240, 10241, 0, 0, 0, 0, 10242, 0, 10243]], - [25361, [10244, 0, 0, 0, 0, 10245, 0, 0, 10246, 10247, 10248, 0, 10249, 0, 10250, 10251, 10252, 0, 10253, 10254, 10255, 0, 0, 10256, 0, 10257, 10258, 0, 0, 0, 10259]], - [25402, [10260, 0, 0, 10261, 0, 10262, 0, 0, 10263, 0, 0, 10264, 10265, 0, 0, 10266, 0, 0, 0, 10267, 10268, 10269, 10270, 0, 0, 0, 0, 10271, 0, 10272, 0, 0, 0, 0, 10273, 0, 10274, 10275, 0, 10276, 10277, 10278, 0, 0, 0, 10279, 10280]], - [25454, [10281, 0, 0, 0, 10282, 0, 0, 0, 10283, 10284, 0, 0, 10285, 10286, 0, 0, 0, 0, 10287, 0, 0, 10288, 0, 0, 0, 0, 10289, 10290, 0, 0, 10291, 0, 0, 10292, 10293, 0, 10294, 0, 0, 0, 10295, 0, 10296, 0, 0, 10297, 0, 0, 0, 0, 10298, 10299, 10300, 10301, 0, 10302, 0, 10303, 10304, 10305, 10306, 0, 10307]], - [25522, [10308, 10309, 10310, 0, 0, 10311, 0, 0, 10312, 10313]], - [25539, [10314]], - [25545, [10315, 0, 0, 0, 10316, 0, 10317, 10318, 0, 10319, 0, 0, 0, 10320, 0, 0, 0, 10321, 10322]], - [25569, [10323, 0, 10324]], - [25577, [10325, 10326, 0, 0, 10327, 10328]], - [25588, [10329]], - [25594, [10330, 0, 0, 10331, 0, 0, 10332, 10333, 10334, 0, 0, 10335]], - [25613, [10336, 0, 10337, 10338, 0, 0, 10339, 10340, 0, 10341]], - [25628, [10342, 0, 10343]], - [25644, [10344, 10345]], - [25658, [10346, 0, 0, 0, 10347, 0, 0, 0, 10348, 0, 10349, 0, 10350, 10351, 0, 0, 10352]], - [25681, [10353, 10354, 0, 10355, 0, 0, 0, 10356]], - [25703, [10357, 0, 10358]], - [25711, [10359]], - [25720, [10360, 10361, 10362]], - [25730, [10363, 10364, 0, 0, 0, 10365]], - [25745, [10366, 10367, 0, 0, 10368, 0, 0, 0, 0, 10369, 0, 0, 0, 10370]], - [25764, [10371, 0, 0, 0, 0, 10372, 0, 10373, 10374, 10375, 10376, 0, 10377, 0, 10378, 0, 0, 10379, 0, 0, 10380, 0, 0, 0, 10381, 0, 0, 0, 0, 10382, 10383, 0, 0, 10384, 0, 0, 0, 0, 10385, 0, 0, 10386, 10387, 0, 0, 0, 10388]], - [25822, [10389, 0, 0, 0, 10390, 0, 0, 0, 10391]], - [25836, [10392]], - [25856, [10393]], - [25874, [10394]], - [25880, [10395, 0, 0, 0, 0, 10396]], - [25893, [10397]], - [25899, [10398, 0, 0, 0, 10399]], - [25910, [10400, 0, 10401, 10402, 0, 10403, 0, 0, 10404, 10405]], - [25925, [10406, 0, 0, 10407, 0, 0, 0, 10408, 10409, 0, 10410, 0, 10411, 0, 0, 0, 10412, 10413, 10414, 0, 10415, 0, 10416, 0, 10417, 10418, 0, 0, 0, 10419, 10420, 0, 0, 10421]], - [25964, [10422, 0, 0, 0, 10423, 0, 10424, 0, 10425, 10426, 0, 10427]], - [25991, [10428, 0, 10429, 0, 10430, 10431, 0, 10432, 0, 10433, 10434, 0, 10435, 0, 0, 0, 10436, 0, 10437, 0, 0, 10438, 0, 0, 10439, 0, 10440, 0, 0, 10441, 10442, 0, 10443, 0, 10444, 0, 0, 10445, 10446, 0, 10447, 10448]], - [26041, [10449, 0, 0, 10450, 10451, 0, 0, 0, 10452, 0, 0, 0, 10453]], - [26059, [10454, 0, 0, 0, 10455]], - [26071, [10456]], - [26080, [10457, 0, 10458, 0, 0, 10459, 10460, 10461, 10462, 10463, 0, 0, 10464, 10465, 0, 0, 0, 10466, 0, 0, 0, 0, 10467, 10468, 0, 0, 10469]], - [26114, [10470, 0, 0, 0, 10471, 10472, 0, 0, 10473, 0, 10474, 0, 10475, 10476, 0, 0, 0, 10477, 10478]], - [26143, [10479, 10480, 0, 0, 0, 0, 10481, 0, 10482, 10483, 0, 0, 0, 0, 10484, 0, 10485, 0, 0, 0, 0, 10486]], - [26172, [10487, 0, 10488, 0, 0, 0, 10489, 10490, 10491]], - [26187, [10492, 10493, 0, 0, 10494, 0, 0, 10495, 10496, 0, 10497, 10498, 0, 0, 0, 10499, 0, 0, 10500, 0, 10501, 0, 0, 0, 0, 10502, 0, 10503, 0, 10504, 10505, 0, 0, 0, 0, 10506, 10507, 10508, 0, 0, 0, 10509, 0, 10510, 0, 0, 0, 10511, 0, 0, 0, 10512, 0, 0, 10513, 10514, 0, 10515, 0, 0, 10516, 0, 10517]], - [26257, [10518, 0, 0, 0, 0, 10519, 10520]], - [26274, [10521, 0, 0, 0, 10522, 10523, 10524, 0, 0, 10525, 0, 0, 10526]], - [26292, [10527]], - [26311, [10528, 0, 10529]], - [26326, [10530, 0, 0, 10531, 0, 0, 10532, 10533]], - [26342, [10534]], - [26352, [10535, 0, 10536, 10537, 10538, 0, 0, 0, 10539, 10540, 0, 0, 10541, 10542, 10543, 10544, 10545]], - [26376, [10546, 10547, 0, 10548, 0, 10549]], - [26388, [10550, 10551, 0, 10552, 0, 0, 0, 10553, 0, 10554, 0, 10555]], - [26406, [10556, 0, 10557, 0, 10558, 10559, 10560, 10561, 0, 10562, 0, 10563, 0, 0, 10564, 10565, 0, 0, 0, 0, 10566, 0, 0, 10567, 0, 0, 10568, 0, 10569, 10570, 0, 0, 10571, 0, 0, 10572, 0, 0, 0, 0, 10573, 10574, 10575, 10576, 0, 0, 0, 0, 10577]], - [26460, [10578, 0, 10579, 10580, 10581, 10582, 0, 0, 0, 10583, 0, 0, 10584, 0, 0, 0, 0, 10585, 0, 10586, 10587, 10588, 0, 0, 0, 10589, 0, 10590]], - [26494, [10591, 10592, 0, 10593, 0, 0, 10594, 0, 0, 10595, 0, 10596]], - [26512, [10597, 0, 0, 0, 0, 10598, 0, 10599, 0, 0, 10600, 0, 10601, 10602, 0, 0, 10603, 0, 10604, 10605]], - [26538, [10606, 10607, 0, 10608, 0, 10609]], - [26550, [10610, 10611]], - [26564, [10612]], - [26570, [10613, 0, 0, 0, 0, 10614, 10615, 10616, 0, 10617, 10618, 0, 0, 0, 10619, 0, 10620, 0, 10621]], - [26597, [10622]], - [26604, [10623, 0, 0, 10624, 0, 10625, 0, 10626, 10627, 10628]], - [26619, [10629, 0, 0, 10630, 10631, 0, 0, 0, 10632, 10633, 10634, 0, 10635, 10636, 0, 0, 10637, 0, 0, 0, 10638, 0, 10639, 0, 10640, 0, 0, 10641, 10642]], - [26654, [10643, 0, 0, 10644]], - [26665, [10645, 10646]], - [26679, [10647, 10648, 10649, 0, 0, 10650, 10651, 0, 0, 0, 10652, 10653, 10654, 0, 10655, 10656, 0, 10657, 0, 0, 0, 10658, 0, 0, 0, 10659, 10660, 0, 10661, 10662]], - [26716, [10663, 0, 0, 10664, 0, 0, 10665, 10666, 0, 10667, 10668, 10669, 10670, 10671]], - [26742, [10672]], - [26753, [10673, 0, 0, 0, 10674]], - [26771, [10675, 0, 0, 0, 10676, 0, 0, 0, 10677, 0, 10678, 0, 0, 0, 0, 10679, 0, 0, 0, 10680, 10681, 10682, 0, 0, 0, 0, 10683, 0, 10684, 10685, 0, 0, 10686, 0, 10687, 10688]], - [26816, [10689, 0, 0, 0, 10690, 0, 0, 0, 0, 10691, 0, 10692, 0, 10693, 0, 0, 0, 0, 10694, 0, 0, 10695, 0, 0, 10696, 0, 10697, 0, 0, 0, 0, 10698, 10699]], - [26862, [10700, 0, 0, 10701, 10702, 0, 0, 10703, 0, 0, 0, 0, 10704]], - [26880, [10705, 0, 0, 0, 0, 10706]], - [26891, [10707, 0, 10708, 10709, 0, 0, 0, 10710]], - [26907, [10711, 10712]], - [26925, [10713, 0, 0, 10714]], - [26943, [10715]], - [26954, [10716]], - [26963, [10717, 10718, 10719, 0, 0, 0, 0, 10720, 0, 0, 0, 10721, 0, 10722, 0, 10723]], - [26989, [10724, 0, 10725]], - [26997, [10726, 0, 10727, 0, 0, 0, 0, 10728, 10729, 0, 0, 0, 0, 10730, 0, 10731, 0, 10732, 0, 10733, 0, 10734, 0, 0, 0, 10735]], - [27035, [10736, 10737]], - [27048, [10738]], - [27054, [10739]], - [27060, [10740]], - [27067, [10741]], - [27079, [10742, 0, 0, 0, 10743, 10744, 10745, 0, 0, 10746]], - [27096, [10747, 10748, 0, 10749]], - [27131, [10750, 0, 10751, 0, 0, 0, 0, 10752]], - [27146, [10753, 10754]], - [27161, [10755]], - [27167, [10756, 0, 10757, 0, 10758]], - [27177, [10759, 10760, 10761]], - [27185, [10762, 0, 0, 0, 10763, 0, 0, 0, 10764, 10765, 0, 0, 10766]], - [27204, [10767]], - [27211, [10768]], - [27224, [10769, 10770]], - [27231, [10771, 0, 10772]], - [27249, [10773]], - [27264, [10774]], - [27278, [10775, 0, 10776]], - [27292, [10777]], - [27298, [10778]], - [27308, [10779]], - [27330, [10780]], - [27347, [10781]], - [27355, [10782]], - [27387, [10783]], - [27396, [10784]], - [27424, [10785, 10786, 10787, 10788, 10789, 0, 0, 10790]], - [27442, [10791]], - [27450, [10792, 0, 0, 10793, 10794]], - [27463, [10795, 0, 10796, 0, 0, 10797, 0, 10798, 0, 0, 0, 0, 10799]], - [27490, [10800, 10801, 10802, 10803, 10804, 10805, 0, 10806, 10807, 0, 0, 0, 0, 10808, 0, 0, 0, 10809, 10810, 0, 0, 0, 0, 10811, 0, 10812, 10813]], - [27523, [10814, 0, 0, 10815, 0, 0, 10816, 10817, 10818]], - [27542, [10819]], - [27553, [10820]], - [27572, [10821, 10822, 0, 10823, 0, 0, 10824, 10825, 0, 0, 0, 10826, 0, 10827, 0, 0, 0, 10828]], - [27595, [10829, 0, 10830, 10831, 10832, 0, 0, 10833, 10834, 10835, 10836, 0, 10837, 10838, 10839, 0, 10840]], - [27617, [10841]], - [27627, [10842, 10843, 0, 0, 10844]], - [27663, [10845, 0, 10846, 0, 10847, 10848, 0, 10849, 10850, 0, 0, 0, 10851, 0, 0, 0, 10852, 0, 0, 10853, 10854, 0, 0, 10855, 10856, 10857]], - [27694, [10858, 10859, 0, 0, 0, 0, 10860, 0, 0, 10861, 10862]], - [27710, [10863, 0, 10864, 10865, 10866, 0, 0, 0, 0, 10867, 0, 10868, 0, 0, 0, 0, 10869, 0, 10870, 0, 0, 0, 0, 10871, 0, 10872, 0, 0, 10873, 10874, 0, 10875, 10876, 10877, 10878, 10879, 0, 0, 10880]], - [27754, [10881]], - [27760, [10882, 0, 10883, 0, 0, 0, 10884, 0, 0, 10885, 10886, 0, 0, 10887, 10888, 0, 0, 10889, 10890, 10891, 0, 0, 0, 0, 10892, 10893, 0, 0, 10894, 0, 0, 0, 10895, 0, 0, 10896, 0, 0, 10897, 0, 0, 10898, 0, 10899, 0, 0, 0, 10900, 0, 10901, 10902, 0, 0, 10903, 10904, 10905, 0, 0, 10906, 10907, 0, 0, 10908, 0, 0, 0, 0, 10909, 0, 0, 0, 0, 10910, 10911, 0, 10912, 10913, 10914, 10915, 10916, 0, 10917, 0, 0, 10918, 0, 0, 0, 0, 10919, 10920, 0, 10921]], - [27861, [10922]], - [27867, [10923, 0, 0, 10924, 0, 0, 10925, 10926, 10927, 0, 10928, 0, 0, 10929, 0, 10930]], - [27888, [10931, 0, 0, 10932, 0, 10933]], - [27899, [10934, 10935, 10936, 0, 0, 0, 10937]], - [27915, [10938]], - [27922, [10939, 0, 0, 0, 0, 10940, 0, 0, 0, 10941, 0, 0, 10942]], - [27941, [10943, 0, 0, 0, 0, 10944]], - [27954, [10945, 0, 0, 10946, 0, 0, 10947, 0, 0, 10948, 10949, 10950, 10951, 0, 0, 10952, 0, 0, 10953, 10954, 10955, 10956, 0, 0, 10957, 10958, 0, 0, 10959, 10960, 0, 10961, 10962, 10963]], - [27993, [10964, 10965, 0, 10966]], - [28006, [10967, 0, 0, 10968, 10969, 0, 10970, 0, 10971]], - [28020, [10972, 0, 0, 10973, 10974]], - [28034, [10975, 0, 0, 10976, 0, 0, 10977, 10978, 0, 0, 10979, 0, 10980]], - [28053, [10981, 0, 0, 0, 10982, 0, 10983, 0, 0, 0, 10984, 0, 10985, 0, 10986, 10987, 0, 10988, 10989, 10990, 10991]], - [28079, [10992, 0, 0, 10993, 0, 0, 10994, 0, 0, 10995, 0, 0, 0, 10996, 0, 0, 0, 10997, 0, 0, 0, 10998, 0, 10999, 0, 0, 0, 0, 11000, 11001, 0, 0, 0, 0, 11002, 0, 0, 0, 0, 11003, 0, 11004]], - [28129, [11005, 0, 0, 11006, 0, 0, 0, 11007, 0, 0, 11008, 0, 0, 11009, 0, 0, 11010, 0, 11011, 0, 11012, 0, 11013, 0, 11014, 0, 11015]], - [28165, [11016, 0, 11017, 11018, 11019, 11020, 11021, 0, 11022, 11023, 0, 11024, 0, 0, 11025, 11026, 0, 0, 11027, 0, 0, 11028, 11029, 0, 11030, 0, 0, 11031, 11032, 0, 11033, 11034, 11035, 11036, 0, 0, 11037, 0, 0, 11038, 11039, 0, 11040, 0, 0, 11041, 0, 11042, 0, 0, 0, 11043, 0, 11044]], - [28227, [11045, 11046]], - [28234, [11047, 0, 0, 11048]], - [28246, [11049, 0, 11050, 0, 0, 11051]], - [28263, [11052]], - [28271, [11053]], - [28286, [11054, 11055, 11056, 0, 0, 11057, 0, 11058, 0, 0, 0, 11059]], - [28304, [11060]], - [28310, [11061]], - [28316, [11062, 11063, 0, 0, 0, 0, 11064, 0, 0, 11065, 0, 0, 0, 0, 11066, 0, 0, 0, 0, 11067]], - [28342, [11068, 0, 0, 0, 11069]], - [28357, [11070, 0, 11071, 0, 11072, 0, 11073]], - [28369, [11074, 0, 0, 11075, 11076, 0, 0, 0, 0, 11077, 0, 0, 11078, 11079, 0, 0, 11080, 0, 0, 11081, 11082, 0, 0, 11083, 11084]], - [28399, [11085, 0, 0, 0, 0, 11086]], - [28417, [11087, 11088, 0, 0, 0, 11089, 0, 0, 11090]], - [28431, [11091, 0, 0, 0, 11092, 11093, 11094]], - [28448, [11095, 0, 11096, 11097]], - [28457, [11098, 11099, 11100, 11101, 0, 0, 0, 0, 11102, 0, 11103, 0, 0, 0, 0, 11104]], - [28478, [11105]], - [28487, [11106]], - [28500, [11107, 0, 0, 0, 11108, 0, 0, 0, 11109, 0, 0, 11110, 0, 0, 0, 0, 11111, 0, 11112]], - [28525, [11113, 11114, 0, 11115]], - [28545, [11116, 0, 0, 11117, 0, 0, 0, 11118]], - [28558, [11119]], - [28572, [11120, 0, 0, 0, 0, 11121]], - [28586, [11122]], - [28593, [11123, 0, 11124]], - [28608, [11125, 11126, 0, 11127]], - [28626, [11128, 0, 0, 11129]], - [28640, [11130, 11131]], - [28651, [11132, 0, 0, 0, 11133]], - [28689, [11134, 0, 0, 0, 11135, 0, 0, 0, 0, 11136, 11137]], - [28711, [11138, 0, 0, 0, 0, 11139]], - [28748, [11140]], - [28760, [11141]], - [28779, [11142, 0, 11143, 0, 11144, 11145, 0, 0, 0, 0, 11146, 11147, 0, 11148, 0, 0, 0, 11149, 11150, 11151, 11152]], - [28809, [11153, 11154, 0, 0, 0, 11155, 0, 0, 0, 11156, 0, 0, 11157, 11158, 0, 0, 11159]], - [28843, [11160, 11161, 11162, 11163, 11164, 0, 0, 0, 11165, 0, 0, 0, 0, 11166, 11167, 11168, 0, 11169, 11170, 0, 0, 0, 11171, 11172]], - [28872, [11173]], - [28879, [11174]], - [28888, [11175, 11176, 0, 11177, 0, 0, 0, 11178, 0, 0, 0, 0, 11179, 0, 11180, 11181, 0, 0, 0, 11182, 11183, 11184]], - [28921, [11185, 0, 0, 0, 11186]], - [28937, [11187]], - [28949, [11188, 0, 0, 11189, 11190, 11191]], - [28961, [11192, 0, 0, 0, 0, 11193]], - [28976, [11194]], - [28982, [11195]], - [28988, [11196]], - [29001, [11197, 0, 0, 11198, 0, 11199]], - [29017, [11200, 0, 0, 11201, 0, 11202]], - [29028, [11203, 0, 0, 11204, 0, 11205, 0, 0, 0, 0, 11206]], - [29053, [11207]], - [29060, [11208]], - [29066, [11209, 0, 0, 0, 0, 11210, 0, 0, 0, 0, 11211, 0, 0, 0, 0, 11212]], - [29087, [11213]], - [29100, [11214, 0, 0, 0, 0, 11215]], - [29113, [11216]], - [29123, [11217, 0, 0, 0, 0, 11218]], - [29134, [11219, 0, 0, 0, 11220, 0, 0, 11221]], - [29157, [11222, 11223]], - [29165, [11224]], - [29183, [11225]], - [29190, [11226]], - [29226, [11227, 0, 11228, 11229, 0, 0, 0, 11230, 11231, 0, 0, 11232, 11233, 11234, 11235, 11236, 0, 0, 0, 11237, 11238]], - [29255, [11239, 11240, 0, 0, 0, 11241]], - [29266, [11242]], - [29273, [11243, 0, 11244, 0, 0, 0, 11245, 0, 11246, 11247, 0, 0, 0, 0, 11248, 0, 11249]], - [29298, [11250, 0, 0, 11251, 0, 0, 0, 11252, 11253, 0, 0, 11254, 0, 0, 11255, 11256]], - [29322, [11257]], - [29344, [11258]], - [29356, [11259, 0, 0, 11260]], - [29366, [11261, 0, 0, 11262]], - [29378, [11263, 0, 11264, 0, 0, 0, 11265]], - [29392, [11266, 0, 11267, 0, 0, 0, 0, 11268, 0, 11269, 0, 0, 0, 0, 11270, 0, 11271, 11272]], - [29417, [11273, 0, 0, 11274, 11275, 11276, 0, 0, 11277]], - [29432, [11278, 11279, 0, 0, 11280]], - [29454, [11281, 0, 0, 0, 0, 11282, 0, 0, 11283, 0, 0, 0, 0, 11284, 11285, 11286, 0, 11287]], - [29481, [11288, 11289, 11290, 0, 0, 11291]], - [29492, [11292, 0, 11293]], - [29502, [11294, 11295, 0, 0, 0, 0, 11296, 11297]], - [29527, [11298]], - [29539, [11299]], - [29554, [11300]], - [29560, [11301]], - [29572, [11302, 0, 0, 11303, 0, 11304, 0, 11305]], - [29585, [11306, 0, 0, 0, 0, 11307, 0, 0, 0, 0, 11308]], - [29609, [11309, 0, 11310, 0, 0, 0, 11311, 11312, 0, 11313]], - [29626, [11314, 11315, 0, 0, 0, 0, 11316, 0, 11317]], - [29640, [11318, 0, 11319, 0, 0, 11320, 0, 0, 0, 11321]], - [29664, [11322, 0, 0, 0, 0, 11323]], - [29677, [11324]], - [29694, [11325, 0, 0, 0, 0, 11326, 0, 11327, 11328, 0, 0, 11329]], - [29711, [11330, 11331]], - [29723, [11332]], - [29730, [11333, 0, 0, 11334, 11335, 0, 0, 0, 11336]], - [29747, [11337, 11338, 11339, 11340]], - [29756, [11341]], - [29781, [11342, 0, 0, 0, 11343, 11344, 11345, 11346, 0, 11347, 11348, 11349]], - [29808, [11350, 0, 0, 11351, 0, 0, 11352]], - [29822, [11353, 0, 0, 0, 0, 11354, 0, 0, 0, 11355, 0, 0, 0, 11356, 0, 0, 0, 0, 11357]], - [29854, [11358]], - [29863, [11359]], - [29872, [11360]], - [29885, [11361]], - [29916, [11362]], - [29922, [11363, 11364, 0, 0, 11365]], - [29934, [11366]], - [29942, [11367, 11368]], - [29956, [11369]], - [29976, [11370, 0, 11371, 0, 11372, 0, 0, 11373, 0, 0, 0, 11374, 0, 11375, 0, 0, 11376, 11377, 0, 11378, 0, 11379, 0, 0, 11380, 11381, 11382, 11383, 0, 11384, 0, 11385, 11386, 0, 11387, 11388]], - [30021, [11389]], - [30028, [11390, 0, 0, 11391, 0, 11392, 0, 0, 11393, 0, 0, 0, 0, 11394, 0, 0, 11395, 11396, 0, 0, 11397, 0, 11398, 0, 0, 11399, 0, 0, 0, 0, 11400]], - [30064, [11401, 0, 0, 11402, 11403, 0, 0, 0, 11404]], - [30079, [11405]], - [30086, [11406, 0, 0, 0, 11407, 11408, 0, 0, 11409, 11410, 0, 11411]], - [30103, [11412, 0, 11413, 11414]], - [30113, [11415, 0, 11416, 11417]], - [30123, [11418, 0, 0, 11419, 11420, 0, 0, 11421, 0, 0, 11422, 0, 0, 0, 11423, 0, 0, 11424, 0, 11425]], - [30149, [11426, 0, 11427, 0, 11428, 11429]], - [30162, [11430, 0, 11431, 11432, 0, 0, 11433, 0, 0, 11434]], - [30178, [11435]], - [30185, [11436, 11437]], - [30192, [11438, 0, 0, 0, 11439, 0, 0, 0, 0, 11440]], - [30221, [11441]], - [30239, [11442, 0, 0, 11443, 0, 11444, 0, 11445, 0, 0, 11446, 11447, 11448]], - [30264, [11449]], - [30270, [11450, 0, 0, 0, 11451]], - [30284, [11452]], - [30290, [11453, 0, 0, 0, 11454]], - [30315, [11455]], - [30330, [11456, 11457, 0, 11458, 11459, 0, 0, 0, 11460, 0, 11461, 0, 11462, 11463, 11464, 0, 0, 11465, 0, 0, 0, 0, 11466, 11467, 0, 11468, 0, 0, 11469]], - [30382, [11470, 0, 0, 11471]], - [30399, [11472, 0, 0, 0, 11473, 0, 11474, 11475, 0, 11476, 0, 11477, 0, 0, 0, 11478, 11479, 11480, 11481, 11482, 0, 11483, 0, 11484, 11485, 11486, 0, 0, 11487, 11488, 0, 0, 11489, 0, 11490, 0, 11491, 11492]], - [30446, [11493, 11494, 0, 0, 11495, 0, 11496, 0, 0, 0, 11497, 0, 0, 0, 11498, 0, 11499, 0, 0, 11500]], - [30472, [11501, 11502, 0, 11503, 11504]], - [30494, [11505, 11506, 11507]], - [30504, [11508, 11509]], - [30511, [11510]], - [30518, [11511, 11512, 11513, 0, 11514, 0, 11515, 0, 0, 0, 11516, 11517]], - [30544, [11518, 11519]], - [30555, [11520]], - [30561, [11521, 0, 11522, 0, 0, 11523, 0, 11524, 0, 0, 11525, 11526]], - [30585, [11527, 0, 0, 0, 11528, 11529, 11530, 0, 0, 0, 0, 11531, 11532]], - [30606, [11533, 0, 0, 0, 11534]], - [30623, [11535]], - [30629, [11536, 0, 11537, 0, 11538, 11539, 0, 11540, 11541, 0, 0, 11542, 0, 0, 11543]], - [30651, [11544, 0, 0, 0, 11545]], - [30679, [11546, 0, 0, 0, 11547, 11548]], - [30690, [11549, 11550, 0, 11551, 0, 0, 0, 11552, 0, 11553, 0, 11554, 11555, 11556, 0, 0, 0, 11557, 0, 0, 11558]], - [30719, [11559, 0, 11560, 11561]], - [30732, [11562, 11563]], - [30740, [11564, 11565, 11566]], - [30757, [11567, 11568, 11569]], - [30768, [11570, 0, 11571, 0, 11572, 0, 0, 0, 11573]], - [30782, [11574, 0, 11575, 0, 0, 0, 0, 11576]], - [30805, [11577]], - [30813, [11578]], - [30827, [11579, 11580, 0, 11581, 11582]], - [30849, [11583]], - [30857, [11584, 0, 0, 11585, 11586, 11587, 0, 0, 11588, 0, 11589, 0, 0, 0, 11590, 11591]], - [30879, [11592]], - [30887, [11593, 0, 11594]], - [30896, [11595, 11596, 0, 11597]], - [30906, [11598, 0, 0, 0, 11599, 0, 0, 11600, 0, 0, 0, 11601, 0, 0, 0, 0, 11602, 11603, 0, 0, 0, 0, 11604, 0, 0, 0, 0, 11605]], - [30952, [11606]], - [30959, [11607]], - [30967, [11608, 0, 0, 11609]], - [30977, [11610]], - [30990, [11611]], - [31034, [11612, 0, 11613, 0, 11614, 0, 11615, 11616]], - [31047, [11617, 11618, 11619]], - [31056, [11620, 0, 0, 0, 0, 11621, 11622]], - [31069, [11623, 11624, 11625, 11626, 0, 11627, 0, 0, 11628, 0, 0, 11629, 0, 0, 0, 0, 11630, 0, 11631]], - [31095, [11632, 11633, 0, 11634, 0, 0, 0, 0, 11635, 11636, 11637, 0, 0, 11638, 11639]], - [31117, [11640, 11641, 11642]], - [31143, [11643, 0, 0, 11644, 0, 0, 0, 11645, 0, 11646, 11647]], - [31161, [11648, 11649, 11650, 0, 11651, 11652, 0, 11653, 11654, 0, 11655]], - [31177, [11656, 0, 11657, 0, 11658, 0, 0, 0, 11659, 11660]], - [31192, [11661]], - [31199, [11662, 0, 0, 0, 0, 11663, 0, 11664, 11665, 0, 11666]], - [31215, [11667, 11668]], - [31224, [11669, 0, 0, 11670, 0, 11671, 0, 0, 11672]], - [31243, [11673, 0, 11674, 11675]], - [31252, [11676]], - [31258, [11677, 0, 11678, 0, 0, 11679, 11680, 0, 0, 11681]], - [31278, [11682, 0, 0, 0, 11683, 11684, 0, 0, 0, 11685, 0, 0, 0, 11686, 11687, 11688, 0, 11689, 11690, 0, 11691, 0, 0, 0, 11692]], - [31309, [11693, 0, 11694]], - [31319, [11695]], - [31331, [11696]], - [31339, [11697, 0, 0, 0, 0, 11698, 0, 0, 0, 11699, 0, 11700, 11701, 0, 11702, 11703, 0, 0, 0, 0, 11704, 0, 11705, 0, 11706, 11707]], - [31373, [11708, 0, 0, 0, 11709, 11710, 11711, 0, 0, 11712, 11713, 11714, 0, 0, 0, 11715, 11716, 0, 11717]], - [31397, [11718, 11719, 0, 0, 0, 11720, 0, 0, 0, 11721, 11722]], - [31418, [11723, 0, 0, 0, 0, 11724]], - [31435, [11725]], - [31446, [11726, 0, 0, 11727, 0, 0, 11728, 0, 11729, 11730, 11731, 0, 0, 11732, 0, 11733, 0, 0, 0, 0, 11734, 0, 0, 11735, 0, 11736]], - [31478, [11737, 0, 0, 11738, 11739, 0, 0, 0, 0, 11740, 0, 0, 0, 11741, 0, 0, 11742, 0, 11743, 0, 0, 11744]], - [31505, [11745, 0, 0, 11746, 0, 0, 0, 0, 11747, 0, 11748, 0, 0, 0, 0, 11749]], - [31526, [11750, 0, 11751, 0, 0, 0, 11752]], - [31545, [11753, 11754, 0, 11755]], - [31558, [11756, 0, 11757, 11758, 0, 11759, 0, 0, 0, 11760, 11761, 11762, 11763, 0, 11764, 0, 11765, 0, 0, 0, 0, 11766, 0, 11767]], - [31605, [11768, 0, 11769, 0, 11770, 0, 0, 0, 0, 11771, 0, 11772]], - [31623, [11773, 0, 0, 0, 11774, 0, 11775]], - [31636, [11776, 11777, 0, 11778]], - [31649, [11779]], - [31659, [11780, 0, 11781, 0, 0, 0, 11782]], - [31672, [11783]], - [31680, [11784, 0, 0, 0, 11785, 0, 0, 11786, 0, 11787]], - [31712, [11788, 11789, 0, 0, 11790]], - [31726, [11791, 0, 0, 11792]], - [31735, [11793]], - [31751, [11794, 0, 0, 0, 0, 11795]], - [31777, [11796]], - [31783, [11797]], - [31800, [11798]], - [31806, [11799, 11800]], - [31821, [11801]], - [31840, [11802]], - [31859, [11803]], - [31867, [11804, 0, 11805, 11806]], - [31881, [11807, 0, 11808]], - [31890, [11809, 0, 0, 0, 0, 11810, 11811, 0, 0, 11812, 0, 0, 0, 11813, 0, 0, 0, 0, 11814, 11815, 0, 11816, 0, 0, 11817, 0, 0, 0, 11818, 0, 0, 11819]], - [31929, [11820, 0, 0, 0, 0, 11821]], - [31946, [11822]], - [31957, [11823, 11824, 0, 0, 11825, 0, 0, 11826, 0, 0, 11827]], - [31975, [11828]], - [31992, [11829, 0, 0, 11830, 0, 0, 11831, 0, 11832, 0, 0, 0, 11833, 11834, 0, 0, 0, 0, 11835, 11836, 0, 11837, 0, 0, 11838, 0, 0, 0, 11839, 0, 0, 11840, 11841, 11842, 11843, 11844, 0, 0, 0, 0, 11845, 11846, 11847, 0, 0, 0, 0, 11848, 0, 0, 0, 11849, 11850, 0, 0, 11851, 11852, 0, 0, 11853]], - [32057, [11854, 11855]], - [32066, [11856, 11857, 11858, 0, 11859]], - [32076, [11860, 0, 0, 0, 11861]], - [32094, [11862, 0, 0, 11863, 11864, 0, 0, 0, 11865]], - [32110, [11866, 0, 0, 11867, 0, 0, 0, 11868, 11869, 0, 0, 11870]], - [32153, [11871, 11872, 0, 11873]], - [32173, [11874, 0, 0, 0, 11875, 11876, 0, 11877, 0, 0, 0, 11878, 0, 11879, 11880, 0, 0, 11881, 11882]], - [32202, [11883, 11884, 0, 0, 0, 11885, 0, 11886, 11887]], - [32218, [11888]], - [32224, [11889]], - [32232, [11890, 11891]], - [32239, [11892, 0, 0, 0, 0, 11893]], - [32251, [11894]], - [32257, [11895, 0, 0, 11896]], - [32283, [11897, 0, 0, 11898, 0, 0, 0, 0, 11899, 0, 0, 11900, 0, 0, 0, 0, 11901, 0, 0, 11902, 0, 0, 11903]], - [32318, [11904, 0, 0, 11905]], - [32330, [11906, 0, 0, 11907]], - [32340, [11908, 11909]], - [32353, [11910]], - [32363, [11911, 0, 11912, 0, 0, 11913]], - [32386, [11914]], - [32399, [11915]], - [32406, [11916]], - [32416, [11917, 0, 11918, 0, 11919, 0, 11920, 11921, 0, 0, 11922, 0, 11923, 0, 0, 11924, 0, 11925, 11926, 11927, 0, 11928, 11929, 11930, 11931, 11932, 11933, 0, 0, 11934, 0, 11935, 0, 0, 0, 11936, 11937, 11938, 11939, 11940, 11941, 0, 11942, 0, 0, 11943, 11944, 11945, 0, 11946, 11947, 11948, 0, 11949, 0, 0, 11950, 11951, 11952, 11953, 11954, 11955, 11956, 11957, 0, 0, 11958, 11959, 0, 11960, 0, 11961, 0, 11962, 11963, 11964, 0, 11965, 11966, 11967, 11968, 0, 0, 11969, 11970, 11971, 0, 11972, 11973, 0, 0, 0, 11974, 11975, 0, 11976, 11977, 0, 0, 0, 11978, 11979, 11980, 0, 0, 11981, 0, 0, 0, 0, 11982, 0, 0, 0, 0, 11983, 11984, 11985, 11986, 0, 11987, 0, 11988, 0, 0, 11989, 0, 0, 11990, 0, 0, 0, 11991, 0, 0, 0, 0, 11992, 11993, 0, 0, 11994, 11995, 0, 11996, 0, 0, 0, 11997, 0, 11998, 0, 11999, 0, 12000]], - [32592, [12001, 12002, 0, 0, 0, 12003, 0, 12004, 0, 0, 12005]], - [32609, [12006, 12007]], - [32617, [12008, 12009, 0, 0, 0, 12010, 0, 12011, 0, 12012, 0, 0, 12013, 0, 12014]], - [32641, [12015, 0, 0, 0, 12016, 0, 0, 0, 0, 12017, 0, 12018, 0, 12019]], - [32660, [12020]], - [32666, [12021, 0, 0, 0, 12022, 0, 0, 12023, 0, 0, 12024, 0, 0, 0, 12025, 12026]], - [32690, [12027]], - [32697, [12028, 0, 0, 0, 12029, 0, 0, 0, 12030, 0, 0, 0, 12031]], - [32716, [12032, 0, 12033, 0, 0, 0, 12034, 0, 12035, 0, 0, 0, 12036]], - [32735, [12037, 12038]], - [32745, [12039]], - [32752, [12040]], - [32763, [12041, 12042, 0, 0, 0, 12043, 12044, 0, 12045, 0, 12046, 12047]], - [32780, [12048, 12049, 0, 0, 12050, 0, 0, 0, 0, 12051, 0, 12052]], - [32819, [12053, 0, 0, 12054, 0, 12055, 0, 0, 12056, 0, 12057, 0, 12058, 0, 0, 12059, 0, 0, 0, 12060, 0, 0, 0, 12061, 12062, 12063]], - [32852, [12064, 0, 12065, 0, 12066, 0, 12067, 0, 0, 0, 12068, 0, 0, 12069]], - [32874, [12070]], - [32884, [12071, 0, 0, 12072]], - [32893, [12073, 0, 12074, 0, 0, 0, 12075, 0, 0, 12076, 12077, 0, 12078, 0, 12079, 12080]], - [32918, [12081, 0, 12082, 0, 12083, 12084, 0, 12085, 0, 0, 12086, 12087, 12088, 0, 12089, 12090, 0, 0, 0, 12091, 12092, 0, 0, 0, 12093, 12094, 0, 0, 12095, 0, 12096]], - [32954, [12097, 0, 0, 0, 12098, 12099, 12100, 12101, 0, 12102, 0, 0, 12103]], - [32972, [12104, 0, 12105]], - [32982, [12106, 0, 0, 0, 12107, 0, 12108, 0, 12109, 0, 0, 12110, 0, 0, 12111, 12112, 0, 12113]], - [33008, [12114, 12115, 0, 12116, 12117, 0, 12118, 0, 12119, 0, 12120, 0, 0, 12121, 0, 0, 0, 0, 12122, 0, 0, 12123, 12124, 12125, 12126, 12127, 12128, 0, 0, 0, 0, 12129, 12130, 12131, 0, 12132, 0, 0, 12133, 0, 0, 0, 12134]], - [33065, [12135]], - [33071, [12136, 0, 12137, 0, 12138, 0, 0, 0, 0, 12139, 12140, 0, 0, 0, 0, 12141]], - [33098, [12142, 12143, 0, 0, 12144, 0, 12145, 12146, 0, 12147, 12148, 12149]], - [33125, [12150]], - [33131, [12151, 0, 0, 12152, 0, 12153]], - [33144, [12154, 12155, 12156, 12157, 0, 0, 12158, 12159, 12160]], - [33162, [12161, 0, 0, 0, 0, 12162]], - [33178, [12163, 12164, 12165, 12166]], - [33192, [12167]], - [33203, [12168]], - [33210, [12169]], - [33216, [12170, 0, 12171, 0, 0, 0, 12172]], - [33235, [12173]], - [33247, [12174, 0, 0, 0, 12175, 0, 12176, 0, 0, 12177, 0, 12178, 0, 0, 12179]], - [33267, [12180, 12181]], - [33275, [12182, 12183]], - [33285, [12184, 12185, 12186, 12187, 0, 0, 0, 12188, 12189, 12190, 0, 0, 0, 12191, 0, 12192, 0, 0, 12193, 0, 0, 0, 0, 12194, 0, 12195, 12196]], - [33322, [12197, 0, 12198, 0, 0, 0, 12199, 12200, 0, 0, 0, 12201, 12202, 12203, 0, 12204]], - [33351, [12205]], - [33368, [12206]], - [33382, [12207]], - [33391, [12208, 12209, 0, 12210, 12211, 0, 0, 12212, 0, 0, 0, 12213, 0, 0, 0, 12214, 0, 0, 0, 12215]], - [33419, [12216]], - [33426, [12217]], - [33433, [12218, 0, 0, 12219, 12220]], - [33445, [12221, 12222]], - [33452, [12223, 12224, 0, 12225, 0, 12226, 0, 12227, 0, 0, 0, 0, 12228, 12229, 0, 0, 0, 12230]], - [33479, [12231]], - [33485, [12232, 0, 12233, 0, 12234, 0, 0, 12235, 0, 0, 12236, 0, 0, 0, 12237, 0, 0, 12238, 12239]], - [33509, [12240, 12241]], - [33519, [12242, 0, 12243]], - [33529, [12244, 12245]], - [33538, [12246, 12247, 12248, 12249, 0, 0, 0, 12250, 0, 0, 0, 0, 12251]], - [33564, [12252]], - [33575, [12253, 12254, 0, 0, 12255, 12256]], - [33589, [12257, 12258, 0, 12259, 12260]], - [33600, [12261, 0, 0, 12262, 0, 0, 12263, 0, 0, 12264]], - [33616, [12265, 0, 12266, 0, 12267, 0, 0, 0, 12268]], - [33633, [12269, 0, 12270, 0, 0, 0, 12271, 0, 0, 0, 12272, 0, 0, 0, 12273]], - [33655, [12274, 0, 0, 0, 12275, 12276]], - [33673, [12277, 12278, 0, 0, 0, 12279]], - [33694, [12280]], - [33707, [12281]], - [33713, [12282, 12283, 0, 0, 0, 0, 12284, 0, 12285, 12286, 0, 0, 12287, 0, 0, 0, 12288, 0, 0, 0, 12289, 0, 12290, 0, 0, 12291, 0, 12292]], - [33747, [12293, 0, 0, 12294]], - [33756, [12295]], - [33769, [12296, 0, 12297, 0, 0, 0, 12298, 0, 12299, 12300]], - [33795, [12301, 12302]], - [33802, [12303, 0, 12304, 12305, 12306]], - [33821, [12307, 0, 0, 12308, 0, 0, 0, 12309, 12310, 12311, 12312, 12313, 12314, 0, 0, 12315, 0, 0, 0, 0, 12316]], - [33853, [12317]], - [33862, [12318, 0, 0, 12319]], - [33879, [12320, 0, 0, 0, 12321]], - [33889, [12322, 0, 12323, 0, 0, 12324, 0, 0, 0, 0, 12325, 12326, 0, 0, 0, 0, 12327, 0, 0, 0, 12328, 0, 0, 0, 0, 12329]], - [33922, [12330]], - [33931, [12331, 0, 0, 0, 0, 12332, 0, 0, 0, 12333, 0, 0, 0, 0, 12334, 0, 0, 12335]], - [33970, [12336]], - [33976, [12337, 0, 0, 0, 12338]], - [33988, [12339, 0, 0, 0, 0, 12340, 0, 12341]], - [34001, [12342, 0, 12343]], - [34013, [12344]], - [34022, [12345]], - [34028, [12346, 0, 12347]], - [34065, [12348, 0, 12349, 0, 0, 0, 12350, 0, 0, 12351]], - [34081, [12352, 0, 12353, 0, 0, 12354]], - [34092, [12355, 12356]], - [34101, [12357, 0, 12358, 0, 0, 0, 0, 12359, 12360]], - [34115, [12361]], - [34121, [12362, 12363, 0, 0, 0, 12364]], - [34135, [12365]], - [34152, [12366, 0, 12367]], - [34164, [12368]], - [34174, [12369]], - [34180, [12370, 0, 0, 12371]], - [34199, [12372, 0, 12373, 0, 12374]], - [34214, [12375, 0, 0, 12376, 12377, 12378, 12379, 0, 0, 12380]], - [34241, [12381]], - [34249, [12382, 0, 0, 0, 12383, 0, 12384, 12385, 0, 0, 0, 0, 12386]], - [34269, [12387]], - [34276, [12388, 12389, 0, 0, 0, 12390]], - [34299, [12391]], - [34311, [12392]], - [34321, [12393]], - [34349, [12394]], - [34360, [12395]], - [34382, [12396, 12397, 12398, 12399, 0, 0, 12400]], - [34394, [12401, 0, 12402, 0, 12403]], - [34411, [12404]], - [34425, [12405, 0, 12406, 0, 12407, 12408, 0, 12409, 12410, 12411]], - [34442, [12412, 0, 12413]], - [34453, [12414]], - [34496, [12415]], - [34503, [12416, 0, 0, 12417, 12418, 0, 12419]], - [34521, [12420, 0, 12421, 0, 0, 0, 12422, 0, 0, 0, 0, 12423]], - [34542, [12424]], - [34553, [12425, 0, 0, 0, 0, 12426, 0, 12427, 0, 12428]], - [34568, [12429]], - [34578, [12430, 0, 0, 12431, 0, 12432, 12433, 0, 0, 0, 12434, 0, 0, 0, 0, 12435]], - [34615, [12436]], - [34623, [12437]], - [34631, [12438, 0, 12439, 0, 0, 0, 0, 12440]], - [34647, [12441, 0, 12442]], - [34656, [12443]], - [34662, [12444]], - [34676, [12445, 0, 12446]], - [34690, [12447, 12448, 0, 12449]], - [34701, [12450]], - [34746, [12451]], - [34752, [12452]], - [34758, [12453, 0, 0, 0, 0, 12454]], - [34770, [12455]], - [34809, [12456, 0, 0, 0, 0, 12457]], - [34837, [12458]], - [34847, [12459, 0, 0, 12460]], - [34880, [12461, 0, 0, 0, 0, 12462, 12463]], - [34892, [12464, 12465]], - [34899, [12466, 12467, 0, 0, 12468, 0, 12469, 0, 12470, 0, 12471, 12472, 0, 0, 12473, 0, 12474, 0, 12475, 0, 0, 12476, 0, 0, 12477, 12478, 0, 0, 0, 12479]], - [34935, [12480]], - [34943, [12481, 0, 12482, 0, 0, 12483, 12484, 0, 0, 12485, 0, 0, 12486, 0, 12487, 0, 0, 0, 0, 12488, 0, 0, 0, 12489]], - [34972, [12490]], - [34987, [12491, 0, 12492, 0, 0, 0, 12493, 0, 0, 12494]], - [35009, [12495, 12496, 0, 0, 12497]], - [35023, [12498, 0, 0, 0, 0, 12499, 12500, 0, 0, 12501, 12502, 0, 0, 12503, 12504, 0, 12505, 0, 12506, 0, 0, 12507]], - [35059, [12508, 12509, 0, 0, 0, 12510, 12511, 0, 0, 0, 12512, 12513, 0, 0, 0, 12514, 0, 0, 0, 0, 12515]], - [35088, [12516, 0, 12517]], - [35098, [12518]], - [35109, [12519, 0, 0, 0, 0, 12520]], - [35126, [12521]], - [35140, [12522]], - [35158, [12523]], - [35167, [12524]], - [35186, [12525]], - [35199, [12526, 0, 12527, 0, 0, 0, 0, 12528, 12529, 0, 0, 0, 12530, 0, 0, 0, 12531]], - [35222, [12532, 12533, 0, 0, 12534]], - [35239, [12535, 0, 0, 12536]], - [35251, [12537]], - [35261, [12538, 0, 0, 0, 12539, 12540, 0, 12541, 12542, 12543, 0, 12544, 12545]], - [35281, [12546, 12547]], - [35299, [12548, 0, 0, 12549]], - [35328, [12550, 0, 12551, 12552, 0, 0, 0, 0, 12553, 0, 12554, 0, 0, 0, 12555, 0, 0, 0, 0, 12556, 0, 0, 0, 12557, 12558]], - [35359, [12559, 0, 0, 0, 12560]], - [35370, [12561, 0, 0, 12562, 0, 0, 0, 12563, 0, 12564, 12565]], - [35386, [12566, 12567, 12568]], - [35408, [12569, 0, 0, 0, 12570, 12571]], - [35422, [12572, 0, 12573, 0, 12574, 12575, 0, 0, 12576, 0, 0, 12577, 0, 12578, 0, 0, 12579, 0, 12580, 12581, 12582, 12583]], - [35449, [12584]], - [35463, [12585, 0, 12586, 0, 0, 12587, 12588]], - [35475, [12589, 0, 12590, 0, 0, 12591]], - [35486, [12592, 0, 12593, 0, 0, 0, 12594]], - [35500, [12595, 12596, 0, 0, 12597, 0, 12598]], - [35516, [12599, 0, 0, 12600, 0, 0, 0, 0, 12601, 0, 0, 12602, 0, 0, 0, 12603, 0, 0, 0, 12604, 0, 0, 12605, 0, 0, 0, 12606]], - [35548, [12607]], - [35558, [12608, 12609]], - [35565, [12610, 12611]], - [35576, [12612, 0, 12613, 0, 0, 0, 12614, 0, 12615, 12616, 12617, 0, 12618]], - [35598, [12619]], - [35609, [12620, 0, 12621, 0, 12622, 0, 0, 12623, 12624]], - [35641, [12625]], - [35672, [12626, 0, 0, 0, 12627]], - [35686, [12628]], - [35692, [12629, 0, 0, 0, 12630, 0, 12631, 0, 0, 0, 0, 12632]], - [35715, [12633]], - [35728, [12634, 0, 0, 12635]], - [35745, [12636, 12637, 0, 12638, 12639, 0, 0, 12640, 12641, 12642, 0, 0, 12643, 12644, 12645, 12646, 0, 12647, 12648, 0, 0, 12649, 12650, 12651, 12652, 12653, 0, 12654, 12655, 12656, 12657, 12658, 12659, 0, 12660, 12661, 12662, 12663, 0, 12664, 12665, 12666, 0, 0, 12667, 0, 12668, 0, 12669, 0, 0, 0, 12670, 0, 12671, 12672, 12673, 12674, 12675, 0, 12676, 12677, 0, 12678, 12679, 12680, 12681, 0, 12682, 12683, 12684, 0, 12685, 0, 12686, 12687, 12688, 0, 12689, 12690, 12691, 12692, 0, 12693, 12694, 0, 12695, 12696, 0, 12697, 12698, 0, 12699, 12700, 0, 12701, 12702, 0, 12703, 0, 12704, 0, 0, 12705, 0, 12706, 12707, 0, 12708, 12709, 12710, 12711, 12712, 12713, 12714, 0, 12715, 0, 0, 0, 12716, 12717, 12718, 12719, 0, 0, 12720, 0, 0, 12721, 12722, 12723, 0, 12724, 0, 12725, 12726, 0, 0, 12727, 12728, 0, 0, 0, 12729, 0, 0, 12730, 0, 0, 12731]], - [35905, [12732, 0, 0, 0, 0, 12733, 0, 0, 0, 12734]], - [35930, [12735]], - [35937, [12736, 12737]], - [35946, [12738, 12739]], - [35961, [12740]], - [35980, [12741]], - [35997, [12742, 12743, 0, 12744, 12745, 12746, 0, 0, 0, 0, 12747, 12748, 12749, 12750, 12751, 12752, 0, 0, 12753, 12754, 0, 0, 0, 12755, 0, 0, 12756, 12757, 0, 0, 12758, 12759, 0, 0, 12760, 12761, 0, 0, 12762, 12763, 0, 0, 12764, 0, 0, 12765]], - [36049, [12766, 0, 12767]], - [36059, [12768, 12769, 0, 12770, 0, 12771, 0, 12772, 12773, 0, 0, 12774, 0, 0, 0, 12775, 0, 0, 12776]], - [36092, [12777]], - [36104, [12778]], - [36125, [12779, 12780, 12781, 0, 12782, 12783, 12784, 12785, 12786, 12787, 12788, 12789, 12790, 12791, 12792, 12793, 12794, 12795, 12796, 12797, 12798, 0, 0, 12799, 12800, 0, 12801, 12802, 12803, 12804, 12805, 12806, 0, 12807, 12808, 0, 12809, 12810, 12811, 12812]], - [36171, [12813, 12814, 0, 12815, 12816, 12817, 0, 0, 12818, 12819, 0, 12820, 0, 12821, 0, 12822, 12823, 0, 0, 12824, 0, 12825, 12826, 12827, 12828, 12829, 0, 12830, 0, 0, 0, 0, 12831, 0, 0, 0, 0, 12832, 0, 0, 12833, 12834, 12835, 12836, 12837]], - [36225, [12838, 0, 0, 0, 12839, 0, 0, 0, 0, 12840, 12841]], - [36255, [12842, 0, 0, 0, 12843]], - [36275, [12844, 12845]], - [36286, [12846, 0, 0, 0, 0, 12847, 12848]], - [36299, [12849, 12850, 0, 0, 0, 0, 12851]], - [36314, [12852, 12853, 0, 12854, 0, 12855, 0, 12856, 0, 0, 12857, 0, 0, 0, 12858, 0, 12859, 0, 0, 0, 0, 12860, 0, 0, 0, 12861, 0, 12862, 0, 12863, 0, 0, 12864]], - [36361, [12865, 12866, 0, 12867, 0, 0, 12868]], - [36381, [12869, 12870, 0, 0, 0, 12871]], - [36393, [12872, 12873]], - [36401, [12874, 0, 0, 0, 12875]], - [36418, [12876, 0, 12877, 0, 0, 0, 12878, 0, 12879, 12880]], - [36433, [12881]], - [36441, [12882]], - [36447, [12883]], - [36454, [12884]], - [36460, [12885, 12886, 0, 0, 0, 0, 12887, 0, 12888]], - [36479, [12889, 0, 12890]], - [36487, [12891]], - [36493, [12892, 0, 12893]], - [36523, [12894, 12895, 0, 0, 12896, 0, 0, 12897]], - [36538, [12898]], - [36554, [12899, 0, 12900, 12901, 0, 0, 0, 0, 12902]], - [36575, [12903, 0, 0, 12904]], - [36600, [12905, 0, 0, 0, 0, 12906]], - [36611, [12907]], - [36617, [12908]], - [36628, [12909]], - [36637, [12910]], - [36649, [12911, 12912, 0, 0, 0, 0, 12913]], - [36664, [12914]], - [36671, [12915, 0, 0, 0, 0, 12916, 0, 0, 0, 0, 12917, 0, 0, 0, 12918]], - [36703, [12919]], - [36710, [12920, 12921, 12922, 12923, 0, 0, 12924, 0, 12925, 12926, 12927, 0, 12928, 0, 12929]], - [36731, [12930, 12931, 12932, 0, 12933, 0, 0, 0, 12934, 12935, 12936, 12937, 0, 12938, 12939]], - [36752, [12940, 12941, 0, 12942, 0, 12943, 12944, 12945, 12946, 12947, 0, 12948, 12949, 0, 12950, 12951, 0, 0, 0, 12952, 0, 0, 0, 0, 12953, 12954, 0, 12955, 0, 0, 0, 0, 12956, 12957, 12958]], - [36793, [12959, 12960, 12961, 12962, 12963, 12964, 12965, 0, 12966, 12967, 0, 12968, 12969, 0, 12970, 12971]], - [36814, [12972, 0, 12973, 12974, 0, 0, 12975, 0, 0, 0, 12976, 12977, 0, 12978, 12979, 12980, 12981, 12982, 0, 0, 12983, 0, 0, 12984, 12985, 0, 0, 0, 12986, 12987, 0, 12988, 0, 0, 12989]], - [36855, [12990, 12991, 12992, 0, 0, 0, 12993, 0, 0, 12994, 12995, 12996, 12997, 0, 0, 12998, 0, 0, 12999, 13000, 0, 0, 13001, 0, 13002, 13003, 0, 13004, 13005, 13006, 0, 0, 13007, 0, 13008, 13009, 13010, 0, 13011, 13012, 13013, 13014, 0, 13015, 13016]], - [36910, [13017, 0, 0, 13018, 13019, 0, 0, 13020, 0, 0, 13021, 0, 0, 13022, 13023, 0, 13024, 0, 0, 13025, 13026, 0, 0, 13027, 0, 13028, 0, 0, 13029, 13030, 0, 13031, 13032, 13033, 13034, 0, 0, 13035, 13036, 13037, 0, 13038, 0, 13039, 0, 0, 13040, 0, 0, 0, 13041, 13042, 0, 13043, 0, 13044, 0, 0, 0, 13045, 0, 0, 0, 13046, 13047]], - [36981, [13048, 0, 13049, 13050, 0, 13051, 0, 13052, 13053, 0, 13054, 13055, 0, 0, 13056, 13057]], - [37009, [13058, 0, 13059]], - [37026, [13060, 13061, 0, 0, 13062, 0, 0, 0, 13063, 0, 0, 0, 13064, 13065, 0, 13066, 0, 0, 0, 13067, 0, 0, 13068, 13069, 0, 13070]], - [37057, [13071]], - [37066, [13072, 0, 0, 0, 13073, 0, 0, 13074]], - [37085, [13075, 0, 0, 0, 13076]], - [37096, [13077, 0, 0, 0, 0, 13078]], - [37109, [13079, 0, 13080]], - [37117, [13081, 0, 0, 0, 0, 13082]], - [37145, [13083]], - [37165, [13084]], - [37193, [13085, 0, 13086, 13087, 13088, 13089, 0, 0, 0, 13090, 0, 13091]], - [37213, [13092, 0, 0, 0, 0, 13093, 13094, 0, 13095, 0, 0, 0, 0, 13096, 0, 13097, 0, 13098, 0, 0, 13099, 0, 0, 0, 13100, 13101, 13102, 13103]], - [37247, [13104]], - [37255, [13105, 0, 13106, 0, 13107, 0, 13108, 0, 0, 13109, 0, 13110]], - [37276, [13111]], - [37284, [13112]], - [37292, [13113]], - [37304, [13114]], - [37312, [13115]], - [37319, [13116, 13117, 13118, 13119, 0, 13120, 13121, 13122, 13123, 0, 13124]], - [37336, [13125, 0, 0, 0, 13126, 13127]], - [37347, [13128, 0, 0, 0, 13129]], - [37389, [13130]], - [37428, [13131]], - [37444, [13132]], - [37467, [13133]], - [37474, [13134]], - [37489, [13135, 0, 0, 13136]], - [37504, [13137, 0, 0, 13138, 0, 13139]], - [37521, [13140]], - [37528, [13141, 0, 13142]], - [37549, [13143]], - [37586, [13144]], - [37613, [13145]], - [37619, [13146, 0, 0, 0, 0, 13147, 0, 0, 0, 13148]], - [37638, [13149]], - [37648, [13150]], - [37656, [13151]], - [37664, [13152]], - [37670, [13153, 0, 0, 0, 0, 13154, 13155, 0, 0, 13156, 0, 0, 13157]], - [37707, [13158]], - [37723, [13159]], - [37740, [13160]], - [37749, [13161]], - [37772, [13162]], - [37782, [13163]], - [37799, [13164]], - [37805, [13165, 13166]], - [37857, [13167]], - [37912, [13168]], - [37956, [13169]], - [37969, [13170]], - [37995, [13171]], - [38024, [13172, 13173, 13174]], - [38035, [13175, 0, 0, 0, 13176, 0, 13177, 0, 0, 0, 13178, 13179, 13180, 13181, 13182, 13183, 0, 0, 13184, 13185, 13186, 0, 13187, 0, 0, 0, 0, 13188, 0, 0, 13189, 0, 13190, 0, 13191]], - [38075, [13192, 0, 0, 13193, 0, 13194, 13195, 0, 13196, 0, 13197]], - [38094, [13198, 0, 13199]], - [38108, [13200, 13201, 0, 0, 0, 0, 13202]], - [38125, [13203, 13204, 0, 0, 0, 13205, 0, 0, 0, 13206, 0, 13207, 0, 13208, 0, 0, 0, 13209, 0, 13210, 13211, 0, 0, 13212, 13213, 0, 0, 13214, 0, 0, 13215, 13216, 0, 0, 0, 13217]], - [38169, [13218, 13219]], - [38177, [13220, 13221, 13222, 13223, 13224, 13225]], - [38190, [13226, 13227]], - [38197, [13228]], - [38203, [13229, 0, 0, 0, 0, 13230]], - [38215, [13231]], - [38225, [13232, 0, 0, 0, 0, 13233]], - [38236, [13234]], - [38255, [13235, 13236]], - [38262, [13237, 13238]], - [38271, [13239, 13240, 0, 0, 13241]], - [38281, [13242, 0, 13243, 0, 0, 0, 13244, 0, 13245, 0, 13246]], - [38306, [13247, 13248, 13249, 13250]], - [38322, [13251]], - [38343, [13252]], - [38360, [13253]], - [38376, [13254, 0, 13255, 0, 0, 13256, 13257, 13258, 0, 0, 13259, 0, 13260, 13261, 0, 13262, 13263, 13264, 13265, 13266, 0, 13267, 0, 0, 13268, 13269, 0, 0, 0, 13270, 0, 0, 0, 13271, 0, 0, 0, 0, 13272, 0, 13273, 13274, 0, 0, 13275, 0, 0, 0, 0, 13276, 0, 0, 13277, 0, 0, 13278]], - [38442, [13279, 0, 0, 0, 13280, 0, 0, 13281, 13282, 13283, 13284, 13285, 13286, 0, 0, 0, 0, 13287, 0, 0, 0, 13288, 13289, 0, 0, 0, 13290, 13291, 13292, 13293, 13294, 0, 0, 13295, 13296, 13297, 0, 0, 13298, 0, 0, 0, 0, 13299]], - [38491, [13300]], - [38497, [13301, 13302, 13303, 13304, 13305, 0, 0, 13306, 13307, 13308]], - [38512, [13309, 0, 0, 13310, 0, 13311, 13312, 13313, 13314, 0, 13315, 0, 0, 13316]], - [38533, [13317, 13318, 0, 13319, 0, 13320, 13321, 0, 0, 13322, 13323, 13324, 0, 0, 0, 13325, 0, 0, 0, 13326, 13327, 0, 13328, 13329, 0, 0, 0, 13330, 0, 0, 13331, 0, 0, 0, 13332, 0, 0, 13333]], - [38582, [13334, 13335, 0, 0, 0, 13336, 13337, 0, 13338, 0, 13339, 13340, 0, 0, 13341, 13342, 13343, 13344, 0, 0, 0, 0, 13345, 13346, 0, 13347, 0, 13348, 0, 0, 0, 13349]], - [38619, [13350, 13351]], - [38626, [13352, 13353, 0, 0, 0, 0, 13354, 0, 13355, 13356, 0, 0, 0, 13357, 13358, 0, 13359, 13360, 0, 0, 13361, 13362, 0, 0, 0, 13363, 0, 0, 13364, 0, 13365, 0, 0, 0, 13366, 0, 13367, 13368, 0, 13369, 13370, 0, 0, 13371, 13372, 0, 0, 0, 0, 13373, 0, 0, 13374]], - [38684, [13375, 0, 13376]], - [38695, [13377]], - [38706, [13378]], - [38712, [13379, 13380]], - [38738, [13381, 0, 0, 0, 13382, 0, 0, 13383, 0, 0, 13384, 0, 13385, 0, 13386, 13387, 13388]], - [38761, [13389]], - [38771, [13390, 13391, 0, 13392]], - [38788, [13393, 13394]], - [38795, [13395, 0, 13396]], - [38808, [13397]], - [38816, [13398]], - [38829, [13399]], - [38867, [13400]], - [38886, [13401, 13402, 0, 13403, 0, 0, 13404]], - [38899, [13405, 0, 13406, 13407, 0, 0, 0, 0, 13408, 0, 0, 0, 13409, 0, 13410, 13411, 13412, 0, 13413, 13414, 0, 13415, 0, 0, 0, 13416, 0, 0, 0, 13417, 13418, 13419, 13420, 0, 0, 0, 13421, 13422]], - [38956, [13423, 13424, 0, 0, 13425]], - [38971, [13426, 13427]], - [38988, [13428, 13429, 13430]], - [38996, [13431, 13432, 0, 0, 13433, 0, 0, 13434, 0, 0, 13435]], - [39015, [13436]], - [39023, [13437]], - [39029, [13438, 13439, 13440, 0, 13441, 13442, 13443, 13444, 13445, 13446, 13447, 0, 13448, 13449, 0, 13450, 13451, 13452, 13453, 13454, 13455, 13456, 0, 13457, 13458, 0, 0, 13459, 13460, 0, 13461, 0, 0, 13462, 13463, 13464, 0, 13465, 0, 13466, 13467, 0, 0, 13468, 0, 0, 0, 13469, 0, 0, 0, 13470]], - [39087, [13471]], - [39118, [13472]], - [39128, [13473, 0, 0, 13474, 13475, 0, 13476, 13477, 0, 0, 13478]], - [39151, [13479, 0, 0, 13480]], - [39164, [13481, 13482, 13483]], - [39173, [13484, 0, 0, 0, 0, 13485, 0, 13486, 0, 0, 0, 13487, 0, 0, 13488]], - [39208, [13489]], - [39255, [13490]], - [39269, [13491]], - [39276, [13492, 13493, 13494, 0, 13495, 13496, 13497, 0, 0, 13498, 13499, 13500, 0, 0, 13501, 0, 13502, 0, 0, 13503]], - [39301, [13504, 13505, 0, 13506, 0, 0, 13507]], - [39314, [13508, 0, 0, 0, 13509, 0, 0, 13510]], - [39336, [13511, 0, 0, 0, 13512]], - [39347, [13513, 13514]], - [39364, [13515, 13516, 13517, 0, 13518]], - [39376, [13519, 0, 13520, 0, 0, 13521]], - [39423, [13522]], - [39438, [13523, 0, 0, 0, 13524, 13525]], - [39472, [13526]], - [39479, [13527]], - [39501, [13528]], - [39511, [13529, 0, 0, 13530]], - [39532, [13531, 13532, 13533, 13534, 13535, 13536, 0, 13537, 13538, 0, 13539, 0, 0, 13540, 0, 13541, 13542, 0, 13543, 13544, 0, 0, 13545, 0, 13546, 0, 13547, 13548, 0, 0, 0, 0, 13549, 0, 0, 13550, 0, 13551]], - [39575, [13552, 0, 0, 13553]], - [39585, [13554, 0, 0, 13555, 13556, 0, 0, 13557]], - [39607, [13558, 13559, 0, 0, 0, 13560]], - [39620, [13561, 13562]], - [39635, [13563, 0, 0, 0, 0, 13564]], - [39654, [13565, 0, 0, 0, 13566, 0, 0, 13567, 13568]], - [39699, [13569]], - [39729, [13570]], - [39740, [13571, 0, 0, 0, 0, 13572, 13573, 0, 13574, 13575]], - [39759, [13576, 0, 0, 0, 0, 13577]], - [39770, [13578]], - [39791, [13579]], - [39822, [13580]], - [39854, [13581]], - [39881, [13582]], - [39899, [13583]], - [39912, [13584]], - [39983, [13585]], - [40008, [13586]], - [40018, [13587, 0, 0, 0, 0, 13588]], - [40060, [13589, 0, 0, 0, 0, 13590]], - [40077, [13591]], - [40092, [13592]], - [40100, [13593, 0, 0, 0, 13594]], - [40120, [13595]], - [40131, [13596, 13597]], - [40140, [13598, 13599]], - [40150, [13600]], - [40158, [13601]], - [40165, [13602, 0, 0, 0, 13603]], - [40179, [13604, 13605, 0, 13606]], - [40232, [13607]], - [40251, [13608]], - [40284, [13609]], - [40300, [13610]], - [40335, [13611]], - [40372, [13612]], - [40388, [13613]], - [40407, [13614]], - [40434, [13615]], - [40441, [13616, 13617]], - [40479, [13618, 13619, 13620, 0, 13621, 0, 13622, 13623]], - [40493, [13624, 0, 13625, 0, 0, 0, 13626]], - [40509, [13627, 13628, 13629, 0, 0, 0, 13630, 0, 13631, 0, 0, 0, 13632, 13633, 0, 0, 0, 0, 13634]], - [40548, [13635, 0, 13636]], - [40560, [13637, 0, 0, 13638]], - [40575, [13639]], - [40594, [13640, 13641, 0, 0, 0, 13642]], - [40607, [13643]], - [40614, [13644]], - [40633, [13645, 13646, 13647, 0, 13648, 0, 13649, 0, 0, 0, 0, 13650]], - [40654, [13651, 13652, 0, 13653, 13654, 0, 13655, 0, 0, 0, 13656, 13657, 0, 13658, 0, 13659]], - [40687, [13660]], - [40718, [13661, 0, 0, 0, 0, 13662]], - [40736, [13663]], - [40763, [13664, 0, 0, 13665]], - [40778, [13666]], - [40784, [13667]], - [40802, [13668]], - [40831, [13669, 0, 0, 0, 0, 13670, 0, 0, 0, 13671, 0, 0, 13672, 0, 13673]], - [40857, [13674, 13675, 0, 0, 0, 0, 13676]], - [65281, [13677, 13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13686, 13687, 13688, 13689, 13690, 13691, 13692, 13693, 13694, 13695, 13696, 13697, 13698, 13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706, 13707, 13708, 13709, 13710, 13711, 13712, 13713, 13714, 13715, 13716, 13717, 13718, 13719, 13720, 13721, 13722, 13723, 13724, 13725, 13726, 13727, 13728, 13729, 13730, 13731, 13732, 13733, 13734, 13735, 13736, 13737, 13738, 13739, 13740, 13741, 13742, 13743, 13744, 13745, 13746, 13747, 13748, 13749, 13750, 13751, 13752, 13753, 13754, 13755, 13756, 13757, 13758, 13759, 13760, 13761, 13762, 13763, 13764, 13765, 13766, 13767, 13768, 13769, 13770, 8292, 8293, 8294, 8295, 8296, 8297, 8298]], - [65507, [8299]], - [128067, [8463]], - [128518, [8469]], - [128528, [8467, 8468]], - [128543, [8470, 8466]], - [128565, [8465]], - [128578, [8464, 8471]], -]); - -export const emojiPal = createFont(sprites2, [ - [9752, [13848]], - [9800, [13834, 13835, 13836, 13837, 13838, 13839, 13840, 13841, 13842, 13843, 13844, 13845]], - [9889, [13830]], - [9924, [13821]], - [9934, [13846, 13856]], - [10024, [13829]], - [10052, [13822]], - [10084, [13776]], - [11088, [13826]], - [127752, [13817]], - [127775, [13827, 13825]], - [127794, [13804]], - [127800, [13802]], - [127807, [13807, 13849]], - [127815, [13855, 0, 0, 13810, 0, 13857, 0, 13808, 13809, 13852, 0, 0, 0, 0, 13813]], - [127841, [13816]], - [127850, [13850, 0, 13814, 13815]], - [127873, [13820, 0, 13812, 13805, 13824]], - [127922, [13828, 0, 0, 13832, 13833]], - [127936, [13811]], - [128008, [13791]], - [128049, [13792]], - [128062, [13790]], - [128081, [13847]], - [128123, [13789, 0, 0, 0, 13774]], - [128142, [13818, 0, 13806, 0, 0, 0, 13782, 13785, 13783, 13784, 0, 13777, 13778, 13779, 13780]], - [128174, [13803]], - [128293, [13831]], - [128367, [13823]], - [128375, [13787]], - [128420, [13781]], - [128520, [13773, 0, 0, 0, 0, 13772]], - [128568, [13794, 13795, 13793, 13796, 13797, 13798, 13801, 13800, 13799]], - [129300, [13775]], - [129356, [13819]], - [129365, [13854, 0, 0, 0, 0, 13851]], - [129389, [13853]], - [129415, [13788, 0, 0, 0, 13786]], -]); - -export const fontSmallPal = createFont(sprites2, [ - [0, [13858]], - [32, [14220, 13890, 13891, 13892, 13893, 13894, 13895, 13896, 13897, 13898, 13899, 13900, 13901, 13902, 13903, 13904, 13905, 13906, 13907, 13908, 13909, 13910, 13911, 13912, 13913, 13914, 13915, 13916, 13917, 13918, 13919, 13920, 13921, 13922, 13923, 13924, 13925, 13926, 13927, 13928, 13929, 13930, 13931, 13932, 13933, 13934, 13935, 13936, 13937, 13938, 13939, 13940, 13941, 13942, 13943, 13944, 13945, 13946, 13947, 13948, 13949, 13950, 13951, 13952, 13953, 13954, 13955, 13956, 13957, 13958, 13959, 13960, 13961, 13962, 13963, 13964, 13965, 13966, 13967, 13968, 13969, 13970, 13971, 13972, 13973, 13974, 13975, 13976, 13977, 13978, 13979, 13980, 13981, 13982, 13983]], - [161, [14030, 0, 14013, 0, 0, 0, 13879, 0, 0, 14023, 14031, 14027, 0, 14026, 0, 14122, 0, 0, 0, 14121, 0, 13878, 14120, 14327, 0, 14024, 14032, 14029, 14028, 14328, 14025, 14167, 14128, 14223, 14129, 13999, 14000, 14003, 13985, 14168, 14001, 14329, 14330, 14169, 14139, 14224, 14331, 14332, 14022, 14170, 14115, 14116, 14131, 14010, 14015, 14014, 14171, 14140, 14333, 14011, 14151, 14334, 14126, 13990, 14017, 13988, 14130, 13989, 13991, 14002, 13992, 13995, 13987, 13993, 13994, 13998, 14018, 13997, 13996, 0, 14021, 14006, 14019, 14004, 14132, 14005, 14365, 14012, 14008, 14020, 14007, 13986, 14152, 14366, 14009, 14235, 14236, 14221, 14222, 14099, 14100, 14101, 14102, 14237, 14238, 14359, 14360, 14133, 14134, 14135, 14136, 14361, 14362, 14363, 14364, 14367, 14368, 0, 0, 14103, 14104, 14137, 14138, 0, 0, 14161, 14162]], - [304, [14163, 14164]], - [313, [14155, 14156, 0, 0, 14157, 14158, 0, 0, 14113, 14114, 14105, 14106, 0, 0, 14141, 14142, 0, 14229, 14230, 0, 0, 0, 0, 14231, 14232, 0, 0, 14159, 14160, 0, 0, 14143, 14144, 14107, 14108, 0, 0, 14165, 14166, 14145, 14146, 0, 0, 14147, 14148, 0, 0, 0, 0, 14117, 14118, 0, 0, 14149, 14150, 14233, 14234]], - [377, [14109, 14110, 14111, 14112, 14153, 14154]], - [402, [14016]], - [536, [14225, 14226, 14227, 14228]], - [913, [14335, 14336, 14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346, 14347, 14348, 14349, 14350, 14351, 0, 14352, 14353, 14354, 14355, 14356, 14357, 14358]], - [991, [14379]], - [1024, [14172, 14045, 14173, 14174, 14175, 14176, 14177, 14178, 14179, 14180, 14181, 14182, 14183, 14184, 14185, 14186, 14033, 14035, 14037, 14039, 14041, 14043, 14047, 14049, 14051, 14053, 14055, 14057, 14059, 14061, 14063, 14065, 14067, 14069, 14071, 14073, 14075, 14077, 14079, 14081, 14083, 14085, 14087, 14089, 14091, 14093, 14095, 14097, 14034, 14036, 14038, 14040, 14042, 14044, 14048, 14050, 14052, 14054, 14056, 14058, 14060, 14062, 14064, 14066, 14068, 14070, 14072, 14074, 14076, 14078, 14080, 14082, 14084, 14086, 14088, 14090, 14092, 14094, 14096, 14098, 14187, 14046, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14195, 14196, 14197, 14198, 14199, 14200, 14201, 14202, 14203, 14204, 14205, 14206, 14207]], - [1136, [14208, 14209, 14210, 14211]], - [1162, [14212, 14213, 14214, 14215, 14216, 14217, 14218, 14219]], - [2960, [14378]], - [4326, [14377]], - [8226, [13865, 0, 0, 0, 14399]], - [8252, [13877]], - [8364, [14119]], - [8482, [14127]], - [8592, [13885, 13882, 13884, 13883, 13887, 13876]], - [8616, [13881]], - [8735, [13886]], - [8962, [13984]], - [9632, [14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246, 14247, 14248, 14249, 14250, 13880, 14251, 14252, 14253, 14254, 14255, 13888, 14256, 14257, 14258, 14259, 14260, 14261, 14262, 13874, 14263, 13889, 14264, 14265, 14266, 14267, 14268, 14269, 14270, 13875, 14271, 14272, 14273, 14274, 14275, 14276, 13867, 14277, 14278, 14279, 14280, 14281, 14282, 14283, 14284, 14285, 14286, 14287, 14288, 13866, 13868, 14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296, 14297, 14298, 14299, 14300, 14301, 14302, 14303, 14304, 14305, 14306, 14307, 14308, 14309, 14310, 14311, 14312, 14313, 14314, 14315, 14316, 14317, 14318, 14319, 14320, 14321, 14322, 14323, 14324, 14325, 14326, 14398, 0, 0, 0, 0, 14369, 14370]], - [9786, [13859, 13860, 13873, 0, 0, 14385, 13870, 14386, 13869]], - [9812, [14393, 14394, 0, 0, 0, 0, 14395, 14396, 0, 0, 0, 0, 13864, 14125, 0, 13863, 0, 13861, 13862, 0, 0, 0, 13871, 13872]], - [9890, [14390, 14391, 14392, 14124, 14389, 14384, 14387, 14388]], - [9906, [14123]], - [10022, [14372, 14373]], - [10032, [14371]], - [10083, [14397, 0, 14376]], - [12298, [14382, 14383, 0, 0, 0, 0, 14380, 14381]], - [21325, [14375, 0, 0, 14374]], - [65281, [14408, 14409, 14410, 14411, 14412, 14413, 14414, 14415, 14416, 14417, 14418, 14419, 14420, 14421, 14422, 14423, 14424, 14425, 14426, 14427, 14428, 14429, 14430, 14431, 14432, 14433, 14434, 14435, 14436, 14437, 14438, 14439, 14440, 14441, 14442, 14443, 14444, 14445, 14446, 14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496, 14497, 14498, 14499, 14500, 14501]], - [128067, [14400]], - [128518, [14406]], - [128528, [14404, 14405]], - [128543, [14407, 14403]], - [128565, [14402]], - [128578, [14401]], -]); - -export const fontMonoPal = createFont(sprites2, [ - [0, [14502]], - [33, [14534, 14535, 14536, 14537, 14538, 14539, 14540, 14541, 14542, 14543, 14544, 14545, 14546, 14547, 14548, 14549, 14550, 14551, 14552, 14553, 14554, 14555, 14556, 14557, 14558, 14559, 14560, 14561, 14562, 14563, 14564, 14565, 14566, 14567, 14568, 14569, 14570, 14571, 14572, 14573, 14574, 14575, 14576, 14577, 14578, 14579, 14580, 14581, 14582, 14583, 14584, 14585, 14586, 14587, 14588, 14589, 14590, 14591, 14592, 14593, 14594, 14595, 14596, 14597, 14598, 14599, 14600, 14601, 14602, 14603, 14604, 14605, 14606, 14607, 14608, 14609, 14610, 14611, 14612, 14613, 14614, 14615, 14616, 14617, 14618, 14619, 14620, 14621, 14622, 14623, 14624, 14625, 14626, 14627]], - [167, [14523]], - [182, [14522]], - [8226, [14509]], - [8252, [14521]], - [8592, [14529, 14526, 14528, 14527, 14531, 14520]], - [8616, [14525]], - [8735, [14530]], - [8962, [14628]], - [9644, [14524]], - [9650, [14532]], - [9658, [14518, 0, 14533]], - [9668, [14519]], - [9675, [14511]], - [9688, [14510, 14512]], - [9786, [14503, 14504, 14517, 0, 0, 0, 14514, 0, 14513]], - [9824, [14508, 0, 0, 14507, 0, 14505, 14506, 0, 0, 0, 14515, 14516]], -]); - -const palettes: Uint32Array[] = createPalettes('0 0000004b 0000004d 00000059 00000081 000000 003f59 005763 00673f 006f19 0075a3 007a25 009152 0092cc 0097ff 00ab30 00ff9b 020202 03246f 036f28 040303 044200 050505 060606 070a0a 073b15 082647 097900 097a2b 09cc37 0a0a0a 0aff44 0b0a0a 0b0b0b 0c0202 0c9800 0d0b16 0d0d0c 0d0d0d 0f0a05 0f0f0f 0f1012 100f0f 101420 10718d 11090c 110a0d 110f0f 111721 111817 11211e 11720a 131212 131313 131414 14182e 142325 151515 154422 161210 161515 1616164f 161616 161c1e 171111 171118 171616 171716 171717 17181a 176300 180909 181108 181211 18130e 181314 181619 181818 191718 191917 191f16 199bcf 19cf50 1a1515 1a181c 1a1a1d 1a2631 1b1514 1b181c 1b1f21 1b2447 1b2631 1b2731 1b4527 1c1b1c 1c2547 1c312d 1d1121 1d1a1a 1d1b1b 1d1c17 1d592e 1e1446 1e1616 1e1e1e 1e1f1e 1f150b 1f1916 1f1919 1f1d1d 1f436c 1f50cc 1fcc5e 20150e 201919 201d1e 201e20 20241c 20671c 211211 21190f 211a1a 211d11 211e23 213ea6 21a65a 222020 222222 222620 224100 224b17 23110f 231818 231e1e 23221a 232222 232323 232627 232728 233c5f 234873 23572e 235f55 236435 24121b 242330 242f26 244c7a 251810 252629 252e30 25494b 26160e 261c10 262122 262626 264284 26576f 271515 271c1d 271f1b 272421 272624 272727 275048 275049 2789cc 2789cd 27a4b7 282225 282425 282526 282626 282727 282827 28443f 28456d 286d62 2889cd 28dc00 291311 291d2b 291e11 291e1e 292929 294f2a 2a201f 2a2025 2a2626 2a274b 2a3932 2a3933 2a4c4b 2a5c2e 2ab45d 2b2116 2b2119 2b2128 2b2228 2b2318 2b2b32 2b2b45 2b2c2a 2b3234 2b473b 2b4bff 2b4e94 2b4e95 2bdfff 2c0605 2c1d18 2c1e1d 2c1f19 2c2c2c 2c354d 2d0706 2d0807 2d1d18 2d1e19 2d1e1f 2d2a2a 2d302b 2d3031 2d3235 2d590b 2d5e2f 2d5f9b 2e0806 2e0807 2e2017 2e2221 2e2314 2e2d2e 2e2e2e 2e3130 2e4e49 2e6c42 2f2423 2f2711 2f633e 301414 301a0a 30211c 302528 30302f 303a3d 304708 306639 30930e 311e1c 31261f 31271f 312720 313130 313947 31803e 31cee5 322425 32281f 322820 322e2d 322f35 323130 323230 323231 32332e 326e46 32b8ec 32ed6a 33261f 332624 333333 334d22 3363cc 33cc66 342624 343131 343434 346ba6 352626 35271e 352927 353233 353535 35363a 35383b 361f1f 362716 362826 362a22 362a29 362e0e 362f30 363636 372b26 372f19 373f30 37474f 37843f 382e28 382e31 38332f 383637 385cb7 386c4f 386c51 390000 392125 392b2a 392d2a 393536 393636 393b33 394336 3a2b19 3a8246 3b1b25 3b2514 3b2b2a 3b3635 3b3b3b 3b6554 3b6958 3b6f17 3b7bc7 3b8751 3c3e45 3c4e42 3c6655 3d1220 3d2936 3d3523 3d3662 3d3e3c 3d6e41 3e2080 3e2844 3e2d2e 3e322a 3e551f 3e6543 3e9255 3f1d0f 3f1e0f 3f2f2e 3f332c 3f3721 3f3f44 3f4345 3f8c7f 402222 404973 407cff 40ff80 412719 412e2b 41342f 41443e 416609 41660a 417e49 423b3a 423c3b 424138 42473f 427013 42bee7 42bfe8 432210 434141 434e0d 441717 442625 442b28 442e27 442f2d 443026 443433 444240 444444 452a1b 453524 453627 453730 455a64 457d09 45a435 46006b 462a16 462a17 462e2c 46362c 46372c 463e3f 464548 464646 46b727 470809 472e4e 47372c 47372d 474131 474445 47494b 475b5f 47ce12 482410 483621 483a31 48436b 484444 484d52 485c60 488f49 48a105 48a293 493626 493726 49455a 494a48 4a176f 4a3522 4a3925 4a4f53 4a5055 4a79da 4b303b 4b3735 4b4b4b 4b5156 4c4645 4c4b4b 4c4d49 4c4f45 4c8958 4c895a 4e312e 4e3220 4e3e3a 4e534a 4e9d5d 4f2333 4f4036 4f4f4f 4f5246 4f6c1f 4fa5ef 503628 503d45 503e36 506452 51271d 514042 514e4b 515200 51565b 52235f 52333f 52472f 525252 52585e 529454 53380c 533c35 533c36 540e2b 544a4b 544c4b 54534e 54705e 551928 553b38 55463f 554f4e 555f67 55687d 558a69 560a04 563c3a 564632 56480f 56b467 57031b 572524 57432d 575c51 57666e 582d77 58352f 583925 583d3a 584331 58463d 585355 585852 588a60 590b13 591202 591a08 592f20 593d3c 594f40 59513a 595652 595852 595e61 5989e7 59e531 5a0104 5a0c13 5a0c14 5a4a32 5a4b32 5a6167 5a7a24 5b4639 5b482c 5b4b42 5b4c32 5b6063 5c0000 5c1818 5c3b27 5c3e0e 5c503f 5c5134 5c5d5e 5c9519 5ca1d5 5ca751 5d2f17 5d5e5c 5da2d5 5e3d2a 5e5647 5e5e5d 5e5e5e 5e912a 5f2823 5f286d 5f3e13 5f5323 5f636a 5f8771 5f8a55 604238 604536 604b37 605856 606359 60635d 607d8b 60c539 613321 6190aa 6244a8 625d41 626b98 62ab64 635d52 63635c 644a30 645144 64595a 645d52 64aacc 64ae69 654e44 656200 65827b 663931 666f9c 66896d 66ad51 66c7ed 66ed8f 673149 673e27 674531 676564 676767 67bb77 683f36 684c44 684e36 684f36 684f37 686f73 686f99 68a27b 68cb58 694e43 694f36 696548 696d5f 6a1832 6a39a4 6a570d 6a5800 6a615f 6a6b60 6a6f73 6b0000 6b0028 6b2233 6b4100 6b4834 6b5800 6b6800 6b6869 6b6e67 6b788e 6bb46d 6c1f1f 6c3d24 6c7160 6c7275 6d2e28 6d3332 6d381a 6d6028 6dbfee 6e006f 6e2715 6e4a13 6e4b13 6e4c49 6e4e37 6e6e6e 6e706c 6e736a 6e7a80 6ea5c5 6ebfef 6f0000 6f0330 6f1681 6f1818 6f1d58 6f2400 6f3000 6f5d42 6f5e42 6f5e43 6f6803 6f6e67 6f6e74 6f6f54 6f6f6f 6f716d 6f8094 701f1c 704426 705b3d 705d43 707a80 70ae6e 70b57e 715547 715a53 71736e 71787b 719b2d 721946 722f2d 723b2e 724b2c 725848 725944 72ae6e 736046 736967 736a51 737570 737869 737f84 73efe8 744070 74452c 745c3f 746442 746f67 747371 747671 74c51d 756139 756b48 757f82 758083 758184 758285 758386 758487 758588 758689 758699 75c075 765b4a 767173 76746c 76756c 76a6ff 76ed5c 770000 772542 774c3e 777971 777a73 778587 78716a 787462 787575 787879 793312 793e29 79443f 796337 797c74 7a2424 7a2700 7a3fa1 7a4b2d 7a6909 7a8180 7a9f1c 7ab045 7affeb 7b1010 7b1438 7b7c74 7b858a 7c3831 7c4d34 7c5f41 7c6148 7c7654 7c9c50 7cb173 7cca92 7d0300 7d7071 7d7b5c 7d7d7d 7d8d95 7e583c 7e5c52 7ed4ff 7f5233 7fc484 80006c 80447e 805f4d 806a47 808080 808878 809034 815947 816a47 818181 822424 823320 82a692 838b8f 83cc4f 83e86e 842a38 843734 847a67 847e87 84805a 848378 848381 848c90 85234e 855f39 856f58 857243 858b95 858d91 8591a2 85d69e 867059 867a56 868e92 8691a2 8715c4 87564c 875c44 877c6d 877f6a 878c78 878f93 87969c 8797a9 87999f 88725a 888c83 889077 889094 8897bb 889aa0 89452e 895d3f 89624d 899195 899ba1 8a0e0e 8a2247 8a6245 8a7111 8a735c 8a8c86 8a9195 8a9296 8b1e40 8b574a 8b8161 8b8b8b 8c0a07 8c453f 8c4986 8c5421 8c5b3e 8c6c03 8c755d 8c8a90 8c9dbf 8d2b00 8ddcf2 8e0f24 8e3042 8e453f 8e6944 8e8b7c 8ec488 8f0807 8f0d24 8f4d57 8f563b 8f5738 8f8f90 90320b 90563c 907853 908d7c 91310b 91320c 917e53 918665 919783 921308 921509 922427 92508f 927a55 92968a 92c73b 92d097 92e09e 92e6ae 931309 931313 931409 937a55 93d5f5 94594b 94684c 946a26 94725d 948d8e 949800 94d6f6 950000 9553c1 955817 958e6b 95daf0 96563b 9671c1 969693 969eaa 97a0a5 97aac9 983471 984fcc 985a39 9876ff 98a4ab 997621 99775e 99a19f 99a2a7 9a653e 9a9583 9aa3a8 9af437 9b2e2d 9b9977 9b9c88 9ba4a9 9bafcc 9bc464 9c6141 9c8256 9c8a41 9c9c9c 9ca5aa 9d9d9e 9da6ab 9e1e1e 9e6c5c 9e7431 9e8c73 9e967d 9e9784 9e9999 9ea19a 9ebfd8 9f725f 9f855f a09577 a0a0a0 a0a499 a0a691 a0b442 a1051f a1061f a10620 a11616 a13600 a1371b a17d68 a25048 a261ce a38964 a38a4e a39693 a3a08c a3a29a a3a7c2 a43700 a4ff63 a54e24 a58361 a58a6d a5b4ba a5cfe0 a63447 a83434 a84f97 a8b6d3 a8b8bf a91bf6 a94b41 a9b2ad a9b6d3 a9b7d4 aa3a4d aa9a9b aaa08b aaa696 ab643f ab6e4d ab7666 ab7b60 ababab ac19cf ac7146 acaa89 ad1416 ada6a5 ada896 aeb6c3 af784f afb3a7 afbed9 b05911 b0ab8c b0b2ad b19248 b1ac9a b2360f b24717 b29562 b2b9bc b30e0e b38e68 b3b194 b49c61 b4b4af b4b4b4 b4bcc0 b4ffda b52a2a b5d2e4 b67aff b6b300 b7346c b7b29a b7c410 b81414 b8a880 b9705e ba81b7 ba987f baa27f bbbbbb bc652b bc7625 bc7a62 bcc8c0 bd6a62 bd6c4d bd934d bdcde5 bdea85 be63ff be946e bebc9c becee6 befa82 bf1da7 bf8f7d bfa17a bfbfbf bfc1ba c05151 c08665 c0a165 c0ccc4 c1dcec c1eef0 c28959 c2a910 c2c2ba c3c3c3 c3ff82 c41042 c41254 c41515 c47e15 c4a624 c4a940 c4c012 c54a3a c54b3a c58347 c5d1e6 c63920 c64035 c64059 c68556 c6d2e7 c72424 c73c3b c8381f c93a3a c966ff c9871d c99560 c9b497 c9ecfd ca32ed ca6a2a ca861c ca861d caa175 cab06d caf0ff caf1fd cb871c cbb767 cbbfa8 cc02c9 cc3374 cc4400 cc5151 cc58ab cc5c08 ccb595 ccb89a ccc133 cccbc0 cccccc ccffc4 ccfff7 cd621a cd835c cd8452 cdb16e cde8f0 ce621a ce631a ce631b ce8452 ce9742 cee3ef cf1717 cf1919 cf2626 cf641d cf9742 cf9866 cfb319 d06fca d09742 d14600 d16549 d19f21 d1b683 d366ed d38755 d39741 d39b4a d3b3dc d3c5a7 d3ceab d3d3ba d3dff0 d43737 d4b070 d4c44c d4cdba d56a69 d60a0a d69f74 d6a260 d6bc74 d6caa5 d77099 d7936c d85543 d8ad7e d8dbd6 d8dc00 d91717 d97532 d97e09 d9a066 d9c759 da468c daa056 daeaf2 db5d2b dbc4a3 dc2d2d dcdcdc dd5c2b ddb75f ddcf71 ddd02a dddddd dea1ff deb028 deb02a df807f df917d dfaf28 dfc588 dfd7be e0a455 e0b028 e0b769 e0fffe e13955 e15151 e1c693 e1f8ff e344cb e38926 e3edfa e3f163 e4b065 e4cf7a e4eefb e586df e5b66e e5eefb e5f615 e6337b e6aa86 e6b66e e6b86f e6e000 e6e5d8 e6eefb e6f1f6 e7559b e78149 e7b280 e7b86f e84c31 e8c28e e9bc88 e9d19b eaed58 ebcd90 ec3232 ecb380 ecd132 ed3232 ed6666 ed943b edb480 edd470 ede1c7 ee8138 ee97e9 eec88f eed39f ef8237 f08a7d f095e9 f0bf4c f0e687 f0efe2 f19b37 f1b339 f1d934 f1d935 f281ed f28b1d f2b339 f2d26a f2da34 f38336 f38f41 f39f4b f3ad52 f3ed3a f495bf f5b332 f5d451 f5dae6 f61553 f6176a f61b1b f65a5a f69e1b f6ca05 f6f117 f7db9d f85592 f86754 f8f455 f8f8f8 f9c0ec f9c957 fa9381 fbffad fc20ff fc82b5 fdbb0b fefefe70 fefefe71 feff74 ff0000 ff00cc ff3c80 ff4090 ff5500 ff6666 ff6741 ff6c22 ff6ed6 ff740b ff7af9 ff9f3b ffae70 ffbaba ffc018 ffcd99 ffdb87 ffdd7a ffdfc1 ffe7b4 ffe98f ffea3b ffeb9e fff07f fff240 fff2cc fffd46 fffda4 fffef1 ffff47 ffffff', [ - [0, 1286, 5, 663, 1227, 1151, 1031, 138, 1285, 1195, 1134, 1262, 1256, 1266, 1257, 995, 886, 701, 14, 16, 702, 179, 702], - [0, 28, 30, 43, 44, 53, 58, 80, 81, 82, 102, 146, 200, 205, 208, 209, 210, 213, 217, 236, 255, 267, 268, 313, 339, 341, 477, 481, 483, 536, 540, 555, 574, 575, 577, 580, 583, 636, 639, 651, 710, 722, 723, 726, 736, 739, 759, 807, 821, 827, 828, 858, 876, 878, 883, 890, 893, 901, 947, 949, 965, 966, 980, 985, 1006, 1029, 1049, 1050, 1056, 1057, 1062, 1069, 1072, 1075, 1085, 1090, 1098, 1100, 1103, 1107, 1108, 1110, 1111, 1113, 1129, 1131, 1135, 1136, 1139, 1141, 1152, 1160, 1167, 1173, 1179, 1188, 1190, 1191, 1199, 1200, 1201, 1202, 1211, 1212, 1215, 1226, 1230, 1233, 1241, 1247, 1258, 1260, 1269, 1273, 1275, 1281, 1286], - [0, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286], - [0, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243], - [0, 1274, 1274, 1274, 1271, 1271, 1267, 1267, 1267, 1137, 1137], - [0, 1286, 1286, 1286, 1283, 1283, 1277, 1277, 1277, 1252, 1252], - [0, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286], - [0, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243], - [0, 1274, 1274, 1271, 1271, 1267, 1267, 1137, 1137, 1137], - [0, 1286, 1286, 1283, 1283, 1277, 1277, 1252, 1252, 1252], - [0, 743], - [0, 1254], - [0, 1253, 1254], - [0, 1253], - [0, 1, 2, 61, 169, 192, 203, 252, 322, 391, 392, 476, 479, 584, 585, 654, 757, 859, 919, 992, 1028, 1127], - [0, 1, 2, 61, 187, 204, 234, 252, 340, 391, 392, 544, 479, 584, 585, 654, 757, 1214, 919, 1249, 1028, 1127], - [0, 1, 2, 61, 332, 826, 557, 252, 975, 390, 392, 1174, 479, 582, 585, 654, 918, 1014, 918, 1177, 1027, 1125], - [0, 1, 2, 61, 164, 165, 190, 191, 243, 250, 251, 252, 304, 305, 391, 392, 416, 417, 434, 435, 511, 512, 584, 585, 589, 641, 642, 643, 656, 669, 757, 859, 919, 992, 1028, 1127], - [0, 1, 2, 61, 799, 799, 571, 571, 332, 250, 251, 252, 956, 956, 390, 392, 416, 417, 1052, 1052, 511, 512, 582, 585, 882, 641, 642, 643, 1174, 1174, 756, 1014, 918, 1177, 1027, 1125], - [0, 1, 2, 61, 976, 976, 845, 845, 497, 250, 251, 252, 1070, 1070, 391, 392, 416, 417, 1161, 1161, 511, 512, 584, 585, 1071, 641, 642, 643, 1224, 1224, 757, 1214, 919, 1249, 1028, 1127], - [0, 1, 2, 61, 981, 981, 860, 860, 508, 250, 251, 252, 1091, 1091, 391, 392, 416, 417, 1169, 1169, 511, 512, 584, 585, 1071, 641, 642, 643, 1231, 1231, 757, 1214, 919, 1249, 1028, 1127], - [0, 1, 2, 61, 969, 969, 836, 836, 482, 250, 251, 252, 1055, 1055, 391, 392, 416, 417, 1147, 1147, 511, 512, 584, 585, 1071, 641, 642, 643, 1225, 1225, 757, 1214, 919, 1249, 1028, 1127], - [0, 390, 582, 756, 882, 918, 1014, 1019, 1027, 1125, 1177], - [0, 5, 24, 56, 63, 94, 109, 116, 150, 180, 232, 245, 282, 302, 402, 474, 493, 570, 698, 838, 1138], - [0, 291, 454, 480, 597, 870, 1042, 1232], - [0, 104, 198, 300, 309, 452, 473, 491, 609, 658, 679, 840, 843, 919, 989, 1089], - [0, 53, 72, 77, 120, 148, 153, 182, 229, 231, 275, 287, 314, 407, 421, 422, 516, 653, 903, 988], - [0, 148, 229, 421, 516, 653, 903, 988], - [0, 238, 295, 346, 914, 920, 1122], - [0, 53, 59, 72, 161, 199, 301, 346, 401, 421, 516, 920, 935, 1122, 1128, 1159], - [0, 34, 48, 49, 50, 65, 73, 96, 97, 119, 122, 139, 142, 158, 175, 176, 177, 235, 249, 336, 349, 373, 394, 398, 406, 415, 436, 456, 538, 539, 541, 617, 619, 620, 664, 721, 766, 819, 825, 932, 962], - [0, 68, 160, 210, 217, 218, 293, 463, 464, 524, 583, 774, 912, 1079, 1112], - [0, 876, 949, 1069, 1212, 1246], - [0, 8, 11, 12, 15, 36, 88, 169, 189, 192, 203, 248, 322, 332, 405, 441, 465, 476, 542, 557, 623, 675, 685, 704, 713, 728, 777, 817, 826, 930, 948, 954, 972, 975, 979, 982, 1035, 1174, 1204, 1272, 1286], - [0, 342, 624, 1101, 1105, 1181, 1190, 1208], - [0, 625, 1105, 1182], - [0, 79, 95, 167, 207, 364, 367, 549, 676, 770, 1163], - [657, 738, 859, 992], - [0, 68, 155, 210, 213, 217, 218, 293, 459, 463, 464, 580, 583, 965], - [0, 93, 239, 315, 329, 595, 765, 947], - [0, 107, 372, 475, 500, 502, 522, 525, 533, 578, 606, 650, 686, 695, 741, 751, 793, 816, 867, 879, 897, 911, 913, 931, 987, 1013, 1117, 1148, 1223], - [0, 681, 1164, 1184], - [0, 130, 477, 483, 540, 573, 576, 759, 830, 834, 852, 953, 1009, 1049, 1107, 1139, 1141, 1275], - [0, 5, 24, 56, 63, 94, 109, 116, 150, 180, 219, 232, 245, 282, 302, 402, 474, 493, 570, 698, 838, 1138], - [0, 5, 94, 109, 180, 219, 282, 302, 402, 570, 838, 1138], - [0, 270, 473, 488, 705, 712, 866, 907, 1017, 1034], - [0, 133, 257, 490, 697, 727, 806], - [0, 5, 40, 105, 244, 337, 419, 531, 626, 699, 700, 844, 868, 1023], - [0, 5, 17, 20, 22, 23, 32, 33, 42, 47, 52, 60, 74, 76, 78, 84, 98, 99, 115, 123, 126, 170, 171, 172, 188, 196, 220, 230, 260, 276, 288, 294, 311, 318, 319, 338, 344, 345, 362, 383, 408, 410, 427, 430, 442, 467, 492, 562, 599], - [0, 93, 247, 315, 316, 326, 469, 814, 1029], - [0, 216, 339, 359, 724, 736, 901, 1015], - [0, 68, 210, 213, 217, 218, 293, 459, 463, 580, 583, 965], - [0, 1286], - [0, 68, 128, 184, 212, 293, 327, 449, 450, 543, 567], - [0, 238, 295, 346, 350, 361, 671, 715, 815, 910, 914, 920, 936, 1022, 1122], - [0, 240, 272, 371, 521, 909, 1099], - [0, 1, 928, 1119, 1165], - [0, 283, 307, 379, 618, 711, 831, 970], - [0, 68, 154, 184, 212, 292, 293, 393, 449, 466, 563, 567, 740, 958], - [0, 127, 784, 801, 880, 882, 961, 1014, 1094, 1177, 1203], - [0, 77], - [194, 993], - [5], - [0, 68, 213, 217, 283, 293, 307, 379, 459, 464, 580, 583, 618, 711, 831, 965, 970], - [0, 135, 270, 488, 534, 705, 767, 866, 959, 1115, 1124, 1205], - [0, 136, 270, 488, 705, 787, 866], - [0, 215, 358, 496, 724, 925, 1044, 1248], - [0, 215, 358, 224, 724, 414, 552, 1020], - [0, 40, 55, 89, 181, 201, 214, 330, 351, 457, 588, 837, 939, 1011, 1268], - [0, 79, 197, 198, 215, 216, 221, 224, 291, 309, 331, 339, 358, 359, 364, 399, 414, 454, 458, 480, 491, 496, 549, 552, 584, 597, 651, 679, 680, 724, 736, 757, 770, 818, 823, 843, 847, 870, 901, 919, 925, 983, 1000, 1007, 1015, 1020, 1033, 1042, 1044, 1089, 1097, 1135, 1199, 1216, 1232, 1248, 1278], - [0, 758, 835, 1197, 1286], - [0, 370, 639, 755, 924, 940, 1075, 1263], - [0, 365, 719, 537, 725, 929, 1106, 1263], - [0, 2, 141, 185, 266, 325, 360, 440, 461, 581, 612], - [0, 241, 342, 343, 388, 389, 437, 462, 489, 523, 624, 625, 652, 747, 758, 835, 892, 946, 1053, 1068, 1095, 1101, 1105, 1146, 1176, 1182, 1190, 1197, 1286], - [0, 57, 64, 103, 132, 155, 159, 183, 211, 257, 279, 289, 320, 355, 375, 400, 471, 478, 490, 515, 591, 626, 667, 745, 868], - [0, 57, 64, 103, 132, 155, 75, 83, 87, 108, 121, 289, 320, 355, 186, 400, 281, 478, 290, 299, 356, 377, 517, 438, 517], - [0, 90, 95, 166, 167, 178, 206, 207, 366, 367, 587, 676, 804, 812, 813, 906, 908, 1163], - [0, 397, 613, 718, 896, 1054], - [0, 26, 110, 147, 226, 324], - [0, 246, 445, 514, 662, 856], - [0, 391, 665, 802, 877, 961, 1088, 1198], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 420, 565, 568, 602, 608, 638, 640, 644, 648, 746, 763, 884, 941, 996, 999, 1016, 1039, 1043, 1077, 1078, 1081, 1083, 1178, 1183, 1236, 1240, 1244, 1264, 1265, 1280, 1286], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 420, 565, 568, 602, 608, 638, 640, 644, 323, 746, 763, 884, 941, 996, 999, 1016, 1039, 1043, 1077, 1078, 1081, 763, 1178, 1183, 1236, 1240, 1244, 1264, 1265, 1280, 941], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 420, 565, 568, 602, 608, 638, 640, 644, 749, 746, 763, 884, 941, 996, 999, 1016, 1039, 1043, 1077, 1078, 1081, 1021, 1178, 1183, 1236, 1240, 1244, 1264, 1265, 1280, 1168], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 420, 565, 568, 605, 608, 638, 640, 644, 648, 746, 763, 884, 941, 996, 999, 1016, 1040, 1043, 1077, 1078, 1081, 1083, 1178, 1183, 1238, 1240, 1244, 1264, 1265, 1280, 1286], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 420, 565, 568, 387, 608, 638, 640, 644, 648, 746, 763, 884, 941, 996, 999, 1016, 785, 1043, 1077, 1078, 1081, 1083, 1178, 1183, 952, 1240, 1244, 1264, 1265, 1280, 1286], - [0, 6, 7, 10, 13, 19, 111, 112, 124, 157, 168, 256, 274, 323, 353, 353, 420, 565, 568, 602, 608, 638, 640, 644, 648, 746, 763, 884, 941, 996, 1037, 1016, 1039, 1043, 1077, 1078, 1081, 1083, 1234, 1183, 1236, 1240, 1244, 1264, 1265, 1280, 1286], - [0, 6, 7, 10, 13, 18, 111, 112, 124, 157, 168, 256, 273, 323, 352, 353, 9, 565, 568, 602, 608, 638, 640, 644, 622, 746, 763, 29, 941, 996, 999, 31, 1039, 1043, 1077, 1078, 1081, 1073, 1178, 1183, 1236, 1240, 1244, 1264, 1265, 1280, 1250], - [0, 6, 7, 10, 13, 19, 112, 112, 125, 157, 168, 256, 273, 323, 353, 353, 420, 565, 568, 602, 603, 638, 640, 644, 648, 746, 763, 884, 941, 996, 999, 1016, 1039, 1038, 1077, 1078, 1081, 1083, 1178, 1183, 1236, 1235, 1242, 1264, 1265, 1280, 1286], - [0, 6, 70, 10, 13, 18, 111, 112, 124, 157, 396, 507, 273, 323, 352, 353, 420, 565, 568, 602, 608, 638, 640, 635, 648, 746, 763, 884, 941, 996, 999, 1016, 1039, 1043, 1077, 1078, 1074, 1083, 1178, 1183, 1236, 1240, 1244, 1264, 1265, 1259, 1286], - [0, 101, 140, 143, 198, 278, 298, 309, 446, 470, 491, 529, 604, 679, 843, 919, 957, 1089, 1237], - [0, 2, 271, 801, 961, 1094, 1203], - [0, 271, 611, 779, 799, 801, 956, 961, 1047, 1094, 1177, 1185, 1203], - [0, 2, 3, 723, 973, 1010, 1126, 1172, 1286], - [0, 818, 823, 1000, 1033, 1097, 1135, 1199], - [0, 776, 773, 1067, 997, 1158, 1194, 1187], - [0, 156, 193, 225, 303, 334, 413, 425, 487, 506, 558, 566, 696, 720, 731, 748, 773, 776, 820, 857, 873, 933, 997, 1026, 1067, 1104, 1123, 1140, 1155, 1158, 1175, 1187, 1194, 1207], - [0, 487, 720, 820, 873, 933, 1104, 1175, 1207], - [0, 773, 997, 776, 1140, 1187, 1067, 1158, 1194], - [0, 156, 303, 334, 425, 506, 566, 748, 857], - [0, 193, 413, 731, 558, 696, 1026, 1123, 1155], - [0, 43, 80, 102, 146, 313, 335, 409, 555, 596, 878, 1114], - [0, 25, 144, 118, 286, 426, 386, 51, 590, 764, 764, 1084], - [0, 453, 498, 760, 789, 942, 971, 1063, 1121, 1226, 1228, 1279], - [0, 86, 91, 92, 151, 321, 328, 495, 737], - [0, 86, 145, 92, 254, 404, 412, 569, 761], - [0, 845, 1070, 1161, 1224], - [0, 850, 1091, 1169, 1222], - [0, 836, 1055, 1147, 1210], - [0, 252, 733, 845, 860, 863, 976, 1070, 1161, 1224], - [0, 252, 733, 850, 860, 863, 981, 1091, 1169, 1222], - [0, 252, 733, 836, 860, 863, 969, 1055, 1147, 1225], - [0, 836, 845, 860, 1055, 1070, 1091, 1147, 1161, 1169, 1210, 1222, 1224], - [0, 809, 1042, 1232, 1276], - [0, 385, 684, 895, 1036], - [0, 41, 69, 85, 114, 123, 149, 170, 171, 196, 261, 284, 310, 344, 347, 410, 427, 492, 548, 562, 599], - [0, 215, 358, 651, 724, 1007, 1216, 1278], - [0, 39, 106, 195, 381, 484, 677, 734, 853, 1003], - [0, 39, 106, 195, 381, 484, 297, 734, 384, 551], - [0, 368, 614, 732, 839, 902], - [0, 317, 614, 627, 744, 808], - [0, 453, 498, 760, 789, 942, 971, 1063, 1226, 1228, 1279], - [0, 559, 564, 709, 833, 960, 1072], - [0, 403, 403, 513, 694, 805, 945], - [0, 1, 5, 127, 801, 961, 1094, 1203], - [0, 571, 799, 950, 955, 1014, 1047, 1052, 1118, 1174], - [0, 486, 631, 887, 762, 887, 887, 887, 908, 951], - [0, 21, 27, 35, 62, 66, 67, 68, 129, 163, 164, 173, 174, 184, 213, 227, 228, 253, 258, 259, 262, 263, 264, 271, 277, 304, 306, 399, 428, 431, 434, 443, 509, 510, 518, 520, 527, 535, 536, 592, 598, 607, 634, 637, 641, 648, 669, 703, 733, 757, 829, 841, 846, 851, 854, 862, 872, 874, 882, 926, 927, 990, 1014, 1045, 1048, 1058, 1064, 1065, 1076, 1086, 1091, 1092, 1093, 1143, 1145, 1153, 1154, 1157, 1169, 1174, 1185, 1206, 1217, 1218, 1219, 1221, 1222, 1239, 1248, 1256, 1261, 1286], - [0, 285, 403, 519, 616, 730], - [0, 501, 556, 593, 672, 735, 769, 782, 816, 848, 875, 897, 968, 977, 1018, 1072, 1116], - [0, 501, 672, 799, 816, 897, 955, 956, 977, 1047, 1072, 1170, 1185], - [0, 499, 530, 553, 678, 714, 786, 842, 885, 963, 1012, 1046, 1087, 1130, 1180], - [0, 468, 600, 706, 796, 916, 1025, 1133], - [0, 68, 152, 210, 213, 217, 218, 283, 307, 379, 380, 451, 459, 463, 580, 583, 618, 666, 711, 822, 831, 865, 965, 970, 1002, 1051, 1156], - [0, 113, 280, 586, 752, 919], - [0, 665, 877, 967, 1032, 1102, 1189], - [0, 888, 1041, 1150, 1229, 1282, 1255], - [0, 665, 799, 877, 956, 967, 1032, 1047, 1102, 1185, 1189], - [0, 750, 1220], - [0, 646, 742, 915, 1024], - [0, 233, 395], - [0, 494, 504, 645, 861, 938, 1082, 1251, 1284], - [0, 100, 134, 363, 1270], - [0, 117, 296, 716, 1008, 1171], - [0, 269, 472, 668, 943, 1132, 1188, 1213, 1215, 1247], - [0, 528, 532, 871, 1061], - [0, 79, 331, 364, 458, 549, 680, 770, 847, 1188, 1215, 1247], - [0, 528, 621, 633, 864, 871], - [0, 532, 621, 871, 1061], - [0, 646, 742, 869, 1024], - [0, 131, 354, 447, 528, 633, 871], - [0, 742, 1245], - [0, 5, 503, 628, 742, 768, 905, 921, 1024, 1083, 1245, 1286], - [0, 528, 621, 871], - [0, 90, 95, 167, 207, 367, 532, 621, 633, 676, 871, 1163], - [0, 202, 333, 357, 439, 485, 531, 532, 621, 630, 633, 754, 871, 898], - [], - [0, 1, 4, 45, 46, 237, 242, 308, 374, 376, 382, 448, 545, 546, 547, 561, 659, 670, 775, 781, 795, 803, 810, 824, 832, 934, 944, 964, 1059, 1060, 1192], - [0, 1, 4, 37, 38, 162, 264, 378, 432, 550, 560, 610, 629, 649, 660, 673, 683, 707, 717, 729, 811, 855, 922, 974, 978], - [657, 738, 754, 780, 859, 992, 1001, 1162, 1196, 1241], - [1071, 1149, 788, 1149, 1214, 1249, 1001, 1120, 1166, 1209], - [889, 1004, 1005, 1014, 1080, 1118, 1144, 1174, 1177], - [668, 986, 1066, 1132, 1193], - [54, 71, 222, 348, 505, 661, 813, 908, 991], - [265, 312, 369, 433, 444, 579, 594, 615, 647, 674, 682, 771, 790, 797, 849, 923], - [531, 532, 554, 621, 630, 632, 753, 754, 871, 898, 1109, 1162, 1196, 1241], - [531, 532, 554, 621, 630, 632, 753, 754, 871, 898, 1109, 1120, 1166, 1209], - [531, 532, 554, 621, 630, 632, 753, 754, 871, 898, 1005, 1005, 1080, 1144], - [526, 532, 554, 621, 601, 632, 753, 708, 871, 792, 655, 655, 813, 908], - [531, 554, 630, 632, 753, 754, 898, 917, 994, 1030, 1096, 1109, 1142, 1162, 1186, 1196, 1241], - [531, 554, 630, 632, 753, 754, 898, 917, 994, 1030, 1096, 1120, 1142, 1120, 1186, 1166, 1209], - [531, 554, 630, 632, 753, 754, 898, 917, 994, 1030, 1096, 1005, 1142, 1005, 1186, 1080, 1144], - [0, 2, 657, 738, 754, 780, 859, 992], - [956, 994, 1014, 1030, 1096, 1118, 1142, 1174, 1177], - [271, 411, 423, 424, 429, 455, 460, 513, 587, 687, 688, 689, 690, 691, 692, 693, 694, 762, 772, 778, 783, 791, 794, 798, 800, 804, 805, 813, 881, 891, 894, 899, 906, 908, 984], - [0, 418, 531, 572, 657, 699, 738, 844, 859, 937, 992, 998], - [0, 418, 531, 904, 1071, 699, 1149, 844, 1214, 937, 1249, 998], - [0, 418, 531, 900, 1014, 699, 1174, 844, 1118, 937, 1286, 998], - [0, 5, 137, 223, 403, 513, 519, 587, 694, 805, 945] -]); - -export const emptySprite = sprites[0]; -export const emptySprite2 = sprites2[0]; - -export const defaultPalette = palettes[0]; -export const emojiPalette = palettes[1]; -export const fontPalette = palettes[2]; -export const fontSupporter1Palette = palettes[3]; -export const fontSupporter2Palette = palettes[4]; -export const fontSupporter3Palette = palettes[5]; -export const fontSmallPalette = palettes[6]; -export const fontSmallSupporter1Palette = palettes[7]; -export const fontSmallSupporter2Palette = palettes[8]; -export const fontSmallSupporter3Palette = palettes[9]; - -export const spriteSheets: SpriteSheet[] = [ - { - src: 'images/pony.png', - data: undefined, texture: undefined, sprites: sprites, isSingleChannel: false, palette: false - }, - { - src: 'images/pony2.png', srcA: 'images/pony2a.png', - data: undefined, texture: undefined, sprites: sprites2, isSingleChannel: false, palette: true - }, -]; - -export const normalSpriteSheet = spriteSheets[0]; -export const paletteSpriteSheet = spriteSheets[1]; - -export function createSprites(data: string): Sprite[] { - const sprites: Sprite[] = [ - { x: 0, y: 0, w: 0, h: 0, ox: 0, oy: 0, type: 0 }, - ]; - - let offset = 0; - const read = bitReaderCustom(() => { - const value = parseInt(data.substr(offset, 2), 16); - offset += 2; - return value; - }); - - while (offset < data.length) { - sprites.push({ - x: read(12), - y: read(12), - w: read(9), - h: read(9), - ox: read(8), - oy: read(8), - type: read(6), - }); - } - - return sprites; -} - -export function createFont(sprites: Sprite[], groups: [number, number[]][]) { - const chars: { code: number; sprite: Sprite; }[] = []; - - for (const [start, codes] of groups) { - for (let i = 0; i < codes.length; i++) { - if (codes[i]) { - chars.push({ code: start + i, sprite: sprites[codes[i]] }); - } - } - } - - return chars; -} - -export function createButton( - border: number, topLeft: number, top: number, topRight: number, left: number, bg: number, right: number, - bottomLeft: number, bottom: number, bottomRight: number -): SpriteBorder { - return { - border, - topLeft: sprites[topLeft], - top: sprites[top], - topRight: sprites[topRight], - left: sprites[left], - bg: sprites[bg], - right: sprites[right], - bottomLeft: sprites[bottomLeft], - bottom: sprites[bottom], - bottomRight: sprites[bottomRight] - }; -} - -export function mapSprites(frames: number[]) { - return frames.map(i => sprites[i]); -} - -export function mapSprites2(frames: number[]) { - return frames.map(i => sprites2[i]); -} - -export function createPalettes(colorsString: string, palettes: number[][]): Uint32Array[] { - const colors = colorsString.split(/ /g).map(parseSpriteColor); - - return palettes.map(palette => { - const result = new Uint32Array(palette.length); - - for (let i = 0; i < palette.length; i++) { - result[i] = colors[palette[i]] >>> 0; - } - - return result; - }); -} - -export function createColorPal(color: number, colors: number): ColorExtra { - return { color: sprites2[color], colors }; -} - -export function colorPal(colors: number) { - return (color: number) => createColorPal(color, colors); -} - -const colorPal3 = colorPal(3); -const colorPal5 = colorPal(5); -const colorPal7 = colorPal(7); -const colorPal9 = colorPal(9); -const colorPal11 = colorPal(11); -const colorPal13 = colorPal(13); -const colorPal17 = colorPal(17); - -export function getPalette(index: number) { - return palettes[index]; -} - -const emptyPalette = new Uint32Array(0); - -export function emptyColorPalette(): ColorExtra { - return { color: sprites2[0], palettes: [emptyPalette] }; -} - -export function createSpritesPalette(sprites: number[], paletteIndexes: number[]): TileSprites { - return { sprites: sprites.map(i => sprites2[i]), palettes: paletteIndexes.map(getPalette) }; -} - -export function createColorPalette(color: number, paletteIndexes: number[]): ColorExtra { - return { color: sprites2[color], palettes: paletteIndexes.map(getPalette) }; -} - -export function createColorExtraPal(color: number, colors: number, extra: number, paletteIndexes: number[]): ColorExtra { - return { color: sprites2[color], colors, extra: sprites2[extra], palettes: paletteIndexes.map(getPalette) }; -} - -export function createShadow(shadow: number): Shadow { - return { shadow: sprites2[shadow] }; -} - -export function createColorShadowPalette(color: number, shadow: number, paletteIndexes: number[]): ColorShadow { - return { color: sprites2[color], shadow: sprites2[shadow], palettes: paletteIndexes.map(getPalette) }; -} - -export function createNose(color: number, colors: number, mouth: number, fangs: number) { - return { color: sprites2[color], colors, mouth: sprites2[mouth], fangs: sprites2[fangs] }; -} - -export function createEye(base: number, irises: number[], shadow?: number, shine?: number): PonyEye { - return { base: sprites2[base], irises: mapSprites2(irises), shadow: sprites2[shadow || 0], shine: sprites2[shine || 0] }; -} - -export function createAnimation(frames: number[]) { - return { frames: mapSprites(frames) }; -} - -export function createAnimationPalette(frames: number[], palette: number) { - return { frames: mapSprites2(frames), palette: getPalette(palette) }; -} - -export function createAnimationShadow(frames: number[], shadow: number, palette: number) { - return { frames: mapSprites2(frames), shadow: sprites2[shadow], palette: getPalette(palette) }; -} - -export { - Sprite, SpriteBorder, PonyNose, PonyEye, ColorExtra, ColorExtraSets, - colorPal3, colorPal5, colorPal7, colorPal9, colorPal11, colorPal13, colorPal17 -}; -export const bubble = createButton(2, 1, 2, 3, 4, 5, 6, 7, 8, 9); -export const bubble2 = createButton(2, 10, 11, 12, 13, 14, 15, 16, 17, 18); -export const dirt_ice_heightmap = sprites[19]; -export const dirt_stone_cave_height_map = sprites[20]; -export const dirt_water_heightmap = sprites[21]; -export const firefly_light = sprites[22]; -export const grass = sprites[23]; -export const jacko_lantern_light = sprites[24]; -export const nipple = sprites[25]; -export const pumpkin_light = sprites[26]; -export const cat_light = createAnimation([27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43]); -export const lantern_light = createAnimation([44, 45, 46, 47, 48, 49, 50, 51]); -export const magic_light = createAnimation([52, 53, 54, 55, 56, 57]); -export const ghost1_hooves_light = createAnimation([0, 0, 0, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 0, 0, 0, 0]); -export const ghost1_light = createAnimation([98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 0, 0, 0, 0, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159]); -export const water_crystal_1_light = createAnimation([160, 161, 162, 163]); -export const magic2_light = createAnimation([164, 165, 166, 167, 168, 169]); -export const torch2_light = createAnimation([170, 171, 172, 173, 174, 175, 176]); -export const water_crystal_2_light = createAnimation([177, 178, 179, 180]); -export const water_crystal_3_light = createAnimation([181, 182, 183, 184]); -export const pixelRect = sprites[185]; -export const light1 = sprites[2038]; -export const light16 = sprites[2039]; -export const light24 = sprites[2040]; -export const light32 = sprites[2041]; -export const light6 = sprites[2042]; -export const light_crystals_1 = sprites[2043]; -export const light_crystals_10 = sprites[2044]; -export const light_crystals_2 = sprites[2045]; -export const light_crystals_3 = sprites[2046]; -export const light_crystals_4 = sprites[2047]; -export const light_crystals_5 = sprites[2048]; -export const light_crystals_6 = sprites[2049]; -export const light_crystals_7 = sprites[2050]; -export const light_crystals_8 = sprites[2051]; -export const light_crystals_9 = sprites[2052]; -export const light_crystals_cart_pile = sprites[2053]; -export const light_crystals_held = sprites[2054]; -export const light_crystal_lantern = sprites[2055]; -export const pixel = sprites[2056]; -export const eyeRight: PonyEyes = [ - undefined, - [createEye(2, [3, 4, 5, 6, 7, 8, 9, 10], 1, 11), createEye(13, [14, 15, 16, 17, 18, 19, 20, 21], 12, 22), createEye(24, [25, 26, 27, 28, 29, 30, 31, 32], 23, 33), createEye(35, [36, 37, 38, 39, 40, 41, 42, 43], 34, 44)], - [createEye(45, [46, 47, 48, 49, 50, 51, 52, 53], 54, 55), createEye(56, [57, 58, 59, 60, 61, 62, 63, 64], 65, 66), createEye(67, [68, 69, 70, 71, 72, 73, 74, 75], 76, 77), createEye(78, [79, 80, 81, 82, 83, 84, 85, 86], 87, 88)], - [createEye(89, [90, 91, 92, 93, 94, 95, 96, 97], 98, 99), createEye(100, [101, 102, 103, 104, 105, 106, 107, 108], 109, 110), createEye(111, [112, 113, 114, 115, 116, 117, 118, 119], 120, 121), createEye(122, [123, 124, 125, 126, 127, 128, 129, 130], 131, 132)], - [createEye(133, [134, 0, 135, 136, 0, 0, 0, 137], 138, 139), createEye(140, [141, 0, 142, 143, 0, 0, 0, 144], 145, 146), createEye(147, [148, 0, 149, 150, 0, 0, 0, 151], 152, 153), createEye(154, [155, 0, 156, 157, 0, 0, 0, 158], 159, 160)], - [createEye(161, [0, 0, 0, 0, 0, 0, 0, 0], 162, 163), createEye(164, [0, 0, 0, 0, 0, 0, 0, 0], 165, 166), createEye(167, [0, 0, 0, 0, 0, 0, 0, 0], 168, 169), createEye(170, [0, 0, 0, 0, 0, 0, 0, 0], 171, 172)], - [createEye(173, [0, 0, 0, 0, 0, 0, 0, 0], 174, 175), createEye(176, [0, 0, 0, 0, 0, 0, 0, 0], 177, 178), createEye(179, [0, 0, 0, 0, 0, 0, 0, 0], 180, 181), createEye(182, [0, 0, 0, 0, 0, 0, 0, 0], 183, 184)], - [createEye(185, [186, 187, 188, 189, 190, 191, 192, 193], 194, 195), createEye(196, [197, 198, 199, 200, 201, 202, 203, 204], 205, 206), createEye(207, [208, 209, 210, 211, 212, 213, 214, 215], 216, 217), createEye(218, [219, 220, 221, 222, 223, 224, 225, 226], 227, 228)], - [createEye(229, [230, 231, 232, 233, 234, 235, 236, 237], 238, 239), createEye(240, [241, 242, 243, 244, 245, 246, 247, 248], 249, 250), createEye(251, [252, 253, 254, 255, 256, 257, 258, 259], 260, 261), createEye(262, [263, 264, 265, 266, 267, 268, 269, 270], 271, 272)], - [createEye(273, [274, 0, 275, 276, 0, 0, 0, 277], 278, 279), createEye(280, [281, 0, 282, 283, 0, 0, 0, 284], 285, 286), createEye(287, [288, 0, 289, 290, 0, 0, 0, 291], 292, 293), createEye(294, [295, 0, 296, 297, 0, 0, 0, 298], 299, 300)], - [createEye(301, [0, 0, 0, 0, 0, 0, 0, 0], 302, 303), createEye(304, [0, 0, 0, 0, 0, 0, 0, 0], 305, 306), createEye(307, [0, 0, 0, 0, 0, 0, 0, 0], 308, 309), createEye(310, [0, 0, 0, 0, 0, 0, 0, 0], 311, 312)], - [createEye(314, [0, 0, 0, 0, 0, 0, 0, 0], 313, 315), createEye(317, [0, 0, 0, 0, 0, 0, 0, 0], 316, 318), createEye(320, [0, 0, 0, 0, 0, 0, 0, 0], 319, 321), createEye(323, [0, 0, 0, 0, 0, 0, 0, 0], 322, 324)], - [createEye(326, [0, 0, 0, 0, 0, 0, 0, 0], 325, 327), createEye(329, [0, 0, 0, 0, 0, 0, 0, 0], 328, 330), createEye(332, [0, 0, 0, 0, 0, 0, 0, 0], 331, 333), createEye(335, [0, 0, 0, 0, 0, 0, 0, 0], 334, 336)], - [createEye(338, [0, 0, 0, 0, 0, 0, 0, 0], 337, 339), createEye(341, [0, 0, 0, 0, 0, 0, 0, 0], 340, 342), createEye(344, [0, 0, 0, 0, 0, 0, 0, 0], 343, 345), createEye(347, [0, 0, 0, 0, 0, 0, 0, 0], 346, 348)], - [createEye(350, [0, 0, 0, 0, 0, 0, 0, 0], 349, 351), createEye(353, [0, 0, 0, 0, 0, 0, 0, 0], 352, 354), createEye(356, [0, 0, 0, 0, 0, 0, 0, 0], 355, 357), createEye(359, [0, 0, 0, 0, 0, 0, 0, 0], 358, 360)], - [createEye(361, [362, 363, 364, 365, 366, 367, 368, 369], 370, 371), createEye(372, [373, 374, 375, 376, 377, 378, 379, 380], 381, 382), createEye(383, [384, 385, 386, 387, 388, 389, 390, 391], 392, 393), createEye(394, [395, 396, 397, 398, 399, 400, 401, 402], 403, 404)], - [createEye(405, [406, 407, 408, 409, 410, 411, 412, 413], 414, 415), createEye(416, [417, 418, 419, 420, 421, 422, 423, 424], 425, 426), createEye(427, [428, 429, 430, 431, 432, 433, 434, 435], 436, 437), createEye(438, [439, 440, 441, 442, 443, 444, 445, 446], 447, 448)], - [createEye(449, [450, 451, 452, 453, 454, 0, 455, 456], 457, 458), createEye(459, [460, 461, 462, 463, 464, 0, 465, 466], 467, 468), createEye(469, [470, 471, 472, 473, 474, 0, 475, 476], 477, 478), createEye(479, [480, 481, 482, 483, 484, 0, 485, 486], 487, 488)], - [createEye(489, [490, 0, 491, 492, 0, 0, 0, 493], 494, 495), createEye(496, [497, 0, 498, 499, 0, 0, 0, 500], 501, 502), createEye(503, [504, 0, 505, 506, 0, 0, 0, 507], 508, 509), createEye(510, [511, 0, 512, 513, 0, 0, 0, 514], 515, 516)], - [createEye(517, [518, 519, 520, 521, 522, 523, 524, 525], 526, 527), createEye(528, [529, 530, 531, 532, 533, 534, 535, 536], 537, 538), createEye(539, [540, 541, 542, 543, 544, 545, 546, 547], 548, 549), createEye(550, [551, 552, 553, 554, 555, 556, 557, 558], 559, 560)], - [createEye(561, [562, 0, 563, 564, 0, 565, 0, 566], 567, 568), createEye(569, [570, 0, 571, 572, 0, 573, 0, 574], 575, 576), createEye(577, [578, 0, 579, 580, 0, 581, 0, 582], 583, 584), createEye(585, [586, 0, 587, 588, 0, 589, 0, 590], 591, 592)], - [createEye(594, [0, 0, 0, 0, 0, 0, 0, 0], 593, 595), createEye(597, [0, 0, 0, 0, 0, 0, 0, 0], 596, 598), createEye(600, [0, 0, 0, 0, 0, 0, 0, 0], 599, 601), createEye(603, [0, 0, 0, 0, 0, 0, 0, 0], 602, 604)], - [createEye(606, [0, 0, 0, 0, 0, 0, 0, 0], 605, 0), createEye(608, [0, 0, 0, 0, 0, 0, 0, 0], 607, 0), createEye(610, [0, 0, 0, 0, 0, 0, 0, 0], 609, 0), createEye(612, [0, 0, 0, 0, 0, 0, 0, 0], 611, 0)], - [createEye(614, [0, 0, 0, 0, 0, 0, 0, 0], 613, 0), createEye(616, [0, 0, 0, 0, 0, 0, 0, 0], 615, 0), createEye(618, [0, 0, 0, 0, 0, 0, 0, 0], 617, 0), createEye(620, [0, 0, 0, 0, 0, 0, 0, 0], 619, 0)], - [createEye(622, [0, 0, 0, 0, 0, 0, 0, 0], 621, 0), createEye(624, [0, 0, 0, 0, 0, 0, 0, 0], 623, 0), createEye(626, [0, 0, 0, 0, 0, 0, 0, 0], 625, 0), createEye(628, [0, 0, 0, 0, 0, 0, 0, 0], 627, 0)] -]; -export const eyeLeft: PonyEyes = [ - undefined, - [createEye(630, [631, 632, 633, 634, 635, 636, 637, 638], 629, 639), createEye(641, [642, 643, 644, 645, 646, 647, 648, 649], 640, 650), createEye(652, [653, 654, 655, 656, 657, 658, 659, 660], 651, 661), createEye(663, [664, 665, 666, 667, 668, 669, 670, 671], 662, 672)], - [createEye(673, [674, 675, 676, 677, 678, 679, 680, 681], 682, 683), createEye(684, [685, 686, 687, 688, 689, 690, 691, 692], 693, 694), createEye(695, [696, 697, 698, 699, 700, 701, 702, 703], 704, 705), createEye(706, [707, 708, 709, 710, 711, 712, 713, 714], 715, 716)], - [createEye(717, [718, 719, 720, 721, 722, 723, 724, 725], 726, 727), createEye(728, [729, 730, 731, 732, 733, 734, 735, 736], 737, 738), createEye(739, [740, 741, 742, 743, 744, 745, 746, 747], 748, 749), createEye(750, [751, 752, 753, 754, 755, 756, 757, 758], 759, 760)], - [createEye(761, [762, 0, 763, 764, 0, 0, 0, 765], 766, 767), createEye(768, [769, 0, 770, 771, 0, 0, 0, 772], 773, 774), createEye(775, [776, 0, 777, 778, 0, 0, 0, 779], 780, 781), createEye(782, [783, 0, 784, 785, 0, 0, 0, 786], 787, 788)], - [createEye(789, [0, 0, 0, 0, 0, 0, 0, 0], 790, 791), createEye(792, [0, 0, 0, 0, 0, 0, 0, 0], 793, 794), createEye(795, [0, 0, 0, 0, 0, 0, 0, 0], 796, 797), createEye(798, [0, 0, 0, 0, 0, 0, 0, 0], 799, 800)], - [createEye(801, [0, 0, 0, 0, 0, 0, 0, 0], 802, 803), createEye(804, [0, 0, 0, 0, 0, 0, 0, 0], 805, 806), createEye(807, [0, 0, 0, 0, 0, 0, 0, 0], 808, 809), createEye(810, [0, 0, 0, 0, 0, 0, 0, 0], 811, 812)], - [createEye(813, [814, 815, 816, 817, 818, 819, 820, 821], 822, 823), createEye(824, [825, 826, 827, 828, 829, 830, 831, 832], 833, 834), createEye(835, [836, 837, 838, 839, 840, 841, 842, 843], 844, 845), createEye(846, [847, 848, 849, 850, 851, 852, 853, 854], 855, 856)], - [createEye(857, [858, 859, 860, 861, 862, 863, 864, 865], 866, 867), createEye(868, [869, 870, 871, 872, 873, 874, 875, 876], 877, 878), createEye(879, [880, 881, 882, 883, 884, 885, 886, 887], 888, 889), createEye(890, [891, 892, 893, 894, 895, 896, 897, 898], 899, 900)], - [createEye(901, [902, 0, 903, 904, 0, 0, 0, 905], 906, 907), createEye(908, [909, 0, 910, 911, 0, 0, 0, 912], 913, 914), createEye(915, [916, 0, 917, 918, 0, 0, 0, 919], 920, 921), createEye(922, [923, 0, 924, 925, 0, 0, 0, 926], 927, 928)], - [createEye(929, [0, 0, 0, 0, 0, 0, 0, 0], 930, 931), createEye(932, [0, 0, 0, 0, 0, 0, 0, 0], 933, 934), createEye(935, [0, 0, 0, 0, 0, 0, 0, 0], 936, 937), createEye(938, [0, 0, 0, 0, 0, 0, 0, 0], 939, 940)], - [createEye(942, [0, 0, 0, 0, 0, 0, 0, 0], 941, 943), createEye(945, [0, 0, 0, 0, 0, 0, 0, 0], 944, 946), createEye(948, [0, 0, 0, 0, 0, 0, 0, 0], 947, 949), createEye(951, [0, 0, 0, 0, 0, 0, 0, 0], 950, 952)], - [createEye(954, [0, 0, 0, 0, 0, 0, 0, 0], 953, 955), createEye(957, [0, 0, 0, 0, 0, 0, 0, 0], 956, 958), createEye(960, [0, 0, 0, 0, 0, 0, 0, 0], 959, 961), createEye(963, [0, 0, 0, 0, 0, 0, 0, 0], 962, 964)], - [createEye(966, [0, 0, 0, 0, 0, 0, 0, 0], 965, 967), createEye(969, [0, 0, 0, 0, 0, 0, 0, 0], 968, 970), createEye(972, [0, 0, 0, 0, 0, 0, 0, 0], 971, 973), createEye(975, [0, 0, 0, 0, 0, 0, 0, 0], 974, 976)], - [createEye(978, [0, 0, 0, 0, 0, 0, 0, 0], 977, 979), createEye(981, [0, 0, 0, 0, 0, 0, 0, 0], 980, 982), createEye(984, [0, 0, 0, 0, 0, 0, 0, 0], 983, 985), createEye(987, [0, 0, 0, 0, 0, 0, 0, 0], 986, 988)], - [createEye(989, [990, 991, 992, 993, 994, 995, 996, 997], 998, 999), createEye(1000, [1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008], 1009, 1010), createEye(1011, [1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019], 1020, 1021), createEye(1022, [1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030], 1031, 1032)], - [createEye(1033, [1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041], 1042, 1043), createEye(1044, [1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052], 1053, 1054), createEye(1055, [1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063], 1064, 1065), createEye(1066, [1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074], 1075, 1076)], - [createEye(1077, [1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085], 1086, 1087), createEye(1088, [1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096], 1097, 1098), createEye(1099, [1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107], 1108, 1109), createEye(1110, [1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118], 1119, 1120)], - [createEye(1121, [1122, 0, 1123, 1124, 0, 0, 0, 1125], 1126, 1127), createEye(1128, [1129, 0, 1130, 1131, 0, 0, 0, 1132], 1133, 1134), createEye(1135, [1136, 0, 1137, 1138, 0, 0, 0, 1139], 1140, 1141), createEye(1142, [1143, 0, 1144, 1145, 0, 0, 0, 1146], 1147, 1148)], - [createEye(1149, [1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157], 1158, 1159), createEye(1160, [1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168], 1169, 1170), createEye(1171, [1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179], 1180, 1181), createEye(1182, [1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190], 1191, 1192)], - [createEye(1193, [1194, 1195, 1196, 1197, 1198, 1199, 0, 1200], 1201, 1202), createEye(1203, [1204, 1205, 1206, 1207, 1208, 1209, 0, 1210], 1211, 1212), createEye(1213, [1214, 1215, 1216, 1217, 1218, 1219, 0, 1220], 1221, 1222), createEye(1223, [1224, 1225, 1226, 1227, 1228, 1229, 0, 1230], 1231, 1232)], - [createEye(1234, [0, 0, 0, 0, 0, 0, 0, 0], 1233, 1235), createEye(1237, [0, 0, 0, 0, 0, 0, 0, 0], 1236, 1238), createEye(1240, [0, 0, 0, 0, 0, 0, 0, 0], 1239, 1241), createEye(1243, [0, 0, 0, 0, 0, 0, 0, 0], 1242, 1244)], - [createEye(1246, [0, 0, 0, 0, 0, 0, 0, 0], 1245, 0), createEye(1248, [0, 0, 0, 0, 0, 0, 0, 0], 1247, 0), createEye(1250, [0, 0, 0, 0, 0, 0, 0, 0], 1249, 0), createEye(1252, [0, 0, 0, 0, 0, 0, 0, 0], 1251, 0)], - [createEye(1254, [0, 0, 0, 0, 0, 0, 0, 0], 1253, 1255), createEye(1257, [0, 0, 0, 0, 0, 0, 0, 0], 1256, 1258), createEye(1260, [0, 0, 0, 0, 0, 0, 0, 0], 1259, 1261), createEye(1263, [0, 0, 0, 0, 0, 0, 0, 0], 1262, 1264)], - [createEye(1266, [0, 0, 0, 0, 0, 0, 0, 0], 1265, 0), createEye(1268, [0, 0, 0, 0, 0, 0, 0, 0], 1267, 0), createEye(1270, [0, 0, 0, 0, 0, 0, 0, 0], 1269, 0), createEye(1272, [0, 0, 0, 0, 0, 0, 0, 0], 1271, 0)] -]; -export const noses: PonyNose[][][] = [ - [[createNose(1274, 3, 0, 1273)], [createNose(1276, 3, 0, 1275)], [createNose(1278, 5, 0, 1277)]], - [[createNose(1280, 3, 0, 1279)], [createNose(1282, 3, 0, 1281)], [createNose(1284, 5, 0, 1283)]], - [[createNose(1286, 3, 0, 1285)], [createNose(1288, 3, 0, 1287)], [createNose(1290, 5, 0, 1289)]], - [[createNose(1292, 3, 0, 1291)], [createNose(1294, 3, 0, 1293)], [createNose(1296, 5, 0, 1295)]], - [[createNose(1299, 3, 1298, 1297)], [createNose(1302, 3, 1301, 1300)], [createNose(1305, 5, 1304, 1303)]], - [[createNose(1308, 3, 1307, 1306)], [createNose(1311, 3, 1310, 1309)], [createNose(1314, 5, 1313, 1312)]], - [[createNose(1316, 3, 0, 1315)], [createNose(1318, 3, 0, 1317)], [createNose(1320, 5, 0, 1319)]], - [[createNose(1322, 3, 0, 1321)], [createNose(1324, 3, 0, 1323)], [createNose(1326, 5, 0, 1325)]], - [[createNose(1329, 3, 1328, 1327)], [createNose(1332, 3, 1331, 1330)], [createNose(1335, 5, 1334, 1333)]], - [[createNose(1338, 3, 1337, 1336)], [createNose(1341, 3, 1340, 1339)], [createNose(1344, 5, 1343, 1342)]], - [[createNose(1347, 3, 1346, 1345)], [createNose(1350, 3, 1349, 1348)], [createNose(1353, 5, 1352, 1351)]], - [[createNose(1356, 3, 1355, 1354)], [createNose(1359, 3, 1358, 1357)], [createNose(1362, 5, 1361, 1360)]], - [[createNose(1365, 3, 1364, 1363)], [createNose(1368, 3, 1367, 1366)], [createNose(1371, 5, 1370, 1369)]], - [[createNose(1372, 3, 0, 0)], [createNose(1373, 3, 0, 0)], [createNose(1374, 5, 0, 0)]], - [[createNose(1377, 3, 1376, 1375)], [createNose(1380, 3, 1379, 1378)], [createNose(1383, 5, 1382, 1381)]], - [[createNose(1386, 3, 1385, 1384)], [createNose(1389, 3, 1388, 1387)], [createNose(1392, 5, 1391, 1390)]], - [[createNose(1395, 3, 1394, 1393)], [createNose(1398, 3, 1397, 1396)], [createNose(1401, 5, 1400, 1399)]], - [[createNose(1402, 3, 0, 0)], [createNose(1403, 3, 0, 0)], [createNose(1404, 5, 0, 0)]], - [[createNose(1407, 3, 1406, 1405)], [createNose(1410, 3, 1409, 1408)], [createNose(1413, 5, 1412, 1411)]], - [[createNose(1416, 3, 1415, 1414)], [createNose(1419, 3, 1418, 1417)], [createNose(1422, 5, 1421, 1420)]], - [[createNose(1425, 3, 1424, 1423)], [createNose(1428, 3, 1427, 1426)], [createNose(1431, 5, 1430, 1429)]], - [[createNose(1434, 3, 1433, 1432)], [createNose(1437, 3, 1436, 1435)], [createNose(1440, 5, 1439, 1438)]], - [[createNose(1443, 3, 1442, 1441)], [createNose(1446, 3, 1445, 1444)], [createNose(1449, 5, 1448, 1447)]], - [[createNose(1452, 3, 1451, 1450)], [createNose(1455, 3, 1454, 1453)], [createNose(1458, 5, 1457, 1456)]], - [[createNose(1461, 3, 1460, 1459)], [createNose(1464, 3, 1463, 1462)], [createNose(1467, 5, 1466, 1465)]], - [[createNose(1470, 3, 1469, 1468)], [createNose(1473, 3, 1472, 1471)], [createNose(1476, 5, 1475, 1474)]] -]; -export const blush = sprites2[1477]; -export const ponyShadows = [ - sprites2[1478], - sprites2[1479], - sprites2[1480], - sprites2[1481], - sprites2[1482] -]; -export const ponySelections = [ - sprites2[1483], - sprites2[1484], - sprites2[1485], - sprites2[1486], - sprites2[1487] -]; -export const cms = sprites2[1488]; -export const cmsFlip = sprites2[1489]; -export const frontLegs: AnimatedSprites = [ - undefined, - [[colorPal3(1490)]], - [[colorPal3(1491)]], - [[colorPal3(1492)]], - [[colorPal3(1493)]], - [[colorPal3(1494)]], - [[colorPal3(1495)]], - [[colorPal3(1496)]], - [[colorPal3(1497)]], - [[colorPal3(1498)]], - [[colorPal3(1499)]], - [[colorPal3(1500)]], - [[colorPal3(1501)]], - [[colorPal3(1502)]], - [[colorPal3(1503)]], - [[colorPal3(1504)]], - [[colorPal3(1505)]], - [[colorPal3(1506)]], - [[colorPal3(1507)]], - [[colorPal3(1508)]], - [[colorPal3(1509)]], - [[colorPal3(1510)]], - [[colorPal3(1511)]], - [[colorPal3(1512)]], - [[colorPal3(1513)]], - [[colorPal3(1514)]], - [[colorPal3(1515)]], - [[colorPal3(1516)]], - [[colorPal3(1517)]], - [[colorPal3(1518)]], - [[colorPal3(1519)]], - [[colorPal3(1520)]], - [[colorPal3(1521)]], - [[colorPal3(1522)]], - [[colorPal3(1523)]], - [[colorPal3(1524)]], - [[colorPal3(1525)]], - [[colorPal3(1526)]], - [[colorPal3(1527)]], - [[colorPal3(1528)]] -]; -export const frontLegHooves: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(1529)], [colorPal3(1530)], [colorPal5(1531)], [colorPal5(1532)], [colorPal5(1533)], [colorPal3(1534)]], - [undefined, [colorPal3(1535)], [colorPal3(1536)], [colorPal5(1537)], [colorPal5(1538)], [colorPal5(1539)], [colorPal3(1540)]], - [undefined, [colorPal3(1541)], [colorPal3(1542)], [colorPal5(1543)], [colorPal5(1544)], [colorPal5(1545)], [colorPal3(1546)]], - [undefined, [colorPal3(1547)], [colorPal3(1548)], [colorPal5(1549)], [colorPal5(1550)], [colorPal5(1551)], [colorPal3(1552)]], - [undefined, [colorPal3(1553)], [colorPal3(1554)], [colorPal5(1555)], [colorPal5(1556)], [colorPal5(1557)], [colorPal3(1558)]], - [undefined, [colorPal3(1559)], [colorPal3(1560)], [colorPal5(1561)], [colorPal5(1562)], [colorPal5(1563)], [colorPal3(1564)]], - [undefined, [colorPal3(1565)], [colorPal3(1566)], [colorPal5(1567)], [colorPal5(1568)], [colorPal5(1569)], [colorPal3(1570)]], - [undefined, [colorPal3(1571)], [colorPal3(1572)], [colorPal5(1573)], [colorPal5(1574)], [colorPal5(1575)], [colorPal3(1576)]], - [undefined, [colorPal3(1577)], [colorPal3(1578)], [colorPal5(1579)], [colorPal5(1580)], [colorPal5(1581)], [colorPal3(1582)]], - [undefined, [colorPal3(1583)], [colorPal3(1584)], [colorPal5(1585)], [colorPal5(1586)], [colorPal5(1587)], [colorPal3(1588)]], - [undefined, [colorPal3(1589)], [colorPal3(1590)], [colorPal5(1591)], [colorPal5(1592)], [colorPal5(1593)], [colorPal3(1594)]], - [undefined, [colorPal3(1595)], [colorPal3(1596)], [colorPal5(1597)], [colorPal5(1598)], [colorPal5(1599)], [colorPal3(1600)]], - [undefined, [colorPal3(1601)], [colorPal3(1602)], [colorPal5(1603)], [colorPal5(1604)], [colorPal5(1605)], [colorPal3(1606)]], - [undefined, [colorPal3(1607)], [colorPal3(1608)], [colorPal5(1609)], [colorPal5(1610)], [colorPal5(1611)], [colorPal3(1612)]], - [undefined, [colorPal3(1613)], [colorPal3(1614)], [colorPal5(1615)], [colorPal5(1616)], [colorPal5(1617)], [colorPal3(1618)]], - [undefined, [colorPal3(1619)], [colorPal3(1620)], [colorPal5(1621)], [colorPal5(1622)], [colorPal5(1623)], [colorPal3(1624)]], - [undefined, [colorPal3(1625)], [colorPal3(1626)], [colorPal5(1627)], [colorPal5(1628)], [colorPal5(1629)], [colorPal3(1630)]], - [undefined, [colorPal3(1631)], [colorPal3(1632)], [colorPal5(1633)], [colorPal5(1634)], [colorPal5(1635)], [colorPal3(1636)]], - [undefined, [colorPal3(1637)], [colorPal3(1638)], [colorPal5(1639)], [colorPal5(1640)], [colorPal5(1641)], [colorPal3(1642)]], - [undefined, [colorPal3(1643)], [colorPal3(1644)], [colorPal5(1645)], [colorPal5(1646)], [colorPal5(1647)], [colorPal3(1648)]], - [undefined, [colorPal3(1649)], [colorPal3(1650)], [colorPal5(1651)], [colorPal5(1652)], [colorPal5(1653)], [colorPal3(1654)]], - [undefined, [colorPal3(1655)], [colorPal3(1656)], [colorPal5(1657)], [colorPal5(1658)], [colorPal5(1659)], [colorPal3(1660)]], - [undefined, [colorPal3(1661)], [colorPal3(1662)], [colorPal5(1663)], [colorPal5(1664)], [colorPal5(1665)], [colorPal3(1666)]], - [undefined, [colorPal3(1667)], [colorPal3(1668)], [colorPal5(1669)], [colorPal5(1670)], [colorPal5(1671)], [colorPal3(1672)]], - [undefined, [colorPal3(1673)], [colorPal3(1674)], [colorPal5(1675)], [colorPal5(1676)], [colorPal5(1677)], [colorPal3(1678)]], - [undefined, [colorPal3(1679)], [colorPal3(1680)], [colorPal5(1681)], [colorPal5(1682)], [colorPal5(1683)], [colorPal3(1684)]], - [undefined, [colorPal3(1685)], [colorPal3(1686)], [colorPal5(1687)], [colorPal5(1688)], [colorPal5(1689)], [colorPal3(1690)]], - [undefined, [colorPal3(1691)], [colorPal3(1692)], [colorPal5(1693)], [colorPal5(1694)], [colorPal5(1695)], [colorPal3(1696)]], - [undefined, [colorPal3(1697)], [colorPal3(1698)], [colorPal5(1699)], [colorPal5(1700)], [colorPal5(1701)], [colorPal3(1702)]], - [undefined, [colorPal3(1703)], [colorPal3(1704)], [colorPal5(1705)], [colorPal5(1706)], [colorPal5(1707)], [colorPal3(1708)]], - [undefined, [colorPal3(1709)], [colorPal3(1710)], [colorPal5(1711)], [colorPal5(1712)], [colorPal5(1713)], [colorPal3(1714)]], - [undefined, [colorPal3(1715)], [colorPal3(1716)], [colorPal5(1717)], [colorPal5(1718)], [colorPal5(1719)], [colorPal3(1720)]], - [undefined, [colorPal3(1721)], [colorPal3(1722)], [colorPal5(1723)], [colorPal5(1724)], [colorPal5(1725)], [colorPal3(1726)]], - [undefined, [colorPal3(1727)], [colorPal3(1728)], [colorPal5(1729)], [colorPal5(1730)], [colorPal5(1731)], [colorPal3(1732)]], - [undefined, [colorPal3(1733)], [colorPal3(1734)], [colorPal5(1735)], [colorPal5(1736)], [colorPal5(1737)], [colorPal3(1738)]], - [undefined, [colorPal3(1739)], [colorPal3(1740)], [colorPal5(1741)], [colorPal5(1742)], [colorPal5(1743)], [colorPal3(1744)]], - [undefined, [colorPal3(1745)], [colorPal3(1746)], [colorPal5(1747)], [colorPal5(1748)], [colorPal5(1749)], [colorPal3(1750)]], - [undefined, [colorPal3(1751)], [colorPal3(1752)], [colorPal5(1753)], [colorPal5(1754)], [colorPal5(1755)], [colorPal3(1756)]], - [undefined, [colorPal3(1757)], [colorPal3(1758)], [colorPal5(1759)], [colorPal5(1760)], [colorPal5(1761)], [colorPal3(1762)]] -]; -export const frontLegAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(1763), colorPal13(1764), colorPal13(1765), colorPal13(1766), colorPal13(1767)]], - [undefined, [colorPal3(1768), colorPal13(1769), colorPal13(1770), colorPal13(1771), colorPal13(1772)]], - [undefined, [colorPal3(1773), colorPal13(1774), colorPal13(1775), colorPal13(1776), colorPal13(1777)]], - [undefined, [colorPal3(1778), colorPal13(1779), colorPal13(1780), colorPal13(1781), colorPal13(1782)]], - [undefined, [colorPal3(1783), colorPal13(1784), colorPal13(1785), colorPal13(1786), colorPal13(1787)]], - [undefined, [colorPal3(1788), colorPal13(1789), colorPal13(1790), colorPal13(1791), colorPal13(1792)]], - [undefined, [colorPal3(1793), colorPal13(1794), colorPal13(1795), colorPal13(1796), colorPal13(1797)]], - [undefined, [colorPal3(1798), colorPal13(1799), colorPal13(1800), colorPal13(1801), colorPal13(1802)]], - [undefined, [colorPal3(1803), colorPal13(1804), colorPal13(1805), colorPal13(1806), colorPal13(1807)]], - [undefined, [colorPal3(1808), colorPal13(1809), colorPal13(1810), colorPal13(1811), colorPal13(1812)]], - [undefined, [colorPal3(1813), colorPal13(1814), colorPal13(1815), colorPal13(1816), colorPal13(1817)]], - [undefined, [colorPal3(1818), colorPal13(1819), colorPal13(1820), colorPal13(1821), colorPal13(1822)]], - [undefined, [colorPal3(1823), colorPal13(1824), colorPal13(1825), colorPal13(1826), colorPal13(1827)]], - [undefined, [colorPal3(1828), colorPal13(1829), colorPal13(1830), colorPal13(1831), colorPal13(1832)]], - [undefined, [colorPal3(1833), colorPal13(1834), colorPal13(1835), colorPal13(1836), colorPal13(1837)]], - [undefined, [colorPal3(1838), colorPal13(1839), colorPal13(1840), colorPal13(1841), colorPal13(1842)]], - [undefined, [colorPal3(1843), colorPal13(1844), colorPal13(1845), colorPal13(1846), colorPal13(1847)]], - [undefined, [colorPal3(1848), colorPal13(1849), colorPal13(1850), colorPal13(1851), colorPal13(1852)]], - [undefined, [colorPal3(1853), colorPal13(1854), colorPal13(1855), colorPal13(1856), colorPal13(1857)]], - [undefined, [colorPal3(1858), colorPal13(1859), colorPal13(1860), colorPal13(1861), colorPal13(1862)]], - [undefined, [colorPal3(1863), colorPal13(1864), colorPal13(1865), colorPal13(1866), colorPal13(1867)]], - [undefined, [colorPal3(1868), colorPal13(1869), colorPal13(1870), colorPal13(1871), colorPal13(1872)]], - [undefined, [colorPal3(1873), colorPal13(1874), colorPal13(1875), colorPal13(1876), colorPal13(1877)]], - [undefined, [colorPal3(1878), colorPal13(1879), colorPal13(1880), colorPal13(1881), colorPal13(1882)]], - [undefined, [colorPal3(1883), colorPal13(1884), colorPal13(1885), colorPal13(1886), colorPal13(1887)]], - [undefined, [colorPal3(1888), colorPal13(1889), colorPal13(1890), colorPal13(1891), colorPal13(1892)]], - [undefined, [colorPal3(1893), colorPal13(1894), colorPal13(1895), colorPal13(1896), colorPal13(1897)]], - [undefined, [colorPal3(1898), colorPal13(1899), colorPal13(1900), colorPal13(1901), colorPal13(1902)]], - [undefined, [colorPal3(1903), colorPal13(1904), colorPal13(1905), colorPal13(1906), colorPal13(1907)]], - [undefined, [colorPal3(1908), colorPal13(1909), colorPal13(1910), colorPal13(1911), colorPal13(1912)]], - [undefined, [colorPal3(1913), colorPal13(1914), colorPal13(1915), colorPal13(1916), colorPal13(1917)]], - [undefined, [colorPal3(1918), colorPal13(1919), colorPal13(1920), colorPal13(1921), colorPal13(1922)]], - [undefined, [colorPal3(1923), colorPal13(1924), colorPal13(1925), colorPal13(1926), colorPal13(1927)]], - [undefined, [colorPal3(1928), colorPal13(1929), colorPal13(1930), colorPal13(1931), colorPal13(1932)]], - [undefined, [colorPal3(1933), colorPal13(1934), colorPal13(1935), colorPal13(1936), colorPal13(1937)]], - [undefined, [colorPal3(1938), colorPal13(1939), colorPal13(1940), colorPal13(1941), colorPal13(1942)]], - [undefined, [colorPal3(1943), colorPal13(1944), colorPal13(1945), colorPal13(1946), colorPal13(1947)]], - [undefined, [colorPal3(1948), colorPal13(1949), colorPal13(1950), colorPal13(1951), colorPal13(1952)]], - [undefined, [colorPal3(1953), colorPal13(1954), colorPal13(1955), colorPal13(1956), colorPal13(1957)]] -]; -export const frontLegSleeves: AnimatedSprites = [ - undefined, - [[colorPal3(1958), colorPal13(1959), colorPal5(1960), colorPal5(1961), colorPal5(1962), colorPal7(1963), colorPal11(1964)], [colorPal3(1965), colorPal9(1966), colorPal11(1967)], [colorPal3(1968), colorPal5(1969)], [colorPal3(1970), colorPal5(1971)]], - [[colorPal3(1972), colorPal13(1973), colorPal5(1974), colorPal5(1975), colorPal5(1976), colorPal7(1977), colorPal11(1978)], [colorPal3(1979), colorPal9(1980), colorPal11(1981)], [colorPal3(1982), colorPal5(1983)], [colorPal3(1984), colorPal5(1985)]], - [[colorPal3(1986), colorPal13(1987), colorPal5(1988), colorPal5(1989), colorPal5(1990), colorPal7(1991), colorPal11(1992)], [colorPal3(1993), colorPal9(1994), colorPal11(1995)], [colorPal3(1996), colorPal5(1997)], [colorPal3(1998), colorPal5(1999)]], - [[colorPal3(2000), colorPal13(2001), colorPal5(2002), colorPal5(2003), colorPal5(2004), colorPal7(2005), colorPal11(2006)], [colorPal3(2007), colorPal9(2008), colorPal11(2009)], [colorPal3(2010), colorPal5(2011)], [colorPal3(2012), colorPal5(2013)]], - [[colorPal3(2014), colorPal13(2015), colorPal5(2016), colorPal5(2017), colorPal5(2018), colorPal7(2019), colorPal11(2020)], [colorPal3(2021), colorPal9(2022), colorPal11(2023)], [colorPal3(2024), colorPal5(2025)], [colorPal3(2026), colorPal5(2027)]], - [[colorPal3(2028), colorPal13(2029), colorPal5(2030), colorPal5(2031), colorPal5(2032), colorPal7(2033), colorPal11(2034)], [colorPal3(2035), colorPal9(2036), colorPal11(2037)], [colorPal3(2038), colorPal5(2039)], [colorPal3(2040), colorPal5(2041)]], - [[colorPal3(2042), colorPal13(2043), colorPal5(2044), colorPal5(2045), colorPal5(2046), colorPal7(2047), colorPal11(2048)], [colorPal3(2049), colorPal9(2050), colorPal11(2051)], [colorPal3(2052), colorPal5(2053)], [colorPal3(2054), colorPal5(2055)]], - [[colorPal3(2056), colorPal13(2057), colorPal5(2058), colorPal5(2059), colorPal5(2060), colorPal7(2061), colorPal11(2062)], [colorPal3(2063), colorPal9(2064), colorPal11(2065)], [colorPal3(2066), colorPal5(2067)], [colorPal3(2068), colorPal5(2069)]], - [[colorPal3(2070), colorPal13(2071), colorPal5(2072), colorPal5(2073), colorPal5(2074), colorPal7(2075), colorPal11(2076)], [colorPal3(2077), colorPal9(2078), colorPal11(2079)], [colorPal3(2080), colorPal5(2081)], [colorPal3(2082), colorPal5(2083)]], - [[colorPal3(2084), colorPal13(2085), colorPal5(2086), colorPal5(2087), colorPal5(2088), colorPal7(2089), colorPal11(2090)], [colorPal3(2091), colorPal9(2092), colorPal11(2093)], [colorPal3(2094), colorPal5(2095)], [colorPal3(2096), colorPal5(2097)]], - [[colorPal3(2098), colorPal13(2099), colorPal5(2100), colorPal5(2101), colorPal5(2102), colorPal7(2103), colorPal11(2104)], [colorPal3(2105), colorPal9(2106), colorPal11(2107)], [colorPal3(2108), colorPal5(2109)], [colorPal3(2110), colorPal5(2111)]], - [[colorPal3(2112), colorPal13(2113), colorPal5(2114), colorPal5(2115), colorPal5(2116), colorPal7(2117), colorPal11(2118)], [colorPal3(2119), colorPal9(2120), colorPal11(2121)], [colorPal3(2122), colorPal5(2123)], [colorPal3(2124), colorPal5(2125)]], - [[colorPal3(2126), colorPal13(2127), colorPal5(2128), colorPal5(2129), colorPal5(2130), colorPal7(2131), colorPal11(2132)], [colorPal3(2133), colorPal9(2134), colorPal11(2135)], [colorPal3(2136), colorPal5(2137)], [colorPal3(2138), colorPal5(2139)]], - [[colorPal3(2140), colorPal13(2141), colorPal5(2142), colorPal5(2143), colorPal5(2144), colorPal7(2145), colorPal11(2146)], [colorPal3(2147), colorPal9(2148), colorPal11(2149)], [colorPal3(2150), colorPal5(2151)], [colorPal3(2152), colorPal5(2153)]], - [[colorPal3(2154), colorPal13(2155), colorPal5(2156), colorPal5(2157), colorPal5(2158), colorPal7(2159), colorPal11(2160)], [colorPal3(2161), colorPal9(2162), colorPal11(2163)], [colorPal3(2164), colorPal5(2165)], [colorPal3(2166), colorPal5(2167)]], - [[colorPal3(2168), colorPal13(2169), colorPal5(2170), colorPal5(2171), colorPal5(2172), colorPal7(2173), colorPal11(2174)], [colorPal3(2175), colorPal9(2176), colorPal11(2177)], [colorPal3(2178), colorPal5(2179)], [colorPal3(2180), colorPal5(2181)]], - [[colorPal3(2182), colorPal13(2183), colorPal5(2184), colorPal5(2185), colorPal5(2186), colorPal7(2187), colorPal11(2188)], [colorPal3(2189), colorPal9(2190), colorPal11(2191)], [colorPal3(2192), colorPal5(2193)], [colorPal3(2194), colorPal5(2195)]], - [[colorPal3(2196), colorPal13(2197), colorPal5(2198), colorPal5(2199), colorPal5(2200), colorPal7(2201), colorPal11(2202)], [colorPal3(2203), colorPal9(2204), colorPal11(2205)], [colorPal3(2206), colorPal5(2207)], [colorPal3(2208), colorPal5(2209)]], - [[colorPal3(2210), colorPal13(2211), colorPal5(2212), colorPal5(2213), colorPal5(2214), colorPal7(2215), colorPal11(2216)], [colorPal3(2217), colorPal9(2218), colorPal11(2219)], [colorPal3(2220), colorPal5(2221)], [colorPal3(2222), colorPal5(2223)]], - [[colorPal3(2224), colorPal13(2225), colorPal5(2226), colorPal5(2227), colorPal5(2228), colorPal7(2229), colorPal11(2230)], [colorPal3(2231), colorPal9(2232), colorPal11(2233)], [colorPal3(2234), colorPal5(2235)], [colorPal3(2236), colorPal5(2237)]], - [[colorPal3(2238), colorPal13(2239), colorPal5(2240), colorPal5(2241), colorPal5(2242), colorPal7(2243), colorPal11(2244)], [colorPal3(2245), colorPal9(2246), colorPal11(2247)], [colorPal3(2248), colorPal5(2249)], [colorPal3(2250), colorPal5(2251)]], - [[colorPal3(2252), colorPal13(2253), colorPal5(2254), colorPal5(2255), colorPal5(2256), colorPal7(2257), colorPal11(2258)], [colorPal3(2259), colorPal9(2260), colorPal11(2261)], [colorPal3(2262), colorPal5(2263)], [colorPal3(2264), colorPal5(2265)]], - [[colorPal3(2266), colorPal13(2267), colorPal5(2268), colorPal5(2269), colorPal5(2270), colorPal7(2271), colorPal11(2272)], [colorPal3(2273), colorPal9(2274), colorPal11(2275)], [colorPal3(2276), colorPal5(2277)], [colorPal3(2278), colorPal5(2279)]], - [[colorPal3(2280), colorPal13(2281), colorPal5(2282), colorPal5(2283), colorPal5(2284), colorPal7(2285), colorPal11(2286)], [colorPal3(2287), colorPal9(2288), colorPal11(2289)], [colorPal3(2290), colorPal5(2291)], [colorPal3(2292), colorPal5(2293)]], - [[colorPal3(2294), colorPal13(2295), colorPal5(2296), colorPal5(2297), colorPal5(2298), colorPal7(2299), colorPal11(2300)], [colorPal3(2301), colorPal9(2302), colorPal11(2303)], [colorPal3(2304), colorPal5(2305)], [colorPal3(2306), colorPal5(2307)]], - [[colorPal3(2308), colorPal13(2309), colorPal5(2310), colorPal5(2311), colorPal5(2312), colorPal7(2313), colorPal11(2314)], [colorPal3(2315), colorPal9(2316), colorPal11(2317)], [colorPal3(2318), colorPal5(2319)], [colorPal3(2320), colorPal5(2321)]], - [[colorPal3(2322), colorPal13(2323), colorPal5(2324), colorPal5(2325), colorPal5(2326), colorPal7(2327), colorPal11(2328)], [colorPal3(2329), colorPal9(2330), colorPal11(2331)], [colorPal3(2332), colorPal5(2333)], [colorPal3(2334), colorPal5(2335)]], - [[colorPal3(2336), colorPal13(2337), colorPal5(2338), colorPal5(2339), colorPal5(2340), colorPal7(2341), colorPal11(2342)], [colorPal3(2343), colorPal9(2344), colorPal11(2345)], [colorPal3(2346), colorPal5(2347)], [colorPal3(2348), colorPal5(2349)]], - [[colorPal3(2350), colorPal13(2351), colorPal5(2352), colorPal5(2353), colorPal5(2354), colorPal7(2355), colorPal11(2356)], [colorPal3(2357), colorPal9(2358), colorPal11(2359)], [colorPal3(2360), colorPal5(2361)], [colorPal3(2362), colorPal5(2363)]], - [[colorPal3(2364), colorPal13(2365), colorPal5(2366), colorPal5(2367), colorPal5(2368), colorPal7(2369), colorPal11(2370)], [colorPal3(2371), colorPal9(2372), colorPal11(2373)], [colorPal3(2374), colorPal5(2375)], [colorPal3(2376), colorPal5(2377)]], - [[colorPal3(2378), colorPal13(2379), colorPal5(2380), colorPal5(2381), colorPal5(2382), colorPal7(2383), colorPal11(2384)], [colorPal3(2385), colorPal9(2386), colorPal11(2387)], [colorPal3(2388), colorPal5(2389)], [colorPal3(2390), colorPal5(2391)]], - [[colorPal3(2392), colorPal13(2393), colorPal5(2394), colorPal5(2395), colorPal5(2396), colorPal7(2397), colorPal11(2398)], [colorPal3(2399), colorPal9(2400), colorPal11(2401)], [colorPal3(2402), colorPal5(2403)], [colorPal3(2404), colorPal5(2405)]], - [[colorPal3(2406), colorPal13(2407), colorPal5(2408), colorPal5(2409), colorPal5(2410), colorPal7(2411), colorPal11(2412)], [colorPal3(2413), colorPal9(2414), colorPal11(2415)], [colorPal3(2416), colorPal5(2417)], [colorPal3(2418), colorPal5(2419)]], - [[colorPal3(2420), colorPal13(2421), colorPal5(2422), colorPal5(2423), colorPal5(2424), colorPal7(2425), colorPal11(2426)], [colorPal3(2427), colorPal9(2428), colorPal11(2429)], [colorPal3(2430), colorPal5(2431)], [colorPal3(2432), colorPal5(2433)]], - [[colorPal3(2434), colorPal13(2435), colorPal5(2436), colorPal5(2437), colorPal5(2438), colorPal7(2439), colorPal11(2440)], [colorPal3(2441), colorPal9(2442), colorPal11(2443)], [colorPal3(2444), colorPal5(2445)], [colorPal3(2446), colorPal5(2447)]], - [[colorPal3(2448), colorPal13(2449), colorPal5(2450), colorPal5(2451), colorPal5(2452), colorPal7(2453), colorPal11(2454)], [colorPal3(2455), colorPal9(2456), colorPal11(2457)], [colorPal3(2458), colorPal5(2459)], [colorPal3(2460), colorPal5(2461)]], - [[colorPal3(2462), colorPal13(2463), colorPal5(2464), colorPal5(2465), colorPal5(2466), colorPal7(2467), colorPal11(2468)], [colorPal3(2469), colorPal9(2470), colorPal11(2471)], [colorPal3(2472), colorPal5(2473)], [colorPal3(2474), colorPal5(2475)]], - [[colorPal3(2476), colorPal13(2477), colorPal5(2478), colorPal5(2479), colorPal5(2480), colorPal7(2481), colorPal11(2482)], [colorPal3(2483), colorPal9(2484), colorPal11(2485)], [colorPal3(2486), colorPal5(2487)], [colorPal3(2488), colorPal5(2489)]], - [[colorPal3(2490), colorPal13(2491), colorPal5(2492), colorPal5(2493), colorPal5(2494), colorPal7(2495), colorPal11(2496)], [colorPal3(2497), colorPal9(2498), colorPal11(2499)], [colorPal3(2500), colorPal5(2501)], [colorPal3(2502), colorPal5(2503)]] -]; -export const backLegs: AnimatedSprites = [ - undefined, - [[colorPal3(2504)]], - [[colorPal3(2505)]], - [[colorPal3(2506)]], - [[colorPal3(2507)]], - [[colorPal3(2508)]], - [[colorPal3(2509)]], - [[colorPal3(2510)]], - [[colorPal3(2511)]], - [[colorPal3(2512)]], - [[colorPal3(2513)]], - [[colorPal3(2514)]], - [[colorPal3(2515)]], - [[colorPal3(2516)]], - [[colorPal3(2517)]], - [[colorPal3(2518)]], - [[colorPal3(2519)]], - [[colorPal3(2520)]], - [[colorPal3(2521)]], - [[colorPal3(2522)]], - [[colorPal3(2523)]], - [[colorPal3(2524)]], - [[colorPal3(2525)]], - [[colorPal3(2526)]], - [[colorPal3(2527)]], - [[colorPal3(2528)]], - [[colorPal3(2529)]] -]; -export const backLegs2: AnimatedSprites = [ - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [[colorPal3(2530)]], - [[colorPal3(2531)]], - [[colorPal3(2532)]], - [[colorPal3(2533)]], - [[colorPal3(2534)]] -]; -export const backLegHooves: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(2535)], [colorPal3(2536)], [colorPal5(2537)], [colorPal3(2538)]], - [undefined, [colorPal3(2539)], [colorPal3(2540)], [colorPal5(2541)], [colorPal3(2542)]], - [undefined, [colorPal3(2543)], [colorPal3(2544)], [colorPal5(2545)], [colorPal3(2546)]], - [undefined, [colorPal3(2547)], [colorPal3(2548)], [colorPal5(2549)], [colorPal3(2550)]], - [undefined, [colorPal3(2551)], [colorPal3(2552)], [colorPal5(2553)], [colorPal3(2554)]], - [undefined, [colorPal3(2555)], [colorPal3(2556)], [colorPal5(2557)], [colorPal3(2558)]], - [undefined, [colorPal3(2559)], [colorPal3(2560)], [colorPal5(2561)], [colorPal3(2562)]], - [undefined, [colorPal3(2563)], [colorPal3(2564)], [colorPal5(2565)], [colorPal3(2566)]], - [undefined, [colorPal3(2567)], [colorPal3(2568)], [colorPal5(2569)], [colorPal3(2570)]], - [undefined, [colorPal3(2571)], [colorPal3(2572)], [colorPal5(2573)], [colorPal3(2574)]], - [undefined, [colorPal3(2575)], [colorPal3(2576)], [colorPal5(2577)], [colorPal3(2578)]], - [undefined, [colorPal3(2579)], [colorPal3(2580)], [colorPal5(2581)], [colorPal3(2582)]], - [undefined, [colorPal3(2583)], [colorPal3(2584)], [colorPal5(2585)], [colorPal3(2586)]], - [undefined, [colorPal3(2587)], [colorPal3(2588)], [colorPal5(2589)], [colorPal3(2590)]], - [undefined, [colorPal3(2591)], [colorPal3(2592)], [colorPal5(2593)], [colorPal3(2594)]], - [undefined, [colorPal3(2595)], [colorPal3(2596)], [colorPal5(2597)], [colorPal3(2598)]], - [undefined, [colorPal3(2599)], [colorPal3(2600)], [colorPal5(2601)], [colorPal3(2602)]], - [undefined, [colorPal3(2603)], [colorPal3(2604)], [colorPal5(2605)], [colorPal17(2606)]], - [undefined, [colorPal3(2607)], [colorPal3(2608)], [colorPal5(2609)], [colorPal3(2610)]], - [undefined, [colorPal3(2611)], [colorPal3(2612)], [colorPal5(2613)], [colorPal3(2614)]], - [undefined, [colorPal3(2615)], [colorPal3(2616)], [colorPal5(2617)], [colorPal3(2618)]], - [undefined, [colorPal3(2619)], [colorPal3(2620)], [colorPal5(2621)], [colorPal3(2622)]], - [undefined, [colorPal3(2623)], [colorPal3(2624)], [colorPal5(2625)], [colorPal3(2626)]], - [undefined, [colorPal3(2627)], [colorPal3(2628)], [colorPal5(2629)], [colorPal3(2630)]], - [undefined, [colorPal3(2631)], [colorPal3(2632)], [colorPal5(2633)], [colorPal3(2634)]], - [undefined, [colorPal3(2635)], [colorPal3(2636)], [colorPal5(2637)], [colorPal3(2638)]] -]; -export const backLegHooves2: AnimatedSprites = [ - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [undefined, [colorPal3(2639)], [colorPal3(2640)], [colorPal5(2641)], [colorPal3(2642)]], - [undefined, [colorPal3(2643)], [colorPal3(2644)], [colorPal5(2645)], [colorPal3(2646)]], - [undefined, [colorPal3(2647)], [colorPal3(2648)], [colorPal5(2649)], [colorPal3(2650)]], - [undefined, [colorPal3(2651)], [colorPal3(2652)], [colorPal5(2653)], [colorPal3(2654)]], - [undefined, [colorPal3(2655)], [colorPal3(2656)], [colorPal5(2657)], [colorPal3(2658)]] -]; -export const backLegAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(2659), colorPal13(2660), colorPal13(2661), colorPal13(2662), colorPal13(2663)]], - [undefined, [colorPal3(2664), colorPal13(2665), colorPal13(2666), colorPal13(2667), colorPal13(2668)]], - [undefined, [colorPal3(2669), colorPal13(2670), colorPal13(2671), colorPal13(2672), colorPal13(2673)]], - [undefined, [colorPal3(2674), colorPal13(2675), colorPal13(2676), colorPal13(2677), colorPal13(2678)]], - [undefined, [colorPal3(2679), colorPal13(2680), colorPal13(2681), colorPal13(2682), colorPal13(2683)]], - [undefined, [colorPal3(2684), colorPal13(2685), colorPal13(2686), colorPal13(2687), colorPal13(2688)]], - [undefined, [colorPal3(2689), colorPal13(2690), colorPal13(2691), colorPal13(2692), colorPal13(2693)]], - [undefined, [colorPal3(2694), colorPal13(2695), colorPal13(2696), colorPal13(2697), colorPal13(2698)]], - [undefined, [colorPal3(2699), colorPal13(2700), colorPal13(2701), colorPal13(2702), colorPal13(2703)]], - [undefined, [colorPal3(2704), colorPal13(2705), colorPal13(2706), colorPal13(2707), colorPal13(2708)]], - [undefined, [colorPal3(2709), colorPal13(2710), colorPal13(2711), colorPal13(2712), colorPal13(2713)]], - [undefined, [colorPal3(2714), colorPal13(2715), colorPal13(2716), colorPal13(2717), colorPal13(2718)]], - [undefined, [colorPal3(2719), colorPal13(2720), colorPal13(2721), colorPal13(2722), colorPal13(2723)]], - [undefined, [colorPal3(2724), colorPal13(2725), colorPal13(2726), colorPal13(2727), colorPal13(2728)]], - [undefined, [colorPal3(2729), colorPal13(2730), colorPal13(2731), colorPal13(2732), colorPal13(2733)]], - [undefined, [colorPal3(2734), colorPal13(2735), colorPal13(2736), colorPal13(2737), colorPal13(2738)]], - [undefined, [colorPal3(2739), colorPal13(2740), colorPal13(2741), colorPal13(2742), colorPal13(2743)]], - [undefined, [colorPal3(2744), colorPal13(2745), colorPal13(2746), colorPal13(2747), colorPal13(2748)]], - [undefined, [colorPal3(2749), colorPal13(2750), colorPal13(2751), colorPal13(2752), colorPal13(2753)]], - [undefined, [colorPal3(2754), colorPal13(2755), colorPal13(2756), colorPal13(2757), colorPal13(2758)]], - [undefined, [colorPal3(2759), colorPal13(2760), colorPal13(2761), colorPal13(2762), colorPal13(2763)]], - [undefined, [colorPal3(2764), colorPal13(2765), colorPal13(2766), colorPal13(2767), colorPal13(2768)]], - [undefined, [colorPal3(2769), colorPal13(2770), colorPal13(2771), colorPal13(2772), colorPal13(2773)]], - [undefined, [colorPal3(2774), colorPal13(2775), colorPal13(2776), colorPal13(2777), colorPal13(2778)]], - [undefined, [colorPal3(2779), colorPal13(2780), colorPal13(2781), colorPal13(2782), colorPal13(2783)]], - [undefined, [colorPal3(2784), colorPal13(2785), colorPal13(2786), colorPal13(2787), colorPal13(2788)]] -]; -export const backLegAccessories2: AnimatedSprites = [ - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [undefined, [colorPal3(2789), colorPal13(2790), colorPal13(2791), colorPal13(2792), colorPal13(2793)]], - [undefined, [colorPal3(2794), colorPal13(2795), colorPal13(2796), colorPal13(2797), colorPal13(2798)]], - [undefined, [colorPal3(2799), colorPal13(2800), colorPal13(2801), colorPal13(2802), colorPal13(2803)]], - [undefined, [colorPal3(2804), colorPal13(2805), colorPal13(2806), colorPal13(2807), colorPal13(2808)]], - [undefined, [colorPal3(2809), colorPal13(2810), colorPal13(2811), colorPal13(2812), colorPal13(2813)]] -]; -export const backLegSleeves: AnimatedSprites = [ - undefined, - [[colorPal3(2814), colorPal13(2815)]], - [[colorPal3(2816), colorPal13(2817)]], - [[colorPal3(2818), colorPal13(2819)]], - [[colorPal3(2820), colorPal13(2821)]], - [[colorPal3(2822), colorPal13(2823)]], - [[colorPal3(2824), colorPal13(2825)]], - [[colorPal3(2826), colorPal13(2827)]], - [[colorPal3(2828), colorPal13(2829)]], - [[colorPal3(2830), colorPal13(2831)]], - [[colorPal3(2832), colorPal13(2833)]], - [[colorPal3(2834), colorPal13(2835)]], - [[colorPal3(2836), colorPal13(2837)]], - [[colorPal3(2838), colorPal13(2839)]], - [[colorPal3(2840), colorPal13(2841)]], - [[colorPal3(2842), colorPal13(2843)]], - [[colorPal3(2844), colorPal13(2845)]], - [[colorPal3(2846), colorPal13(2847)]], - [[colorPal3(2848), colorPal13(2849)]], - [[colorPal3(2850), colorPal13(2851)]], - [[colorPal3(2852), colorPal13(2853)]], - [[colorPal3(2854), colorPal13(2855)]], - [[colorPal3(2856), colorPal13(2857)]], - [[colorPal3(2858), colorPal13(2859)]], - [[colorPal3(2860), colorPal13(2861)]], - [[colorPal3(2862), colorPal13(2863)]], - [[colorPal3(2864), colorPal13(2865)]] -]; -export const backLegSleeves2: AnimatedSprites = [ - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [[colorPal3(2866), colorPal13(2867)]], - [[colorPal3(2868), colorPal13(2869)]], - [[colorPal3(2870), colorPal13(2871)]], - [[colorPal3(2872), colorPal13(2873)]], - [[colorPal3(2874), colorPal13(2875)]] -]; -export const body: AnimatedSprites = [ - undefined, - [[colorPal3(2876)]], - [[colorPal3(2877)]], - [[colorPal3(2878)]], - [[colorPal3(2879)]], - [[colorPal3(2880)]], - [[colorPal3(2881)]], - [[colorPal3(2882)]], - [[colorPal3(2883)]], - [[colorPal3(2884)]], - [[colorPal3(2885)]], - [[colorPal3(2886)]], - [[colorPal3(2887)]], - [[colorPal3(2888)]], - [[colorPal3(2889)]], - [[colorPal3(2890)]] -]; -export const wings: AnimatedSprites = [ - [undefined, [colorPal3(2891), colorPal5(2892), colorPal9(2893)], [colorPal5(2894)], [colorPal3(2895), colorPal5(2896), colorPal9(2897)], [colorPal3(2898)]], - [undefined, [colorPal3(2899), colorPal5(2900), colorPal9(2901)], [colorPal5(2902)], [colorPal3(2903), colorPal5(2904), colorPal9(2905)], [colorPal3(2906)]], - [undefined, [colorPal3(2907), colorPal5(2908), colorPal9(2909)], [colorPal5(2910)], [colorPal3(2911), colorPal5(2912), colorPal9(2913)], [colorPal3(2914)]], - [undefined, [colorPal3(2915), colorPal5(2916), colorPal9(2917)], [colorPal5(2918)], [colorPal3(2919), colorPal5(2920), colorPal9(2921)], [colorPal3(2922)]], - [undefined, [colorPal3(2923), colorPal5(2924), colorPal9(2925)], [colorPal5(2926)], [colorPal3(2927), colorPal5(2928), colorPal9(2929)], [colorPal3(2930)]], - [undefined, [colorPal3(2931), colorPal5(2932), colorPal9(2933)], [colorPal5(2934)], [colorPal3(2935), colorPal5(2936), colorPal9(2937)], [colorPal3(2938)]], - [undefined, [colorPal3(2939), colorPal5(2940), colorPal9(2941)], [colorPal5(2942)], [colorPal3(2943), colorPal5(2944), colorPal9(2945)]], - [undefined, [colorPal3(2946), colorPal5(2947), colorPal9(2948)], [colorPal5(2949)], [colorPal3(2950), colorPal5(2951), colorPal9(2952)]], - [undefined, [colorPal3(2953), colorPal5(2954), colorPal9(2955)], [colorPal5(2956)], [colorPal3(2957), colorPal5(2958), colorPal9(2959)]], - [undefined, [colorPal3(2960), colorPal5(2961), colorPal9(2962)], [colorPal5(2963)], [colorPal3(2964), colorPal5(2965), colorPal9(2966)]], - [undefined, [colorPal3(2967), colorPal5(2968), colorPal9(2969)], [colorPal5(2970)], [colorPal3(2971), colorPal5(2972), colorPal9(2973)]], - [undefined, [colorPal3(2974), colorPal5(2975), colorPal9(2976)], [colorPal5(2977)], [colorPal3(2978), colorPal5(2979), colorPal9(2980)]], - [undefined, [colorPal3(2981), colorPal5(2982), colorPal9(2983)], [colorPal5(2984)], [colorPal3(2985), colorPal5(2986), colorPal9(2987)]] -]; -export const tails: AnimatedSprites = [ - [undefined, [colorPal3(2988), colorPal11(2989), colorPal13(2990), colorPal7(2991), colorPal5(2992), colorPal5(2993)], [colorPal3(2994), colorPal13(2995), colorPal9(2996), colorPal7(2997), colorPal5(2998), colorPal5(2999)], [colorPal3(3000), colorPal11(3001), colorPal9(3002), colorPal7(3003), colorPal5(3004), colorPal5(3005)], [colorPal3(3006), colorPal13(3007), colorPal11(3008), colorPal7(3009), colorPal5(3010), colorPal5(3011)], [colorPal3(3012), colorPal9(3013), colorPal13(3014), colorPal7(3015), colorPal5(3016), colorPal5(3017)], [colorPal3(3018), colorPal11(3019), colorPal13(3020), colorPal7(3021), colorPal5(3022), colorPal5(3023), colorPal5(3024)], [colorPal5(3025), colorPal13(3026), colorPal11(3027), colorPal7(3028), colorPal7(3029)], [colorPal3(3030), colorPal11(3031), colorPal13(3032), colorPal5(3033), colorPal7(3034), colorPal5(3035)], [colorPal3(3036), colorPal11(3037), colorPal11(3038), colorPal7(3039), colorPal5(3040), colorPal5(3041), colorPal11(3042)], [colorPal3(3043), colorPal11(3044), colorPal13(3045), colorPal5(3046)], [colorPal3(3047), colorPal11(3048), colorPal11(3049), colorPal7(3050), colorPal5(3051), colorPal5(3052)], [colorPal3(3053), colorPal9(3054), colorPal9(3055), colorPal7(3056), colorPal5(3057)], [colorPal3(3058), colorPal5(3059), colorPal9(3060), colorPal5(3061)], [colorPal5(3062), colorPal11(3063), colorPal9(3064), colorPal7(3065), colorPal7(3066)], [colorPal5(3067), colorPal7(3068)], [colorPal3(3069), colorPal5(3070), colorPal7(3071)], [colorPal5(3072), colorPal11(3073), colorPal9(3074), colorPal7(3075), colorPal7(3076)], [colorPal7(3077), colorPal13(3078), colorPal11(3079), colorPal9(3080), colorPal9(3081)], [colorPal5(3082), colorPal7(3083)], [colorPal3(3084), colorPal11(3085), colorPal13(3086), colorPal7(3087), colorPal5(3088), colorPal5(3089)], [colorPal3(3090), colorPal9(3091), colorPal11(3092), colorPal7(3093), colorPal5(3094), colorPal5(3095)], [colorPal3(3096), colorPal11(3097), colorPal13(3098), colorPal7(3099), colorPal5(3100), colorPal5(3101)], [colorPal3(3102), colorPal9(3103), colorPal11(3104), colorPal7(3105), colorPal5(3106), colorPal5(3107)], [colorPal3(3108), colorPal13(3109), colorPal7(3110)], [colorPal3(3111), colorPal5(3112), colorPal13(3113), colorPal13(3114), colorPal11(3115), colorPal11(3116)], [colorPal3(3117), colorPal9(3118), colorPal13(3119), colorPal13(3120), colorPal13(3121), colorPal11(3122)], [colorPal3(3123), colorPal7(3124), colorPal5(3125), colorPal13(3126), colorPal5(3127)], [colorPal5(3128), colorPal13(3129), colorPal9(3130), colorPal9(3131), colorPal7(3132), colorPal7(3133)], [colorPal5(3134), colorPal13(3135), colorPal9(3136), colorPal9(3137), colorPal7(3138), colorPal7(3139)], [colorPal3(3140), colorPal5(3141), colorPal7(3142)]], - [undefined, undefined, undefined, undefined, undefined, undefined, undefined, [colorPal5(3143), colorPal13(3144), colorPal11(3145), colorPal7(3146), colorPal7(3147)], undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, [colorPal3(3148), colorPal5(3149), colorPal7(3150)], [colorPal5(3151), colorPal9(3152), colorPal9(3153), colorPal7(3154), colorPal7(3155)], [colorPal7(3156), colorPal9(3157), colorPal11(3158), colorPal9(3159), colorPal17(3160)], [colorPal5(3161), colorPal7(3162)], undefined, undefined, undefined, undefined, undefined, [colorPal3(3163), colorPal5(3164), colorPal11(3165), colorPal13(3166), colorPal11(3167), colorPal11(3168)], [colorPal3(3169), colorPal9(3170), colorPal13(3171), colorPal13(3172), colorPal13(3173), colorPal11(3174)], undefined, undefined, [colorPal5(3175), colorPal13(3176), colorPal9(3177), colorPal9(3178), colorPal7(3179), colorPal7(3180)], [colorPal3(3181), colorPal5(3182), colorPal7(3183)]], - [undefined, [colorPal3(3184), colorPal11(3185), colorPal13(3186), colorPal7(3187), colorPal5(3188), colorPal5(3189)], undefined, undefined, [colorPal3(3190), colorPal13(3191), colorPal11(3192), colorPal7(3193), colorPal5(3194), colorPal5(3195)], [colorPal3(3196), colorPal9(3197), colorPal13(3198), colorPal7(3199), colorPal5(3200), colorPal5(3201)], [colorPal3(3202), colorPal11(3203), colorPal13(3204), colorPal7(3205), colorPal5(3206), colorPal5(3207), colorPal5(3208)], [colorPal5(3209), colorPal13(3210), colorPal11(3211), colorPal7(3212), colorPal7(3213)], [colorPal3(3214), colorPal11(3215), colorPal13(3216), colorPal5(3217), colorPal7(3218), colorPal5(3219)], [colorPal3(3220), colorPal11(3221), colorPal11(3222), colorPal7(3223), colorPal5(3224), colorPal5(3225), colorPal11(3226)], [colorPal3(3227), colorPal11(3228), colorPal13(3229), colorPal5(3230)], [colorPal3(3231), colorPal11(3232), colorPal11(3233), colorPal7(3234), colorPal5(3235), colorPal5(3236)], [colorPal3(3237), colorPal9(3238), colorPal9(3239), colorPal7(3240), colorPal5(3241)], [colorPal3(3242), colorPal5(3243), colorPal9(3244), colorPal5(3245)], undefined, [colorPal5(3246), colorPal7(3247)], [colorPal3(3248), colorPal5(3249), colorPal7(3250)], [colorPal3(3251), colorPal3(3252), colorPal3(3253), colorPal3(3254), colorPal3(3255)], [colorPal5(3256), colorPal5(3257), colorPal5(3258), colorPal5(3259), colorPal5(3260)], [colorPal5(3261), colorPal7(3262)], [colorPal3(3263), colorPal11(3264), colorPal13(3265), colorPal7(3266), colorPal5(3267), colorPal5(3268)], undefined, [colorPal3(3269), colorPal11(3270), colorPal13(3271), colorPal7(3272), colorPal5(3273), colorPal5(3274)], [colorPal3(3275), colorPal9(3276), colorPal11(3277), colorPal7(3278), colorPal5(3279), colorPal5(3280)], [colorPal3(3281), colorPal13(3282), colorPal7(3283)], [colorPal3(3284), colorPal3(3285), colorPal3(3286), colorPal13(3287), colorPal11(3288), colorPal11(3289)], [colorPal3(3290), colorPal9(3291), colorPal13(3292), colorPal13(3293), colorPal13(3294), colorPal11(3295)], [colorPal3(3296), colorPal7(3297), colorPal5(3298), colorPal13(3299), colorPal5(3300)], [colorPal5(3301), colorPal13(3302), colorPal9(3303), colorPal9(3304), colorPal7(3305), colorPal7(3306)], [colorPal5(3307), colorPal13(3308), colorPal9(3309), colorPal9(3310), colorPal7(3311), colorPal7(3312)], [colorPal3(3313), colorPal5(3314), colorPal7(3315)]] -]; -export const neckAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(3316), colorPal5(3317)], [colorPal3(3318), colorPal5(3319), colorPal9(3320), colorPal5(3321)], [colorPal3(3322), colorPal5(3323), colorPal7(3324), colorPal13(3325), colorPal7(3326)], [colorPal3(3327), colorPal5(3328)], [colorPal3(3329), colorPal7(3330), colorPal7(3331), colorPal5(3332), colorPal5(3333)], [colorPal3(3334), colorPal5(3335), colorPal7(3336)], [colorPal3(3337), colorPal5(3338)], [colorPal3(3339)], [colorPal3(3340)], [colorPal3(3341), colorPal5(3342), colorPal9(3343), colorPal5(3344)], [colorPal3(3345), colorPal5(3346), colorPal9(3347)], [colorPal3(3348), colorPal9(3349)], [colorPal3(3350)], [colorPal3(3351)]], - [undefined, [colorPal3(3352), colorPal5(3353)], [colorPal3(3354), colorPal5(3355), colorPal9(3356), colorPal5(3357)], [colorPal3(3358), colorPal5(3359), colorPal7(3360), colorPal13(3361), colorPal7(3362)], [colorPal3(3363), colorPal5(3364)], [colorPal3(3365), colorPal7(3366), colorPal7(3367), colorPal5(3368), colorPal5(3369)], [colorPal3(3370), colorPal5(3371), colorPal7(3372)], [colorPal3(3373), colorPal5(3374)], [colorPal3(3375)], [colorPal3(3376)], [colorPal3(3377), colorPal5(3378), colorPal9(3379), colorPal5(3380)], [colorPal3(3381), colorPal5(3382), colorPal9(3383)], [colorPal3(3384), colorPal9(3385)], [colorPal3(3386)], [colorPal3(3387)]], - [undefined, [colorPal3(3388), colorPal5(3389)], [colorPal3(3390), colorPal5(3391), colorPal9(3392), colorPal5(3393)], [colorPal3(3394), colorPal5(3395), colorPal7(3396), colorPal13(3397), colorPal7(3398)], [colorPal3(3399), colorPal5(3400)], [colorPal3(3401), colorPal7(3402), colorPal7(3403), colorPal5(3404), colorPal5(3405)], [colorPal3(3406), colorPal5(3407), colorPal7(3408)], [colorPal3(3409), colorPal5(3410)], [colorPal3(3411)], [colorPal3(3412)], [colorPal3(3413), colorPal5(3414), colorPal9(3415), colorPal5(3416)], [colorPal3(3417), colorPal5(3418), colorPal9(3419)], [colorPal3(3420), colorPal9(3421)], [colorPal3(3422)], [colorPal3(3423)]], - [undefined, [colorPal3(3424), colorPal5(3425)], [colorPal3(3426), colorPal5(3427), colorPal9(3428), colorPal5(3429)], [colorPal3(3430), colorPal5(3431), colorPal7(3432), colorPal13(3433), colorPal7(3434)], [colorPal3(3435), colorPal5(3436)], [colorPal3(3437), colorPal7(3438), colorPal7(3439), colorPal5(3440), colorPal5(3441)], [colorPal3(3442), colorPal5(3443), colorPal7(3444)], [colorPal3(3445), colorPal5(3446)], [colorPal3(3447)], [colorPal3(3448)], [colorPal3(3449), colorPal5(3450), colorPal9(3451), colorPal5(3452)], [colorPal3(3453), colorPal5(3454), colorPal9(3455)], [colorPal3(3456), colorPal9(3457)], [colorPal3(3458)], [colorPal3(3459)]], - [undefined, [colorPal3(3460), colorPal5(3461)], [colorPal3(3462), colorPal5(3463), colorPal9(3464), colorPal5(3465)], [colorPal3(3466), colorPal5(3467), colorPal7(3468), colorPal13(3469), colorPal7(3470)], [colorPal3(3471), colorPal5(3472)], [colorPal3(3473), colorPal7(3474), colorPal7(3475), colorPal5(3476), colorPal5(3477)], [colorPal3(3478), colorPal5(3479), colorPal7(3480)], [colorPal3(3481), colorPal5(3482)], [colorPal3(3483)], [colorPal3(3484)], [colorPal3(3485), colorPal5(3486), colorPal9(3487), colorPal5(3488)], [colorPal3(3489), colorPal5(3490), colorPal9(3491)], [colorPal3(3492), colorPal9(3493)], [colorPal3(3494)], [colorPal3(3495)]], - [undefined, [colorPal3(3496), colorPal5(3497)], [colorPal3(3498), colorPal5(3499), colorPal9(3500), colorPal5(3501)], [colorPal3(3502), colorPal5(3503), colorPal7(3504), colorPal13(3505), colorPal7(3506)], [colorPal3(3507), colorPal5(3508)], [colorPal3(3509), colorPal7(3510), colorPal7(3511), colorPal5(3512), colorPal5(3513)], [colorPal3(3514), colorPal5(3515), colorPal7(3516)], [colorPal3(3517), colorPal5(3518)], [colorPal3(3519)], [colorPal3(3520)], [colorPal3(3521), colorPal5(3522), colorPal9(3523), colorPal5(3524)], [colorPal3(3525), colorPal5(3526), colorPal9(3527)], [colorPal3(3528), colorPal9(3529)], [colorPal3(3530)], [colorPal3(3531)]], - [undefined, [colorPal3(3532), colorPal5(3533)], [colorPal3(3534), colorPal5(3535), colorPal9(3536), colorPal5(3537)], [colorPal3(3538), colorPal5(3539), colorPal7(3540), colorPal13(3541), colorPal7(3542)], [colorPal3(3543), colorPal5(3544)], [colorPal3(3545), colorPal7(3546), colorPal7(3547), colorPal5(3548), colorPal5(3549)], [colorPal3(3550), colorPal5(3551), colorPal7(3552)], [colorPal3(3553), colorPal5(3554)], [colorPal3(3555)], [colorPal3(3556)], [colorPal3(3557), colorPal5(3558), colorPal9(3559), colorPal5(3560)], [colorPal3(3561), colorPal5(3562), colorPal9(3563)], [colorPal3(3564), colorPal9(3565)], [colorPal3(3566)], [colorPal3(3567)]], - [undefined, [colorPal3(3568), colorPal5(3569)], [colorPal3(3570), colorPal5(3571), colorPal9(3572), colorPal5(3573)], [colorPal3(3574), colorPal5(3575), colorPal7(3576), colorPal13(3577), colorPal7(3578)], [colorPal3(3579), colorPal5(3580)], [colorPal3(3581), colorPal7(3582), colorPal7(3583), colorPal5(3584), colorPal5(3585)], [colorPal3(3586), colorPal5(3587), colorPal7(3588)], [colorPal3(3589), colorPal5(3590)], [colorPal3(3591)], [colorPal3(3592)], [colorPal3(3593), colorPal5(3594), colorPal9(3595), colorPal5(3596)], [colorPal3(3597), colorPal5(3598), colorPal9(3599)], [colorPal3(3600), colorPal9(3601)], [colorPal3(3602)], [colorPal3(3603)]], - [undefined, [colorPal3(3604), colorPal5(3605)], [colorPal3(3606), colorPal5(3607), colorPal9(3608), colorPal5(3609)], [colorPal3(3610), colorPal5(3611), colorPal7(3612), colorPal13(3613), colorPal7(3614)], [colorPal3(3615), colorPal5(3616)], [colorPal3(3617), colorPal7(3618), colorPal7(3619), colorPal5(3620), colorPal5(3621)], [colorPal3(3622), colorPal5(3623), colorPal7(3624)], [colorPal3(3625), colorPal5(3626)], [colorPal3(3627)], [colorPal3(3628)], [colorPal3(3629), colorPal5(3630), colorPal9(3631), colorPal5(3632)], [colorPal3(3633), colorPal5(3634), colorPal9(3635)], [colorPal3(3636), colorPal9(3637)], [colorPal3(3638)], [colorPal3(3639)]], - [undefined, [colorPal3(3640), colorPal5(3641)], [colorPal3(3642), colorPal5(3643), colorPal9(3644), colorPal5(3645)], [colorPal3(3646), colorPal5(3647), colorPal7(3648), colorPal13(3649), colorPal7(3650)], [colorPal3(3651), colorPal5(3652)], [colorPal3(3653), colorPal7(3654), colorPal7(3655), colorPal5(3656), colorPal5(3657)], [colorPal3(3658), colorPal5(3659), colorPal7(3660)], [colorPal3(3661), colorPal5(3662)], [colorPal3(3663)], [colorPal3(3664)], [colorPal3(3665), colorPal5(3666), colorPal9(3667), colorPal5(3668)], [colorPal3(3669), colorPal5(3670), colorPal9(3671)], [colorPal3(3672), colorPal9(3673)], [colorPal3(3674)], [colorPal3(3675)]], - [undefined, [colorPal3(3676), colorPal5(3677)], [colorPal3(3678), colorPal5(3679), colorPal9(3680), colorPal5(3681)], [colorPal3(3682), colorPal5(3683), colorPal7(3684), colorPal13(3685), colorPal7(3686)], [colorPal3(3687), colorPal5(3688)], [colorPal3(3689), colorPal7(3690), colorPal7(3691), colorPal5(3692), colorPal5(3693)], [colorPal3(3694), colorPal5(3695), colorPal7(3696)], [colorPal3(3697), colorPal5(3698)], [colorPal3(3699)], [colorPal3(3700)], [colorPal3(3701), colorPal5(3702), colorPal9(3703), colorPal5(3704)], [colorPal3(3705), colorPal5(3706), colorPal9(3707)], [colorPal3(3708), colorPal9(3709)], [colorPal3(3710)], [colorPal3(3711)]], - [undefined, [colorPal3(3712), colorPal5(3713)], [colorPal3(3714), colorPal5(3715), colorPal9(3716), colorPal5(3717)], [colorPal3(3718), colorPal5(3719), colorPal7(3720), colorPal13(3721), colorPal7(3722)], [colorPal3(3723), colorPal5(3724)], [colorPal3(3725), colorPal7(3726), colorPal7(3727), colorPal5(3728), colorPal5(3729)], [colorPal3(3730), colorPal5(3731), colorPal7(3732)], [colorPal3(3733), colorPal5(3734)], [colorPal3(3735)], [colorPal3(3736)], [colorPal3(3737), colorPal5(3738), colorPal9(3739), colorPal5(3740)], [colorPal3(3741), colorPal5(3742), colorPal9(3743)], [colorPal3(3744), colorPal9(3745)], [colorPal3(3746)], [colorPal3(3747)]], - [undefined, [colorPal3(3748), colorPal5(3749)], [colorPal3(3750), colorPal5(3751), colorPal9(3752), colorPal5(3753)], [colorPal3(3754), colorPal5(3755), colorPal7(3756), colorPal13(3757), colorPal7(3758)], [colorPal3(3759), colorPal5(3760)], [colorPal3(3761), colorPal7(3762), colorPal7(3763), colorPal5(3764), colorPal5(3765)], [colorPal3(3766), colorPal5(3767), colorPal7(3768)], [colorPal3(3769), colorPal5(3770)], [colorPal3(3771)], [colorPal3(3772)], [colorPal3(3773), colorPal5(3774), colorPal9(3775), colorPal5(3776)], [colorPal3(3777), colorPal5(3778), colorPal9(3779)], [colorPal3(3780), colorPal9(3781)], [colorPal3(3782)], [colorPal3(3783)]], - [undefined, [colorPal3(3784), colorPal5(3785)], [colorPal3(3786), colorPal5(3787), colorPal9(3788), colorPal5(3789)], [colorPal3(3790), colorPal5(3791), colorPal7(3792), colorPal13(3793), colorPal7(3794)], [colorPal3(3795), colorPal5(3796)], [colorPal3(3797), colorPal7(3798), colorPal7(3799), colorPal5(3800), colorPal5(3801)], [colorPal3(3802), colorPal5(3803), colorPal7(3804)], [colorPal3(3805), colorPal5(3806)], [colorPal3(3807)], [colorPal3(3808)], [colorPal3(3809), colorPal5(3810), colorPal9(3811), colorPal5(3812)], [colorPal3(3813), colorPal5(3814), colorPal9(3815)], [colorPal3(3816), colorPal9(3817)], [colorPal3(3818)], [colorPal3(3819)]], - [undefined, [colorPal3(3820), colorPal5(3821)], [colorPal3(3822), colorPal5(3823), colorPal9(3824), colorPal5(3825)], [colorPal3(3826), colorPal5(3827), colorPal7(3828), colorPal13(3829), colorPal7(3830)], [colorPal3(3831), colorPal5(3832)], [colorPal3(3833), colorPal7(3834), colorPal7(3835), colorPal5(3836), colorPal5(3837)], [colorPal3(3838), colorPal5(3839), colorPal7(3840)], [colorPal3(3841), colorPal5(3842)], [colorPal3(3843)], [colorPal3(3844)], [colorPal3(3845), colorPal5(3846), colorPal9(3847), colorPal5(3848)], [colorPal3(3849), colorPal5(3850), colorPal9(3851)], [colorPal3(3852), colorPal9(3853)], [colorPal3(3854)], [colorPal3(3855)]] -]; -export const chestAccessoriesBehind: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(3856), colorPal3(3857), colorPal7(3858)], [], [], []], - [undefined, [colorPal3(3859), colorPal3(3860), colorPal7(3861)], [], [], []], - [undefined, [colorPal3(3862), colorPal3(3863), colorPal7(3864)], [], [], []], - [undefined, [colorPal3(3865), colorPal3(3866), colorPal7(3867)], [], [], []], - [undefined, [colorPal3(3868), colorPal3(3869), colorPal7(3870)], [], [], []], - [undefined, [colorPal3(3871), colorPal3(3872), colorPal7(3873)], [], [], []], - [undefined, [colorPal3(3874), colorPal3(3875), colorPal7(3876)], [], [], []], - [undefined, [colorPal3(3877), colorPal3(3878), colorPal7(3879)], [], [], []], - [undefined, [colorPal3(3880), colorPal3(3881), colorPal7(3882)], [], [], []], - [undefined, [colorPal3(3883), colorPal3(3884), colorPal7(3885)], [], [], []], - [undefined, [colorPal3(3886), colorPal3(3887), colorPal7(3888)], [], [], []], - [undefined, [colorPal3(3889), colorPal3(3890), colorPal7(3891)], [], [], []], - [undefined, [colorPal17(3892), colorPal3(3893), colorPal7(3894)], [], [], []], - [undefined, [colorPal3(3895), colorPal3(3896), colorPal7(3897)], [], [], []], - [undefined, [colorPal3(3898), colorPal3(3899), colorPal7(3900)], [], [], []] -]; -export const chestAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(3901), colorPal5(3902), colorPal9(3903)], [colorPal3(3904), colorPal7(3905), colorPal5(3906), colorPal5(3907), colorPal7(3908), colorPal5(3909), colorPal7(3910), colorPal5(3911), colorPal7(3912), colorPal11(3913), colorPal9(3914), colorPal5(3915), colorPal11(3916)], [colorPal5(3917), colorPal7(3918), colorPal11(3919)], [colorPal5(3920), colorPal7(3921)]], - [undefined, [colorPal3(3922), colorPal5(3923), colorPal9(3924)], [colorPal3(3925), colorPal7(3926), colorPal5(3927), colorPal5(3928), colorPal7(3929), colorPal5(3930), colorPal7(3931), colorPal5(3932), colorPal7(3933), colorPal11(3934), colorPal9(3935), colorPal5(3936), colorPal11(3937)], [colorPal5(3938), colorPal7(3939), colorPal11(3940)], [colorPal5(3941), colorPal7(3942)]], - [undefined, [colorPal3(3943), colorPal5(3944), colorPal9(3945)], [colorPal3(3946), colorPal7(3947), colorPal5(3948), colorPal5(3949), colorPal7(3950), colorPal5(3951), colorPal7(3952), colorPal5(3953), colorPal7(3954), colorPal11(3955), colorPal9(3956), colorPal5(3957), colorPal11(3958)], [colorPal5(3959), colorPal7(3960), colorPal11(3961)], [colorPal5(3962), colorPal7(3963)]], - [undefined, [colorPal3(3964), colorPal5(3965), colorPal9(3966)], [colorPal3(3967), colorPal7(3968), colorPal5(3969), colorPal5(3970), colorPal7(3971), colorPal5(3972), colorPal7(3973), colorPal5(3974), colorPal7(3975), colorPal11(3976), colorPal9(3977), colorPal5(3978), colorPal11(3979)], [colorPal5(3980), colorPal7(3981), colorPal11(3982)], [colorPal5(3983), colorPal7(3984)]], - [undefined, [colorPal3(3985), colorPal5(3986), colorPal9(3987)], [colorPal3(3988), colorPal7(3989), colorPal5(3990), colorPal5(3991), colorPal7(3992), colorPal5(3993), colorPal7(3994), colorPal5(3995), colorPal7(3996), colorPal11(3997), colorPal9(3998), colorPal5(3999), colorPal11(4000)], [colorPal5(4001), colorPal7(4002), colorPal11(4003)], [colorPal5(4004), colorPal7(4005)]], - [undefined, [colorPal3(4006), colorPal5(4007), colorPal9(4008)], [colorPal3(4009), colorPal7(4010), colorPal5(4011), colorPal5(4012), colorPal7(4013), colorPal5(4014), colorPal7(4015), colorPal5(4016), colorPal7(4017), colorPal11(4018), colorPal9(4019), colorPal5(4020), colorPal11(4021)], [colorPal5(4022), colorPal7(4023), colorPal11(4024)], [colorPal5(4025), colorPal7(4026)]], - [undefined, [colorPal3(4027), colorPal5(4028), colorPal9(4029)], [colorPal3(4030), colorPal7(4031), colorPal5(4032), colorPal5(4033), colorPal7(4034), colorPal5(4035), colorPal7(4036), colorPal5(4037), colorPal7(4038), colorPal11(4039), colorPal9(4040), colorPal5(4041), colorPal11(4042)], [colorPal5(4043), colorPal7(4044), colorPal11(4045)], [colorPal5(4046), colorPal7(4047)]], - [undefined, [colorPal3(4048), colorPal5(4049), colorPal9(4050)], [colorPal3(4051), colorPal7(4052), colorPal5(4053), colorPal5(4054), colorPal7(4055), colorPal5(4056), colorPal7(4057), colorPal5(4058), colorPal7(4059), colorPal11(4060), colorPal9(4061), colorPal5(4062), colorPal11(4063)], [colorPal5(4064), colorPal7(4065), colorPal11(4066)], [colorPal5(4067), colorPal7(4068)]], - [undefined, [colorPal3(4069), colorPal5(4070), colorPal9(4071)], [colorPal3(4072), colorPal7(4073), colorPal5(4074), colorPal5(4075), colorPal7(4076), colorPal5(4077), colorPal7(4078), colorPal5(4079), colorPal7(4080), colorPal11(4081), colorPal9(4082), colorPal5(4083), colorPal11(4084)], [colorPal5(4085), colorPal7(4086), colorPal11(4087)], [colorPal5(4088), colorPal7(4089)]], - [undefined, [colorPal3(4090), colorPal5(4091), colorPal9(4092)], [colorPal3(4093), colorPal7(4094), colorPal5(4095), colorPal5(4096), colorPal7(4097), colorPal5(4098), colorPal7(4099), colorPal5(4100), colorPal7(4101), colorPal11(4102), colorPal9(4103), colorPal5(4104), colorPal11(4105)], [colorPal5(4106), colorPal7(4107), colorPal11(4108)], [colorPal5(4109), colorPal7(4110)]], - [undefined, [colorPal3(4111), colorPal5(4112), colorPal9(4113)], [colorPal3(4114), colorPal7(4115), colorPal5(4116), colorPal5(4117), colorPal7(4118), colorPal5(4119), colorPal7(4120), colorPal5(4121), colorPal7(4122), colorPal11(4123), colorPal9(4124), colorPal5(4125), colorPal11(4126)], [colorPal5(4127), colorPal7(4128), colorPal11(4129)], [colorPal5(4130), colorPal7(4131)]], - [undefined, [colorPal3(4132), colorPal5(4133), colorPal9(4134)], [colorPal3(4135), colorPal7(4136), colorPal5(4137), colorPal5(4138), colorPal7(4139), colorPal5(4140), colorPal7(4141), colorPal5(4142), colorPal7(4143), colorPal11(4144), colorPal9(4145), colorPal5(4146), colorPal11(4147)], [colorPal5(4148), colorPal7(4149), colorPal11(4150)], [colorPal5(4151), colorPal7(4152)]], - [undefined, [colorPal3(4153), colorPal5(4154), colorPal9(4155)], [colorPal3(4156), colorPal7(4157), colorPal5(4158), colorPal5(4159), colorPal7(4160), colorPal5(4161), colorPal7(4162), colorPal5(4163), colorPal7(4164), colorPal11(4165), colorPal9(4166), colorPal5(4167), colorPal11(4168)], [colorPal5(4169), colorPal7(4170), colorPal11(4171)], [colorPal5(4172), colorPal7(4173)]], - [undefined, [colorPal3(4174), colorPal5(4175), colorPal9(4176)], [colorPal3(4177), colorPal7(4178), colorPal5(4179), colorPal5(4180), colorPal7(4181), colorPal5(4182), colorPal7(4183), colorPal5(4184), colorPal7(4185), colorPal11(4186), colorPal9(4187), colorPal5(4188), colorPal11(4189)], [colorPal5(4190), colorPal7(4191), colorPal11(4192)], [colorPal5(4193), colorPal7(4194)]], - [undefined, [colorPal3(4195), colorPal5(4196), colorPal9(4197)], [colorPal3(4198), colorPal7(4199), colorPal5(4200), colorPal5(4201), colorPal7(4202), colorPal5(4203), colorPal7(4204), colorPal5(4205), colorPal7(4206), colorPal11(4207), colorPal9(4208), colorPal5(4209), colorPal11(4210)], [colorPal5(4211), colorPal7(4212), colorPal11(4213)], [colorPal5(4214), colorPal7(4215)]] -]; -export const backAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal3(4216)], [colorPal3(4217), colorPal7(4218), colorPal13(4219), colorPal5(4220)], [colorPal3(4221), colorPal7(4222), colorPal13(4223), colorPal5(4224)], [colorPal3(4225), colorPal9(4226), colorPal13(4227), colorPal5(4228)], [colorPal3(4229), colorPal3(4230)]], - [undefined, [colorPal3(4231)], [colorPal3(4232), colorPal7(4233), colorPal13(4234), colorPal5(4235)], [colorPal3(4236), colorPal7(4237), colorPal13(4238), colorPal5(4239)], [colorPal3(4240), colorPal9(4241), colorPal13(4242), colorPal5(4243)], [colorPal3(4244), colorPal3(4245)]], - [undefined, [colorPal3(4246)], [colorPal3(4247), colorPal7(4248), colorPal13(4249), colorPal5(4250)], [colorPal3(4251), colorPal7(4252), colorPal13(4253), colorPal5(4254)], [colorPal3(4255), colorPal9(4256), colorPal13(4257), colorPal5(4258)], [colorPal3(4259), colorPal3(4260)]], - [undefined, [colorPal3(4261)], [colorPal3(4262), colorPal7(4263), colorPal13(4264), colorPal5(4265)], [colorPal3(4266), colorPal7(4267), colorPal13(4268), colorPal5(4269)], [colorPal3(4270), colorPal9(4271), colorPal13(4272), colorPal5(4273)], [colorPal3(4274), colorPal3(4275)]], - [undefined, [colorPal3(4276)], [colorPal3(4277), colorPal7(4278), colorPal13(4279), colorPal5(4280)], [colorPal3(4281), colorPal7(4282), colorPal13(4283), colorPal5(4284)], [colorPal3(4285), colorPal9(4286), colorPal13(4287), colorPal5(4288)], [colorPal3(4289), colorPal3(4290)]], - [undefined, [colorPal3(4291)], [colorPal3(4292), colorPal7(4293), colorPal13(4294), colorPal5(4295)], [colorPal3(4296), colorPal7(4297), colorPal13(4298), colorPal5(4299)], [colorPal3(4300), colorPal9(4301), colorPal13(4302), colorPal5(4303)], [colorPal3(4304), colorPal3(4305)]], - [undefined, [colorPal3(4306)], [colorPal3(4307), colorPal7(4308), colorPal13(4309), colorPal5(4310)], [colorPal3(4311), colorPal7(4312), colorPal13(4313), colorPal5(4314)], [colorPal3(4315), colorPal9(4316), colorPal13(4317), colorPal5(4318)], [colorPal3(4319), colorPal3(4320)]], - [undefined, [colorPal3(4321)], [colorPal3(4322), colorPal7(4323), colorPal13(4324), colorPal5(4325)], [colorPal3(4326), colorPal7(4327), colorPal13(4328), colorPal5(4329)], [colorPal3(4330), colorPal9(4331), colorPal13(4332), colorPal5(4333)], [colorPal3(4334), colorPal3(4335)]], - [undefined, [colorPal3(4336)], [colorPal3(4337), colorPal7(4338), colorPal13(4339), colorPal5(4340)], [colorPal3(4341), colorPal7(4342), colorPal13(4343), colorPal5(4344)], [colorPal3(4345), colorPal9(4346), colorPal13(4347), colorPal5(4348)], [colorPal3(4349), colorPal3(4350)]], - [undefined, [colorPal3(4351)], [colorPal3(4352), colorPal7(4353), colorPal13(4354), colorPal5(4355)], [colorPal3(4356), colorPal7(4357), colorPal13(4358), colorPal5(4359)], [colorPal3(4360), colorPal9(4361), colorPal13(4362), colorPal5(4363)], [colorPal3(4364), colorPal3(4365)]], - [undefined, [colorPal3(4366)], [colorPal3(4367), colorPal7(4368), colorPal13(4369), colorPal5(4370)], [colorPal3(4371), colorPal7(4372), colorPal13(4373), colorPal5(4374)], [colorPal3(4375), colorPal9(4376), colorPal13(4377), colorPal5(4378)], [colorPal3(4379), colorPal3(4380)]], - [undefined, [colorPal3(4381)], [colorPal3(4382), colorPal7(4383), colorPal13(4384), colorPal5(4385)], [colorPal3(4386), colorPal7(4387), colorPal13(4388), colorPal5(4389)], [colorPal3(4390), colorPal9(4391), colorPal13(4392), colorPal5(4393)], [colorPal3(4394), colorPal3(4395)]], - [undefined, [colorPal3(4396)], [colorPal3(4397), colorPal7(4398), colorPal13(4399), colorPal5(4400)], [colorPal3(4401), colorPal7(4402), colorPal13(4403), colorPal5(4404)], [colorPal3(4405), colorPal9(4406), colorPal13(4407), colorPal5(4408)], [colorPal3(4409), colorPal3(4410)]], - [undefined, [colorPal3(4411)], [colorPal3(4412), colorPal7(4413), colorPal13(4414), colorPal5(4415)], [colorPal3(4416), colorPal7(4417), colorPal13(4418), colorPal5(4419)], [colorPal3(4420), colorPal9(4421), colorPal13(4422), colorPal5(4423)], [colorPal3(4424), colorPal3(4425)]], - [undefined, [colorPal3(4426)], [colorPal3(4427), colorPal7(4428), colorPal13(4429), colorPal5(4430)], [colorPal3(4431), colorPal7(4432), colorPal13(4433), colorPal5(4434)], [colorPal3(4435), colorPal9(4436), colorPal13(4437), colorPal5(4438)], [colorPal3(4439), colorPal3(4440)]] -]; -export const waistAccessories: AnimatedSprites = [ - undefined, - [undefined, [colorPal9(4441)], [colorPal9(4442)], [colorPal9(4443)]], - [undefined, [colorPal9(4444)], [colorPal9(4445)], [colorPal9(4446)]], - [undefined, [colorPal9(4447)], [colorPal9(4448)], [colorPal9(4449)]], - [undefined, [colorPal9(4450)], [colorPal9(4451)], [colorPal9(4452)]], - [undefined, [colorPal9(4453)], [colorPal9(4454)], [colorPal9(4455)]], - [undefined, [colorPal9(4456)], [colorPal9(4457)], [colorPal9(4458)]], - [undefined, [colorPal9(4459)], [colorPal9(4460)], [colorPal9(4461)]], - [undefined, [colorPal9(4462)], [colorPal9(4463)], [colorPal9(4464)]], - [undefined, [colorPal9(4465)], [colorPal9(4466)], [colorPal9(4467)]], - [undefined, [colorPal9(4468)], [colorPal9(4469)], [colorPal9(4470)]], - [undefined, [colorPal9(4471)], [colorPal9(4472)], [colorPal9(4473)]], - [undefined, [colorPal9(4474)], [colorPal9(4475)], [colorPal9(4476)]], - [undefined, [colorPal9(4477)], [colorPal9(4478)], [colorPal9(4479)]], - [undefined, [colorPal9(4480)], [colorPal9(4481)], [colorPal9(4482)]], - [undefined, [colorPal9(4483)], [colorPal9(4484)], [colorPal9(4485)]], - [undefined, [colorPal9(4486)], [colorPal9(4487)], [colorPal9(4488)]] -]; -export const head: AnimatedSprites = [ - undefined, - [[colorPal3(4489), colorPal7(4490), colorPal7(4491), colorPal7(4492), colorPal7(4493), colorPal7(4494), colorPal11(4495), colorPal11(4496), colorPal9(4497), colorPal9(4498), colorPal5(4499), colorPal5(4500), colorPal9(4501), colorPal5(4502), colorPal7(4503), colorPal7(4504), colorPal7(4505), colorPal7(4506), colorPal5(4507), colorPal11(4508)]], - [[colorPal3(4509)]] -]; -export const earsFar: StaticSprites = [ - [colorPal3(4510), colorPal7(4511)], - [colorPal3(4512), colorPal9(4513)], - [colorPal3(4514), colorPal9(4515)], - [colorPal3(4516), colorPal5(4517)], - [colorPal3(4518), colorPal7(4519), colorPal7(4520)], - [colorPal3(4521), colorPal7(4522), colorPal9(4523)] -]; - -; -export const ears: StaticSprites = [ - [colorPal3(4524), colorPal7(4525)], - [colorPal3(4526), colorPal9(4527)], - [colorPal3(4528), colorPal9(4529)], - [colorPal3(4530), colorPal5(4531)], - [colorPal3(4532), colorPal7(4533), colorPal7(4534)], - [colorPal3(4535), colorPal7(4536), colorPal9(4537)] -]; - -; -export const hornsBehind: StaticSprites = [ - undefined, - undefined, - undefined, - undefined, - [colorPal3(4538), colorPal5(4539)], - [colorPal3(4540), colorPal7(4541)], - [colorPal3(4542), colorPal9(4543), colorPal9(4544)], - [colorPal3(4545), colorPal9(4546), colorPal13(4547)], - [colorPal3(4548), colorPal9(4549), colorPal13(4550)], - [colorPal3(4551), colorPal7(4552)], - [colorPal3(4553), colorPal11(4554), colorPal5(4555), colorPal5(4556)], - [colorPal3(4557), colorPal9(4558), colorPal5(4559), colorPal5(4560)], - [colorPal3(4561), colorPal9(4562), colorPal5(4563)], - [colorPal3(4564), colorPal7(4565)], - [] -]; - -; -export const horns: StaticSprites = [ - undefined, - [colorPal3(4566), colorPal7(4567)], - [colorPal3(4568), colorPal5(4569)], - [colorPal3(4570), colorPal7(4571)], - [colorPal3(4572), colorPal5(4573)], - [colorPal3(4574), colorPal7(4575)], - [colorPal3(4576), colorPal9(4577), colorPal9(4578)], - [colorPal3(4579), colorPal9(4580), colorPal13(4581)], - [colorPal3(4582), colorPal9(4583), colorPal13(4584)], - [colorPal3(4585), colorPal7(4586)], - [colorPal3(4587), colorPal11(4588), colorPal5(4589), colorPal5(4590)], - [colorPal3(4591), colorPal9(4592), colorPal5(4593), colorPal5(4594)], - [colorPal3(4595), colorPal9(4596), colorPal5(4597)], - [colorPal3(4598), colorPal7(4599)], - [colorPal3(4600), colorPal9(4601)] -]; - -; -export const behindManes: StaticSprites = [ - undefined, - [colorPal3(4602), colorPal13(4603), colorPal13(4604), colorPal7(4605), colorPal5(4606), colorPal5(4607)], - undefined, - [colorPal3(4608), colorPal13(4609), colorPal13(4610), colorPal5(4611), colorPal5(4612), colorPal7(4613)], - undefined, - undefined, - undefined, - undefined, - undefined, - [colorPal3(4614), colorPal13(4615), colorPal13(4616), colorPal7(4617), colorPal5(4618)], - [colorPal3(4619), colorPal13(4620), colorPal13(4621), colorPal7(4622), colorPal5(4623), colorPal5(4624), colorPal13(4625)], - [colorPal3(4626), colorPal9(4627), colorPal11(4628), colorPal5(4629), colorPal5(4630)], - [colorPal3(4631), colorPal9(4632), colorPal9(4633), colorPal7(4634), colorPal5(4635), colorPal5(4636)], - undefined, - undefined, - undefined, - undefined, - undefined, - [colorPal3(4637), colorPal13(4638), colorPal13(4639), colorPal7(4640), colorPal5(4641), colorPal5(4642)], - undefined, - [colorPal3(4643), colorPal11(4644), colorPal11(4645), colorPal7(4646), colorPal5(4647), colorPal5(4648)], - [colorPal3(4649), colorPal13(4650), colorPal13(4651), colorPal7(4652), colorPal5(4653), colorPal5(4654)], - undefined, - undefined, - undefined, - [colorPal3(4655), colorPal7(4656), colorPal5(4657), colorPal13(4658), colorPal5(4659)], - undefined, - [colorPal3(4660), colorPal9(4661), colorPal13(4662), colorPal7(4663), colorPal5(4664), colorPal5(4665)], - [colorPal3(4666), colorPal9(4667), colorPal13(4668), colorPal7(4669), colorPal5(4670), colorPal5(4671)], - undefined, - [colorPal3(4672), colorPal13(4673), colorPal5(4674), colorPal11(4675), colorPal5(4676)], - [] -]; - -; -export const backBehindManes: StaticSprites = [ - undefined, - [colorPal3(4677), colorPal7(4678), colorPal7(4679), colorPal5(4680), colorPal5(4681), colorPal5(4682)], - [colorPal5(4683), colorPal13(4684), colorPal11(4685), colorPal9(4686), colorPal7(4687), colorPal7(4688)], - undefined, - [colorPal5(4689), colorPal11(4690), colorPal11(4691), colorPal7(4692), colorPal7(4693), colorPal7(4694)], - [colorPal3(4695), colorPal7(4696), colorPal7(4697), colorPal5(4698), colorPal5(4699)], - [colorPal3(4700), colorPal9(4701), colorPal11(4702), colorPal7(4703), colorPal5(4704), colorPal5(4705)], - [colorPal3(4706), colorPal9(4707), colorPal5(4708), colorPal5(4709), colorPal5(4710)], - undefined, - [colorPal3(4711), colorPal5(4712), colorPal11(4713), colorPal5(4714)], - undefined, - undefined, - [colorPal3(4715), colorPal5(4716), colorPal5(4717), colorPal5(4718)], - [colorPal3(4719), colorPal11(4720), colorPal7(4721), colorPal5(4722), colorPal5(4723)], - undefined, - undefined, - [colorPal3(4724), colorPal7(4725), colorPal7(4726), colorPal7(4727), colorPal5(4728), colorPal5(4729)], - [colorPal5(4730), colorPal13(4731), colorPal13(4732), colorPal9(4733), colorPal7(4734), colorPal7(4735)], - [colorPal3(4736), colorPal7(4737), colorPal5(4738), colorPal7(4739), colorPal5(4740), colorPal5(4741)], - [colorPal3(4742), colorPal7(4743), colorPal13(4744), colorPal7(4745), colorPal5(4746), colorPal5(4747)], - [colorPal5(4748), colorPal9(4749), colorPal13(4750), colorPal7(4751)], - [colorPal3(4752), colorPal7(4753), colorPal13(4754), colorPal7(4755), colorPal5(4756), colorPal5(4757)], - [colorPal3(4758), colorPal9(4759), colorPal5(4760), colorPal9(4761), colorPal5(4762)], - [colorPal3(4763), colorPal7(4764), colorPal7(4765), colorPal5(4766)], - [colorPal3(4767), colorPal11(4768), colorPal7(4769), colorPal5(4770), colorPal5(4771)], - [colorPal3(4772), colorPal11(4773), colorPal7(4774), colorPal7(4775), colorPal5(4776)], - [colorPal3(4777), colorPal11(4778), colorPal7(4779), colorPal7(4780), colorPal5(4781), colorPal5(4782), colorPal5(4783)], - [colorPal3(4784)], - [colorPal3(4785), colorPal9(4786), colorPal7(4787), colorPal5(4788), colorPal5(4789)] -]; - -; -export const backFrontManes: StaticSprites = [ - undefined, - [colorPal3(4790), colorPal7(4791), colorPal7(4792), colorPal5(4793), colorPal5(4794), colorPal5(4795)], - undefined, - [colorPal3(4796), colorPal9(4797), colorPal9(4798), colorPal7(4799), colorPal5(4800), colorPal5(4801)], - undefined, - undefined, - undefined, - undefined, - [colorPal3(4802), colorPal11(4803), colorPal11(4804), colorPal5(4805)], - undefined, - [colorPal3(4806), colorPal7(4807), colorPal7(4808), colorPal5(4809), colorPal5(4810)], - [colorPal3(4811), colorPal9(4812), colorPal9(4813), colorPal7(4814), colorPal5(4815)], - undefined, - undefined, - [colorPal3(4816), colorPal7(4817), colorPal9(4818), colorPal5(4819), colorPal5(4820), colorPal5(4821)], - [colorPal3(4822), colorPal7(4823), colorPal13(4824), colorPal5(4825), colorPal5(4826), colorPal5(4827)], - [colorPal3(4828), colorPal7(4829), colorPal7(4830), colorPal7(4831), colorPal5(4832), colorPal5(4833)], - [colorPal5(4834), colorPal13(4835), colorPal13(4836), colorPal9(4837), colorPal7(4838), colorPal7(4839)], - [colorPal3(4840), colorPal7(4841), colorPal5(4842), colorPal7(4843), colorPal5(4844), colorPal5(4845)], - undefined, - [colorPal5(4846), colorPal9(4847), colorPal13(4848), colorPal7(4849)], - [colorPal3(4850), colorPal7(4851), colorPal13(4852), colorPal7(4853), colorPal5(4854), colorPal5(4855)], - [colorPal3(4856), colorPal9(4857), colorPal5(4858), colorPal9(4859), colorPal5(4860)], - [], - [], - [], - [], - [], - [] -]; - -; -export const topManes: StaticSprites = [ - undefined, - [colorPal3(4861), colorPal13(4862), colorPal13(4863), colorPal7(4864), colorPal5(4865), colorPal5(4866)], - [colorPal3(4867), colorPal11(4868), colorPal11(4869), colorPal7(4870), colorPal5(4871), colorPal5(4872)], - [colorPal3(4873), colorPal13(4874), colorPal13(4875), colorPal5(4876), colorPal5(4877), colorPal7(4878)], - [colorPal3(4879), colorPal11(4880), colorPal11(4881), colorPal7(4882), colorPal5(4883), colorPal5(4884)], - [colorPal3(4885), colorPal9(4886), colorPal9(4887), colorPal7(4888), colorPal5(4889)], - [colorPal3(4890), colorPal11(4891), colorPal9(4892), colorPal7(4893), colorPal5(4894), colorPal5(4895)], - [colorPal3(4896), colorPal9(4897), colorPal9(4898), colorPal7(4899), colorPal5(4900), colorPal5(4901)], - [colorPal3(4902), colorPal11(4903), colorPal11(4904), colorPal7(4905), colorPal5(4906), colorPal5(4907)], - [colorPal3(4908), colorPal13(4909), colorPal13(4910), colorPal7(4911), colorPal5(4912)], - [colorPal3(4913), colorPal13(4914), colorPal13(4915), colorPal7(4916), colorPal5(4917), colorPal5(4918), colorPal13(4919)], - [colorPal3(4920), colorPal9(4921), colorPal11(4922), colorPal5(4923), colorPal5(4924)], - [colorPal3(4925), colorPal9(4926), colorPal9(4927), colorPal7(4928), colorPal5(4929), colorPal5(4930)], - [colorPal3(4931), colorPal9(4932), colorPal7(4933), colorPal5(4934), colorPal5(4935)], - [colorPal3(4936), colorPal11(4937), colorPal9(4938), colorPal7(4939), colorPal5(4940)], - [colorPal3(4941), colorPal11(4942), colorPal7(4943), colorPal5(4944), colorPal5(4945)], - [colorPal3(4946), colorPal7(4947)], - [colorPal3(4948), colorPal11(4949), colorPal9(4950), colorPal7(4951), colorPal5(4952), colorPal5(4953)], - [colorPal3(4954), colorPal13(4955), colorPal13(4956), colorPal7(4957), colorPal5(4958), colorPal5(4959)], - [colorPal3(4960), colorPal9(4961), colorPal13(4962), colorPal7(4963), colorPal5(4964), colorPal5(4965)], - [colorPal3(4966), colorPal11(4967), colorPal11(4968), colorPal7(4969), colorPal5(4970), colorPal5(4971)], - [colorPal3(4972), colorPal13(4973), colorPal13(4974), colorPal7(4975), colorPal5(4976), colorPal5(4977)], - [colorPal3(4978), colorPal13(4979), colorPal13(4980), colorPal7(4981), colorPal5(4982), colorPal5(4983), colorPal9(4984)], - [colorPal3(4985), colorPal11(4986), colorPal13(4987), colorPal7(4988), colorPal5(4989), colorPal5(4990)], - [colorPal3(4991), colorPal13(4992), colorPal11(4993), colorPal7(4994), colorPal5(4995), colorPal5(4996)], - [colorPal3(4997), colorPal7(4998), colorPal5(4999), colorPal13(5000), colorPal5(5001)], - [colorPal3(5002), colorPal11(5003), colorPal11(5004), colorPal7(5005), colorPal5(5006), colorPal5(5007)], - [colorPal3(5008), colorPal9(5009), colorPal13(5010), colorPal7(5011), colorPal5(5012), colorPal5(5013)], - [colorPal3(5014), colorPal9(5015), colorPal13(5016), colorPal7(5017), colorPal5(5018), colorPal5(5019)], - [colorPal3(5020), colorPal11(5021), colorPal13(5022), colorPal7(5023), colorPal5(5024), colorPal5(5025)], - [colorPal3(5026), colorPal13(5027), colorPal5(5028), colorPal11(5029), colorPal5(5030)], - [colorPal3(5031), colorPal7(5032), colorPal5(5033), colorPal7(5034), colorPal5(5035), colorPal5(5036), colorPal7(5037)] -]; - -; -export const frontManes: StaticSprites = [ - undefined, - [colorPal3(5038), colorPal13(5039), colorPal13(5040), colorPal7(5041), colorPal5(5042), colorPal5(5043)], - [colorPal3(5044), colorPal11(5045), colorPal11(5046), colorPal7(5047), colorPal5(5048), colorPal5(5049)], - [colorPal3(5050), colorPal13(5051), colorPal13(5052), colorPal5(5053), colorPal5(5054), colorPal7(5055)], - [colorPal3(5056), colorPal11(5057), colorPal11(5058), colorPal7(5059), colorPal5(5060), colorPal5(5061)], - [colorPal3(5062), colorPal9(5063), colorPal9(5064), colorPal7(5065), colorPal5(5066)], - [colorPal3(5067), colorPal11(5068), colorPal9(5069), colorPal7(5070), colorPal5(5071), colorPal5(5072)], - undefined, - [colorPal3(5073), colorPal11(5074), colorPal11(5075), colorPal7(5076), colorPal5(5077), colorPal5(5078)], - undefined, - [colorPal3(5079), colorPal13(5080), colorPal13(5081), colorPal7(5082), colorPal5(5083), colorPal5(5084), colorPal13(5085)], - [colorPal3(5086), colorPal9(5087), colorPal11(5088), colorPal5(5089), colorPal5(5090)], - [colorPal3(5091), colorPal9(5092), colorPal9(5093), colorPal7(5094), colorPal5(5095), colorPal5(5096)], - undefined, - [colorPal3(5097), colorPal11(5098), colorPal9(5099), colorPal7(5100), colorPal5(5101)], - undefined, - undefined, - [colorPal3(5102), colorPal11(5103), colorPal9(5104), colorPal7(5105), colorPal5(5106), colorPal5(5107)], - [colorPal3(5108), colorPal13(5109), colorPal13(5110), colorPal7(5111), colorPal5(5112), colorPal5(5113)], - undefined, - [colorPal3(5114), colorPal11(5115), colorPal11(5116), colorPal7(5117), colorPal5(5118), colorPal5(5119)], - [colorPal3(5120), colorPal13(5121), colorPal13(5122), colorPal7(5123), colorPal5(5124), colorPal5(5125)], - [colorPal3(5126), colorPal13(5127), colorPal13(5128), colorPal7(5129), colorPal5(5130), colorPal5(5131), colorPal9(5132)], - undefined, - [colorPal3(5133), colorPal13(5134), colorPal11(5135), colorPal7(5136), colorPal5(5137), colorPal5(5138)], - [colorPal3(5139), colorPal7(5140), colorPal5(5141), colorPal13(5142), colorPal5(5143)], - [colorPal3(5144), colorPal11(5145), colorPal11(5146), colorPal7(5147), colorPal5(5148), colorPal5(5149)], - undefined, - undefined, - [colorPal3(5150), colorPal11(5151), colorPal13(5152), colorPal7(5153), colorPal5(5154), colorPal5(5155)], - undefined, - [colorPal3(5156), colorPal7(5157), colorPal5(5158), colorPal7(5159), colorPal5(5160), colorPal5(5161), colorPal7(5162)] -]; - -; -export const facialHairBehind: StaticSprites = [ - undefined, - [colorPal3(5163)], - [colorPal3(5164), colorPal7(5165)], - undefined, - [colorPal3(5166), colorPal7(5167), colorPal9(5168)], - [colorPal3(5169), colorPal5(5170)], - [colorPal3(5171), colorPal7(5172), colorPal9(5173)], - [colorPal3(5174), colorPal7(5175), colorPal17(5176)], - [colorPal3(5177), colorPal17(5178), colorPal7(5179)], - [colorPal3(5180), colorPal13(5181), colorPal7(5182), colorPal7(5183)], - [colorPal3(5184), colorPal13(5185), colorPal7(5186), colorPal9(5187)], - [colorPal3(5188), colorPal13(5189), colorPal7(5190), colorPal9(5191)], - [colorPal3(5192), colorPal13(5193), colorPal7(5194), colorPal9(5195)], - [colorPal5(5196), colorPal13(5197), colorPal9(5198), colorPal13(5199)], - [colorPal5(5200), colorPal13(5201), colorPal9(5202), colorPal13(5203)], - [colorPal3(5204), colorPal17(5205), colorPal7(5206), colorPal11(5207)] -]; - -; -export const facialHair: StaticSprites = [ - undefined, - undefined, - undefined, - [colorPal3(5208)], - [colorPal3(5209), colorPal7(5210), colorPal9(5211)], - [colorPal3(5212), colorPal5(5213)], - undefined, - [colorPal3(5214), colorPal7(5215), colorPal17(5216)], - [colorPal3(5217), colorPal17(5218), colorPal7(5219)], - [colorPal3(5220), colorPal13(5221), colorPal7(5222), colorPal7(5223)], - [colorPal3(5224), colorPal13(5225), colorPal7(5226), colorPal9(5227)], - [colorPal3(5228), colorPal13(5229), colorPal7(5230), colorPal9(5231)], - [colorPal3(5232), colorPal13(5233), colorPal7(5234), colorPal9(5235)], - [colorPal5(5236), colorPal13(5237), colorPal9(5238), colorPal13(5239)], - [colorPal5(5240), colorPal13(5241), colorPal9(5242), colorPal13(5243)], - [colorPal3(5244), colorPal17(5245), colorPal7(5246), colorPal11(5247)] -]; - -; -export const earAccessoriesBehind: StaticSprites = [ - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [colorPal3(5248)], - undefined, - [colorPal3(5249), colorPal7(5250), colorPal7(5251), colorPal7(5252)], - [colorPal3(5253), colorPal11(5254), colorPal11(5255), colorPal11(5256)], - [] -]; - -; -export const earAccessories: StaticSprites = [ - undefined, - [colorPal3(5257)], - [colorPal3(5258)], - [colorPal3(5259)], - [colorPal3(5260)], - [colorPal5(5261)], - [colorPal3(5262), colorPal11(5263)], - [colorPal3(5264)], - [colorPal3(5265)], - [colorPal3(5266)], - [colorPal3(5267), colorPal7(5268), colorPal7(5269), colorPal7(5270)], - [colorPal3(5271), colorPal11(5272), colorPal11(5273), colorPal11(5274)], - [colorPal3(5275)] -]; - -; -export const headAccessoriesBehind: StaticSprites = [ - undefined, - [colorPal3(5276), colorPal5(5277)], - [colorPal3(5278), colorPal9(5279), colorPal9(5280), colorPal9(5281)], - [colorPal3(5282), colorPal5(5283), colorPal7(5284), colorPal9(5285), colorPal7(5286)], - [colorPal3(5287), colorPal5(5288)], - [colorPal3(5289), colorPal7(5290)], - [colorPal3(5291), colorPal7(5292), colorPal13(5293)], - [colorPal3(5294), colorPal11(5295), colorPal11(5296)], - [colorPal3(5297), colorPal11(5298), colorPal13(5299)], - [colorPal3(5300), colorPal11(5301), colorPal7(5302), colorPal9(5303), colorPal9(5304)], - [colorPal3(5305), colorPal9(5306), colorPal13(5307)], - [colorPal5(5308), colorPal11(5309), colorPal13(5310)], - [colorPal3(5311), colorPal7(5312)], - [colorPal3(5313), colorPal9(5314), colorPal13(5315)], - [colorPal3(5316), colorPal9(5317)], - [colorPal3(5318), colorPal9(5319)], - [colorPal3(5320), colorPal7(5321)], - [colorPal3(5322), colorPal7(5323)], - [colorPal3(5324), colorPal7(5325), colorPal5(5326), colorPal5(5327)], - [colorPal3(5328), colorPal7(5329), colorPal11(5330)] -]; - -; -export const headAccessories: StaticSprites = [ - -]; - -; -export const faceAccessories: StaticSpritesExtra = [ - undefined, - [createColorExtraPal(5332, 3, 5331, [10])], - [colorPal3(5333), colorPal7(5334), colorPal7(5335)], - [createColorExtraPal(5337, 3, 5336, [11])], - [createColorExtraPal(5339, 3, 5338, [12])], - [createColorExtraPal(5341, 5, 5340, [11])], - [createColorExtraPal(5343, 3, 5342, [11])], - [createColorExtraPal(5345, 3, 5344, [11])], - [colorPal3(5346)], - [colorPal5(5347)], - [colorPal5(5348)], - [colorPal3(5349), colorPal7(5350), colorPal7(5351)], - [createColorExtraPal(5353, 3, 5352, [13])], - [createColorExtraPal(5355, 5, 5354, [13])], - [colorPal3(5356), colorPal5(5357)] -]; -export const faceAccessoriesExtra: StaticSprites = [ - undefined, - [createColorPalette(5331, [10])], - [emptyColorPalette(), emptyColorPalette(), emptyColorPalette()], - [createColorPalette(5336, [11])], - [createColorPalette(5338, [12])], - [createColorPalette(5340, [11])], - [createColorPalette(5342, [11])], - [createColorPalette(5344, [11])], - [emptyColorPalette()], - [emptyColorPalette()], - [emptyColorPalette()], - [emptyColorPalette(), emptyColorPalette(), emptyColorPalette()], - [createColorPalette(5352, [13])], - [createColorPalette(5354, [13])], - [emptyColorPalette(), emptyColorPalette()], -]; -; -export const faceAccessories2: StaticSpritesExtra = [ - undefined, - undefined, - undefined, - undefined, - [colorPal3(5358)], - [colorPal5(5359)], - undefined, - undefined, - undefined, - [colorPal5(5360)], - undefined, - [colorPal3(5361), colorPal7(5362), colorPal7(5363)], - undefined, - [colorPal5(5364)], - [colorPal3(5365), colorPal5(5366)] -]; -export const faceAccessories2Extra: StaticSprites = [ - undefined, - undefined, - undefined, - undefined, - [emptyColorPalette()], - [emptyColorPalette()], - undefined, - undefined, - undefined, - [emptyColorPalette()], - undefined, - [emptyColorPalette(), emptyColorPalette(), emptyColorPalette()], - undefined, - [emptyColorPalette()], - [emptyColorPalette(), emptyColorPalette()], -]; -; -export const extraAccessoriesBehind: StaticSprites = [ - [colorPal11(5367)], - [colorPal5(5368)], - undefined, - [colorPal7(5369)], - [colorPal9(5370)], - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - undefined, - [colorPal7(5371)], - [colorPal9(5372)], - [colorPal5(5373)], - [colorPal5(5374)], - [colorPal13(5375)], - [] -]; - -; -export const extraAccessories: StaticSprites = [ - [colorPal11(5376)], - [colorPal5(5377)], - [colorPal5(5378)], - [colorPal7(5379)], - [colorPal9(5380)], - [colorPal13(5381)], - [colorPal5(5382)], - [colorPal11(5383)], - [colorPal9(5384)], - [colorPal11(5385), colorPal11(5386)], - [colorPal9(5387)], - [colorPal9(5388), colorPal9(5389)], - [colorPal7(5390)], - [colorPal9(5391)], - undefined, - undefined, - [colorPal13(5392)], - [colorPal13(5393)] -]; - -; -export const pine_1 = createColorShadowPalette(5394, 5395, [14, 15, 16]); -export const pine_2 = createColorShadowPalette(5396, 5397, [14, 15, 16]); -export const pine_3Stump0 = createColorPalette(5398, [14, 15, 16]); -export const pine_3Crown0_0 = createColorShadowPalette(5399, 5400, [14, 15, 16]); -export const pine_4Stump0 = createColorPalette(5401, [14, 15, 16]); -export const pine_4Crown0_0 = createColorShadowPalette(5402, 5403, [14, 15, 16]); -export const pine_5Stump0 = createColorPalette(5404, [14, 15, 16]); -export const pine_5Crown0_0 = createColorShadowPalette(5405, 5406, [14, 15, 16]); -export const pine_6Stump0 = createColorPalette(5407, [14, 15, 16]); -export const pine_6Crown0_0 = createColorShadowPalette(5408, 5409, [14, 15, 16]); -export const tree_1 = createColorShadowPalette(5410, 5411, [17, 18, 19, 20, 21]); -export const tree_2 = createColorShadowPalette(5412, 5413, [17, 18, 19, 20, 21]); -export const tree_3 = createColorShadowPalette(5414, 5415, [17, 18, 19, 20, 21]); -export const tree_4Stump0 = createColorPalette(5416, [17, 18, 19, 20, 21]); -export const tree_4Trunk0 = createColorPalette(5417, [17, 18, 19, 20, 21]); -export const tree_4Crown0_0 = createColorShadowPalette(5418, 5419, [17, 18, 19, 20, 21]); -export const tree_5Stump0 = createColorPalette(5420, [17, 18, 19, 20, 21]); -export const tree_5Trunk0 = createColorPalette(5421, [17, 18, 19, 20, 21]); -export const tree_5Crown0_0 = createColorShadowPalette(5422, 5423, [17, 18, 19, 20, 21]); -export const tree_6Stump0 = createColorPalette(5424, [17, 18, 19, 20, 21]); -export const tree_6StumpWinter0 = createColorPalette(5425, [22]); -export const tree_6Trunk0 = createColorPalette(5426, [17, 18, 19, 20, 21]); -export const tree_6Crown0_0 = createColorShadowPalette(5427, 5428, [17, 18, 19, 20, 21]); -export const tree_6Crown0_1 = createColorShadowPalette(5427, 5429, [17, 18, 19, 20, 21]); -export const tree_6Stump1 = createColorPalette(5430, [17, 18, 19, 20, 21]); -export const tree_6StumpWinter1 = createColorPalette(5431, [22]); -export const tree_6Trunk1 = createColorPalette(5432, [17, 18, 19, 20, 21]); -export const tree_6Crown1_0 = createColorShadowPalette(5433, 5434, [17, 18, 19, 20, 21]); -export const tree_6Crown1_1 = createColorShadowPalette(5433, 5435, [17, 18, 19, 20, 21]); -export const mine_cart_front = createColorShadowPalette(5436, 5437, [23]); -export const banana = createColorShadowPalette(5438, 5439, [24]); -export const basket_bin = createColorShadowPalette(5440, 5441, [25]); -export const boat = createColorPalette(5442, [26]); -export const boat_front = createColorPalette(5443, [27]); -export const boat_rope = createColorPalette(5444, [28]); -export const boat_sail = createColorShadowPalette(5445, 5446, [29]); -export const bookshelf = createColorShadowPalette(5447, 5448, [30]); -export const broom = createColorPalette(5449, [31]); -export const candy = createColorShadowPalette(5450, 5451, [32]); -export const christmastree = createColorPalette(5452, [33]); -export const cloud = createShadow(5453); -export const cookie = createColorPalette(5454, [34]); -export const cookie_pony = createColorPalette(5455, [35]); -export const crystal_lantern = createColorPalette(5456, [36]); -export const grass_tile = createColorPalette(5457, [37]); -export const hammer = createColorPalette(5458, [38]); -export const holly = createColorPalette(5459, [39]); -export const house = createColorShadowPalette(5460, 5461, [40]); -export const letter = createColorPalette(5462, [41]); -export const mango = createColorShadowPalette(5463, 5464, [42]); -export const mine_cart = createColorShadowPalette(5465, 5466, [43]); -export const mine_cart_back = createColorPalette(5467, [44]); -export const barrel = createColorShadowPalette(5468, 5469, [45]); -export const mine_closed = createColorPalette(5470, [46]); -export const mine_entrance = createColorShadowPalette(5471, 5472, [47]); -export const mine_rail_fade_up = createColorShadowPalette(5473, 5474, [48]); -export const mistletoe = createColorPalette(5475, [49]); -export const pear = createColorShadowPalette(5476, 5477, [50]); -export const pickaxe = createColorPalette(5478, [51]); -export const rainfall = createColorPalette(5479, [52]); -export const rake = createColorPalette(5480, [53]); -export const rope_rack = createColorShadowPalette(5481, 5482, [54]); -export const rose = createColorShadowPalette(5483, 5484, [55]); -export const route_pole = createColorShadowPalette(5485, 5486, [56]); -export const saw = createColorPalette(5487, [57]); -export const shovel = createColorPalette(5488, [58]); -export const sign_winter = createColorShadowPalette(5489, 5490, [59]); -export const spider = createColorPalette(5491, [60]); -export const wall_v_placeholder = createColorPalette(5492, [52]); -export const tile = createColorPalette(5493, [61]); -export const tile_none = createColorPalette(5494, [62]); -export const tools_icon = createColorPalette(5495, [63]); -export const wall_h_placeholder = createColorPalette(5496, [52]); -export const wall_map = createColorShadowPalette(5497, 5498, [64]); -export const web = createColorPalette(5499, [60]); -export const table_3 = createColorShadowPalette(5500, 5501, [65]); -export const apple_1 = createColorShadowPalette(5502, 5503, [66, 67]); -export const apple_2 = createColorShadowPalette(5504, 5505, [66, 67]); -export const bench_back = createColorShadowPalette(5506, 5507, [68]); -export const bench_backh = createColorShadowPalette(5508, 5509, [68]); -export const bench_seat = createColorShadowPalette(5510, 5511, [68]); -export const bench_seath = createColorShadowPalette(5512, 5513, [68]); -export const bench_1 = createColorShadowPalette(5514, 5515, [68]); -export const bench_backh2 = createColorShadowPalette(5516, 5517, [68]); -export const box_baskets = createColorShadowPalette(5518, 5519, [69]); -export const box_empty = createColorShadowPalette(5520, 5521, [69]); -export const box_fruits = createColorShadowPalette(5522, 5523, [69]); -export const box_gifts = createColorShadowPalette(5524, 5525, [69]); -export const box_lanterns = createColorShadowPalette(5526, 5527, [69]); -export const candy_cane_1 = createColorPalette(5528, [70]); -export const candy_cane_2 = createColorPalette(5529, [70]); -export const carrot_hold = createColorShadowPalette(5530, 5531, [71, 72]); -export const carrot_1 = createColorShadowPalette(5532, 5533, [71, 72]); -export const carrot_1b = createColorShadowPalette(5534, 5535, [71, 72]); -export const carrot_2 = createColorShadowPalette(5536, 5537, [71, 72]); -export const carrot_2b = createColorShadowPalette(5538, 5539, [71, 72]); -export const carrot_3 = createColorShadowPalette(5540, 5541, [71, 72]); -export const carrot_4 = createColorShadowPalette(5542, 5543, [71, 72]); -export const clover_pick = createColorPalette(5544, [73]); -export const clover_mouth = createColorPalette(5545, [73]); -export const clover_1 = createColorShadowPalette(5546, 5547, [73]); -export const clover_2 = createColorShadowPalette(5548, 5549, [73]); -export const clover_3 = createColorShadowPalette(5550, 5551, [73]); -export const clover_patch3 = createColorPalette(5552, [73]); -export const clover_4 = createColorShadowPalette(5553, 5554, [73]); -export const clover_patch4 = createColorPalette(5555, [73]); -export const clover_5 = createColorShadowPalette(5556, 5557, [73]); -export const clover_patch5 = createColorShadowPalette(5558, 5559, [73]); -export const clover_patch6 = createColorShadowPalette(5560, 5561, [73]); -export const clover_patch7 = createColorShadowPalette(5562, 5563, [73]); -export const cookie_table_1 = createColorShadowPalette(5564, 5565, [74]); -export const cookie_table_2 = createColorShadowPalette(5566, 5567, [74]); -export const crate_1 = createColorShadowPalette(5568, 5569, [75, 76]); -export const crate_2 = createColorShadowPalette(5570, 5571, [75, 76]); -export const crate_3 = createColorShadowPalette(5572, 5573, [75, 76]); -export const crystals_held = createColorShadowPalette(5574, 5575, [77]); -export const crystals_cart_pile = createColorPalette(5576, [77]); -export const crystals_1 = createColorPalette(5577, [77]); -export const crystals_2 = createColorPalette(5578, [77]); -export const crystals_3 = createColorPalette(5579, [77]); -export const crystals_4 = createColorPalette(5580, [77]); -export const crystals_5 = createColorPalette(5581, [77]); -export const crystals_6 = createColorPalette(5582, [77]); -export const crystals_7 = createColorPalette(5583, [77]); -export const crystals_8 = createColorPalette(5584, [77]); -export const crystals_9 = createColorPalette(5585, [77]); -export const crystals_10 = createColorPalette(5586, [77]); -export const cushion_1 = createColorShadowPalette(5587, 5588, [78, 79, 80]); -export const direction_shadow_down_right = createShadow(5589); -export const direction_down_left = createColorPalette(5590, [81]); -export const direction_left_right = createColorPalette(5591, [81]); -export const direction_up_left = createColorPalette(5592, [81]); -export const direction_shadow_up_right = createShadow(5593); -export const direction_shadow_up_left = createShadow(5594); -export const direction_shadow_down_left = createShadow(5595); -export const direction_down_right = createColorPalette(5596, [81]); -export const direction_shadow_left = createShadow(5597); -export const direction_shadow_right = createShadow(5598); -export const direction_up_right = createColorPalette(5599, [81]); -export const direction_pole_3 = createColorShadowPalette(5600, 5601, [81]); -export const direction_pole_4 = createColorShadowPalette(5602, 5603, [81]); -export const direction_pole_5 = createColorShadowPalette(5604, 5605, [81]); -export const egg_1 = createColorShadowPalette(5606, 5607, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_2 = createColorShadowPalette(5608, 5609, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_3 = createColorShadowPalette(5610, 5611, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_4 = createColorShadowPalette(5612, 5613, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_5 = createColorShadowPalette(5614, 5615, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_6 = createColorShadowPalette(5616, 5617, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_7 = createColorShadowPalette(5618, 5619, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_8 = createColorShadowPalette(5620, 5621, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_9 = createColorShadowPalette(5622, 5623, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_10 = createColorShadowPalette(5624, 5625, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_11 = createColorShadowPalette(5626, 5627, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_12 = createColorShadowPalette(5628, 5629, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_13 = createColorShadowPalette(5630, 5631, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_14 = createColorShadowPalette(5632, 5633, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_15 = createColorShadowPalette(5634, 5635, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_16 = createColorShadowPalette(5636, 5637, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_17 = createColorShadowPalette(5638, 5639, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_18 = createColorShadowPalette(5640, 5641, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_19 = createColorShadowPalette(5642, 5643, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_20 = createColorShadowPalette(5644, 5645, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_21 = createColorShadowPalette(5646, 5647, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_22 = createColorShadowPalette(5648, 5649, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_23 = createColorShadowPalette(5650, 5651, [82, 83, 84, 85, 86, 87, 88, 89, 90]); -export const egg_basket_1 = createColorShadowPalette(5652, 5653, [91]); -export const egg_basket_2 = createColorShadowPalette(5654, 5655, [91]); -export const egg_basket_3 = createColorShadowPalette(5656, 5657, [91]); -export const egg_basket_4 = createColorShadowPalette(5658, 5659, [91]); -export const fence_1 = createColorShadowPalette(5660, 5661, [92]); -export const fence_2 = createColorShadowPalette(5662, 5663, [92]); -export const fence_3 = createColorShadowPalette(5664, 5665, [92]); -export const fence_winter_1 = createColorShadowPalette(5666, 5667, [93]); -export const fence_winter_2 = createColorShadowPalette(5668, 5669, [93]); -export const fence_winter_3 = createColorShadowPalette(5670, 5671, [93]); -export const flower_pick = createColorPalette(5672, [94]); -export const flower_1 = createColorShadowPalette(5673, 5674, [94]); -export const flower_patch1 = createColorPalette(5675, [94]); -export const flower_patch2 = createColorPalette(5676, [94]); -export const flower_2 = createColorShadowPalette(5677, 5678, [94]); -export const flower_3 = createColorShadowPalette(5679, 5680, [94]); -export const flower_patch3 = createColorPalette(5681, [94]); -export const flower_patch4 = createColorPalette(5682, [94]); -export const flower_patch5 = createColorShadowPalette(5683, 5684, [94]); -export const flower_patch6 = createColorShadowPalette(5685, 5686, [94]); -export const flower_patch7 = createColorShadowPalette(5687, 5688, [94]); -export const gift_1 = createColorShadowPalette(5689, 5690, [95, 96]); -export const gift_2 = createColorShadowPalette(5691, 5692, [95, 96]); -export const giftpile_pine = createColorShadowPalette(5693, 5694, [97]); -export const giftpile_sign = createColorShadowPalette(5695, 5696, [97]); -export const giftpile_tree = createColorShadowPalette(5697, 5698, [97]); -export const giftpile_1 = createColorShadowPalette(5699, 5700, [97]); -export const giftpile_2 = createColorShadowPalette(5701, 5702, [97]); -export const giftpile_3 = createColorShadowPalette(5703, 5704, [97]); -export const giftpile_4 = createColorShadowPalette(5705, 5706, [97]); -export const giftpile_5 = createColorShadowPalette(5707, 5708, [97]); -export const giftpile_6 = createColorShadowPalette(5709, 5710, [97]); -export const gifts_1 = createColorShadowPalette(5711, 5712, [98, 99, 100, 101]); -export const gifts_2 = createColorShadowPalette(5713, 5714, [98, 99, 100, 101]); -export const gifts_3 = createColorShadowPalette(5715, 5716, [98, 99, 100, 101]); -export const gifts_4 = createColorShadowPalette(5717, 5718, [98, 99, 100, 101]); -export const gifts_5 = createColorShadowPalette(5719, 5720, [98, 99, 100, 101]); -export const gifts_6 = createColorShadowPalette(5721, 5722, [98, 99, 100, 101]); -export const grapes_one = createColorShadowPalette(5723, 5724, [102, 103]); -export const grapes_1 = createColorShadowPalette(5725, 5726, [102, 103]); -export const grapes_2 = createColorShadowPalette(5727, 5728, [102, 103]); -export const grapes_3 = createColorShadowPalette(5729, 5730, [102, 103]); -export const grapes_4 = createColorShadowPalette(5731, 5732, [102, 103]); -export const grapes_5 = createColorShadowPalette(5733, 5734, [102, 103]); -export const grapes_6 = createColorShadowPalette(5735, 5736, [102, 103]); -export const grapes_7 = createColorShadowPalette(5737, 5738, [102, 103]); -export const jacko_lantern_off = createColorShadowPalette(5739, 5740, [104]); -export const jacko_lantern_on = createColorShadowPalette(5741, 5742, [104]); -export const large_leafed_bush_1 = createColorShadowPalette(5743, 5744, [105, 106]); -export const large_leafed_bush_2 = createColorShadowPalette(5745, 5746, [105, 106]); -export const large_leafed_bush_3 = createColorShadowPalette(5747, 5748, [105, 106]); -export const large_leafed_bush_4 = createColorShadowPalette(5749, 5750, [105, 106]); -export const leaf_1 = createColorShadowPalette(5751, 5752, [107, 108, 109]); -export const leaf_2 = createColorShadowPalette(5753, 5754, [107, 108, 109]); -export const leaf_3 = createColorShadowPalette(5755, 5756, [107, 108, 109]); -export const leaf_4 = createColorShadowPalette(5757, 5758, [107, 108, 109]); -export const leaf_5 = createColorShadowPalette(5759, 5760, [107, 108, 109]); -export const leaf_6 = createColorShadowPalette(5761, 5762, [107, 108, 109]); -export const leafpile_big = createColorShadowPalette(5763, 5764, [110, 111, 112]); -export const leafpile_bigstick = createColorShadowPalette(5765, 5766, [110, 111, 112]); -export const leafpile_medium = createColorShadowPalette(5767, 5768, [110, 111, 112]); -export const leafpile_mediumalt = createColorShadowPalette(5769, 5770, [110, 111, 112]); -export const leafpile_small = createColorShadowPalette(5771, 5772, [110, 111, 112]); -export const leafpile_stick = createColorShadowPalette(5773, 5774, [110, 111, 112]); -export const leaves_1 = createColorShadowPalette(5775, 5776, [113]); -export const leaves_2 = createColorShadowPalette(5777, 5778, [113]); -export const leaves_3 = createColorShadowPalette(5779, 5780, [113]); -export const leaves_4 = createColorShadowPalette(5781, 5782, [113]); -export const leaves_5 = createColorShadowPalette(5783, 5784, [113]); -export const lemon_1 = createColorShadowPalette(5785, 5786, [114, 115]); -export const mine_rails_nsw = createColorShadowPalette(5787, 5788, [116]); -export const mine_rails_end_left = createColorShadowPalette(5789, 5790, [116]); -export const mine_rails_end_top = createColorShadowPalette(5791, 5792, [116]); -export const mine_rails_h = createColorShadowPalette(5793, 5794, [116]); -export const mine_rails_ne = createColorShadowPalette(5795, 5796, [116]); -export const mine_rails_nse = createColorShadowPalette(5797, 5798, [116]); -export const mine_rails_end_right = createColorShadowPalette(5799, 5800, [116]); -export const mine_rails_nw = createColorShadowPalette(5801, 5802, [116]); -export const mine_rails_nwe = createColorShadowPalette(5803, 5804, [116]); -export const mine_rails_se = createColorShadowPalette(5805, 5806, [116]); -export const mine_rails_sw = createColorShadowPalette(5807, 5808, [116]); -export const mine_rails_swe = createColorShadowPalette(5809, 5810, [116]); -export const mine_rails_v = createColorShadowPalette(5811, 5812, [116]); -export const orange_1 = createColorShadowPalette(5813, 5814, [117]); -export const orange_2 = createColorShadowPalette(5815, 5816, [117]); -export const picture_1 = createColorPalette(5817, [118, 119]); -export const plank_shadow = createShadow(5818); -export const plank_shadow_short = createShadow(5819); -export const plank_short_1 = createColorPalette(5820, [120, 121]); -export const plank_1 = createColorPalette(5821, [120, 121]); -export const plank_2 = createColorPalette(5822, [120, 121]); -export const plank_shadow2 = createShadow(5823); -export const plank_short_2 = createColorPalette(5824, [120, 121]); -export const plank_3 = createColorPalette(5825, [120, 121]); -export const plank_short_3 = createColorPalette(5826, [120, 121]); -export const plank_4 = createColorPalette(5827, [120, 121]); -export const pumpkin_default = createColorShadowPalette(5828, 5829, [122]); -export const pumpkin_off = createColorShadowPalette(5830, 5831, [122]); -export const pumpkin_on = createColorShadowPalette(5832, 5833, [122]); -export const rock_1 = createColorShadowPalette(5834, 5835, [123, 124]); -export const rock_2 = createColorShadowPalette(5836, 5837, [123, 124]); -export const rock_3 = createColorShadowPalette(5838, 5839, [123, 124]); -export const sign_blank = createColorShadowPalette(5840, 5841, [125]); -export const sign_1 = createColorShadowPalette(5842, 5843, [125]); -export const sign_2 = createColorShadowPalette(5844, 5845, [125]); -export const sign_3 = createColorShadowPalette(5846, 5847, [125]); -export const sign_4 = createColorShadowPalette(5848, 5849, [125]); -export const snowpile_big = createColorPalette(5850, [126, 127]); -export const snowpile_medium = createColorPalette(5851, [126, 127]); -export const snowpile_small = createColorPalette(5852, [126, 127]); -export const snowpile_tinier = createColorPalette(5853, [126, 127]); -export const snowpile_tiny = createColorPalette(5854, [126, 127]); -export const snowpony_1 = createColorPalette(5855, [128]); -export const snowpony_2 = createColorPalette(5856, [128]); -export const snowpony_3 = createColorPalette(5857, [128]); -export const snowpony_4 = createColorPalette(5858, [128]); -export const snowpony_5 = createColorPalette(5859, [128]); -export const snowpony_6 = createColorPalette(5860, [128]); -export const snowpony_7 = createColorPalette(5861, [128]); -export const snowpony_8 = createColorPalette(5862, [128]); -export const snowpony_9 = createColorPalette(5863, [128]); -export const stalactite_1 = createColorPalette(5864, [129]); -export const stalactite_2 = createColorPalette(5865, [129]); -export const stalactite_3 = createColorPalette(5866, [129]); -export const stone_wall_full = createColorShadowPalette(5867, 5868, [130]); -export const stone_wall_horizontal1 = createColorShadowPalette(5869, 5870, [130]); -export const stone_wall_pole1 = createColorShadowPalette(5871, 5872, [130]); -export const stone_wall_vertical1 = createColorPalette(5873, [130]); -export const stone_wall_winter_horizontal1 = createColorPalette(5874, [131]); -export const stone_wall_winter_pole1 = createColorPalette(5875, [131]); -export const stone_wall_winter_vertical1 = createColorPalette(5876, [131]); -export const table_1 = createColorShadowPalette(5877, 5878, [132]); -export const table_2 = createColorShadowPalette(5879, 5880, [132]); -export const tombstone_1 = createColorShadowPalette(5881, 5882, [133]); -export const tombstone_2 = createColorShadowPalette(5883, 5884, [133]); -export const toolbox_empty = createColorShadowPalette(5885, 5886, [134]); -export const toolbox_full = createColorShadowPalette(5887, 5888, [134]); -export const window_1 = createColorPalette(5889, [135]); -export const wooden_fence_pole1 = createColorShadowPalette(5890, 5891, [136, 137]); -export const wooden_fence_horizontal1 = createColorShadowPalette(5892, 5893, [136, 137]); -export const wooden_fence_vertical1 = createColorPalette(5894, [136, 137]); -export const wooden_fence_vertical2 = createColorPalette(5895, [136, 137]); -export const wooden_fence_horizontal2 = createColorShadowPalette(5896, 5897, [136, 137]); -export const wooden_fence_pole2 = createColorShadowPalette(5898, 5899, [136, 137]); -export const wooden_fence_pole3 = createColorShadowPalette(5900, 5901, [136, 137]); -export const wooden_fence_vertical3 = createColorPalette(5902, [136, 137]); -export const wooden_fence_horizontal3 = createColorShadowPalette(5903, 5904, [136, 137]); -export const wooden_fence_pole4 = createColorShadowPalette(5905, 5906, [136, 137]); -export const wooden_fence_horizontal4 = createColorShadowPalette(5907, 5908, [136, 137]); -export const wooden_fence_pole5 = createColorShadowPalette(5909, 5910, [136, 137]); -export const wooden_fence_horizontal5 = createColorShadowPalette(5911, 5912, [136, 137]); -export const wooden_fence_horizontal6 = createColorShadowPalette(5913, 5914, [136, 137]); -export const wooden_fence_winter_horizontal1 = createColorShadowPalette(5915, 5916, [138]); -export const wooden_fence_winter_vertical1 = createColorPalette(5917, [138]); -export const wooden_fence_winter_pole1 = createColorShadowPalette(5918, 5919, [138]); -export const wooden_fence_winter_pole2 = createColorShadowPalette(5920, 5921, [138]); -export const wooden_fence_winter_horizontal2 = createColorShadowPalette(5922, 5923, [138]); -export const wooden_fence_winter_vertical2 = createColorPalette(5924, [138]); -export const wooden_fence_winter_pole3 = createColorShadowPalette(5925, 5926, [138]); -export const wooden_fence_winter_horizontal3 = createColorShadowPalette(5927, 5928, [138]); -export const wooden_fence_winter_vertical3 = createColorPalette(5929, [138]); -export const wooden_fence_winter_pole4 = createColorShadowPalette(5930, 5931, [138]); -export const wooden_fence_winter_horizontal4 = createColorShadowPalette(5932, 5933, [138]); -export const wooden_fence_winter_horizontal5 = createColorShadowPalette(5934, 5935, [138]); -export const wooden_fence_winter_pole5 = createColorShadowPalette(5936, 5937, [138]); -export const wooden_fence_winter_horizontal6 = createColorShadowPalette(5938, 5939, [138]); -export const bubble_2 = createButton(2, 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948); -export const bubble2_2 = createButton(2, 5949, 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957); -export const butterfly = createAnimationPalette([5958, 5959, 5960, 5961], 139); -export const poof2 = createAnimationPalette([5962, 5963, 5964, 5965, 5966, 5967, 5968, 5969, 5970], 140); -export const rain = createAnimationPalette([5971, 5972, 5973, 5974], 52); -export const raindrop = createAnimationPalette([5975, 5976, 5977, 5978], 52); -export const magic = createAnimationPalette([5979, 5980, 5981, 5982, 5983, 5984], 52); -export const bat = createAnimationPalette([5985, 5986, 5987, 5988], 141); -export const bunny = createAnimationShadow([5989, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022], 6023, 142); -export const cat = createAnimationPalette([6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040], 143); -export const firefly = createAnimationPalette([6041, 6042, 6043], 144); -export const torch = createAnimationShadow([6044, 6045, 6046, 6047, 6048, 6049, 6050], 6051, 145); -export const splash_boop = createAnimationPalette([6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, 6067, 6068, 6069], 146); -export const lantern = createAnimationShadow([6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077], 6078, 147); -export const boat_wake = createAnimationPalette([6079, 6080, 6081, 6082], 148); -export const splash = createAnimationPalette([6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, 6091, 6092, 6093, 6094, 6095], 149); -export const poof = createAnimationPalette([6096, 6097, 6098, 6099, 6100], 150); -export const pier_leg = createAnimationPalette([6101, 6102, 6103, 6104], 151); -export const ghost1_hooves = createAnimationPalette([0, 0, 0, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143, 6144, 0, 0, 0, 0], 152); -export const ghost1 = createAnimationPalette([6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 0, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198, 6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210, 6211], 153); -export const magic2 = createAnimationPalette([6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222], 52); -export const torch2 = createAnimationShadow([6223, 6224, 6225, 6226, 6227, 6228, 6229], 6230, 145); -export const magic3 = createAnimationPalette([0, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 0, 0], 52); -export const pony_wake_1 = createAnimationPalette([6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246], 154); -export const pony_wake_2 = createAnimationPalette([6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254], 154); -export const pony_wake_3 = createAnimationPalette([6255, 6256, 6257, 6258, 6259, 6260, 6261, 6262], 154); -export const pony_wake_4 = createAnimationPalette([6263, 6264, 6265, 6266, 6267, 6268, 6269, 6270], 154); -export const pony_wake_5 = createAnimationPalette([6271, 6272, 6273, 6274, 6275, 6276, 6277, 6278], 154); -export const pony_wake_6 = createAnimationPalette([6279, 6280, 6281, 6282, 6283, 6284, 6285, 6286], 154); -export const water_crystal_1 = createAnimationPalette([6287, 6288, 6289, 6290], 155); -export const water_crystal_2 = createAnimationPalette([6291, 6292, 6293, 6294], 155); -export const water_crystal_3 = createAnimationPalette([6295, 6296, 6297, 6298], 155); -export const water_rock_1 = createAnimationPalette([6299, 6300, 6301, 6302], 156); -export const water_rock_2 = createAnimationPalette([6303, 6304, 6305, 6306], 156); -export const water_rock_3 = createAnimationPalette([6307, 6308, 6309, 6310], 156); -export const water_rock_4 = createAnimationPalette([6311, 6312, 6313, 6314], 156); -export const water_rock_5 = createAnimationPalette([6315, 6316, 6317, 6318], 156); -export const water_rock_6 = createAnimationPalette([6319, 6320, 6321, 6322], 156); -export const water_rock_7 = createAnimationPalette([6323, 6324, 6325, 6326], 156); -export const water_rock_8 = createAnimationPalette([6327, 6328, 6329, 6330], 156); -export const water_rock_9 = createAnimationPalette([6331, 6332, 6333, 6334], 156); -export const water_rock_10 = createAnimationPalette([6335, 6336, 6337, 6338], 156); -export const water_rock_11 = createAnimationPalette([6339, 6340, 6341, 6342], 156); -export const grass_2 = /* no palettes */ createColorPalette(6343, [37]); -export const nipple_2 = /* no palettes */ createColorPalette(6344, [52]); -export const nipple_alt_2 = /* no palettes */ createColorPalette(6345, [52]); -export const arrow_down = sprites2[6346]; -export const arrow_left = sprites2[6347]; -export const arrow_right = sprites2[6348]; -export const arrow_up = sprites2[6349]; -export const magic_icon = sprites2[6350]; -export const emote_cry = createAnimationPalette([6351, 6352, 6353, 6354, 6355, 6356, 6357, 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, 6366, 6367, 6368], 157); -export const emote_hearts = createAnimationPalette([6369, 6370, 6371, 6372, 6373, 6374, 6375, 6376, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413], 157); -export const emote_sneeze = createAnimationPalette([6414, 6415], 157); -export const emote_tears = createAnimationPalette([6416], 157); -export const hold_poof = createAnimationPalette([6417, 6418, 6419, 6420, 6421], 157); -export const emote_sleep1 = createAnimationPalette([6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, 6440], 157); -export const emote_sleep1_flip = createAnimationPalette([6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459], 157); -export const emote_cry2 = createAnimationPalette([6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, 6469, 6470, 6471, 6472], 157); -export const emote_sleep2 = createAnimationPalette([6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512], 157); -export const emote_sleep2_flip = createAnimationPalette([6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, 6550, 6551, 6552], 157); -export const wall_wood_full = [ - /* no palettes */ createColorPalette(6553, [158]), - /* no palettes */ createColorPalette(6554, [158]), - /* no palettes */ createColorPalette(6555, [158]), - /* no palettes */ createColorPalette(6556, [158]), - /* no palettes */ createColorPalette(6557, [158]), - /* no palettes */ createColorPalette(6558, [158]), - /* no palettes */ createColorPalette(6559, [158]), - /* no palettes */ createColorPalette(6560, [158]), - /* no palettes */ createColorPalette(6561, [158]), - /* no palettes */ createColorPalette(6562, [158]), - /* no palettes */ createColorPalette(6563, [158]), - /* no palettes */ createColorPalette(6564, [158]), - /* no palettes */ createColorPalette(6565, [158]), - /* no palettes */ createColorPalette(6566, [158]), - /* no palettes */ createColorPalette(6567, [158]), - /* no palettes */ createColorPalette(6568, [158]), - /* no palettes */ createColorPalette(6569, [158]), - /* no palettes */ createColorPalette(6570, [158]), - /* no palettes */ createColorPalette(6571, [158]), - /* no palettes */ createColorPalette(6572, [158]) -]; -export const wall_wood_half = [ - /* no palettes */ createColorPalette(6573, [158]), - /* no palettes */ createColorPalette(6574, [158]), - /* no palettes */ createColorPalette(6575, [158]), - /* no palettes */ createColorPalette(6576, [158]), - /* no palettes */ createColorPalette(6577, [158]), - /* no palettes */ createColorPalette(6578, [158]), - /* no palettes */ createColorPalette(6579, [158]), - /* no palettes */ createColorPalette(6580, [158]), - /* no palettes */ createColorPalette(6581, [158]), - /* no palettes */ createColorPalette(6582, [158]), - /* no palettes */ createColorPalette(6583, [158]), - /* no palettes */ createColorPalette(6584, [158]), - /* no palettes */ createColorPalette(6585, [158]), - /* no palettes */ createColorPalette(6586, [158]), - /* no palettes */ createColorPalette(6587, [158]), - /* no palettes */ createColorPalette(6588, [158]), - /* no palettes */ createColorPalette(6589, [158]), - /* no palettes */ createColorPalette(6590, [158]) -]; -export const wall_stone_full = [ - /* no palettes */ createColorPalette(6591, [159]), - /* no palettes */ createColorPalette(6592, [159]), - /* no palettes */ createColorPalette(6593, [159]), - /* no palettes */ createColorPalette(6594, [159]), - /* no palettes */ createColorPalette(6595, [159]), - /* no palettes */ createColorPalette(6596, [159]), - /* no palettes */ createColorPalette(6597, [159]), - /* no palettes */ createColorPalette(6598, [159]), - /* no palettes */ createColorPalette(6599, [159]), - /* no palettes */ createColorPalette(6600, [159]), - /* no palettes */ createColorPalette(6601, [159]), - /* no palettes */ createColorPalette(6602, [159]), - /* no palettes */ createColorPalette(6603, [159]), - /* no palettes */ createColorPalette(6604, [159]), - /* no palettes */ createColorPalette(6605, [159]), - /* no palettes */ createColorPalette(6606, [159]), - /* no palettes */ createColorPalette(6607, [159]), - /* no palettes */ createColorPalette(6608, [159]), - /* no palettes */ createColorPalette(6609, [159]), - /* no palettes */ createColorPalette(6610, [159]) -]; -export const wall_stone_half = [ - /* no palettes */ createColorPalette(6611, [159]), - /* no palettes */ createColorPalette(6612, [159]), - /* no palettes */ createColorPalette(6613, [159]), - /* no palettes */ createColorPalette(6614, [159]), - /* no palettes */ createColorPalette(6615, [159]), - /* no palettes */ createColorPalette(6616, [159]), - /* no palettes */ createColorPalette(6617, [159]), - /* no palettes */ createColorPalette(6618, [159]), - /* no palettes */ createColorPalette(6619, [159]), - /* no palettes */ createColorPalette(6620, [159]), - /* no palettes */ createColorPalette(6621, [159]), - /* no palettes */ createColorPalette(6622, [159]), - /* no palettes */ createColorPalette(6623, [159]), - /* no palettes */ createColorPalette(6624, [159]), - /* no palettes */ createColorPalette(6625, [159]), - /* no palettes */ createColorPalette(6626, [159]), - /* no palettes */ createColorPalette(6627, [159]), - /* no palettes */ createColorPalette(6628, [159]) -]; -export const pixelRect2 = sprites2[6629]; -export const grassTiles = createSpritesPalette([6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695], [160, 161]); -export const snowTiles = createSpritesPalette([6696, 6697, 6698, 6699, 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, 6758, 6759, 6760, 6761], [162]); -export const woodTiles = createSpritesPalette([6762, 6763, 6764, 6765, 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827], [163]); -export const stoneTiles = createSpritesPalette([6828, 6829, 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893], [164]); -export const stone2Tiles = createSpritesPalette([6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, 6957, 6958, 6959], [165]); -export const waterTiles1 = createSpritesPalette([6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025], [166, 167, 168, 169]); -export const waterTiles2 = createSpritesPalette([7026, 7027, 7028, 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, 7089, 7090, 7091], [166]); -export const waterTiles3 = createSpritesPalette([7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157], [166]); -export const waterTiles4 = createSpritesPalette([7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, 7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, 7221, 7222, 7223], [166]); -export const iceTiles = createSpritesPalette([7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244, 7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256, 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268, 7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289], [170, 171, 172]); -export const grassTilesNew = createSpritesPalette([7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316, 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7354, 7355], [173]); -export const snowOnIceTiles = createSpritesPalette([7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364, 7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, 7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412, 7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421], [174]); -export const caveTiles = createSpritesPalette([7422, 7423, 7424, 7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, 7476, 7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 7485, 7486, 7487], [175]); -export const cliffs_grass_decal_1 = createColorPalette(7488, [176, 177, 178]); -export const cliffs_grass_decal_2 = createColorPalette(7489, [176, 177, 178]); -export const cliffs_grass_decal_3 = createColorPalette(7490, [176, 177, 178]); -export const cliffs_grass_decal_l = createColorPalette(7491, [176, 177, 178]); -export const cliffs_grass_decal_r = createColorPalette(7492, [176, 177, 178]); -export const cliffs_grass_top_nw = createColorPalette(7493, [176, 177, 178]); -export const cliffs_grass_top_n = createColorPalette(7494, [176, 177, 178]); -export const cliffs_grass_top_ne = createColorPalette(7495, [176, 177, 178]); -export const cliffs_grass_top_w = createColorPalette(7496, [176, 177, 178]); -export const cliffs_grass_top_e = createColorPalette(7497, [176, 177, 178]); -export const cliffs_grass_top_sw = createColorPalette(7498, [176, 177, 178]); -export const cliffs_grass_top_se = createColorPalette(7499, [176, 177, 178]); -export const cliffs_grass_top_s1 = createColorPalette(7500, [176, 177, 178]); -export const cliffs_grass_top_s2 = createColorPalette(7501, [176, 177, 178]); -export const cliffs_grass_top_s3 = createColorPalette(7502, [176, 177, 178]); -export const cliffs_grass_mid_sw1 = createColorPalette(7503, [176, 177, 178]); -export const cliffs_grass_mid_sw2 = createColorPalette(7504, [176, 177, 178]); -export const cliffs_grass_mid_s1 = createColorPalette(7505, [176, 177, 178]); -export const cliffs_grass_mid_s2 = createColorPalette(7506, [176, 177, 178]); -export const cliffs_grass_mid_s3 = createColorPalette(7507, [176, 177, 178]); -export const cliffs_grass_mid_se1 = createColorPalette(7508, [176, 177, 178]); -export const cliffs_grass_mid_se2 = createColorPalette(7509, [176, 177, 178]); -export const cliffs_grass_bot_sw = createColorPalette(7510, [176, 177, 178]); -export const cliffs_grass_bot_s1 = createColorPalette(7511, [176, 177, 178]); -export const cliffs_grass_bot_s2 = createColorPalette(7512, [176, 177, 178]); -export const cliffs_grass_bot_s3 = createColorPalette(7513, [176, 177, 178]); -export const cliffs_grass_bot_se = createColorPalette(7514, [176, 177, 178]); -export const cliffs_grass_top_sb = createColorPalette(7515, [176, 177, 178]); -export const cliffs_grass_mid_sb = createColorPalette(7516, [176, 177, 178]); -export const cliffs_grass_bot_sb = createColorPalette(7517, [176, 177, 178]); -export const cliffs_grass_top_trim_left = createColorPalette(7518, [176, 177, 178]); -export const cliffs_grass_mid_trim_left = createColorPalette(7519, [176, 177, 178]); -export const cliffs_grass_bot_trim_left = createColorPalette(7520, [176, 177, 178]); -export const cliffs_grass_top_trim_right = createColorPalette(7521, [176, 177, 178]); -export const cliffs_grass_mid_trim_right = createColorPalette(7522, [176, 177, 178]); -export const cliffs_grass_bot_trim_right = createColorPalette(7523, [176, 177, 178]); -export const cliffs_grass_sw = createColorPalette(7524, [176, 177, 178]); -export const cliffs_grass_s1 = createColorPalette(7525, [176, 177, 178]); -export const cliffs_grass_s2 = createColorPalette(7526, [176, 177, 178]); -export const cliffs_grass_s3 = createColorPalette(7527, [176, 177, 178]); -export const cliffs_grass_sb = createColorPalette(7528, [176, 177, 178]); -export const cliffs_grass_se = createColorPalette(7529, [176, 177, 178]); -export const cave_walls_decal_1 = createColorPalette(7530, [179]); -export const cave_walls_decal_2 = createColorPalette(7531, [179]); -export const cave_walls_decal_3 = createColorPalette(7532, [179]); -export const cave_walls_decal_l = createColorPalette(7533, [179]); -export const cave_walls_decal_r = createColorPalette(7534, [179]); -export const cave_walls_top_nw = createColorPalette(7535, [179]); -export const cave_walls_top_n = createColorPalette(7536, [179]); -export const cave_walls_top_ne = createColorPalette(7537, [179]); -export const cave_walls_top_w = createColorPalette(7538, [179]); -export const cave_walls_top_e = createColorPalette(7539, [179]); -export const cave_walls_top_sw = createColorPalette(7540, [179]); -export const cave_walls_top_se = createColorPalette(7541, [179]); -export const cave_walls_top_s1 = createColorPalette(7542, [179]); -export const cave_walls_top_s2 = createColorPalette(7543, [179]); -export const cave_walls_top_s3 = createColorPalette(7544, [179]); -export const cave_walls_mid_sw1 = createColorPalette(7545, [179]); -export const cave_walls_mid_sw2 = createColorPalette(7546, [179]); -export const cave_walls_mid_s1 = createColorPalette(7547, [179]); -export const cave_walls_mid_s2 = createColorPalette(7548, [179]); -export const cave_walls_mid_s3 = createColorPalette(7549, [179]); -export const cave_walls_mid_se1 = createColorPalette(7550, [179]); -export const cave_walls_mid_se2 = createColorPalette(7551, [179]); -export const cave_walls_bot_sw = createColorPalette(7552, [179]); -export const cave_walls_bot_s1 = createColorPalette(7553, [179]); -export const cave_walls_bot_s2 = createColorPalette(7554, [179]); -export const cave_walls_bot_s3 = createColorPalette(7555, [179]); -export const cave_walls_bot_se = createColorPalette(7556, [179]); -export const cave_walls_top_sb = createColorPalette(7557, [179]); -export const cave_walls_mid_sb = createColorPalette(7558, [179]); -export const cave_walls_bot_sb = createColorPalette(7559, [179]); -export const cave_walls_top_trim_left = createColorPalette(7560, [179]); -export const cave_walls_mid_trim_left = createColorPalette(7561, [179]); -export const cave_walls_bot_trim_left = createColorPalette(7562, [179]); -export const cave_walls_top_trim_right = createColorPalette(7563, [179]); -export const cave_walls_mid_trim_right = createColorPalette(7564, [179]); -export const cave_walls_bot_trim_right = createColorPalette(7565, [179]); -export const cave_walls_sw = createColorPalette(7566, [179]); -export const cave_walls_s1 = createColorPalette(7567, [179]); -export const cave_walls_s2 = createColorPalette(7568, [179]); -export const cave_walls_s3 = createColorPalette(7569, [179]); -export const cave_walls_sb = createColorPalette(7570, [179]); -export const cave_walls_se = createColorPalette(7571, [179]); -export const pixel2 = sprites2[14629]; - -export const head0 = [ - undefined, - [[0, 1, 2, 4, 7, 8, 9, 10, 12, 13, 14, 16, 18, 19].map(i => head[1]![0]![i])], -]; - -export const head1 = [ - undefined, - [[0, 1, 3, 5, 6, 8, 9, 11, 12, 13, 15, 17, 18, 19].map(i => head[1]![0]![i])], -]; - \ No newline at end of file diff --git a/src/ts/server/commands.ts b/src/ts/server/commands.ts index 592fda2..f48ea40 100644 --- a/src/ts/server/commands.ts +++ b/src/ts/server/commands.ts @@ -1,6 +1,6 @@ import { range, compact, escapeRegExp } from 'lodash'; import { - MessageType, ChatType, Expression, Eye, Muzzle, Action, Weather, toAnnouncementMessageType, + MessageType, ChatType, Expression, Eye, Muzzle, Action, toAnnouncementMessageType, } from '../common/interfaces'; import { hasRole } from '../common/accountUtils'; import { butterfly, bat, firefly, cloud, getEntityType, getEntityTypeName } from '../common/entities'; @@ -34,6 +34,7 @@ import { writeFileAsync } from 'fs'; import { Account } from './db'; import { defaultHouseSave, removeToolbox, restoreToolbox } from './maps/houseMap'; import { getRegionGlobal } from '../common/region'; +import { Weather } from '../common/commonInterfaces'; export interface CommandContext { world: World; diff --git a/src/ts/server/maps/caveMap.ts b/src/ts/server/maps/caveMap.ts index 9114d97..59c5dae 100644 --- a/src/ts/server/maps/caveMap.ts +++ b/src/ts/server/maps/caveMap.ts @@ -4,13 +4,14 @@ import { ServerMap, MapUsage, ServerEntity } from '../serverInterfaces'; import { World, goToMap } from '../world'; import { addSpawnPointIndicators } from '../mapUtils'; import { createServerMap, deserializeMap } from '../serverMap'; -import { TileType, MapType } from '../../common/interfaces'; +import { TileType } from '../../common/interfaces'; import { rect } from '../../common/rect'; import { TorchController, FlyingCritterController } from '../controllers'; import * as entities from '../../common/entities'; import { WallController } from '../controllers/wallController'; import { createBoxOfLanterns, give } from '../controllerUtils'; import { holdItem } from '../playerUtils'; +import { MapType } from '../../common/commonInterfaces'; const mapData = JSON.parse(fs.readFileSync(pathTo('src', 'maps', 'cave.json'), 'utf8')); diff --git a/src/ts/server/maps/customMap.ts b/src/ts/server/maps/customMap.ts index 9b9d050..53d6979 100644 --- a/src/ts/server/maps/customMap.ts +++ b/src/ts/server/maps/customMap.ts @@ -1,12 +1,13 @@ import * as fs from 'fs'; import * as entities from '../../common/entities'; import { rect } from '../../common/rect'; -import { TileType, MapType } from '../../common/interfaces'; +import { TileType } from '../../common/interfaces'; import { createServerMap, deserializeMap } from '../serverMap'; import { World, goToMap } from '../world'; import { createSign } from '../controllerUtils'; import { ServerEntity } from '../serverInterfaces'; import { pathTo } from '../paths'; +import { MapType } from '../../common/commonInterfaces'; // load tile data // To customize the map use in-game editor tools to change tiles, then use `/savemap custom` command, diff --git a/src/ts/server/maps/houseMap.ts b/src/ts/server/maps/houseMap.ts index 58961b1..13e5026 100644 --- a/src/ts/server/maps/houseMap.ts +++ b/src/ts/server/maps/houseMap.ts @@ -3,12 +3,13 @@ import { rect } from '../../common/rect'; import { ServerMap, MapUsage, ServerEntity } from '../serverInterfaces'; import { World, goToMap } from '../world'; import { addSpawnPointIndicators } from '../mapUtils'; -import { TileType, MapType, MapFlags, EntityState } from '../../common/interfaces'; +import { TileType, EntityState } from '../../common/interfaces'; import { createServerMap, setTile, MapData, saveMap } from '../serverMap'; import { WallController } from '../controllers'; import { resetRegionUpdates } from '../serverRegion'; import { tileHeight, HOUSE_ENTITY_LIMIT } from '../../common/constants'; import { getTile } from '../../common/tileUtils'; +import { MapFlags, MapType } from '../../common/commonInterfaces'; export let defaultHouseSave: MapData | undefined = undefined; diff --git a/src/ts/server/maps/islandMap.ts b/src/ts/server/maps/islandMap.ts index 2b17869..3cf08b6 100644 --- a/src/ts/server/maps/islandMap.ts +++ b/src/ts/server/maps/islandMap.ts @@ -8,7 +8,7 @@ import { addSpawnPointIndicators, generateTileIndicesAndColliders, removePonies, worldForTemplates, createBunny } from '../mapUtils'; import { serverMapInstanceFromTemplate, createServerMap, copyMapTiles, deserializeMap } from '../serverMap'; -import { TileType, MapType, Season } from '../../common/interfaces'; +import { TileType } from '../../common/interfaces'; import { rect } from '../../common/rect'; import { createAddLight, createSignWithText, createWoodenFenceMaker, createBoxOfLanterns } from '../controllerUtils'; import { setEntityName, updateEntityOptions } from '../entityUtils'; @@ -17,6 +17,7 @@ import { tileWidth, tileHeight } from '../../common/constants'; import { TorchController, UpdateController } from '../controllers'; import { resetRegionUpdates } from '../serverRegion'; import { point } from '../../common/utils'; +import { MapType, Season } from '../../common/commonInterfaces'; const islandMapData = JSON.parse(fs.readFileSync(pathTo('src', 'maps', 'island.json'), 'utf8')); diff --git a/src/ts/server/maps/mainMap.ts b/src/ts/server/maps/mainMap.ts index 8aba626..1b5baa2 100644 --- a/src/ts/server/maps/mainMap.ts +++ b/src/ts/server/maps/mainMap.ts @@ -3,7 +3,7 @@ import { sample, random } from 'lodash'; import { pathTo } from '../paths'; import { World, goToMap } from '../world'; import { createServerMap, deserializeMap, snapshotTiles, setTile, lockTile, lockTiles } from '../serverMap'; -import { TileType, Season, MapType, Holiday, MessageType, ServerFlags, MapFlags } from '../../common/interfaces'; +import { TileType, MessageType, ServerFlags } from '../../common/interfaces'; import { rect } from '../../common/rect'; import * as entities from '../../common/entities'; import { @@ -27,6 +27,7 @@ import { toWorldX } from '../../common/positionUtils'; import { deserializeTiles } from '../../common/compress'; import * as ctrl from '../controllers'; import { isNightTime, isDayTime } from '../../common/timeUtils'; +import { Holiday, MapFlags, MapType, Season } from '../../common/commonInterfaces'; const mainMapData = JSON.parse(fs.readFileSync(pathTo('src', 'maps', 'main.json'), 'utf8')); const mainMapTiles = deserializeTiles(mainMapData.tiles); diff --git a/src/ts/server/maps/paletteMap.ts b/src/ts/server/maps/paletteMap.ts index 4e056a3..d604663 100644 --- a/src/ts/server/maps/paletteMap.ts +++ b/src/ts/server/maps/paletteMap.ts @@ -1,12 +1,13 @@ import * as entities from '../../common/entities'; import { rect } from '../../common/rect'; -import { TileType, MapType } from '../../common/interfaces'; +import { TileType } from '../../common/interfaces'; import { createServerMap } from '../serverMap'; import { World, goToMap } from '../world'; import { allEntities } from '../api/account'; import { createSign } from '../controllerUtils'; import { ServerEntity } from '../serverInterfaces'; import { setEntityName } from '../entityUtils'; +import { MapType } from '../../common/commonInterfaces'; export function createPaletteMap(world: World) { const map = createServerMap('palette', MapType.None, 10, 10, TileType.Grass); diff --git a/src/ts/server/serverActions.ts b/src/ts/server/serverActions.ts index a1b187d..5c903e3 100644 --- a/src/ts/server/serverActions.ts +++ b/src/ts/server/serverActions.ts @@ -2,7 +2,7 @@ import { Socket, Method, SocketServer, Bin, getMethods } from 'ag-sockets'; import { PlayerAction, ModAction, ChatType, PonyData, IServerActions, TileType, Action, EditorAction, Entity, EntityOrPonyOptions, LeaveReason, SupporterInvite, InfoFlags, AccountSettings, FriendStatusFlags, - SelectFlags, UpdateFlags, isValidModTile, isValidTile, MapFlags, EntityState, houseTiles + SelectFlags, UpdateFlags, isValidModTile, isValidTile, EntityState, houseTiles } from '../common/interfaces'; import { CharacterState, ServerConfig } from '../common/adminInterfaces'; import { PARTY_LIMIT, OFFLINE_PONY, TILE_CHANGE_RANGE, MIN_HIDE_TIME, MAX_HIDE_TIME, PONY_TYPE } from '../common/constants'; @@ -37,6 +37,7 @@ import { isOutsideMap } from '../common/collision'; import { createAnEntity } from '../common/entities'; import { mockPaletteManager } from '../common/ponyInfo'; import { getTile } from '../common/tileUtils'; +import { MapFlags } from '../common/commonInterfaces'; interface AddedEntity { name: string; diff --git a/src/ts/server/serverInterfaces.ts b/src/ts/server/serverInterfaces.ts index 028820b..e9d66f0 100644 --- a/src/ts/server/serverInterfaces.ts +++ b/src/ts/server/serverInterfaces.ts @@ -1,11 +1,12 @@ import { ClientExtensions, BinaryWriter } from 'ag-sockets'; import { Entity, ServerFlags, AccountSettings, NotificationFlags, Expression, Camera, SayData, Region, TileUpdate, - Rect, IMap, MapType, TileType, MapState, UpdateFlags, Action, EntityOrPonyOptions, EntityPlayerState, MapFlags + Rect, IMap, TileType, MapState, UpdateFlags, Action, EntityOrPonyOptions, EntityPlayerState, } from '../common/interfaces'; import { IAccount, ICharacter, UpdateAccount } from './db'; import { AccountUpdate, CharacterState, GameServerSettings, Suspicious } from '../common/adminInterfaces'; import { ClientActionsTemplate } from '../common/clientActionsTemplte'; +import { MapFlags, MapType } from '../common/commonInterfaces'; export interface EntityUpdate { entity: Entity; diff --git a/src/ts/server/serverMap.ts b/src/ts/server/serverMap.ts index d84f577..4fea7b8 100644 --- a/src/ts/server/serverMap.ts +++ b/src/ts/server/serverMap.ts @@ -1,7 +1,7 @@ import { writeFileAsync, readFileAsync, writeFileSync } from 'fs'; import { fromByteArray } from 'base64-js'; import { - TileType, MapInfo, MapState, defaultMapState, Rect, MapType, ServerFlags, EntityFlags, MapFlags, EntityState + TileType, MapInfo, MapState, defaultMapState, Rect, ServerFlags, EntityFlags, EntityState } from '../common/interfaces'; import { distanceSquaredXY, containsPoint, hasFlag } from '../common/utils'; import { POSITION_MAX } from '../common/movementUtils'; @@ -20,6 +20,7 @@ import { setEntityName } from './entityUtils'; import { WallController } from './controllers/wallController'; import { getTile } from '../common/tileUtils'; import { getRegion, getRegionGlobal } from '../common/region'; +import { MapFlags, MapType } from '../common/commonInterfaces'; export interface EntityData { type: string; diff --git a/src/ts/server/world.ts b/src/ts/server/world.ts index d6e24fb..d5ff476 100644 --- a/src/ts/server/world.ts +++ b/src/ts/server/world.ts @@ -1,7 +1,7 @@ import { getWriterBuffer } from 'ag-sockets'; import { remove, compact } from 'lodash'; import { - TileType, WorldState, Season, Holiday, WorldStateFlags, LeaveReason, NotificationFlags, UpdateFlags, Action, counterNow, + TileType, WorldState, WorldStateFlags, LeaveReason, NotificationFlags, UpdateFlags, Action, counterNow, } from '../common/interfaces'; import { removeItem, distance, clamp, randomPoint, includes, fromNow } from '../common/utils'; import { HOUR_LENGTH, DAY_LENGTH } from '../common/timeUtils'; @@ -44,6 +44,7 @@ import { createIslandMap } from './maps/islandMap'; import { createHouseMap } from './maps/houseMap'; import { updateMainMapSeason } from './maps/mainMap'; import { updateWorldPerfStats } from './worldPerfStats'; +import { Holiday, Season } from '../common/commonInterfaces'; interface MapSwitch { map: ServerMap; diff --git a/src/ts/tests/client/clientActions.spec.ts b/src/ts/tests/client/clientActions.spec.ts index 80d5dcd..f8ce6dc 100644 --- a/src/ts/tests/client/clientActions.spec.ts +++ b/src/ts/tests/client/clientActions.spec.ts @@ -5,7 +5,7 @@ import { Subject } from 'rxjs'; import { expect } from 'chai'; import { stub, assert, SinonStub } from 'sinon'; import { - MessageType, Action, PartyFlags, NotificationFlags, LeaveReason, TileType, Weather, InfoFlags, Pony + MessageType, Action, PartyFlags, NotificationFlags, LeaveReason, TileType, InfoFlags, Pony } from '../../common/interfaces'; import * as handlers from '../../client/handlers'; import { pony } from '../../common/entities'; @@ -24,6 +24,7 @@ import { addEntity, setRegion, createWorldMap } from '../../client/worldMap'; import { createServerRegion } from '../../server/serverRegion'; import { ServerRegion } from '../../server/serverInterfaces'; import { getTile } from '../../common/tileUtils'; +import { Weather } from '../../common/commonInterfaces'; describe('ClientActions', () => { let zone: NgZone; diff --git a/src/ts/tests/common/timeUtils.spec.ts b/src/ts/tests/common/timeUtils.spec.ts index cdd7343..58f2559 100644 --- a/src/ts/tests/common/timeUtils.spec.ts +++ b/src/ts/tests/common/timeUtils.spec.ts @@ -4,7 +4,7 @@ import { formatHourMinutes, getLightColor, HOUR_LENGTH, isDay, isNight, LightData, createLightData } from '../../common/timeUtils'; import { WHITE } from '../../common/colors'; -import { Season } from '../../common/interfaces'; +import { Season } from '../../common/commonInterfaces'; const LIGHT_DAY = WHITE; const LIGHT_NIGHT = 0x2b3374ff;